/* Marketing type: self-hosted Satoshi woff2, matching the app shell. */
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/satoshi-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/fonts/satoshi-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/fonts/satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: #0a0a09;
  --surface: #141412;
  --surface-raised: #1d1d1a;
  --ink: #f2f0e8;
  --muted: #b3afa4;
  --line: rgba(242, 240, 232, 0.14);
  --pink: #ff3d6e;
  --cream: #eadfcc;
  --display: "Satoshi", "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, sfmono-regular, menlo, consolas, monospace;
  font-family: var(--display);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 61, 110, 0.12), transparent 28rem),
    var(--background);
  color: var(--ink);
  line-height: 1.5;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 2px solid #ff87a5;
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 24px;
  width: fit-content;
  max-width: min(1080px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(29, 29, 26, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-header nav,
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-header nav {
  justify-content: center;
  gap: 4px;
  color: #d2cdc5;
  font-size: 0.88rem;
  font-weight: 500;
}

.site-header nav a {
  padding: 8px 12px;
  border-radius: 999px;
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.site-header nav a:hover,
footer nav a:hover {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 12px 34px rgba(255, 61, 110, 0.2);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

main {
  overflow: hidden;
}

.hero,
.highlights,
.content,
.models,
.proof,
.faq,
.closing,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  min-height: 690px;
  padding: 86px 0 70px;
}

.eyebrow,
.section-heading > span,
.closing > span,
.section-number {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 14ch;
  margin-top: 18px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 58ch;
  margin-bottom: 0;
  color: #c8c2b9;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.notice {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 3px solid var(--pink);
  background: rgba(255, 61, 110, 0.08);
  color: #d9d3ca;
  font-size: 0.9rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  content: "";
}

.hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  font-size: 0.82rem;
  font-weight: 700;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.highlights article {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.highlights article:last-child {
  border-right: 0;
}

.highlights h2 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.highlights p,
.content-section p,
.model-card-copy > span,
.faq p,
footer p {
  color: var(--muted);
}

.highlights p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.content {
  padding: 110px 0 40px;
}

.content-section {
  display: grid;
  grid-template-columns: 100px minmax(0, 760px);
  gap: 42px;
  justify-content: center;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.content-section-alt {
  grid-template-columns: 100px minmax(0, 760px);
}

.section-copy h2,
.section-heading h2,
.closing h2 {
  margin-top: 12px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  text-wrap: balance;
}

.section-copy p {
  font-size: 1.03rem;
  line-height: 1.75;
}

.section-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.section-copy li {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.models,
.proof,
.faq {
  padding: 90px 0;
}

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

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

.model-card,
.proof figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-raised);
}

.model-card img,
.proof figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.model-card-copy {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.model-card-copy small {
  color: var(--pink);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-card-copy strong {
  font-size: 1.2rem;
}

.model-card-copy > span {
  font-size: 0.84rem;
  line-height: 1.5;
}

.proof {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  background: var(--cream);
  color: #1b1815;
}

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

.proof figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  background: #111;
}

.proof figure img {
  height: 100%;
  aspect-ratio: auto;
}

.proof figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.faq-list {
  counter-reset: faq;
  border-top: 1px solid var(--line);
}

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

.faq summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  padding: 24px 4px;
  counter-increment: faq;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  list-style: none;
  transition: color 160ms ease;
}

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

.faq summary::before {
  color: var(--pink);
  content: counter(faq, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.faq summary::after {
  color: var(--muted);
  content: "+";
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq summary:hover {
  color: #fff;
}

.faq details p {
  max-width: 70ch;
  margin-left: 66px;
  padding: 0 4px 24px;
  line-height: 1.7;
}

.closing {
  margin-block: 40px 100px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 0, rgba(255, 61, 110, 0.2), transparent 40%),
    var(--surface);
}

.closing h2 {
  max-width: 16ch;
  margin-top: 14px;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  color: #d1ccc4;
}

footer p {
  margin: 0;
  font-size: 0.82rem;
}

footer nav {
  justify-content: flex-end;
  font-size: 0.8rem;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
  }

  .highlights,
  .model-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlights article:nth-child(2) {
    border-right: 0;
  }

  .highlights article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .highlights,
  .content,
  .models,
  .faq,
  .closing,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .highlights,
  .model-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .highlights article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .highlights article:last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .content {
    padding-top: 70px;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proof {
    padding-inline: 14px;
  }

  .closing {
    padding: 34px 24px;
  }
}

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

  .nav-cta,
  .button {
    transition: none;
  }
}
