@font-face {
  font-family: "Greed";
  src: url("../GreedStandardVF.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ih-midnight: #011124;
  --ih-neon: #00ea9c;
  --ih-white: #ffffff;
  --ih-bg-beige: #fbfaf8;
  --ih-bg-surface-warm: #f6f5f3;
  --ih-text-secondary: #67707c;
  --ih-text-tertiary: #aeb3b9;
  --ih-border-primary: #e7e8ea;
  --ih-btn-emphasis-bg: #003000;
  --ih-btn-link: #00a36d;
  --ih-edge-neon-bottom: #00ea9c;
  --ih-edge-secondary-bottom: #aeb3b9;
  --ih-pink: #ff356f;
  --ih-radius-md: 2px;
  --page-max: 1180px;
  --gutter: clamp(18px, 4vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ih-bg-beige);
  color: var(--ih-midnight);
  font-family: "Greed", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 420;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--ih-neon);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ih-midnight);
  color: var(--ih-white);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(231, 232, 234, 0.86);
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 166px;
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--ih-midnight);
  background: var(--ih-midnight);
  box-shadow: 4px 4px 0 var(--ih-edge-neon-bottom);
  color: var(--ih-white);
  font-size: 14px;
  font-weight: 450;
  text-decoration: none;
  white-space: nowrap;
}

.section-shell {
  width: min(var(--page-max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 42px 0 48px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rating-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.rating-pill {
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 10px;
  border: 1px solid var(--ih-border-primary);
  background: var(--ih-white);
  color: var(--ih-text-secondary);
  font-size: 12px;
  line-height: 1;
}

.rating-pill img {
  width: 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ih-midnight);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--ih-neon);
}

.eyebrow--dark {
  color: var(--ih-white);
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(48px, 14vw, 86px);
  font-weight: 450;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 9vw, 64px);
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 450;
  line-height: 1.1;
}

.hero-subtitle,
.section-heading p,
.dark-grid p,
.faq-list p,
.final-cta p {
  color: var(--ih-text-secondary);
  font-size: 18px;
  line-height: 1.45;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 24px;
}

.hero-actions {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 460px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--ih-midnight);
  border-radius: var(--ih-radius-md);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 450;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button:hover {
  transform: translate(-1px, -1px);
}

.button-primary {
  background: var(--ih-midnight);
  box-shadow: 4px 4px 0 var(--ih-edge-neon-bottom);
  color: var(--ih-white);
}

.button-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ih-edge-neon-bottom);
}

.cta-note,
.hero-proof {
  color: var(--ih-text-secondary);
}

.cta-note {
  margin: 0;
  font-size: 13px;
}

.hero-proof {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.hero-proof li {
  position: relative;
  padding-left: 18px;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  background: var(--ih-neon);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: end;
  gap: 4px;
  padding: 12px 0 44px;
}

.photo-card {
  position: relative;
  border: 1px solid var(--ih-midnight);
  background: var(--ih-white);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-card span {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
  padding: 7px 8px;
  background: var(--ih-white);
  color: var(--ih-midnight);
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-card--before {
  transform: translateY(26px);
}

.photo-card--after {
  box-shadow: 4px 4px 0 var(--ih-edge-neon-bottom);
}

.photo-card--after span {
  background: var(--ih-neon);
}

.visual-status {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: grid;
  min-width: 160px;
  transform: translateX(-50%);
  padding: 14px 16px;
  border: 1px solid var(--ih-midnight);
  background: var(--ih-white);
  box-shadow: 4px 4px 0 var(--ih-edge-secondary-bottom);
  text-align: center;
}

.visual-status strong {
  font-size: 24px;
  font-weight: 450;
  line-height: 1;
}

.visual-status span {
  color: var(--ih-text-secondary);
  font-size: 12px;
}

.proof-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  width: min(var(--page-max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  border: 1px solid var(--ih-border-primary);
  background: var(--ih-border-primary);
}

.proof-bar div {
  padding: 22px;
  background: var(--ih-white);
}

.proof-bar strong {
  display: block;
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1;
}

.proof-bar span {
  color: var(--ih-text-secondary);
  font-size: 14px;
}

.linkedin-section,
.steps-section,
.testimonial-section,
.logo-section,
.faq-section {
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.audience-grid,
.steps,
.faq-list {
  display: grid;
  gap: 12px;
}

.audience-grid article,
.steps article,
.faq-list details,
.quote-card {
  border: 1px solid var(--ih-border-primary);
  background: var(--ih-white);
}

.audience-grid article,
.steps article {
  padding: 24px;
}

.audience-grid article span,
.steps article span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--ih-btn-link);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-grid p,
.steps p {
  margin-bottom: 0;
  color: var(--ih-text-secondary);
  font-size: 15px;
  line-height: 1.45;
}

.dark-section {
  background: var(--ih-midnight);
  color: var(--ih-white);
}

.dark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 76px 0;
}

.dark-grid p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.dark-grid .button {
  margin-top: 8px;
  border-color: var(--ih-white);
  background: var(--ih-white);
  color: var(--ih-midnight);
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list strong {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 450;
}

.check-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.gallery-section {
  padding: 76px 0;
  background: var(--ih-bg-surface-warm);
}

.ba-grid {
  display: grid;
  gap: 14px;
}

.ba-grid figure {
  margin-bottom: 0;
  border: 1px solid var(--ih-border-primary);
  background: var(--ih-white);
}

.ba-grid figure div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 3px;
}

.ba-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ba-grid figcaption {
  padding: 12px;
  color: var(--ih-text-secondary);
  font-size: 13px;
}

.quote-card {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.quote-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

blockquote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  padding: 28px;
}

blockquote img {
  margin-bottom: 18px;
}

blockquote p {
  margin-bottom: 18px;
  font-size: clamp(24px, 6vw, 42px);
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

blockquote footer {
  color: var(--ih-text-secondary);
}

.logo-section {
  text-align: center;
}

.logo-section .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.logo-section h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--ih-border-primary);
  background: var(--ih-border-primary);
}

.logo-grid img {
  width: 100%;
  height: 74px;
  padding: 22px;
  background: var(--ih-white);
  object-fit: contain;
}

.faq-list details {
  padding: clamp(22px, 2.5vw, 30px);
}

.faq-list summary {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 20px;
  font-weight: 450;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "";
  flex: 0 0 0.72em;
  width: 0.72em;
  height: 0.72em;
  margin-top: 0.18em;
  background: currentColor;
  clip-path: polygon(16% 0, 100% 50%, 16% 100%);
  transform-origin: 50% 50%;
}

.faq-list details[open] summary::before {
  transform: rotate(90deg);
}

.faq-list p {
  margin: 12px 0 0 calc(0.72em + 12px);
  font-size: 16px;
}

.final-cta {
  margin-bottom: 52px;
  padding: 34px 24px;
  background: var(--ih-midnight);
  color: var(--ih-white);
  text-align: center;
}

.final-cta .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.74);
}

.final-cta .button {
  width: 100%;
  max-width: 420px;
  border-color: var(--ih-white);
  background: var(--ih-white);
  color: var(--ih-midnight);
}

.final-cta > span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 32px var(--gutter) 96px;
  border-top: 1px solid var(--ih-border-primary);
  color: var(--ih-text-secondary);
  font-size: 13px;
}

.site-footer img {
  width: 174px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: var(--ih-text-secondary);
  text-decoration-color: var(--ih-border-primary);
}

.mobile-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: grid;
  gap: 6px;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--ih-border-primary);
  background: rgba(251, 250, 248, 0.96);
  text-align: center;
  backdrop-filter: blur(14px);
}

.mobile-sticky .button {
  min-height: 50px;
}

.mobile-sticky span {
  color: var(--ih-text-secondary);
  font-size: 12px;
}

.iab-modal[hidden] {
  display: none;
}

.iab-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: end center;
  padding: 18px;
}

.iab-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 17, 36, 0.72);
}

.iab-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--ih-midnight);
  background: var(--ih-white);
  box-shadow: 4px 4px 0 var(--ih-neon);
}

.iab-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--ih-border-primary);
  background: var(--ih-white);
  color: var(--ih-midnight);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.iab-card h2 {
  padding-right: 28px;
  font-size: 34px;
}

.iab-card p {
  color: var(--ih-text-secondary);
}

.iab-steps {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--ih-border-primary);
  background: var(--ih-bg-surface-warm);
}

.iab-steps strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 450;
}

.iab-steps ol {
  margin: 0;
  padding-left: 20px;
  color: var(--ih-text-secondary);
}

.iab-steps li + li {
  margin-top: 8px;
}

@media (min-width: 560px) {
  .header-cta {
    display: inline-flex;
  }

  .brand img {
    width: 196px;
  }

  .hero-actions {
    grid-template-columns: auto 1fr;
    align-items: center;
    max-width: none;
  }

  .proof-bar,
  .steps,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-card {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .quote-photo {
    height: 100%;
    aspect-ratio: auto;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding-bottom: 32px;
  }

  .mobile-sticky {
    display: none;
  }

  .iab-modal {
    place-items: center;
  }
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    min-height: calc(100vh - 68px);
    padding: 64px 0 76px;
  }

  .hero-visual {
    padding-bottom: 56px;
  }

  .proof-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dark-grid {
    grid-template-columns: 1fr 0.78fr;
    align-items: center;
    padding: 96px 0;
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .ba-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .final-cta {
    padding: 68px;
  }
}

@media (min-width: 1100px) {
  h1 {
    font-size: 92px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
