:root {
    --butter: #FAF0CA;
    --butter-soft: #FDF6DD;
    --butter-deep: #F2E5A8;
    --blue-deep: #3D6F99;
    --blue-darker: #2E5979;
    --blue-mid: #5A8AB5;
    --blue-soft: #E8F0F8;
    --blue-glow: #7BA8D1;
    --ink: #2A3A4A;
    --ink-soft: #5C7691;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 76px; }
  body {
    background: var(--butter);
    color: var(--ink);
    font-family: 'Nunito', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
  }

  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal.delay-1, .reveal.delay-2, .reveal.delay-3 { transition: none; }

  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }


  /* ── Site header ── */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 240, 202, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(61, 111, 153, 0.10);
    padding: 14px 24px;
  }
  .site-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
  }
  .site-brand {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--blue-deep);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .wordmark {
    display: inline-block;
    line-height: 1;
  }
  .wordmark svg {
    display: inline-block;
    width: 0.42em;
    height: 0.92em;
    margin: 0 0.04em;
    vertical-align: -0.06em;
    overflow: visible;
    color: inherit;
  }
  .site-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .site-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 100px;
    transition: color 0.15s ease, background 0.15s ease;
  }
  .site-nav a:hover { color: var(--blue-deep); background: rgba(61, 111, 153, 0.08); }
  .site-nav .nav-cta {
    background: var(--blue-deep);
    color: var(--blue-soft) !important;
    padding: 10px 20px;
  }
  .site-nav .nav-cta:hover { background: var(--blue-darker); }
  .nav-open {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .nav-sheet-label,
  .nav-mobile-features { display: none; }
  .nav-drop summary {
    font-family: inherit;
  }

  /* ── CTA buttons (replaces waitlist form) ── */
  .cta-wrap {
    position: relative;
    max-width: 520px;
    width: 100%;
    animation: float 4s ease-in-out infinite;
  }
  .cta-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 100px;
    background: radial-gradient(
      ellipse at center,
      rgba(123, 168, 209, 0.45) 0%,
      rgba(61, 111, 153, 0.20) 40%,
      transparent 75%
    );
    filter: blur(20px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
  }
  .cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue-deep);
    color: #E8F0F8;
    border: none;
    padding: 18px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
      0 20px 50px -10px rgba(61, 111, 153, 0.25),
      0 8px 20px -8px rgba(61, 111, 153, 0.12);
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  }
  a.cta-btn,
  .prose a.cta-btn,
  p a.cta-btn {
    color: #E8F0F8;
    text-decoration: none;
  }
  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 0;
  }
  .cta-btn > span {
    position: relative;
    z-index: 1;
  }
  .cta-btn:hover { transform: scale(1.04); background: var(--blue-darker); }
  .cta-btn:hover::before { left: 100%; }
  .cta-btn:active { transform: scale(0.98); }
  .cta-btn.secondary,
  a.cta-btn.secondary,
  .prose a.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.75);
    color: var(--blue-deep);
    border: 1px solid rgba(61, 111, 153, 0.18);
    box-shadow: 0 8px 24px -12px rgba(61, 111, 153, 0.18);
  }
  .cta-btn.secondary:hover { background: #fff; }
  .cta-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--ink-soft);
    opacity: 0.85;
    text-align: center;
    line-height: 1.45;
  }
  .cta-note a {
    color: var(--blue-deep);
    font-weight: 600;
    text-decoration: none;
  }
  .cta-note a:hover { text-decoration: underline; }

  /* ── Feature highlights ── */
  .features-section { padding: 10px 0 40px; }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .features-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
  a.feature-card {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .feature-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(61, 111, 153, 0.12);
    border-radius: 20px;
    padding: 24px 22px;
    text-align: left;
  }
  .feature-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--blue-deep);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .feature-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    font-weight: 500;
  }

  body { padding-top: 64px; }

  /* ── HERO ── */
  .hero {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(123, 168, 209, 0.18) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
  }
  .hero-logo {
    margin: 0 auto 24px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: clamp(72px, 12vw, 140px);
    line-height: 1;
    color: var(--blue-deep);
    display: block;
    text-align: center;
    letter-spacing: -0.02em;
  }
  .hero-logo .wordmark { font-size: inherit; }
  .hero-h1 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: clamp(22px, 3.2vw, 36px);
    line-height: 1.25;
    color: var(--blue-deep);
    max-width: 720px;
    margin: 0 auto 16px;
    letter-spacing: -0.02em;
    padding: 0 12px;
  }
  .hero-tagline {
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2.4vw, 26px);
    line-height: 1.3;
    color: var(--ink-soft);
    max-width: 580px;
    margin-bottom: 40px;
    letter-spacing: -0.005em;
  }
  .hero-tagline em {
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-weight: 400; color: var(--blue-deep);
  }

  /* Legacy waitlist (unused) */
  .waitlist-wrap {
    position: relative;
    max-width: 500px;
    width: 100%;
    animation: float 4s ease-in-out infinite;
  }
  .waitlist-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 100px;
    background: radial-gradient(
      ellipse at center,
      rgba(123, 168, 209, 0.45) 0%,
      rgba(61, 111, 153, 0.20) 40%,
      transparent 75%
    );
    filter: blur(20px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  @keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.05); }
  }
  .waitlist-form {
    display: flex; gap: 6px;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(61, 111, 153, 0.18);
    box-shadow:
      0 20px 50px -10px rgba(61, 111, 153, 0.20),
      0 8px 20px -8px rgba(61, 111, 153, 0.10),
      0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .waitlist-wrap:hover .waitlist-form {
    transform: scale(1.02);
    box-shadow:
      0 28px 60px -10px rgba(61, 111, 153, 0.28),
      0 12px 28px -8px rgba(61, 111, 153, 0.15),
      0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  }
  .waitlist-form input {
    flex: 1; background: transparent; border: none; outline: none;
    padding: 16px 24px; font-size: 16px; color: var(--ink); font-family: inherit;
  }
  .waitlist-form input::placeholder { color: rgba(61, 111, 153, 0.5); }
  .waitlist-form button {
    position: relative;
    background: var(--blue-deep); color: var(--blue-soft); border: none;
    padding: 16px 32px; border-radius: 100px; font-size: 15px;
    font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap;
    overflow: hidden;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .waitlist-form button::before {
    content: ''; position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
    transition: left 0.6s ease;
  }
  .waitlist-form button:hover { transform: scale(1.04); background: var(--blue-darker); }
  .waitlist-form button:hover::before { left: 100%; }
  .waitlist-form button:active { transform: scale(0.98); }
  .waitlist-consent {
    margin-top: 12px;
    font-size: 12px;
    color: var(--ink-soft);
    opacity: 0.85;
    max-width: 420px;
    text-align: center;
    line-height: 1.45;
  }
  .waitlist-consent a {
    color: var(--blue-deep);
    font-weight: 600;
    text-decoration: none;
  }
  .waitlist-consent a:hover { text-decoration: underline; }
  .hero-note {
    margin-top: 20px; font-size: 13px;
    color: var(--ink-soft); opacity: 0.8;
  }


  .scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
    color: var(--blue-deep);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
    animation: bob 2.2s ease-in-out infinite;
  }
  .scroll-hint:hover { opacity: 1; transform: translateY(2px); }
  .scroll-hint svg {
    width: 28px; height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  @keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }

  .features-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 10px;
    padding: 0 24px;
  }
  .features-intro .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--blue-deep);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .features-intro h2 {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1.2;
    color: var(--blue-deep);
    letter-spacing: -0.005em;
  }

  /* ── Pull-quote (legacy) ── */
  .pullquote {
    text-align: center;
    padding: 50px 40px 30px;
    max-width: 820px; margin: 0 auto;
  }
  .pullquote h2 {
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.2;
    color: var(--blue-deep);
    letter-spacing: -0.005em;
  }

  /* ── Carousel ── */
  .carousel-section { padding: 20px 0 50px; }
  .carousel {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
  }
  .carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
      400px circle at var(--mx, 50%) var(--my, 50%),
      rgba(123, 168, 209, 0.30) 0%,
      rgba(123, 168, 209, 0.10) 30%,
      transparent 65%
    );
    transition: opacity 0.4s ease;
    opacity: 0;
    z-index: 0;
  }
  .carousel.alive::before { opacity: 1; }

  .carousel-track {
    position: relative; z-index: 1;
    display: flex; gap: 36px;
    padding: 20px 8vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none; -ms-overflow-style: none;
    scroll-behavior: smooth;
    align-items: flex-start;       /* tops aligned, captions sit below */
  }
  .carousel-track::-webkit-scrollbar { display: none; }

  /* Each item is a card PLUS its caption underneath */
  .glow-item {
    position: relative;
    flex: 0 0 auto;
    width: clamp(260px, 32vw, 340px);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* The card itself: phone aspect ratio, contains the full screenshot */
  .glow-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 2;             /* matches the cropped screenshots */
    border-radius: 28px;
    overflow: visible;
    transition: transform 0.4s ease;
    --cx: 50%;
    --cy: 50%;
  }
  .glow-card::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 36px;
    background:
      radial-gradient(
        circle at var(--cx) var(--cy),
        rgba(123, 168, 209, 0.85) 0%,
        rgba(61, 111, 153, 0.50) 30%,
        rgba(61, 111, 153, 0.20) 55%,
        transparent 80%
      );
    filter: blur(22px);
    z-index: 0;
    opacity: 0.7;
    transition: opacity 0.5s ease;
    animation: glow-breath 5s ease-in-out infinite;
  }
  .glow-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 2px;
    background: conic-gradient(
      from 0deg at var(--cx) var(--cy),
      rgba(123, 168, 209, 0.0),
      rgba(123, 168, 209, 0.9),
      rgba(255, 255, 255, 0.8),
      rgba(61, 111, 153, 0.6),
      rgba(123, 168, 209, 0.0)
    );
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
  }
  .glow-card:hover {
    transform: translateY(-10px) scale(1.03);
  }
  .glow-card:hover::before {
    opacity: 1;
    animation-play-state: paused;
  }
  .glow-card:hover::after { opacity: 1; }

  @keyframes glow-breath {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50%      { opacity: 0.95; transform: scale(1.05); }
  }
  .glow-item:nth-child(1) .glow-card::before { animation-delay: 0s; }
  .glow-item:nth-child(2) .glow-card::before { animation-delay: 1.2s; }
  .glow-item:nth-child(3) .glow-card::before { animation-delay: 2.4s; }
  .glow-item:nth-child(4) .glow-card::before { animation-delay: 3.6s; }
  .glow-item:nth-child(5) .glow-card::before { animation-delay: 4.8s; }
  .glow-item:nth-child(6) .glow-card::before { animation-delay: 6.0s; }
  .glow-item:nth-child(7) .glow-card::before { animation-delay: 7.2s; }

  .glow-card picture {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    border-radius: 26px;
    overflow: hidden;
  }
  .glow-card img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 26px;
    box-shadow:
      0 24px 50px -20px rgba(61, 111, 153, 0.35),
      0 8px 20px -10px rgba(61, 111, 153, 0.18);
  }
  .glow-item-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .glow-item-link:hover .caption-title { text-decoration: underline; }

  /* Caption sits below each card */
  .caption {
    text-align: center;
    max-width: 340px;
  }
  .caption .caption-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--blue-deep);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }
  .caption .caption-sub {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.45;
    font-weight: 500;
  }

  .carousel-shell {
    width: 100%;
  }
  .carousel-shell .carousel {
    width: 100%;
  }
  .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    padding: 0 24px;
  }
  .car-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(61, 111, 153, 0.20);
    background: var(--blue-soft); color: var(--blue-deep);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .car-btn:hover { background: #DCE7F3; transform: scale(1.06); }
  .car-btn svg { width: 18px; height: 18px; }

  /* ── About card ── */
  .about-section { padding: 30px 0 60px; }
  .about-card {
    background: linear-gradient(160deg, var(--butter-soft) 0%, var(--butter) 60%, var(--butter-deep) 100%);
    border: 1px solid rgba(61, 111, 153, 0.15);
    border-radius: 32px;
    padding: 70px 60px;
    box-shadow:
      0 30px 60px -20px rgba(61, 111, 153, 0.18),
      0 10px 30px -10px rgba(61, 111, 153, 0.08);
    position: relative;
    overflow: hidden;
  }
  .about-card::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(123, 168, 209, 0.35) 0%, transparent 70%);
    filter: blur(40px); pointer-events: none;
  }
  .about-card::after {
    content: ''; position: absolute;
    bottom: -100px; left: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(123, 168, 209, 0.25) 0%, transparent 70%);
    filter: blur(40px); pointer-events: none;
  }
  .about-inner {
    position: relative; z-index: 1;
    max-width: 700px; margin: 0 auto;
  }
  .about-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--blue-deep);
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
  }
  .about-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.1;
    color: var(--blue-deep);
    margin-bottom: 36px;
    letter-spacing: -0.015em;
    text-align: center;
  }
  .about-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-weight: 400; color: var(--ink-soft);
  }
  .about-card p {
    font-size: 18px; line-height: 1.7;
    color: var(--ink); margin-bottom: 8px; font-weight: 500;
  }
  .about-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2.4vw, 24px);
    color: var(--blue-deep);
    letter-spacing: -0.02em;
    margin: 28px 0 10px;
  }
  .about-inner > h3:first-of-type { margin-top: 0; }
  .about-card p strong { color: var(--blue-deep); font-weight: 700; }
  .about-card .closing {
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-weight: 400;
    font-size: 24px; color: var(--blue-deep);
    text-align: center;
    margin-top: 36px; margin-bottom: 0;
    line-height: 1.4;
  }

  /* ── Share ── */
  .share-section {
    text-align: center;
    padding: 40px 24px 30px;
  }
  .share-section .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--blue-deep);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .share-section h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--blue-deep);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .share-section .sub {
    font-size: 15px; color: var(--ink-soft); margin-bottom: 22px;
  }
  .share-buttons {
    display: inline-flex; gap: 12px;
    flex-wrap: wrap; justify-content: center;
  }
  .share-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--blue-soft); color: var(--blue-deep);
    text-decoration: none; padding: 12px 22px; border-radius: 100px;
    font-weight: 600; font-size: 15px; cursor: pointer;
    border: 1px solid rgba(61, 111, 153, 0.12);
    font-family: inherit;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .share-btn:hover { transform: translateY(-2px); background: #DCE7F3; }
  .share-btn.primary {
    background: var(--blue-deep);
    color: var(--blue-soft);
    border-color: var(--blue-deep);
  }
  .share-btn.primary:hover { background: var(--blue-darker); }
  .share-btn svg { width: 18px; height: 18px; }
  .copy-feedback {
    margin-top: 12px;
    font-size: 13px;
    color: var(--blue-deep);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .copy-feedback.show { opacity: 1; }

  /* ── Socials ── */
  .socials { text-align: center; padding: 20px 24px 50px; }
  .socials .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--blue-deep);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .socials h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--blue-deep);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
  }
  .social-links {
    display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  }
  .social-links a {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--blue-soft); color: var(--blue-deep);
    text-decoration: none; padding: 12px 22px; border-radius: 100px;
    font-weight: 600; font-size: 15px;
    border: 1px solid rgba(61, 111, 153, 0.12);
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .social-links a:hover { transform: translateY(-2px); background: #DCE7F3; }
  .social-links svg { width: 18px; height: 18px; }

  /* ── Final CTA ── */
  .final {
    text-align: center;
    padding: 30px 24px 80px;
    max-width: 700px; margin: 0 auto;
  }
  .final h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.15;
    color: var(--blue-deep);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
  }
  .final h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-weight: 400; color: var(--ink-soft);
  }
  .final p {
    font-size: 17px; color: var(--ink-soft);
    line-height: 1.6; margin-bottom: 32px; font-weight: 500;
  }
  .final .cta-wrap { margin: 0 auto; }

  /* ── Footer (refined) ── */
  footer {
    border-top: 1px solid rgba(61, 111, 153, 0.12);
    padding: 50px 24px 40px;
    background: rgba(250, 240, 202, 0.4);
  }
  .footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: var(--blue-deep);
    display: inline-block;
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
  }
  .footer-links a {
    color: var(--blue-deep);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.15s ease;
  }
  .footer-links a:hover { opacity: 0.7; }
  .footer-legal {
    font-size: 12px;
    color: var(--ink-soft);
    opacity: 0.75;
  }

  @media (max-width: 860px) {
    .wrap { padding: 0 20px; }
    .hero {
      padding: 28px 18px 28px;
      min-height: 0;
      justify-content: flex-start;
    }
    .hero::before { width: 420px; height: 420px; }
    .hero-logo { font-size: 48px; margin-bottom: 14px; }
    .hero-h1 { font-size: 20px; padding: 0; margin-bottom: 10px; }
    .hero-tagline { font-size: 16px; margin-bottom: 22px; }
    .hero-note { font-size: 12px; margin-top: 12px; }
    .scroll-hint { margin-top: 22px; }
    .cta-wrap { animation: none; }
    .cta-wrap::before { inset: -10px; filter: blur(14px); animation: none; }
    .carousel-section { padding: 8px 0 28px; }
    .carousel-track { padding: 12px 18px 8px; gap: 16px; }
    .glow-item { width: min(78vw, 300px); }
    .glow-card::before, .glow-card::after { animation: none; }
    .caption { padding: 12px 4px 0; }
    .caption .caption-title { font-size: 16px; }
    .caption .caption-sub { font-size: 13px; }
    .about-section { padding: 12px 0 36px; }
    .about-card { padding: 28px 20px; border-radius: 22px; }
    .about-title { font-size: 26px; margin-bottom: 20px; }
    .about-card h3 { font-size: 18px; margin: 22px 0 8px; }
    .about-card p { font-size: 16px; line-height: 1.6; }
    .waitlist-form { flex-direction: column; padding: 12px; border-radius: 22px; }
    .features-section { padding: 4px 0 24px; }
    .features-grid, .features-grid.two { grid-template-columns: 1fr; }
    .features-grid.two .feature-card.center { width: auto; justify-self: stretch; }
    .feature-card { padding: 18px 16px; border-radius: 16px; }
    .cta-actions { flex-direction: column; width: 100%; gap: 8px; }
    .cta-btn { width: 100%; padding: 15px 22px; font-size: 15px; }
    .cta-btn:hover { transform: none; }
    .waitlist-form button { width: 100%; padding: 16px; }
    .share-section, .socials, .final { padding: 28px 20px; }
    .final h2 { font-size: 26px; }
    footer { padding: 36px 20px 28px; }
    .footer-links { gap: 10px 16px; }
    .footer-links a { padding: 6px 4px; }
    .page-hero { padding: 28px 20px 16px; }
    .page-hero h1 { font-size: 26px; }
    .prose { font-size: 16px; }
    .article { padding: 0 0 28px; }
  }

  @media (max-width: 760px) {
    .site-header {
      padding: 10px 14px;
      padding-top: max(10px, env(safe-area-inset-top));
    }
    body { padding-top: 56px; }
    .site-brand { font-size: 20px; }
    .nav-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      margin-left: auto;
      border-radius: 12px;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle-bars,
    .nav-toggle-bars::before,
    .nav-toggle-bars::after {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: var(--blue-deep);
      position: relative;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .nav-toggle-bars::before,
    .nav-toggle-bars::after {
      content: '';
      position: absolute;
      left: 0;
    }
    .nav-toggle-bars::before { top: -6px; }
    .nav-toggle-bars::after { top: 6px; }
    .nav-open:checked + .nav-toggle .nav-toggle-bars { background: transparent; }
    .nav-open:checked + .nav-toggle .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
    .nav-open:checked + .nav-toggle .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }
    .site-nav {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      left: 12px;
      right: 12px;
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
      padding: 10px;
      background: rgba(253, 246, 221, 0.97);
      border: 1px solid rgba(61, 111, 153, 0.14);
      border-radius: 18px;
      box-shadow: 0 18px 40px -18px rgba(61, 111, 153, 0.35);
      backdrop-filter: blur(12px);
    }
    .nav-open:checked ~ .site-nav { display: flex; }
    .nav-sheet-label {
      display: block;
      font-family: 'Fredoka', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-soft);
      padding: 6px 14px 10px;
    }
    .nav-drop { display: none; }
    .nav-mobile-features { display: contents; }
    .site-nav a {
      font-family: 'Nunito', sans-serif;
      font-size: 17px;
      font-weight: 600;
      line-height: 1.2;
      color: var(--blue-deep);
      padding: 14px 14px;
      min-height: 48px;
      display: flex;
      align-items: center;
      border-radius: 12px;
    }
    .site-nav a:hover,
    .site-nav a:active { background: rgba(61, 111, 153, 0.08); }
    .site-nav .nav-cta {
      margin-top: 8px;
      justify-content: center;
      background: var(--blue-deep);
      color: var(--blue-soft) !important;
    }
    .hero-logo { font-size: 42px; }
    .wordmark-hero svg {
      width: 0.7em;
      height: 1.5em;
    }
    .car-btn { width: 48px; height: 48px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .cta-wrap, .cta-wrap::before,
    .glow-card::before, .scroll-hint { animation: none !important; }
  }

  /* ── Nav dropdown ── */
  .nav-drop { position: relative; }
  .nav-drop summary {
    list-style: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 100px;
  }
  .nav-drop summary::marker { content: none; }
  .nav-drop summary::-webkit-details-marker { display: none; }
  .nav-drop summary:hover { color: var(--blue-deep); background: rgba(61, 111, 153, 0.08); }
  .nav-drop[open] summary { color: var(--blue-deep); background: rgba(61, 111, 153, 0.08); }
  .nav-drop-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--butter-soft);
    border: 1px solid rgba(61, 111, 153, 0.14);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 16px 40px -16px rgba(61, 111, 153, 0.28);
    z-index: 20;
  }
  .nav-drop-menu a {
    display: block;
    padding: 10px 12px !important;
    border-radius: 10px;
    color: var(--blue-deep) !important;
  }

  /* ── Inner pages ── */
  .page-hero {
    text-align: center;
    padding: 48px 24px 24px;
    max-width: 760px;
    margin: 0 auto;
  }
  .crumbs {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .crumbs a { color: var(--blue-deep); text-decoration: none; }
  .crumbs a:hover { text-decoration: underline; }
  .page-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    color: var(--blue-deep);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .page-lede {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .page-split {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 48px;
    align-items: start;
    padding: 20px 0 40px;
  }
  .page-shot {
    position: sticky;
    top: 96px;
  }
  .page-shot picture, .page-shot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    box-shadow: 0 24px 50px -20px rgba(61, 111, 153, 0.35);
  }
  .prose h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: var(--blue-deep);
    margin: 1.6rem 0 0.6rem;
    letter-spacing: -0.015em;
  }
  .prose h3 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--blue-deep);
    margin: 1.3rem 0 0.4rem;
  }
  .prose p, .prose li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  .prose ul, .prose ol { margin: 0 0 1.2rem 1.2rem; }
  .prose a { color: var(--blue-deep); font-weight: 700; }
  .prose a.cta-btn { color: #E8F0F8; font-weight: 700; }
  .prose a.cta-btn.secondary { color: var(--blue-deep); }
  .prose .closing {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--blue-deep);
    margin-top: 28px;
  }
  .related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0 40px;
  }
  .related a, .blog-card {
    display: block;
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(61, 111, 153, 0.12);
    border-radius: 18px;
    padding: 22px 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .related a:hover, .blog-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.7);
  }
  .related h3, .blog-card h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--blue-deep);
    margin-bottom: 8px;
  }
  .related p, .blog-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
    font-weight: 500;
    margin: 0;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding-bottom: 40px;
  }
  .blog-meta {
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .article {
    max-width: 720px;
    margin: 0 auto;
    padding: 10px 0 40px;
  }
  @media (max-width: 860px) {
    .page-split { grid-template-columns: 1fr; }
    .page-shot { position: static; max-width: 280px; margin: 0 auto; }
    .related, .blog-grid { grid-template-columns: 1fr; }
    .nav-drop-menu { right: 0; left: auto; }
  }

  /* ── Wordmark bloom (hero sting, hover to replay) ── */
  .wordmark svg { overflow: visible; }
  .hero-logo {
    cursor: pointer;
  }
  .hero-logo .wordmark svg {
    width: 0.48em;
    height: 1.05em;
    vertical-align: -0.08em;
  }
  .wordmark-hero {
    display: inline-flex;
    align-items: flex-end;
    line-height: 1;
  }
  .wordmark-hero .wm-l,
  .wordmark-hero .wm-r {
    opacity: 0;
    animation: wm-letter-in 0.45s 1.08s ease forwards;
  }
  .wordmark-hero svg {
    width: 1.28em;
    height: 2.8em;
    margin: 0 0.05em;
    animation: flower-to-i 1.2s 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes flower-to-i {
    to {
      width: 0.48em;
      height: 1.05em;
    }
  }
  @keyframes wm-letter-in {
    from { opacity: 0; transform: translateY(0.12em); }
    to { opacity: 1; transform: none; }
  }
  .fl-petal, .fl-leaf { transform-box: fill-box; }

  .hero-logo .fl-stem {
    stroke-dasharray: 14;
    stroke-dashoffset: 14;
    animation: draw-stem 0.55s ease forwards;
  }
  .hero-logo .fl-petal-t {
    transform-origin: 50% 100%;
    transform: scale(0);
    opacity: 0;
    animation: bloom-petal 0.55s 0.42s cubic-bezier(0.22, 1.55, 0.36, 1) forwards;
  }
  .hero-logo .fl-petal-l {
    transform-origin: 100% 80%;
    transform: scale(0);
    opacity: 0;
    animation: bloom-petal-l 0.5s 0.5s cubic-bezier(0.22, 1.55, 0.36, 1) forwards;
  }
  .hero-logo .fl-petal-r {
    transform-origin: 0% 80%;
    transform: scale(0);
    opacity: 0;
    animation: bloom-petal-r 0.5s 0.56s cubic-bezier(0.22, 1.55, 0.36, 1) forwards;
  }
  .hero-logo .fl-leaf {
    transform-origin: 0% 50%;
    transform: scale(0) rotate(-20deg);
    opacity: 0;
    animation: bloom-leaf 0.45s 0.72s cubic-bezier(0.22, 1.4, 0.36, 1) forwards;
  }
  @keyframes draw-stem {
    to { stroke-dashoffset: 0; }
  }
  @keyframes bloom-petal {
    0% { transform: scale(0) rotate(-18deg); opacity: 0; }
    72% { transform: scale(1.18) rotate(6deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  @keyframes bloom-petal-l {
    0% { transform: scale(0) rotate(18deg); opacity: 0; }
    72% { transform: scale(1.16) rotate(-12deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  @keyframes bloom-petal-r {
    0% { transform: scale(0) rotate(-18deg); opacity: 0; }
    72% { transform: scale(1.16) rotate(12deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  @keyframes bloom-leaf {
    0% { transform: scale(0) rotate(-24deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }

  .hero-h1::after {
    content: '';
    display: block;
    width: min(220px, 55%);
    height: 14px;
    margin: 8px auto 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 14' fill='none'><path d='M4 9 C40 2 80 12 110 7 C150 1 180 11 216 6' stroke='%237BA8D1' stroke-width='2.2' stroke-linecap='round'/></svg>") center / contain no-repeat;
    opacity: 0.7;
    animation: ink-in 1.1s ease 0.2s both;
  }
  @keyframes ink-in {
    from { transform: scaleX(0.2); opacity: 0; }
    to { transform: scaleX(1); opacity: 0.7; }
  }

  /* ── FAQ ── */
  .faq-item {
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(61, 111, 153, 0.14);
    border-radius: 18px;
    margin-bottom: 12px;
    scroll-margin-top: 88px;
  }
  .faq-item summary {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--blue-deep);
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::marker { content: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 22px;
    line-height: 1;
    color: var(--blue-mid);
    flex: 0 0 auto;
  }
  .faq-item[open] summary::after { content: '–'; }
  .faq-item[open] {
    box-shadow: 0 16px 40px -24px rgba(61, 111, 153, 0.35);
  }
  .faq-body { padding: 0 22px 8px; }
  .faq-body h3 { margin-top: 0.4rem; }

  .feature-card { scroll-margin-top: 96px; }
  .features-grid.two .feature-card.center {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 18px) / 2);
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-h1::after,
    .hero-logo .fl-stem,
    .hero-logo .fl-petal,
    .hero-logo .fl-leaf,
    .wordmark-hero svg,
    .wordmark-hero .wm-l,
    .wordmark-hero .wm-r { animation: none !important; }
    .hero-logo .fl-stem { stroke-dashoffset: 0; }
    .hero-logo .fl-petal,
    .hero-logo .fl-leaf {
      transform: none;
      opacity: 1;
    }
    .wordmark-hero svg {
      width: 0.48em;
      height: 1.05em;
    }
    .wordmark-hero .wm-l,
    .wordmark-hero .wm-r { opacity: 1; transform: none; }
  }
