@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/fraunces-600.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/fraunces-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
}

:root {
  --void: #050108;
  --radial-top: #1a0515;
  --surface: #15131a;
  --surface-2: #1e1b24;
  --surface-input: #1a1720;
  --text: #fbf3ec;
  --text-dim: rgba(234, 219, 207, 0.6);
  --text-secondary: rgba(234, 219, 207, 0.75);
  --text-faint: rgba(234, 219, 207, 0.4);
  --pink: #e3134f;
  --pink-soft: #ff6e92;
  --border: rgba(255, 255, 255, 0.08);
  --hairline: rgba(255, 255, 255, 0.07);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  background-image: radial-gradient(140% 60% at 50% 0%, var(--radial-top) 0%, var(--void) 70%);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main {
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

main.lp {
  max-width: none;
  margin: 0;
  padding: 0;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Nav ===== */
header.site {
  padding: 24px 0;
}

header.site .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}

header.site nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

header.site nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
}

header.site nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text) !important;
  font-weight: 500;
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 96px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-faint);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 17ch;
}

.hero .sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ===== Waitlist form ===== */
.waitlist {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}

.waitlist input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-input);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.waitlist input::placeholder {
  color: var(--text-dim);
}

.waitlist input:focus {
  border-color: rgba(227, 19, 79, 0.5);
}

.waitlist button {
  padding: 15px 26px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #e3134f, #ff3d6a);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.25);
  color: #fbf3ec;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.waitlist button:hover {
  filter: brightness(1.08);
}

.waitlist button:disabled {
  opacity: 0.6;
  cursor: default;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.form-note a {
  color: var(--text-faint);
}

.form-msg {
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-msg.ok {
  color: var(--pink-soft);
}

.form-msg.err {
  color: #ff6e6e;
}

/* ===== Value trio ===== */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.value-card .icon {
  width: 26px;
  height: 26px;
  color: var(--pink-soft);
}

.value-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.value-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
}

/* ===== Section headings ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
}

/* ===== Screenshots ===== */
.shots {
  padding-top: 72px;
  padding-bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.shots-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 56px;
}

.phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.device {
  width: 260px;
  padding: 10px;
  background: #0b0a0f;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  overflow: hidden;
}

.phone-col.tall .device {
  width: 280px;
}

.device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.shot-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.shots-dots {
  display: none;
  gap: 10px;
}

.shots-dots .dot {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.shots-dots .dot::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.shots-dots .dot.active::after {
  background: var(--pink);
}

/* ===== Luna ===== */
.luna {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.luna-portrait {
  position: relative;
  width: 400px;
  height: 480px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  border-top: 1.5px solid rgba(255, 255, 255, 0.25);
}

.luna-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luna-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 201, 138, 0.5), rgba(21, 38, 62, 0.5));
  mix-blend-mode: soft-light;
  opacity: 0.5;
}

.luna-copy {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.luna-copy .kicker {
  color: var(--pink-soft);
}

.luna-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
}

.luna-copy p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.others {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.others .sil {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
  border: 1px solid var(--hairline);
}

.others span {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-left: 4px;
}

/* ===== Second CTA ===== */
.cta2 {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 88px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.cta2 .sub {
  color: var(--text-secondary);
  max-width: 480px;
}

.cta2 .waitlist input {
  background: var(--void);
}

/* ===== Article (SEO pages) ===== */
.hero.compact {
  padding: 64px 24px 52px;
}

.hero.compact h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 20ch;
}

.split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.split .col-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
}

.split p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.split p a {
  color: var(--pink-soft);
}

.split .device {
  width: 240px;
  flex-shrink: 0;
}

.pull {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 24px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.pull blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: var(--text);
}

.pull cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--pink-soft);
}

.learnbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  padding: 26px 24px 0;
  font-size: 0.82rem;
}

.learnbar .lm-label {
  letter-spacing: 0.18em;
  color: var(--text-faint);
  font-size: 0.72rem;
}

.learnbar a {
  color: var(--text-dim);
  text-decoration: none;
  padding: 8px 2px;
  display: inline-block;
}

.learnbar a:hover {
  color: var(--text);
}

.learnbar a.current {
  color: var(--text);
  pointer-events: none;
}

/* ===== Trust badges ===== */
.trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 44px;
  padding-top: 34px;
  padding-bottom: 6px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-dim);
  font-size: 0.84rem;
}

.trust-item .t-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.faq-list {
  width: 100%;
  max-width: 760px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.faq-item a {
  color: var(--pink-soft);
}

/* ===== Footer ===== */
footer.site {
  border-top: 1px solid var(--hairline);
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  font-size: 0.85rem;
  color: var(--text-dim);
}

footer.site .f-brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
}

footer.site nav {
  display: flex;
  gap: 24px;
}

footer.site a {
  color: var(--text-dim);
  text-decoration: none;
}

footer.site a:hover {
  color: var(--text);
}

footer.site .copy {
  color: var(--text-faint);
}

/* ===== Legal / content pages ===== */
main h1 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

main h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--text);
}

main p,
main li {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

main p + p {
  margin-top: 12px;
}

main ul {
  padding-left: 22px;
  margin: 12px 0;
}

main li {
  margin-bottom: 6px;
}

main a {
  color: var(--pink-soft);
}

main strong {
  color: var(--text);
  font-weight: 600;
}

.meta {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 32px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .values {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .shots-row {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .shots-row::-webkit-scrollbar {
    display: none;
  }

  .shots-row .phone-col {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .shots-dots {
    display: flex;
  }

  .luna {
    flex-direction: column;
    gap: 36px;
    text-align: left;
  }

  .split {
    flex-direction: column;
    gap: 32px;
  }

  .split.rev {
    flex-direction: column-reverse;
  }

  .luna-portrait {
    width: min(400px, 100%);
    height: 400px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 56px 20px 48px;
  }

  .waitlist {
    flex-direction: column;
  }

  .waitlist button {
    width: 100%;
  }

  header.site nav a:not(.nav-cta) {
    display: none;
  }

  .device {
    width: 250px;
  }

  footer.site {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
