:root {
  --ink: #f7f2ea;
  --ink-strong: #ffffff;
  --night: #0f1017;
  --night-soft: #171923;
  --night-card: #20222e;
  --muted: #b8b4c8;
  --line: rgba(255, 255, 255, 0.13);
  --mint: #67dfbd;
  --mint-dark: #2da985;
  --lilac: #b9a4f4;
  --coral: #ff906f;
  --amber: #f1c96b;
  --paper: #fff8ee;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 4%, rgba(103, 223, 189, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 8%, rgba(255, 144, 111, 0.16), transparent 23rem),
    linear-gradient(180deg, #0f1017 0%, #15151e 44%, #101119 100%);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  content: "";
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body.is-menu-soft .site-header {
  background: rgba(15, 16, 23, 0.88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

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

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

button,
input,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(103, 223, 189, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 80;
  padding: 10px 14px;
  color: #11131b;
  background: var(--mint);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 32px, 1380px);
  min-height: 74px;
  margin: 12px auto 0;
  padding: 10px 12px 10px 18px;
  background: rgba(15, 16, 23, 0.62);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(22px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

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

.brand img,
.footer-brand img {
  width: 108px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav-links a {
  min-height: 38px;
  padding: 9px 13px;
  color: rgba(247, 242, 234, 0.72);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  grid-column: 1 / -1;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  padding: 13px 12px;
  color: rgba(247, 242, 234, 0.85);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.mobile-nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions,
.hero-actions,
.download-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.store-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-radius: 11px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-link {
  padding: 10px 14px;
  color: #0f1017;
  background: var(--mint);
  font-size: 13px;
}

.store-link-dark {
  color: white;
  background: #050507;
}

.store-icon,
.button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.store-link:hover,
.button:hover {
  transform: translateY(-2px);
}

.store-link:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 86px);
  overflow: hidden;
  padding: clamp(74px, 9vw, 122px) 20px clamp(64px, 8vw, 96px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.24;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px) saturate(1.2);
  transform: scale(1.08);
}

.hero::after {
  position: absolute;
  inset: auto -15% -20% -15%;
  height: 44%;
  content: "";
  background: radial-gradient(ellipse at center, rgba(103, 223, 189, 0.2), transparent 62%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Outfit, "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  color: var(--ink-strong);
  font-size: clamp(4.2rem, 9vw, 8.6rem);
  line-height: 0.86;
  font-weight: 900;
}

h2 {
  color: var(--ink-strong);
  font-size: clamp(2.25rem, 5vw, 5.1rem);
  line-height: 0.95;
  font-weight: 900;
}

h3 {
  color: var(--ink-strong);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.02;
  font-weight: 850;
}

.hero-lede {
  max-width: 58ch;
  margin: 28px 0 30px;
  color: rgba(247, 242, 234, 0.78);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.button {
  padding: 14px 18px;
  font-size: 15px;
}

.button-primary {
  color: #101119;
  background: linear-gradient(135deg, var(--mint), #d7ff9f);
  box-shadow: 0 20px 60px rgba(103, 223, 189, 0.18);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
}

.button-light {
  color: #11131b;
  background: white;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signal-row span {
  padding: 8px 10px;
  color: rgba(247, 242, 234, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 750;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.phone-stack {
  position: relative;
  z-index: 2;
  width: min(76vw, 370px);
}

.phone-halo {
  position: absolute;
  inset: 8% 3% 9%;
  background:
    radial-gradient(circle at 50% 30%, rgba(185, 164, 244, 0.48), transparent 58%),
    radial-gradient(circle at 40% 70%, rgba(103, 223, 189, 0.3), transparent 52%);
  border-radius: 44px;
  filter: blur(18px);
  transform: rotate(-5deg);
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5));
}

.match-toast {
  position: absolute;
  right: -8%;
  bottom: 14%;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  width: min(260px, 72vw);
  padding: 14px;
  background: rgba(17, 19, 27, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.match-dot {
  grid-row: span 2;
  width: 13px;
  height: 13px;
  margin-top: 5px;
  background: var(--mint);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(103, 223, 189, 0.14);
}

.match-toast strong {
  color: white;
  font-size: 14px;
}

.match-toast small {
  color: rgba(247, 242, 234, 0.68);
}

.clip-card {
  position: absolute;
  z-index: 1;
  width: 182px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.clip-card video {
  width: 100%;
  aspect-ratio: 478 / 850;
  object-fit: cover;
  border-radius: 18px;
}

.clip-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 9px;
  color: #11131b;
  background: var(--paper);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
}

.clip-card-left {
  left: 0;
  top: 18%;
  transform: rotate(-8deg);
}

.clip-card-right {
  right: 0;
  bottom: 9%;
  transform: rotate(8deg);
}

.proof-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  margin: -16px auto 0;
  padding: 20px;
  background: rgba(255, 248, 238, 0.08);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.proof-band p {
  max-width: 32ch;
  margin: 0;
  color: rgba(247, 242, 234, 0.86);
  font-weight: 800;
}

.proof-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.proof-stats span {
  padding: 12px 13px;
  color: rgba(247, 242, 234, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
}

.proof-stats strong {
  color: white;
}

.story-section,
.friends-section,
.ai-section,
.download-section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.story-section {
  padding: clamp(84px, 10vw, 136px) 0 58px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 540px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.panel-copy {
  padding: clamp(24px, 3vw, 34px);
  padding-bottom: 12px;
}

.story-panel-mint {
  background:
    radial-gradient(circle at 25% 35%, rgba(103, 223, 189, 0.22), transparent 20rem),
    rgba(255, 255, 255, 0.07);
}

.story-phone {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 0 clamp(20px, 3vw, 28px);
}

.story-phone video {
  width: 180px;
  aspect-ratio: 478 / 850;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
  flex-shrink: 0;
}

.story-panel-dark {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 144, 111, 0.18), transparent 18rem),
    #12141d;
}

.panel-index {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--mint);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.story-panel p {
  max-width: 50ch;
  margin: 18px 0 0;
  color: rgba(247, 242, 234, 0.68);
}

.panel-prompts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}

.panel-prompts span {
  width: fit-content;
  padding: 10px 14px;
  color: #11131b;
  background: var(--paper);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.panel-prompts span:nth-child(2) {
  margin-left: 20px;
  background: #dff8ef;
}


.friends-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) 0;
}

.friends-copy p:not(.eyebrow),
.ai-copy p,
.download-section p {
  max-width: 55ch;
  color: rgba(247, 242, 234, 0.7);
  line-height: 1.75;
}

.watch-console {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(220px, 0.7fr);
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.console-header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px 4px;
  color: rgba(247, 242, 234, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.console-header strong {
  color: var(--mint);
}

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

.queue-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  width: 100%;
  min-height: 94px;
  padding: 16px;
  color: rgba(247, 242, 234, 0.72);
  text-align: left;
  background: rgba(15, 16, 23, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: border 180ms ease, background 180ms ease, transform 180ms ease;
}

.queue-item:hover,
.queue-item.is-active {
  background: rgba(103, 223, 189, 0.1);
  border-color: rgba(103, 223, 189, 0.46);
  transform: translateX(2px);
}

.queue-item span {
  grid-row: span 2;
  color: var(--mint);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.queue-item strong {
  color: white;
}

.queue-item small {
  color: rgba(247, 242, 234, 0.56);
}

.console-video {
  overflow: hidden;
  background: #07080d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.console-video video {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.76fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 110px) 0;
}

.ai-phone {
  width: min(100%, 330px);
  justify-self: center;
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.ai-phone video {
  width: 100%;
  aspect-ratio: 478 / 850;
  object-fit: cover;
  border-radius: 28px;
}

.prompt-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.prompt-stack span {
  width: fit-content;
  max-width: 100%;
  padding: 12px 14px;
  color: #11131b;
  background: var(--paper);
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.prompt-stack span:nth-child(2) {
  margin-left: 34px;
  background: #dff8ef;
}

.prompt-stack span:nth-child(3) {
  margin-left: 72px;
  background: #efe6ff;
}

.download-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 56px;
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at 12% 20%, rgba(103, 223, 189, 0.24), transparent 20rem),
    radial-gradient(circle at 90% 12%, rgba(241, 201, 107, 0.18), transparent 18rem),
    #191b25;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.download-section h2 {
  font-size: clamp(2.3rem, 5.5vw, 5.8rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 24px 0 44px;
  color: rgba(247, 242, 234, 0.58);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(247, 242, 234, 0.74);
  font-weight: 700;
}

.site-footer a:hover {
  color: white;
}

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

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-nav-open .mobile-nav {
    display: flex;
  }

  .hero-shell,
  .friends-section,
  .ai-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .hero-actions,
  .signal-row {
    justify-content: center;
  }

  .hero-stage {
    min-height: 590px;
  }

  .friends-copy,
  .ai-copy {
    text-align: center;
  }

  .friends-copy p,
  .ai-copy p {
    margin-inline: auto;
  }

  .download-section,
  .proof-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 20px, 1380px);
    padding: 9px 10px;
  }

  .brand img {
    width: 92px;
  }

  .nav-actions {
    gap: 6px;
  }

  .store-link {
    min-height: 38px;
    padding: 8px 9px;
    font-size: 0;
  }

  .store-icon {
    margin: 0;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 5.6rem);
  }

  .hero {
    min-height: auto;
    padding-inline: 14px;
  }

  .hero-stage {
    min-height: 400px;
  }

  .phone-stack {
    width: min(74vw, 310px);
  }

  .clip-card {
    display: none;
  }

  .match-toast {
    right: -2%;
    bottom: 8%;
  }

  .proof-band,
  .story-section,
  .friends-section,
  .ai-section,
  .download-section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .story-section {
    padding: 64px 0 40px;
  }

  .friends-section {
    padding: 48px 0;
  }

  .ai-section {
    padding: 48px 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-panel {
    height: auto;
    min-height: 420px;
  }

  .story-phone video {
    width: 160px;
  }

  .watch-console {
    grid-template-columns: 1fr;
  }

  .console-video video {
    max-height: 520px;
  }

  .swipe-demo {
    right: 5%;
    width: 88%;
  }

  .prompt-stack span:nth-child(2),
  .prompt-stack span:nth-child(3) {
    margin-left: 0;
  }

  .download-actions,
  .download-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .site-footer,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

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

@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;
  }
}
