/* ═════════════════════════════════════════════════════
   Near — Marketing Site
   ═════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #0a0a0a;
  color: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

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

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

ul { list-style: none; }

::selection {
  background: rgba(140, 160, 200, 0.3);
  color: #f5f5f7;
}

/* ── Layout ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  position: relative;
  z-index: 1;
}

.nav { z-index: 100; }
.footer { position: relative; z-index: 1; }

/* Gradient dividers */
.has-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 520px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 122, 153, 0.15), transparent);
}

/* Apple Glass effect */
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ── Typography ── */
.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7a99;
  margin-bottom: 20px;
}

.section-headline {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: #f5f5f7;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 19px;
  color: #6e6e73;
  line-height: 1.55;
  max-width: 520px;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.84);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wordmark {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5f5f7;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #6e6e73;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #f5f5f7;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #f5f5f7;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}


/* ═════════════════════════════════════════════════════
   HERO
   ═════════════════════════════════════════════════════ */

.hero {
  padding: 180px 0 0;
  text-align: center;
  position: relative;
  overflow: visible;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 500px;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(100, 120, 180, 0.07) 0%, transparent 72%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
}

/* Hero brand lockup */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-accent {
  width: 64px;
  height: 64px;
  opacity: 0.75;
}

.hero-wordmark {
  height: 72px;
  width: auto;
  opacity: 0.9;
}

.hero-headline {
  font-size: 76px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.038em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #f5f5f7 30%, #b8b0c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7a99;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 20px;
  color: #86868b;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #86868b;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-feature svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.hero-ios-link {
  color: #6b7a99;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.hero-ios-link:hover {
  color: #8a9cc0;
}

.hero-ios-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #8a9cc0;
  background: rgba(107, 122, 153, 0.1);
  border: 1px solid rgba(107, 122, 153, 0.25);
  border-radius: 100px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-ios-cta:hover {
  background: rgba(107, 122, 153, 0.18);
  border-color: rgba(107, 122, 153, 0.45);
  color: #f5f5f7;
  transform: translateY(-1px);
}

/* App Store Badge */
.badge {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.badge:hover {
  opacity: 0.85;
  transform: scale(0.98);
}

.badge-img {
  height: 48px;
  width: auto;
}

/* iOS requirement note */
.hero-ios {
  margin-top: 20px;
  font-size: 14px;
  color: #86868b;
  font-weight: 500;
  line-height: 1.55;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero device mockup */
.hero-device-wrap {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  padding-bottom: 120px;
}

.hero-device {
  width: 280px;
  background: #111113;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 24px 56px rgba(0, 0, 0, 0.18),
    0 48px 96px -24px rgba(0, 0, 0, 0.15);
}

.hero-device img {
  width: 100%;
  height: auto;
  display: block;
}

.device-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #555558;
  font-size: 13px;
  font-weight: 500;
}

.device-placeholder-icon {
  opacity: 0.4;
}


/* ═════════════════════════════════════════════════════
   SCENARIOS
   ═════════════════════════════════════════════════════ */

.scenarios {
  padding: 20px 0 40px;
}

.scenario {
  padding: 100px 0;
}

.scenario-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7a99;
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid rgba(107, 122, 153, 0.2);
  border-radius: 100px;
}

.scenario-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #f5f5f7;
  margin-bottom: 20px;
}

.scenario-detail {
  font-size: 20px;
  color: #636366;
  font-weight: 500;
  line-height: 1.4;
}


/* ═════════════════════════════════════════════════════
   HOW IT WORKS
   ═════════════════════════════════════════════════════ */

.how {
  padding: 140px 0;
}

.steps {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(107, 122, 153, 0.1);
  color: #6b7a99;
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #f5f5f7;
}

.step-content p {
  font-size: 17px;
  color: #6e6e73;
  line-height: 1.6;
  max-width: 560px;
}

.step-examples {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example-pill {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #86868b;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-style: italic;
}


/* NL typing demo */
.nl-demo {
  margin-top: 24px;
  max-width: 400px;
}

.nl-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  min-height: 48px;
}

.nl-wand {
  flex-shrink: 0;
  color: #6b7a99;
}

.nl-text {
  font-size: 15px;
  color: #f5f5f7;
  font-weight: 500;
  white-space: nowrap;
}

.nl-cursor {
  font-size: 15px;
  color: #6b7a99;
  animation: blink 1s steps(1) infinite;
  font-weight: 300;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.nl-result {
  margin-top: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(107, 122, 153, 0.08) 0%, rgba(107, 122, 153, 0.03) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(107, 122, 153, 0.12);
  border-top-color: rgba(107, 122, 153, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.nl-result.show {
  opacity: 1;
  transform: translateY(0);
}

.nl-result-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.nl-result-row + .nl-result-row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.nl-result-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7a99;
}

.nl-result-value {
  font-size: 14px;
  font-weight: 500;
  color: #f5f5f7;
}

/* Step screenshots */
.step--visual {
  flex-wrap: wrap;
}

.step-screenshot {
  width: 100%;
  margin-top: 24px;
  margin-left: 76px;
  max-width: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 24px 56px rgba(0, 0, 0, 0.18),
    0 48px 96px -24px rgba(0, 0, 0, 0.15);
}

.step-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.step-screenshot-placeholder {
  padding: 80px 24px;
  text-align: center;
  color: #2c2c2e;
  font-size: 13px;
  font-weight: 500;
}


/* ═════════════════════════════════════════════════════
   TESTIMONIALS
   ═════════════════════════════════════════════════════ */

.testimonials {
  padding: 140px 0;
}

.testimonials-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  padding: 36px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.14);
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: #b0b0b4;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #f5f5f7;
}

.testimonial-role {
  font-size: 12px;
  color: #636366;
  margin-top: 1px;
}


/* ═════════════════════════════════════════════════════
   APP SHOWCASE
   ═════════════════════════════════════════════════════ */

.showcase {
  padding: 140px 0;
  overflow: hidden;
}

.showcase-track {
  margin-top: 56px;
}

.showcase-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 max(28px, calc((100vw - 1080px) / 2 + 28px));
  scrollbar-width: none;
}

.showcase-scroll::-webkit-scrollbar {
  display: none;
}

.showcase-device {
  flex-shrink: 0;
  width: 220px;
  scroll-snap-align: center;
  text-align: center;
}

.showcase-device img {
  width: 220px;
  height: 476px;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    0 24px 56px rgba(0, 0, 0, 0.18),
    0 48px 96px -24px rgba(0, 0, 0, 0.15);
  background: #111113;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-device:hover img {
  transform: translateY(-4px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.22),
    0 32px 64px rgba(0, 0, 0, 0.2),
    0 56px 112px -28px rgba(0, 0, 0, 0.18);
}

.showcase-caption {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #636366;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ═════════════════════════════════════════════════════
   LIFECYCLE
   ═════════════════════════════════════════════════════ */

.lifecycle {
  padding: 140px 0;
  text-align: center;
  position: relative;
}

.lifecycle-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(140, 120, 180, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.lifecycle .section-sub {
  margin: 0 auto;
}

.lifecycle-cards {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.lifecycle-card {
  padding: 44px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lifecycle-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.12);
}

.lifecycle-card--after {
  background: linear-gradient(180deg, rgba(140, 120, 180, 0.07) 0%, rgba(140, 120, 180, 0.02) 100%);
  border-color: rgba(140, 120, 180, 0.12);
  border-top-color: rgba(140, 120, 180, 0.2);
  box-shadow: inset 0 1px 0 rgba(140, 120, 180, 0.1);
}

.lifecycle-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7a99;
  margin-bottom: 24px;
}

.lifecycle-mock {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.mock-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7a99;
}

.mock-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #f5f5f7;
}

.mock-countdown {
  font-size: 15px;
  color: #636366;
  font-weight: 500;
}

.lifecycle-recap {
  font-size: 16px;
  color: #86868b;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 20px;
  padding: 0 8px;
}

.lifecycle-desc {
  font-size: 15px;
  color: #636366;
  line-height: 1.5;
}

.lifecycle-arrow {
  color: #555558;
}

.lifecycle-card--during {
  background: linear-gradient(180deg, rgba(120, 180, 200, 0.07) 0%, rgba(120, 180, 200, 0.02) 100%);
  border-color: rgba(120, 180, 200, 0.12);
  border-top-color: rgba(120, 180, 200, 0.2);
  box-shadow: inset 0 1px 0 rgba(120, 180, 200, 0.1);
}

.mock-day {
  font-size: 13px;
  color: rgba(120, 180, 200, 0.8);
  font-weight: 600;
  letter-spacing: 0.06em;
}


/* ═════════════════════════════════════════════════════
   MEMORY CAPSULE
   ═════════════════════════════════════════════════════ */

.capsule {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.capsule-glow {
  position: absolute;
  width: 700px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(140, 120, 180, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.capsule .section-sub {
  margin: 0 auto;
}

.capsule-demo {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.capsule-card {
  width: 100%;
  max-width: 520px;
  text-align: left;
  padding: 40px;
  background: linear-gradient(180deg, rgba(140, 120, 180, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  border: 1px solid rgba(140, 120, 180, 0.16);
  border-top-color: rgba(140, 120, 180, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(140, 120, 180, 0.12),
    0 24px 64px -16px rgba(0, 0, 0, 0.5);
  border-radius: 28px;
}

.capsule-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.capsule-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7a99;
}

.capsule-status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b8a8d8;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(140, 120, 180, 0.14);
  border: 1px solid rgba(140, 120, 180, 0.2);
}

.capsule-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f5f5f7;
  margin-bottom: 6px;
}

.capsule-dates {
  font-size: 15px;
  color: #86868b;
  font-weight: 500;
}

.capsule-divider {
  height: 1px;
  margin: 24px 0;
  background: linear-gradient(90deg, rgba(140, 120, 180, 0.3), transparent);
}

.capsule-recap {
  display: inline;
  font-size: 19px;
  line-height: 1.6;
  color: #d8d4e0;
  font-style: italic;
  letter-spacing: -0.01em;
}

.capsule-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 1px;
  vertical-align: text-bottom;
  background: #b8a8d8;
  opacity: 0;
}

.capsule-cursor.blinking {
  opacity: 1;
  animation: capsuleBlink 0.9s steps(1) infinite;
}

@keyframes capsuleBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.capsule-byline {
  margin-top: 28px;
  font-size: 13px;
  color: #6b7a99;
  font-weight: 500;
}

.capsule-readmore {
  margin-top: 36px;
  text-align: center;
}

.capsule-readmore a {
  font-size: 15px;
  font-weight: 600;
  color: #8a9cc0;
  transition: color 0.2s ease;
}

.capsule-readmore a:hover {
  color: #f5f5f7;
}


/* ═════════════════════════════════════════════════════
   SHARING
   ═════════════════════════════════════════════════════ */

.sharing {
  padding: 140px 0;
  text-align: center;
}

.sharing .section-sub {
  margin: 0 auto;
}

.sharing-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sharing-card {
  padding: 48px 36px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.sharing-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.35);
}

.sharing-icon {
  color: #6b7a99;
  margin-bottom: 20px;
}

.sharing-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: #f5f5f7;
}

.sharing-card p {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.55;
}


/* ═════════════════════════════════════════════════════
   SURFACES
   ═════════════════════════════════════════════════════ */

.surfaces {
  padding: 140px 0;
}

.surfaces-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.surface-item {
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.surface-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.35);
}

.surface-icon {
  color: #6b7a99;
  margin-bottom: 20px;
}

.surface-item h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: #f5f5f7;
}

.surface-item p {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.55;
}


/* ═════════════════════════════════════════════════════
   MOMENT TYPES
   ═════════════════════════════════════════════════════ */

.types {
  padding: 140px 0;
  text-align: center;
}

.types .section-sub {
  margin: 0 auto;
}

.types-grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.type-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #b0b0b4;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.type-pill:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.type-pill i {
  font-style: normal;
  font-size: 16px;
}


/* ═════════════════════════════════════════════════════
   PRIVACY
   ═════════════════════════════════════════════════════ */

.privacy {
  padding: 140px 0;
}

.privacy-header {
  margin-bottom: 64px;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.privacy-point {
  padding: 40px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.privacy-point:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.12);
}

.privacy-point h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #f5f5f7;
}

.privacy-point p {
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.6;
}


/* ═════════════════════════════════════════════════════
   PRICING
   ═════════════════════════════════════════════════════ */

.pricing {
  padding: 140px 0;
  text-align: center;
}

.pricing .section-sub {
  margin: 0 auto;
}

.pricing-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

.pricing-card {
  padding: 36px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 56px -10px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-card--featured:hover {
  border-color: rgba(107, 122, 153, 0.5);
  background: linear-gradient(180deg, rgba(107, 122, 153, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.pricing-card--featured {
  border-color: rgba(107, 122, 153, 0.3);
  border-top-color: rgba(107, 122, 153, 0.4);
  background: linear-gradient(180deg, rgba(107, 122, 153, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(107, 122, 153, 0.15);
}

.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a9cc0;
  background: rgba(107, 122, 153, 0.12);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.plan-logo {
  height: 36px;
  width: auto;
  margin: 0 auto 14px;
  opacity: 0.85;
}

.plan-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #f5f5f7;
}

.plan-price {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 2px;
  color: #f5f5f7;
}

.plan-period {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 28px;
}

.plan-list {
  text-align: left;
}

.plan-list li {
  font-size: 15px;
  color: #86868b;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-list li::before {
  content: '\2713';
  color: #6b7a99;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}

/* Pricing CTAs */
.plan-cta {
  display: block;
  margin-top: 24px;
  padding: 12px 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.plan-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.plan-cta--featured {
  background: rgba(107, 122, 153, 0.2);
  border-color: rgba(107, 122, 153, 0.35);
  color: #f5f5f7;
}

.plan-cta--featured:hover {
  background: rgba(107, 122, 153, 0.3);
  border-color: rgba(107, 122, 153, 0.5);
}


/* ═════════════════════════════════════════════════════
   COMPARISON TABLE
   ═════════════════════════════════════════════════════ */

.whynot {
  padding: 140px 0;
  text-align: center;
}

.whynot .section-sub {
  margin: 0 auto;
}

.compare-table {
  margin-top: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.compare-feature {
  text-align: left;
  font-size: 15px;
  color: #86868b;
  font-weight: 500;
}

.compare-them,
.compare-us {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-them { color: #3a3a3c; }
.compare-us { color: #6b7a99; }


/* ═════════════════════════════════════════════════════
   FAQ (Landing Page)
   ═════════════════════════════════════════════════════ */

.faq {
  padding: 140px 0;
}


/* ═════════════════════════════════════════════════════
   NOTIFY / EMAIL CAPTURE
   ═════════════════════════════════════════════════════ */

.notify {
  padding: 120px 0;
}

.notify-form {
  margin-top: 40px;
}

.notify-input-wrap {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.notify-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #f5f5f7;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.notify-input::placeholder {
  color: #636366;
}

.notify-input:focus {
  border-color: rgba(107, 122, 153, 0.4);
}

.notify-btn {
  padding: 14px 24px;
  background: #f5f5f7;
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.notify-btn:hover {
  opacity: 0.88;
  transform: scale(0.98);
}

.notify-note {
  margin-top: 16px;
  font-size: 13px;
  color: #555558;
}

.notify-success {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 600;
  color: #6b7a99;
}


/* ═════════════════════════════════════════════════════
   WHY SECTION (updated)
   ═════════════════════════════════════════════════════ */

.why-container {
  text-align: center;
}

.why-author {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: #6b7a99;
  font-style: italic;
}


/* ═════════════════════════════════════════════════════
   ACCESSIBILITY
   ═════════════════════════════════════════════════════ */

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: #f5f5f7;
  color: #0a0a0a;
  font-weight: 600;
  border-radius: 8px;
  z-index: 999;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 12px;
}

*:focus-visible {
  outline: 2px solid rgba(107, 122, 153, 0.6);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(107, 122, 153, 0.6);
  outline-offset: 2px;
}


/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #6b7a99, #8a9cc0);
  z-index: 200;
  transition: none;
}

/* Hero ticker */
.hero-ticker {
  margin-top: 24px;
  font-size: 15px;
  color: #636366;
  font-weight: 500;
}

.ticker {
  color: #6b7a99;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ═════════════════════════════════════════════════════
   NARRATIVE STORY
   ═════════════════════════════════════════════════════ */

.story {
  padding: 160px 0;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.story-lines {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 600px;
  margin: 0 auto;
}

.story-line {
  font-size: 24px;
  font-weight: 500;
  color: #6e6e73;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.story-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-line:nth-child(2) { transition-delay: 0.15s; }
.story-line:nth-child(3) { transition-delay: 0.3s; }

.story-line--accent {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #f5f5f7;
  padding: 20px 0;
}

.story-line--close {
  font-size: 20px;
  color: #636366;
  max-width: 460px;
  margin: 0 auto;
}

.story-line--final {
  margin-top: 12px;
  font-size: 18px;
  color: #6b7a99;
  font-style: italic;
}

/* Why section */
.why {
  padding: 120px 0;
}

.why-text {
  font-size: 19px;
  color: #6e6e73;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

/* Interactive NL input */
.nl-real-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: #f5f5f7;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  padding: 14px 18px 14px 44px;
  outline: none;
  opacity: 0;
  cursor: text;
}

.nl-real-input:focus {
  opacity: 1;
}

.nl-input {
  position: relative;
}

/* Social proof */
.social-proof {
  margin-top: 32px;
  font-size: 15px;
  color: #636366;
  font-weight: 500;
}

.social-count {
  color: #6b7a99;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  display: none;
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
  background: #f5f5f7;
  color: #0a0a0a;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
}

.sticky-cta-text {
  font-weight: 600;
}

.sticky-cta-free {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #636366;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
}

/* Constellation canvas */
#constellation {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.type-pill svg {
  flex-shrink: 0;
  opacity: 0.65;
}


/* ═════════════════════════════════════════════════════
   CTA
   ═════════════════════════════════════════════════════ */

.cta {
  padding: 180px 0 160px;
  text-align: center;
  position: relative;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 400px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(100, 120, 180, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  color: #f5f5f7;
}

.cta-sub {
  font-size: 18px;
  color: #6e6e73;
  margin-bottom: 44px;
}

/* QR Code */
.cta-qr {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
}

.qr-label {
  font-size: 13px;
  color: #636366;
  font-weight: 500;
}


/* ═════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════ */

.footer {
  padding: 40px 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 520px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 122, 153, 0.15), transparent);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.35;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 13px;
  color: #636366;
  margin-bottom: 3px;
}

.footer-tagline {
  font-size: 12px;
  color: #2c2c2e;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: #636366;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #86868b;
}


/* ═════════════════════════════════════════════════════
   ANIMATIONS
   ═════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slow {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s,
              transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.reveal-slow.in {
  opacity: 1;
  transform: translateY(0);
}

/* Touch feedback for mobile */
.pricing-card:active,
.surface-item:active,
.testimonial:active,
.lifecycle-card:active,
.privacy-point:active,
.type-pill:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

/* Stagger children */
.hero-brand.reveal { transition-delay: 0s; }
.hero-headline.reveal { transition-delay: 0.08s; }
.hero-sub.reveal { transition-delay: 0.16s; }
.hero .badge.reveal { transition-delay: 0.24s; }


/* ═════════════════════════════════════════════════════
   LEGAL / SUPPORT PAGES
   ═════════════════════════════════════════════════════ */

/* Legal pages */
.legal-section {
  padding: 100px 0 140px;
}

.legal-prose h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #f5f5f7;
  margin-top: 48px;
  margin-bottom: 14px;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f5f5f7;
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal-prose p {
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-prose strong {
  color: #b0b0b4;
}

.legal-prose ul {
  margin-bottom: 16px;
}

.legal-prose li {
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.legal-prose li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: #555558;
}

.legal-prose a {
  color: #8a9cc0;
  transition: color 0.2s ease;
}

.legal-prose a:hover {
  color: #f5f5f7;
}

/* Support page */
.faq-list { margin-top: 48px; }

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-item p {
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
}

/* Support page */
.support-hero {
  padding: 160px 0 80px;
}

.support-faq {
  padding: 100px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-card {
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.faq-card p {
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.6;
}

.support-contact-section {
  padding: 120px 0;
}

.support-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(107, 122, 153, 0.25);
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #8a9cc0;
  transition: all 0.3s ease;
}

.support-email-btn:hover {
  background: rgba(107, 122, 153, 0.1);
  border-color: rgba(107, 122, 153, 0.4);
  color: #f5f5f7;
  transform: translateY(-2px);
}

.indie-note {
  margin-top: 64px;
  text-align: center;
}

.indie-note p {
  color: #555558;
  font-size: 15px;
  font-style: italic;
}


/* ═════════════════════════════════════════════════════
   404
   ═════════════════════════════════════════════════════ */

.notfound {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
}

.notfound-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.notfound-code {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7a99;
  margin-bottom: 28px;
}

.notfound-headline {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.038em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #f5f5f7 30%, #b8b0c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.notfound-sub {
  font-size: 19px;
  color: #86868b;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 40px;
}

.notfound-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.notfound-btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.notfound-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.notfound-btn--primary {
  background: #f5f5f7;
  color: #0a0a0a;
  border-color: #f5f5f7;
}

.notfound-btn--primary:hover {
  background: #e8e8ea;
  border-color: #e8e8ea;
}

@media (max-width: 640px) {
  .notfound-headline {
    font-size: 44px;
  }
  .notfound-sub {
    font-size: 17px;
  }
}


/* ═════════════════════════════════════════════════════
   FIELD NOTES (index)
   ═════════════════════════════════════════════════════ */

.notes-section {
  padding: 72px 0 140px;
}

.notes-section .container {
  max-width: 960px;
}

.notes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.note-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.note-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.14);
}

.note-card:hover .note-title {
  color: #f5f5f7;
}

.note-card:hover .note-read-more {
  color: #f5f5f7;
}

.note-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7a99;
  font-weight: 600;
  margin-bottom: 16px;
}

.note-dot {
  opacity: 0.5;
}

.note-title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #f0f0f2;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.note-dek {
  font-size: 16px;
  color: #86868b;
  line-height: 1.55;
  margin-bottom: 24px;
  flex: 1;
}

.note-read-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #8a9cc0;
  transition: color 0.25s ease;
}

@media (max-width: 760px) {
  .notes-list {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .note-title {
    font-size: 23px;
  }
}


/* ═════════════════════════════════════════════════════
   ARTICLE
   ═════════════════════════════════════════════════════ */

.article-prose {
  max-width: 680px;
}

.article-prose p:first-child {
  font-size: 21px;
  line-height: 1.6;
  color: #c8c8cc;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* ═════════════════════════════════════════════════════
   CHANGELOG
   ═════════════════════════════════════════════════════ */

.changelog-section {
  padding: 80px 0 140px;
}

.changelog-section .container {
  max-width: 760px;
}

.changelog-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.changelog-entry:first-child {
  border-top: none;
}

.changelog-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 4px;
}

.changelog-version {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5f5f7;
}

.changelog-date {
  font-size: 14px;
  color: #6e6e73;
  font-weight: 500;
}

.changelog-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7a99;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(107, 122, 153, 0.12);
  border: 1px solid rgba(107, 122, 153, 0.2);
}

.changelog-tag--launch {
  color: #b8a8d8;
  background: rgba(140, 120, 180, 0.14);
  border-color: rgba(140, 120, 180, 0.22);
}

.changelog-body h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f5f5f7;
  margin-bottom: 12px;
}

.changelog-body p {
  font-size: 16px;
  color: #86868b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.changelog-body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.changelog-body li {
  font-size: 16px;
  color: #b0b0b4;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}

.changelog-body li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6b7a99;
}

.changelog-body strong {
  color: #f5f5f7;
  font-weight: 600;
}

.changelog-entry--upcoming .changelog-body {
  opacity: 0.78;
}

.changelog-note {
  margin-top: 12px;
  font-style: italic;
}

.changelog-note a {
  color: #8a9cc0;
}

.changelog-note a:hover {
  color: #f5f5f7;
}

@media (max-width: 640px) {
  .changelog-entry {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
  .changelog-meta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}


/* ═════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .section-headline {
    font-size: 40px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-headline {
    font-size: 52px;
  }

  .scenario-headline {
    font-size: 40px;
  }

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

  .lifecycle-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .lifecycle-arrow {
    transform: rotate(90deg);
  }

  .sharing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .privacy-points {
    grid-template-columns: 1fr;
  }

  .cta-headline {
    font-size: 40px;
  }

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

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

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.96);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    flex-direction: column;
    padding: 16px 28px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

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

  .nav.open .nav-links {
    display: flex;
  }

  .sticky-cta {
    display: block;
  }

  .showcase-device {
    width: 180px;
  }

  .showcase-device img {
    width: 180px;
    height: 390px;
    border-radius: 28px;
  }

  .showcase-scroll {
    gap: 16px;
    padding: 0 20px;
  }

  .story-line--accent {
    font-size: 44px;
  }

  .story {
    min-height: auto;
    padding: 120px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-headline {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-wordmark {
    height: 52px;
  }

  .hero-accent {
    width: 48px;
    height: 48px;
  }

  .section-headline {
    font-size: 34px;
  }

  .scenario {
    padding: 72px 0;
  }

  .scenario-headline {
    font-size: 32px;
  }

  .scenario-detail {
    font-size: 17px;
  }

  .how, .lifecycle, .surfaces, .sharing, .capsule, .whynot, .faq, .notify, .types, .privacy, .pricing {
    padding: 100px 0;
  }

  .capsule-card {
    padding: 28px;
  }

  .capsule-title {
    font-size: 28px;
  }

  .capsule-recap {
    font-size: 17px;
  }

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

  .step {
    flex-direction: column;
    gap: 16px;
  }

  .step-examples {
    flex-direction: column;
  }

  .step-screenshot {
    margin-left: 0;
  }

  .hero-device {
    width: 240px;
    border-radius: 36px;
  }

  .hero-device-wrap {
    margin-top: 48px;
    padding-bottom: 80px;
  }

  .cta {
    padding: 120px 0;
  }

  .cta-headline {
    font-size: 32px;
  }

  .cta-sub {
    font-size: 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .mock-title {
    font-size: 24px;
  }

  .plan-price {
    font-size: 36px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .hero-headline {
    font-size: 34px;
  }

  .hero-wordmark {
    height: 44px;
  }

  .hero-accent {
    width: 40px;
    height: 40px;
  }

  .scenario-headline {
    font-size: 28px;
  }

  .section-headline {
    font-size: 30px;
  }

  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13px; }
}
