:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", monospace;
  --background: #f5f0e6;
  --foreground: #15140f;
  --card: #fffdf7;
  --card-foreground: #15140f;
  --primary: #2f49ff;
  --primary-foreground: #fff;
  --secondary: #f4c849;
  --secondary-foreground: #15140f;
  --muted: #e9e2d5;
  --muted-foreground: #6d685e;
  --accent: #f4c849;
  --accent-foreground: #15140f;
  --border: #1b1a16;
  --ring: #2f49ff;
  --radius: 1rem;
}

.dark {
  --background: #12120f;
  --foreground: #f7f2e8;
  --card: #1d1c18;
  --card-foreground: #f7f2e8;
  --primary: #7790ff;
  --primary-foreground: #0e1022;
  --secondary: #f4c849;
  --secondary-foreground: #15140f;
  --muted: #2d2b26;
  --muted-foreground: #bcb5a7;
  --accent: #f4c849;
  --accent-foreground: #15140f;
  --border: #4a473f;
  --ring: #7790ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: var(--font-geist-sans), Arial, sans-serif; }
a { color: inherit; text-decoration: none; }

.hero {
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 82% 22%, rgba(255,255,255,.55) 0 14%, transparent 14.5%), linear-gradient(115deg, #f5f0e6 0 58%, #f4c849 58% 100%);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(21,20,15,.24);
}

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 13px; }
.nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 650; }
.nav-links a { transition: opacity .2s ease; }
.nav-links a:hover { opacity: .55; }
.nav-cta { justify-self: end; display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid currentColor; border-radius: 999px; padding: 11px 17px; font-size: 14px; font-weight: 750; transition: transform .2s ease, background .2s ease; }
.nav-cta:hover { transform: translateY(-2px); background: #fff; }

.hero-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(400px,.95fr);
  align-items: center;
  gap: 72px;
  min-height: 620px;
  padding: 58px 0 44px;
}

.eyebrow-row { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; margin-bottom: 25px; }
.eyebrow { background: #15140f; color: #fffdf7; border-radius: 999px; padding: 8px 13px; font-family: var(--font-geist-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.verified { display: inline-flex; align-items: center; gap: 6px; color: #2f49ff; font-size: 13px; font-weight: 750; }

h1 { margin: 0; max-width: 720px; font-size: clamp(3.8rem,7.2vw,7rem); line-height: .86; letter-spacing: -.082em; font-weight: 900; }
h1 span { display: block; color: #2f49ff; }
.hero-description { max-width: 630px; margin: 32px 0 0; font-size: clamp(1.05rem,1.5vw,1.27rem); line-height: 1.55; letter-spacing: -.015em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1.5px solid #15140f; border-radius: 999px; padding: 0 22px; font-size: 15px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 4px 5px 0 #15140f; }
.button-primary { color: #fff; background: #2f49ff; }
.button-ghost { background: rgba(255,253,247,.7); }

.hero-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.portrait-frame { width: min(390px,82%); aspect-ratio: 4/5; overflow: hidden; border: 2px solid #15140f; border-radius: 48% 48% 28px 28px; background: #2f49ff; box-shadow: 14px 16px 0 #15140f; transform: rotate(2deg); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 49% 35%; image-rendering: auto; transform: scale(1.02); }
.visual-tag { position: absolute; z-index: 2; border: 2px solid #15140f; box-shadow: 5px 6px 0 #15140f; padding: 10px 16px; font-weight: 850; letter-spacing: -.03em; transform: rotate(-5deg); }
.visual-tag-top { top: 38px; left: 0; background: #fffdf7; }
.visual-tag-bottom { right: -5px; bottom: 68px; color: #fff; background: #2f49ff; transform: rotate(4deg); }
.dragon { position: absolute; right: 12px; top: 48px; font-size: 56px; filter: drop-shadow(4px 5px 0 rgba(21,20,15,.2)); transform: rotate(12deg); }

.stats-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr) minmax(180px,.8fr);
  border: 1.5px solid #15140f;
  border-bottom: 0;
  background: #fffdf7;
}
.stat { padding: 23px 25px; border-right: 1px solid rgba(21,20,15,.25); }
.stat strong { display: block; font-size: clamp(1.7rem,3vw,2.5rem); line-height: 1; letter-spacing: -.06em; }
.stat span { display: block; margin-top: 7px; color: #6d685e; font-size: 12px; }
.stats-note { align-self: center; margin: 0; padding: 22px; color: #6d685e; font-size: 11px; line-height: 1.45; }
.stats-note a { color: #2f49ff; text-decoration: underline; text-underline-offset: 3px; }
.social-at { width: 22px; height: 22px; display: inline-grid; place-items: center; border: 1.5px solid currentColor; border-radius: 7px; font-size: 13px; font-weight: 900; }

.section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-kicker { display: flex; align-items: center; gap: 12px; font-family: var(--font-geist-mono); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.section-kicker::after { content: ''; width: 42px; height: 1px; background: currentColor; opacity: .45; }
.section-kicker span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.section-kicker-light { color: #f5f0e6; }

.ticker { overflow: hidden; border-block: 1.5px solid #15140f; background: #2f49ff; color: #fff; }
.ticker div { width: max-content; padding: 15px 0; font-weight: 900; font-size: 17px; letter-spacing: .04em; word-spacing: .3em; transform: translateX(-3%); }

.about { padding: 125px 0 110px; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; margin-top: 55px; }
.display-copy { margin: 0; font-size: clamp(2.8rem,5vw,5.2rem); line-height: .98; letter-spacing: -.065em; font-weight: 850; }
.display-copy em { color: #2f49ff; font-family: Georgia, serif; font-weight: 500; }
.about-text { padding-bottom: 4px; }
.about-text p { margin: 0 0 20px; font-size: 17px; line-height: 1.7; color: #38362f; }
.about-text strong { color: #15140f; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding-bottom: 4px; border-bottom: 1.5px solid currentColor; color: #2f49ff; font-weight: 800; }
.pillars { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 86px; border: 1.5px solid #15140f; background: #fffdf7; }
.pillar { min-height: 145px; display: flex; flex-direction: column; justify-content: space-between; padding: 21px; border-right: 1px solid rgba(21,20,15,.3); }
.pillar:last-child { border-right: 0; }
.pillar span { font-family: var(--font-geist-mono); font-size: 11px; color: #746f64; }
.pillar strong { max-width: 170px; font-size: 19px; line-height: 1.08; letter-spacing: -.035em; }

.audience-section { background: #15140f; color: #f7f2e8; }
.audience-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: 95px; align-items: center; padding-block: 110px; }
.audience-heading h2 { margin: 36px 0 24px; font-size: clamp(3rem,5.4vw,5.6rem); line-height: .9; letter-spacing: -.075em; }
.audience-heading > p { max-width: 470px; margin: 0; color: #bcb5a7; font-size: 17px; line-height: 1.65; }
.audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.audience-card { min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border: 1px solid #555148; border-radius: 18px; background: #201f1b; }
.audience-card > svg { margin-bottom: auto; }
.audience-card span { color: #aaa396; font-size: 12px; }
.audience-card strong { margin-top: 9px; font-size: clamp(2.2rem,4vw,3.65rem); line-height: 1; letter-spacing: -.07em; }
.audience-card p { margin: 8px 0 0; color: #aaa396; font-size: 12px; line-height: 1.5; }
.audience-card-featured { color: #15140f; background: #f4c849; border-color: #f4c849; transform: rotate(-1deg); }
.audience-card-featured span, .audience-card-featured p { color: #4e421d; }
.audience-card-note { min-height: 130px; grid-column: 1/-1; justify-content: center; background: transparent; }
.audience-card-note p { margin: 0; max-width: 620px; }

.results { padding-block: 120px; }
.results-title-row { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; margin-top: 42px; }
.results-title-row h2 { margin: 0; font-size: clamp(3rem,5.6vw,5.8rem); line-height: .9; letter-spacing: -.075em; }
.results-title-row h2 em { color: #2f49ff; font-family: Georgia, serif; font-weight: 500; }
.results-title-row p { max-width: 470px; margin: 0 0 6px; color: #5c584e; font-size: 16px; line-height: 1.65; }
.results-title-row p strong { color: #15140f; }
.campaign-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 64px; }
.campaign-card { min-height: 520px; display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); overflow: hidden; border: 1.5px solid #15140f; border-radius: 20px; background: #fffdf7; }
.campaign-card-featured { color: #fff; background: #2f49ff; box-shadow: 7px 8px 0 #15140f; transform: translateY(-8px); }
.campaign-proof { position: relative; min-width: 0; margin: 0; overflow: hidden; border-right: 1.5px solid #15140f; background: #0c1115; }
.campaign-proof > span { position: absolute; top: 13px; left: 13px; z-index: 1; padding: 7px 9px; border-radius: 999px; color: #15140f; background: #f4c849; font-family: var(--font-geist-mono); font-size: 9px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; box-shadow: 2px 3px 0 #15140f; }
.campaign-proof img { width: 100%; height: 100%; display: block; object-fit: contain; }
.campaign-copy { min-width: 0; display: flex; flex-direction: column; padding: 25px; }
.campaign-index { font-family: var(--font-geist-mono); font-size: 10px; font-weight: 750; letter-spacing: .08em; opacity: .6; }
.campaign-brand { margin: 16px 0 auto; font-size: 17px; font-weight: 850; line-height: 1.08; }
.campaign-metric strong { display: block; font-size: clamp(2rem,3.3vw,3.45rem); line-height: .95; letter-spacing: -.075em; }
.campaign-metric span { display: block; margin-top: 7px; font-size: 11px; opacity: .65; }
.campaign-footer { display: flex; flex-direction: column; gap: 5px; margin-top: 27px; padding-top: 18px; border-top: 1px solid currentColor; font-size: 11px; opacity: .75; }
.campaign-footer strong { font-size: 1.12em; }
.campaign-source { margin: 18px 0 0; font-size: 9px; line-height: 1.4; opacity: .5; }
.story-proof { display: grid; grid-template-columns: 1.3fr .65fr .65fr; gap: 12px; margin-top: 42px; padding: 28px; border: 1.5px solid #15140f; background: #f4c849; }
.story-proof > div:first-child span { font-family: var(--font-geist-mono); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.story-proof h3 { margin: 14px 0 8px; font-size: clamp(1.8rem,3vw,3rem); line-height: 1; letter-spacing: -.055em; }
.story-proof p { max-width: 570px; margin: 0; color: #584b20; font-size: 12px; line-height: 1.5; }
.story-stat { display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; border-left: 1px solid rgba(21,20,15,.35); }
.story-stat strong { font-size: clamp(2rem,3vw,3.2rem); line-height: 1; letter-spacing: -.065em; }
.story-stat span { max-width: 180px; margin-top: 8px; font-size: 11px; line-height: 1.35; }
.data-period { margin: 13px 0 0; color: #6d685e; font-size: 10px; }

.formats { display: grid; grid-template-columns: .7fr 1.3fr; gap: 85px; padding-block: 120px; }
.formats-heading { position: sticky; top: 42px; align-self: start; }
.formats-heading h2 { margin: 40px 0 22px; font-size: clamp(3rem,5vw,5.3rem); line-height: .9; letter-spacing: -.075em; }
.formats-heading h2 em { color: #2f49ff; font-family: Georgia, serif; font-weight: 500; }
.formats-heading > p { max-width: 410px; color: #5c584e; font-size: 16px; line-height: 1.65; }
.format-list { border-top: 1.5px solid #15140f; }
.format-card { display: grid; grid-template-columns: 42px 48px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1.5px solid #15140f; }
.format-number { padding-top: 5px; font-family: var(--font-geist-mono); font-size: 11px; }
.format-icon { color: #2f49ff; }
.format-symbol { display: grid; place-items: start center; font-size: 25px; line-height: 1; }
.format-card h3 { margin: 0 0 9px; font-size: 24px; letter-spacing: -.045em; }
.format-card p { max-width: 580px; margin: 0; color: #5c584e; line-height: 1.55; }

.why-section { border-block: 1.5px solid #15140f; background: #f4c849; }
.why-grid { display: grid; grid-template-columns: 150px 1fr .75fr; gap: 55px; align-items: center; padding-block: 90px; }
.why-badge { width: 130px; height: 130px; display: grid; place-items: center; border: 2px solid #15140f; border-radius: 50%; text-align: center; font-weight: 950; line-height: 1.05; transform: rotate(-8deg); }
.why-quote { margin: 0; font-size: clamp(2.25rem,4vw,4.1rem); line-height: 1; letter-spacing: -.065em; font-weight: 780; }
.why-quote em { color: #2f49ff; font-family: Georgia, serif; font-weight: 600; }
.why-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(21,20,15,.4); }
.why-list li { display: grid; grid-template-columns: 33px 1fr; gap: 8px; padding: 16px 0; border-bottom: 1px solid rgba(21,20,15,.4); font-size: 13px; font-weight: 700; }
.why-list span { font-family: var(--font-geist-mono); font-size: 10px; }

.contact { padding-block: 110px; }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.25fr .75fr; gap: 65px; align-items: end; min-height: 480px; padding: clamp(36px,6vw,78px); border: 2px solid #15140f; border-radius: 32px; color: #fff; background: #2f49ff; box-shadow: 12px 14px 0 #15140f; }
.contact-card::before { content: ''; position: absolute; width: 420px; height: 420px; right: -190px; top: -200px; border: 70px solid #f4c849; border-radius: 50%; }
.contact-copy, .contact-actions { position: relative; z-index: 1; }
.contact-kicker { display: block; margin-bottom: 24px; font-family: var(--font-geist-mono); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact h2 { margin: 0; font-size: clamp(3.25rem,6vw,6.2rem); line-height: .87; letter-spacing: -.078em; }
.contact h2 em { color: #f4c849; font-family: Georgia, serif; font-weight: 500; }
.contact-copy p { max-width: 650px; margin: 28px 0 0; color: #dce1ff; line-height: 1.6; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.button-light { color: #15140f; background: #fffdf7; }
.contact-email { font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }
.contact-dragon { position: absolute; right: 40px; bottom: -5px; font-size: 92px; opacity: .18; transform: rotate(-12deg); }

.footer { border-top: 1.5px solid #15140f; }
.footer-inner { min-height: 110px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer p { margin: 0; color: #6d685e; font-size: 12px; }
.footer-inner > a:last-child { justify-self: end; display: inline-flex; align-items: center; gap: 5px; color: #2f49ff; font-size: 13px; font-weight: 800; }

@media (max-width: 900px) {
  .hero { background: linear-gradient(155deg,#f5f0e6 0 67%,#f4c849 67% 100%); }
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 54px; }
  .hero-copy { position: relative; z-index: 3; }
  .hero-visual { min-height: 480px; }
  .stats-strip { grid-template-columns: repeat(3,1fr); }
  .stats-note { grid-column: 1/-1; border-top: 1px solid rgba(21,20,15,.2); }
  .about-grid { grid-template-columns: 1fr; gap: 42px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid rgba(21,20,15,.3); }
  .audience-inner { grid-template-columns: 1fr; gap: 55px; }
  .results-title-row { grid-template-columns: 1fr; gap: 32px; }
  .campaign-grid { grid-template-columns: 1fr; }
  .story-proof { grid-template-columns: 1fr 1fr; }
  .story-proof > div:first-child { grid-column: 1/-1; }
  .formats { grid-template-columns: 1fr; gap: 55px; }
  .formats-heading { position: static; }
  .why-grid { grid-template-columns: 120px 1fr; }
  .why-list { grid-column: 1/-1; }
  .contact-card { grid-template-columns: 1fr; min-height: 0; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer p { display: none; }
}

@media (max-width: 600px) {
  .nav { width: min(100% - 28px,1180px); min-height: 72px; }
  .brand span:last-child { display: none; }
  .nav-cta { padding: 9px 13px; font-size: 12px; }
  .hero-grid, .stats-strip { width: min(100% - 28px,1180px); }
  .hero-grid { padding-top: 38px; }
  h1 { font-size: clamp(3.35rem,17vw,5rem); }
  .hero-description { margin-top: 24px; }
  .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .portrait-frame { width: min(310px,78vw); }
  .visual-tag-top { left: -2px; }
  .visual-tag-bottom { right: -1px; }
  .stats-strip { grid-template-columns: 1fr; border-bottom: 1.5px solid #15140f; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(21,20,15,.2); }
  .stats-note { grid-column: auto; border-top: 0; }
  .section-shell { width: min(100% - 28px,1180px); }
  .ticker div { font-size: 14px; }
  .about { padding-block: 82px; }
  .about-grid { margin-top: 42px; }
  .display-copy { font-size: clamp(2.6rem,12vw,4rem); }
  .about-text p { font-size: 15px; }
  .pillars { grid-template-columns: 1fr; margin-top: 58px; }
  .pillar { min-height: 112px; border-right: 0; border-bottom: 1px solid rgba(21,20,15,.3); }
  .pillar:last-child { border-bottom: 0; }
  .audience-inner { padding-block: 82px; }
  .audience-cards { grid-template-columns: 1fr; }
  .audience-card-note { grid-column: auto; }
  .results { padding-block: 82px; }
  .campaign-grid { grid-template-columns: 1fr; }
  .campaign-card { min-height: 0; grid-template-columns: 1fr; }
  .campaign-card-featured { transform: none; }
  .campaign-proof { aspect-ratio: .72; border-right: 0; border-bottom: 1.5px solid #15140f; }
  .campaign-copy { min-height: 300px; }
  .story-proof { grid-template-columns: 1fr; padding: 22px; }
  .story-proof > div:first-child { grid-column: auto; }
  .story-stat { padding: 20px 0 0; border-top: 1px solid rgba(21,20,15,.25); border-left: 0; }
  .formats { padding-block: 82px; }
  .format-card { grid-template-columns: 34px 1fr; gap: 14px; }
  .format-icon { grid-column: 2; }
  .format-card > div { grid-column: 2; }
  .why-grid { grid-template-columns: 1fr; gap: 38px; padding-block: 72px; }
  .why-badge { width: 105px; height: 105px; }
  .why-list { grid-column: auto; }
  .contact { padding-block: 82px; }
  .contact-card { gap: 42px; padding: 36px 24px; border-radius: 24px; box-shadow: 7px 8px 0 #15140f; }
  .contact-card::before { width: 260px; height: 260px; right: -140px; top: -150px; border-width: 45px; }
  .contact h2 { font-size: clamp(3rem,14vw,4.7rem); }
  .footer-inner { min-height: 96px; }
  .footer .brand span:last-child { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
