:root {
  --ink: #111113;
  --muted: #68686f;
  --paper: #faf8f3;
  --soft: #e6e8ec;
  --line: #dfe1e6;
  --accent: #d82f4b;
  --accent-dark: #9f1f35;
  --lilac: #c9b8ff;
  --lilac-dark: #725cc7;
  --cream: #ffffff;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(31, 27, 22, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --scroll: 0;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.dark-home {
  background: #0c0a12;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: rgba(250, 248, 243, 0.72);
  backdrop-filter: blur(18px);
}

.dark-header {
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 8, 16, 0.74);
}

.dark-header .brand-logo {
  filter: invert(1) brightness(3);
}

.dark-header .nav {
  color: rgba(255, 255, 255, 0.7);
}

.dark-header .header-cta {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #d6a7ff, #f2a3d2);
  color: #130d1c;
  box-shadow: 0 16px 46px rgba(214, 167, 255, 0.28);
}

.dark-header .header-cta span {
  margin-left: 10px;
}

.brand,
.nav,
.header-cta,
.button,
.intro-item,
.feature-card,
.steps article,
.beta-panel,
.lead-form,
.report-preview {
  border-radius: 8px;
}

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

.brand-logo {
  display: block;
  width: 142px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(17, 17, 19, 0.7);
  font-size: 0.86rem;
  font-weight: 750;
  text-transform: uppercase;
}

.header-cta {
  padding: 11px 17px;
  border: 1px solid rgba(17, 17, 19, 0.12);
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta:hover {
  background: var(--accent);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px clamp(22px, 4vw, 58px) 70px;
  color: var(--ink);
  background: var(--paper);
}

.dark-hero {
  isolation: isolate;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  min-height: 100svh;
  padding: 130px clamp(22px, 4vw, 58px) 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 184, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(216, 47, 75, 0.16), transparent 30%),
    linear-gradient(135deg, #090811 0%, #14101e 52%, #090811 100%);
}

.dark-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 76%);
  content: "";
}

.dark-hero .hero-content {
  width: 100%;
  max-width: 680px;
  transform: none;
}

.dark-hero .hero-kicker {
  border-color: rgba(242, 163, 210, 0.28);
  background: rgba(242, 163, 210, 0.16);
  color: #f5c7e7;
}

.dark-hero h1 {
  max-width: 720px;
  color: #f7d6e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.4vw, 8.2rem);
  font-weight: 500;
  line-height: 0.92;
  text-transform: none;
}

.dark-hero .hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.dark-hero .button.primary {
  min-height: 70px;
  width: min(100%, 520px);
  background: linear-gradient(135deg, #b994ff, #f3a1d1);
  color: #130d1c;
  font-size: 1.18rem;
  box-shadow: 0 22px 70px rgba(214, 167, 255, 0.32);
}

.dark-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.dark-hero .hero-meta span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.hero-icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  margin: 36px 0 30px;
}

.hero-icon-row div {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-icon-row div:last-child {
  border-right: 0;
}

.hero-icon-row span {
  color: #d6a7ff;
  font-size: 1.9rem;
}

.hero-icon-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.trust-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 16px;
  width: min(100%, 600px);
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-row small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trust-row strong {
  display: block;
  margin-top: 6px;
  color: #f5d2e8;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 700;
}

.report-dashboard {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(18, 14, 27, 0.82);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-top em {
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(242, 163, 210, 0.22);
  color: #ffd0eb;
  font-style: normal;
}

.profile-card,
.dashboard-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.profile-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 18px;
  padding: 16px;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
  object-position: 58% 18%;
}

.profile-card h2 {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.profile-card p,
.dashboard-grid p,
.dashboard-grid li {
  color: rgba(255, 255, 255, 0.68);
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.profile-metrics span {
  display: block;
  padding: 14px;
  border-radius: 999px;
  background: rgba(201, 184, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.profile-metrics strong {
  color: var(--white);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dashboard-grid article {
  min-height: 172px;
  padding: 18px;
}

.dashboard-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.dashboard-grid strong {
  color: #f5d2e8;
  font-size: 1.1rem;
}

.mini-palette {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.mini-palette span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--swatch);
}

.dashboard-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% center;
  transform: scale(calc(1 + (var(--scroll) * 0.00004)));
  transform-origin: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 1), rgba(250, 248, 243, 1) 34%, rgba(250, 248, 243, 0.72) 48%, rgba(250, 248, 243, 0.04) 72%),
    linear-gradient(0deg, rgba(250, 248, 243, 0.22), rgba(250, 248, 243, 0) 44%);
}

.hero-content {
  position: relative;
  display: grid;
  justify-items: start;
  width: min(620px, 100%);
  max-width: 620px;
  transform: translateY(calc(var(--scroll) * -0.04px));
}

.hero-load {
  opacity: 0;
  transform: translateX(-72px);
  animation: heroLoadIn 1400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-load:nth-child(2) {
  animation-delay: 260ms;
}

.hero-load:nth-child(3) {
  animation-delay: 540ms;
}

.hero-load:nth-child(4) {
  animation-delay: 820ms;
}

.hero-load:nth-child(5) {
  animation-delay: 1100ms;
}

.hero-load:nth-child(6) {
  animation-delay: 1380ms;
}

.hero-load:nth-child(7) {
  animation-delay: 1660ms;
}

.hero-load:nth-child(8) {
  animation-delay: 1940ms;
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 12px;
  border: 1px solid rgba(17, 17, 19, 0.12);
  border-radius: 999px;
  background: rgba(250, 248, 243, 0.54);
  color: rgba(17, 17, 19, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lilac-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(17, 17, 19, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 13px 19px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover {
  background: var(--accent);
}

.button.secondary {
  border: 1px solid rgba(17, 17, 19, 0.18);
  color: var(--ink);
  background: rgba(250, 248, 243, 0.54);
  backdrop-filter: blur(10px);
}

.button.full {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.hero-meta span {
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 19, 0.12);
  border-radius: 999px;
  background: rgba(250, 248, 243, 0.58);
  color: rgba(17, 17, 19, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-meta.hero-load span {
  opacity: 0;
  transform: translateX(-22px);
  animation: heroMetaIn 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-meta.hero-load span:nth-child(1) {
  animation-delay: 1260ms;
}

.hero-meta.hero-load span:nth-child(2) {
  animation-delay: 1440ms;
}

.hero-meta.hero-load span:nth-child(3) {
  animation-delay: 1620ms;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.impact-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(8px, 1vw, 14px);
  padding: clamp(58px, 10vw, 120px) 0;
  border-block: 1px solid rgba(17, 17, 19, 0.08);
  background: var(--ink);
  color: var(--paper);
}

.impact-strip span {
  display: block;
  width: max-content;
  padding-inline: clamp(18px, 6vw, 84px);
  font-size: clamp(4.8rem, 15vw, 15rem);
  font-weight: 950;
  line-height: 0.78;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-18vw);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.impact-strip span:nth-child(2) {
  color: var(--lilac);
}

.impact-strip span:nth-child(3) {
  color: var(--accent);
}

.impact-word.from-right {
  justify-self: end;
  transform: translateX(18vw);
}

.impact-word.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.intro-item {
  min-height: 142px;
  padding: 30px clamp(18px, 4vw, 46px);
  border-top: 1px solid rgba(17, 17, 19, 0.1);
  background: var(--paper);
  color: var(--ink);
}

.intro-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.intro-item span {
  color: var(--muted);
  line-height: 1.5;
}

.section,
.split-section,
.beta-section,
.form-section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.dark-home .section-heading {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(14, 11, 22, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.dark-home .section-heading h2,
.dark-home .beta-section h2,
.dark-home .form-copy h2 {
  color: #fff7fb;
  text-shadow: 0 1px 20px rgba(214, 167, 255, 0.18);
}

.section-heading p,
.split-copy p,
.beta-section p,
.form-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.dark-home .section-heading p,
.dark-home .beta-section p,
.dark-home .form-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.dark-home .eyebrow.dark {
  color: #f3a1d1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.audience-grid,
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.audience-grid article,
.photo-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.dark-home .audience-grid article,
.dark-home .photo-grid article,
.dark-home .feature-card,
.dark-home .steps article,
.dark-home .faq-list details {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.065);
  color: var(--white);
}

.dark-home .audience-grid p,
.dark-home .photo-grid p,
.dark-home .feature-card p,
.dark-home .steps p,
.dark-home .faq-list p {
  color: rgba(255, 255, 255, 0.7);
}

.dark-home .feature-number,
.dark-home .photo-grid span {
  color: #f3a1d1;
}

.audience-grid h3,
.photo-grid h3 {
  font-size: 1.25rem;
}

.audience-grid p,
.photo-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.photo-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--lilac-dark);
  font-weight: 850;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index, 0) * 80ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.float-card.is-visible {
  animation: floatCard 7s ease-in-out 900ms infinite alternate;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 51, 109, 0.35);
  box-shadow: 0 18px 50px rgba(17, 17, 19, 0.09);
}

.feature-number {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--accent);
  font-weight: 850;
}

.feature-card p,
.steps p,
.beta-panel p,
.form-helper {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(226, 51, 109, 0.18), rgba(226, 51, 109, 0) 36%),
    var(--ink);
  color: var(--white);
}

.split-copy .eyebrow {
  color: var(--lilac);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--lilac);
  content: "✓";
  font-weight: 900;
}

.report-preview {
  min-height: 520px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.preview-title {
  margin-bottom: 20px;
  font-size: 1.55rem;
}

.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.palette span {
  display: block;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--swatch);
}

.preview-block,
.preview-row div,
.mini-outfits span {
  background: #dde5e0;
  border-radius: 8px;
}

.preview-block {
  height: 120px;
  margin-bottom: 12px;
}

.preview-section {
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.preview-section strong,
.text-row strong {
  display: block;
  margin-bottom: 6px;
}

.preview-section p,
.text-row span {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.preview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.preview-row div {
  height: 132px;
}

.preview-row.text-row div {
  height: auto;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.mini-outfits {
  display: grid;
  gap: 10px;
}

.mini-outfits span {
  padding: 14px;
  color: var(--accent-dark);
  font-weight: 800;
}

.tinted {
  background: var(--soft);
}

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

.steps article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(169, 76, 61, 0.14);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.beta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: stretch;
}

.dark-home .beta-section {
  background:
    radial-gradient(circle at 82% 30%, rgba(242, 163, 210, 0.12), transparent 30%),
    #0c0a12;
  color: var(--white);
}

.dark-home .beta-section > div:first-child {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(14, 11, 22, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.beta-panel {
  display: grid;
  align-content: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(201, 184, 255, 0.34), rgba(201, 184, 255, 0) 48%),
    var(--ink);
  color: var(--white);
}

.spots-label {
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.beta-panel strong {
  margin: 12px 0;
  font-size: 4.2rem;
  line-height: 0.95;
}

.beta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.faq-section {
  background: var(--paper);
}

.dark-home .section,
.dark-home .faq-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 184, 255, 0.1), transparent 28%),
    #0c0a12;
}

.dark-home .tinted {
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 47, 75, 0.12), transparent 28%),
    #100d18;
}

.dark-home .photo-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(242, 163, 210, 0.11), transparent 28%),
    #0c0a12;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
  background: var(--white);
}

.dark-home .form-section {
  position: relative;
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 184, 255, 0.14), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(242, 163, 210, 0.12), transparent 28%),
    #0c0a12;
  color: var(--white);
}

.dark-home .form-copy {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(14, 11, 22, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.privacy-note {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: var(--cream);
  color: var(--muted);
  line-height: 1.55;
}

.dark-home .privacy-note {
  border-left-color: #f3a1d1;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
}

.dark-home .privacy-note a {
  color: #f3a1d1;
}

.privacy-note a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(31, 27, 22, 0.1);
}

.dark-home .lead-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(18, 14, 27, 0.86);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

label {
  display: grid;
  gap: 8px;
  color: #342d28;
  font-weight: 800;
}

.dark-home label {
  color: rgba(255, 255, 255, 0.86);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.dark-home input,
.dark-home select,
.dark-home textarea {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
}

.dark-home input:focus,
.dark-home select:focus,
.dark-home textarea:focus {
  border-color: rgba(243, 161, 209, 0.72);
  box-shadow: 0 0 0 4px rgba(243, 161, 209, 0.16);
  outline: none;
}

.dark-home input::placeholder,
.dark-home textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.dark-home select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.dark-home .consent {
  color: rgba(255, 255, 255, 0.68);
}

.tally-card {
  align-content: start;
}

.tally-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.tally-card-top strong {
  color: #f3a1d1;
}

.tally-card h3 {
  margin-bottom: 12px;
  color: #fff7fb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
}

.tally-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.tally-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
}

.tally-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.74);
}

.tally-card li::before {
  position: absolute;
  left: 0;
  color: #d6a7ff;
  content: "✦";
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-helper {
  min-height: 22px;
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
}

.legal-page {
  background: var(--paper);
}

.dark-legal {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 184, 255, 0.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(242, 163, 210, 0.14), transparent 30%),
    #0c0a12;
}

.legal-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 130px 18px 80px;
}

.dark-legal .legal-main {
  max-width: 980px;
}

.legal-main h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.dark-legal .legal-main h1 {
  color: #f7d6e9;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.legal-card {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dark-legal .legal-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(18, 14, 27, 0.86);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.legal-card h2 {
  margin: 22px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.dark-legal .legal-card h2 {
  color: #fff7fb;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.dark-legal .legal-card p,
.dark-legal .legal-card li {
  color: rgba(255, 255, 255, 0.76);
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.dark-legal .site-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: #0c0a12;
  color: rgba(255, 255, 255, 0.7);
}

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

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

  .split-section,
  .beta-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .dark-hero {
    grid-template-columns: 1fr;
  }

  .report-dashboard {
    order: 2;
  }

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

  .beta-panel {
    min-height: 250px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .dark-header {
    background: rgba(10, 8, 16, 0.86);
  }

  .brand {
    min-width: 112px;
  }

  .brand-logo {
    width: 118px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding: 390px 18px 48px;
    align-items: end;
  }

  .dark-hero {
    padding: 110px 18px 46px;
  }

  .hero-media {
    inset: 0 0 auto 0;
    height: 420px;
  }

  .hero-media img {
    object-position: 62% center;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(250, 248, 243, 1) 0%, rgba(250, 248, 243, 0.92) 28%, rgba(250, 248, 243, 0.08) 68%),
      linear-gradient(90deg, rgba(250, 248, 243, 0.28), rgba(250, 248, 243, 0.02));
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
    line-height: 0.86;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-content {
    transform: none;
  }

  .hero-meta {
    gap: 6px;
    margin-top: 22px;
  }

  .hero-meta span {
    border-radius: 8px;
    font-size: 0.78rem;
  }

  .hero-icon-row,
  .profile-card,
  .dashboard-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-icon-row div {
    justify-items: start;
    border-right: 0;
    text-align: left;
  }

  .report-dashboard {
    padding: 16px;
    border-radius: 16px;
  }

  .profile-card img {
    max-height: 280px;
  }

  .intro-band,
  .feature-grid,
  .steps,
  .audience-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .impact-strip {
    padding-block: 48px;
  }

  .impact-strip span {
    font-size: clamp(3.6rem, 24vw, 7rem);
  }

  .report-preview {
    min-height: 460px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@keyframes floatCard {
  from {
    transform: translateY(0) rotate(1.2deg);
  }

  to {
    transform: translateY(-10px) rotate(0.4deg);
  }
}

@keyframes heroLoadIn {
  from {
    opacity: 0;
    transform: translateX(-72px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroMetaIn {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .hero-media img,
  .hero-content,
  .impact-strip span,
  .hero-load,
  .reveal-item,
  .float-card.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
