:root {
  --ink: #080712;
  --ink-soft: #100d1f;
  --panel: rgba(25, 20, 42, 0.72);
  --panel-solid: #171326;
  --cream: #f4eddf;
  --muted: #aaa2b8;
  --gold: #c7a56b;
  --gold-light: #e4cb98;
  --orchid: #9a75ca;
  --line: rgba(244, 237, 223, 0.13);
  --line-strong: rgba(199, 165, 107, 0.38);
  --radius: 22px;
  --shadow: 0 30px 80px rgba(3, 2, 10, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 8%, rgba(154, 117, 202, 0.16), transparent 30rem),
    radial-gradient(circle at 10% 35%, rgba(199, 165, 107, 0.09), transparent 28rem),
    var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

section {
  position: relative;
  padding: 112px 0;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -.035em;
}

h2 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-head {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-head > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.disclaimer-banner {
  position: relative;
  z-index: 52;
  padding: 8px 20px;
  color: #d8cfe6;
  border-bottom: 1px solid rgba(154, 117, 202, .22);
  background: #0e0a1b;
  font-size: .69rem;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(8, 7, 18, .72);
  backdrop-filter: blur(22px);
  transition: border-color .3s ease, background .3s ease;
}

header.scrolled {
  border-color: var(--line);
  background: rgba(8, 7, 18, .92);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  white-space: nowrap;
}

.logo img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.logo span {
  color: var(--gold-light);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.nav-links a,
.footer-links a,
.footer-bottom a {
  color: #bbb3c6;
  font-size: .78rem;
  letter-spacing: .05em;
  transition: color .2s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform .25s ease;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-3px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #17101a;
  background: var(--gold-light);
  box-shadow: 0 12px 32px rgba(199, 165, 107, .14);
}

.btn-primary:hover {
  background: #f1dba9;
}

.btn-ghost,
.btn-outline-purple {
  color: var(--cream);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.025);
}

.btn-outline-purple {
  border-color: rgba(154, 117, 202, .52);
}

.btn-ghost:hover,
.btn-outline-purple:hover {
  border-color: var(--gold-light);
  background: rgba(255,255,255,.06);
}

.hero {
  display: grid;
  min-height: calc(100vh - 112px);
  padding: 70px 0 48px;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(8,7,18,.96) 0%, rgba(8,7,18,.62) 45%, rgba(8,7,18,.25) 74%, rgba(8,7,18,.82) 100%),
    url("img/img3.jpg") center 18% / cover no-repeat;
  filter: saturate(.8) contrast(1.04);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  content: "";
  background: linear-gradient(to top, var(--ink), transparent);
}

.hero-glow {
  position: absolute;
  top: 15%;
  right: 10%;
  width: min(45vw, 620px);
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(228, 203, 152, .23);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(154,117,202,.1);
  animation: breathe 7s ease-in-out infinite;
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  text-align: left;
}

.hero .eyebrow {
  justify-content: flex-start !important;
}

.hero h1 {
  max-width: 950px;
  margin: 0 0 24px;
  font-size: clamp(4rem, 11vw, 9.8rem);
  line-height: .82;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.hero h1::first-letter {
  color: var(--gold-light);
}

.hero-sub {
  max-width: 610px;
  margin-bottom: 32px;
  color: #c2bacb;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1030px;
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-cell {
  position: relative;
  padding: 22px 20px 20px 0;
}

.stat-cell:not(:last-child)::after {
  position: absolute;
  top: 22%;
  right: 16px;
  width: 1px;
  height: 56%;
  content: "";
  background: var(--line);
}

.stat-num {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1;
}

.stat-label {
  max-width: 130px;
  color: #968da4;
  font-size: .62rem;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-grid,
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.about-frame {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 180px 180px 20px 20px;
  box-shadow: var(--shadow);
}

.about-frame::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(244,237,223,.22);
  border-radius: inherit;
}

.quote {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  margin: 0;
  padding: 25px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.45;
  border: 1px solid rgba(244,237,223,.15);
  border-radius: 14px;
  background: rgba(8,7,18,.74);
  backdrop-filter: blur(14px);
}

.about-text p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 300;
}

.about-text strong {
  color: var(--cream);
  font-weight: 500;
}

.analytics-grid,
.services-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.chart-card,
.service-card,
.why-card,
.aud-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}

.chart-card {
  grid-column: span 3;
  min-height: 290px;
  padding: 28px;
  text-align: center;
}

.chart-card > p,
.aud-card > p {
  color: var(--muted);
  font-size: .77rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.donut-wrap {
  position: relative;
  display: grid;
  width: 164px;
  margin: 26px auto 0;
  place-items: center;
}

.donut-wrap svg {
  width: 100%;
  transform: rotate(-90deg);
}

.donut-track,
.donut-fill {
  fill: none;
  stroke-width: 6;
}

.donut-track {
  stroke: rgba(255,255,255,.08);
}

.donut-fill {
  stroke-linecap: round;
  stroke-dasharray: 390;
  stroke-dashoffset: 390;
  transition: stroke-dashoffset 1.5s cubic-bezier(.22,1,.36,1);
}

.donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.chart-num {
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.aud-card {
  padding: 32px;
}

.aud-card .big {
  color: var(--gold-light);
  font-family: "Fraunces", serif;
  font-size: 3.4rem;
  line-height: 1;
}

.bar-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  color: var(--muted);
  font-size: .75rem;
}

.bar-track {
  height: 5px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
}

.bar-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orchid), var(--gold-light));
  transition: width 1.25s cubic-bezier(.22,1,.36,1);
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.social-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  font-size: .75rem;
  transition: border-color .2s ease, transform .2s ease;
}

.social-pill:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(199,165,107,.1);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 18px;
}

.media-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.media-card:nth-child(2) {
  transform: translateY(38px);
}

.media-card.square {
  min-height: 0;
  aspect-ratio: 1;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1), filter .7s ease;
}

.media-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.15);
}

.overlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(8,7,18,.73);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.media-cta {
  margin-top: 58px;
  text-align: center;
}

.service-card,
.why-card {
  grid-column: span 4;
  min-height: 290px;
  padding: 34px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(199,165,107,.08), rgba(154,117,202,.04));
}

.service-card:nth-child(2),
.service-card:nth-child(5),
.why-card:nth-child(2) {
  transform: translateY(28px);
}

.service-card:nth-child(2):hover,
.service-card:nth-child(5):hover,
.why-card:nth-child(2):hover {
  transform: translateY(21px);
}

.service-num {
  display: block;
  margin-bottom: 70px;
  color: var(--gold-light);
  font-size: .7rem;
  letter-spacing: .12em;
}

.service-card p,
.why-card p {
  color: var(--muted);
  font-size: .9rem;
}

.why-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 68px;
  color: var(--gold-light);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: "Fraunces", serif;
  place-items: center;
}

.faq-item {
  max-width: 900px;
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 23px 0;
  color: var(--cream);
  border: 0;
  background: transparent;
  font-family: "Fraunces", serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  color: var(--gold-light);
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform .25s ease;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--muted);
  transition: grid-template-rows .35s ease;
}

.faq-a > * {
  overflow: hidden;
}

.faq-a p {
  max-width: 740px;
  margin-bottom: 24px;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.contact-info > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: .9rem;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--line-strong);
}

form {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #b8afc3;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: rgba(8,7,18,.58);
  transition: border-color .2s ease, background .2s ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(8,7,18,.82);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #70697b;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--gold-light);
  font-size: .82rem;
}

.submit-btn[disabled] {
  cursor: wait;
  opacity: .6;
}

.page-hero {
  padding: 100px 0 64px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.legal-body {
  max-width: 840px;
}

.legal-updated {
  display: inline-block;
  margin-bottom: 40px;
  padding: 7px 12px;
  color: var(--gold-light);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-body h2 {
  margin-top: 55px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.legal-body h3 {
  margin-top: 34px;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

.legal-body a {
  color: var(--gold-light);
  border-bottom: 1px solid var(--line-strong);
}

footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(3,2,9,.5);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

footer .disclaimer {
  max-width: 920px;
  margin: 40px 0;
  color: #777080;
  font-size: .71rem;
}

.footer-bottom {
  padding-top: 24px;
  color: #777080;
  border-top: 1px solid var(--line);
  font-size: .7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes breathe {
  0%, 100% { transform: scale(.96); opacity: .48; }
  50% { transform: scale(1.04); opacity: .82; }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    position: absolute;
    top: 82px;
    right: 24px;
    left: 24px;
    display: grid;
    gap: 0;
    padding: 10px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(14,10,27,.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open a:last-child {
    border-bottom: 0;
  }

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

  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .about-frame {
    min-height: 540px;
  }

  .chart-card {
    grid-column: span 6;
  }

  .social-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .why-card {
    grid-column: span 6;
  }
}

@media (max-width: 680px) {
  .wrap,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  section {
    padding: 82px 0;
  }

  nav {
    min-height: 72px;
  }

  .logo {
    font-size: .94rem;
  }

  .logo img {
    width: 34px;
    height: 34px;
  }

  .nav-links.open {
    top: 72px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
    line-height: .88;
    overflow-wrap: anywhere;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 52px;
  }

  .stat-cell:nth-child(5) {
    grid-column: 1 / -1;
  }

  .stat-cell::after {
    display: none;
  }

  .about-frame {
    min-height: 470px;
    border-radius: 120px 120px 18px 18px;
  }

  .analytics-grid,
  .services-grid,
  .why-grid,
  .audience-grid,
  .media-grid,
  .social-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .chart-card,
  .service-card,
  .why-card {
    grid-column: 1;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(5),
  .why-card:nth-child(2),
  .media-card:nth-child(2) {
    transform: none;
  }

  .media-card {
    min-height: 380px;
  }

  .field.full {
    grid-column: 1;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
