/* ════════════════════════════════════════
   ROOT & RESET
════════════════════════════════════════ */
:root {
  --cream:        #F7F4EF;
  --warm-white:   #FAF8F4;
  --dark:         #1A161A;
  --dark-card:    #231D23;
  --accent:       #C05C30;
  --accent-deep:  #A84E28;
  --soft:         #C0A882;
  --text-dark:    #1E191A;
  --text-muted:   #8A7A6A;
  --text-light:   #F0EBEF;
  --text-dim:     #B0A090;
  --border-dark:  rgba(240, 235, 239, 0.08);
  --border-light: rgba(192, 92, 48, 0.14);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}


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

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* momentum scrolling on iOS */
}

body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* promote to compositor layer for smoother repaints */
  will-change: scroll-position;
}

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

.sr-only {

  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;

}


/* ════════════════════════════════════════
   WAITLIST CONFIRMATION PAGE
════════════════════════════════════════ */
.waitlist-confirmed-page {
  min-height: 100svh;
  background:
    radial-gradient(ellipse 85% 70% at 15% 5%, rgba(192, 92, 48, 0.3), transparent 58%),
    radial-gradient(ellipse 65% 55% at 85% 100%, rgba(120, 40, 20, 0.2), transparent 65%),
    var(--dark);
  color: var(--text-light);
}

.waitlist-confirmed-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.waitlist-confirmed-main::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 28px, rgba(255, 255, 255, 0.025) 28px, rgba(255, 255, 255, 0.025) 29px);
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 0%, black 0, transparent 80%);
  mask-image: radial-gradient(ellipse 100% 90% at 50% 0%, black 0, transparent 80%);
}

.waitlist-confirmed-brand {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
}

.waitlist-confirmed-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.waitlist-confirmed-card {
  position: relative;
  z-index: 1;
  width: min(100%, 36rem);
  padding: clamp(2.5rem, 7vw, 4.5rem);
  text-align: center;
  background: rgba(35, 29, 35, 0.78);
  border: 1px solid var(--border-dark);
  border-radius: 1.5rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.waitlist-confirmed-check {
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 1.75rem;
  border: 1px solid rgba(192, 92, 48, 0.7);
  border-radius: 50%;
  color: #fff;
  font-size: 1.75rem;
  background: var(--accent);
}

.waitlist-confirmed-eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
}

.waitlist-confirmed-card h1 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
}

.waitlist-confirmed-card p:not(.waitlist-confirmed-eyebrow) {
  max-width: 34ch;
  margin: 0 auto;
  color: rgba(240, 235, 239, 0.72);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.waitlist-confirmed-button {
  display: inline-flex;
  margin-top: 2rem;
}


/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  /* start fully transparent */
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
}

/* stays transparent when scrolled — only blur, no fill */
.site-nav.scrolled {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* over a light section — flip text to dark, still no background fill */
.site-nav.light-bg .nav-wordmark { color: var(--text-dark); }
.site-nav.light-bg .nav-cta {
  background: var(--accent);
  color: #fff;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  transition: opacity .2s ease;
}

.nav-brand:hover { opacity: .75; }

.nav-mark { width: 30px; height: 30px; border-radius: 9px; display: block; }

.nav-wordmark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--text-light);
  letter-spacing: -.01em;
  line-height: 1;
  transition: color .4s ease;
}

.nav-cta {
  padding: .6rem 1.25rem;
  font-size: .8rem;
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}

/* ── Warm gradient wash (top-left amber bloom) ── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 20% 10%,  rgba(192, 92, 48, 0.28) 0%,  transparent 55%),
    radial-gradient(ellipse 60% 50% at 75% 80%,  rgba(120, 40, 20, 0.15)  0%,  transparent 60%),
    radial-gradient(ellipse 50% 40% at 55% 40%,  rgba(210, 140, 40, 0.10) 0%,  transparent 50%);
  animation: gradient-breathe 14s ease-in-out infinite alternate;
}

/* ── Vertical light-streak lines (like the reference) ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* thin vertical streaks that fade out toward center & bottom */
  background-image: repeating-linear-gradient(
    90deg,
    transparent                     0px,
    transparent                     28px,
    rgba(255, 255, 255, 0.022)      28px,
    rgba(255, 255, 255, 0.022)      29px
  );
  /* vignette mask so streaks only show at the top and edges */
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 75%);
  mask-image:         radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 75%);
  animation: streaks-drift 20s ease-in-out infinite alternate;
}

@keyframes gradient-breathe {
  0%   { opacity: 1;    transform: scale(1)    translateY(0); }
  100% { opacity: 0.75; transform: scale(1.06) translateY(-20px); }
}

@keyframes streaks-drift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-29px); } /* shift by exactly one stripe repeat */
}

/* ── Floating colour orbs ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  /* promote to own compositing layer so blur doesn't re-paint on move */
  will-change: transform;
  transform: translateZ(0);
}

.hero-orb-a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192, 92, 48, 0.22) 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: orb-drift-a 18s ease-in-out infinite alternate;
}

.hero-orb-b {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(220, 160, 40, 0.12) 0%, transparent 70%);
  top: 10%; right: 5%;
  animation: orb-drift-b 22s ease-in-out infinite alternate;
}

.hero-orb-c {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(90, 30, 60, 0.14) 0%, transparent 70%);
  bottom: 10%; left: 30%;
  animation: orb-drift-c 26s ease-in-out infinite alternate;
}

@keyframes orb-drift-a {
  0%   { transform: translate(0,   0)    scale(1); }
  100% { transform: translate(60px, 80px) scale(1.12); }
}
@keyframes orb-drift-b {
  0%   { transform: translate(0,   0)     scale(1); }
  100% { transform: translate(-50px,-60px) scale(0.88); }
}
@keyframes orb-drift-c {
  0%   { transform: translate(0,  0)    scale(1); }
  100% { transform: translate(40px,50px) scale(1.2); }
}

/* ── Noise + grain layer (shared) ── */
.hero-grain,
.section-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: .055;
  mix-blend-mode: overlay;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Infinity logo */
.logo-wrap { margin-bottom: 2rem; }

.infinity-svg { width: 110px; height: 55px; }

.inf-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-path 2s var(--ease) forwards 0.3s;
}

@keyframes draw-path {
  to { stroke-dashoffset: 0; }
}

/* Wordmark */
.wordmark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  letter-spacing: -.015em;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up .9s var(--ease) forwards 1.1s;
}

.hero-rule {
  width: 36px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-in .5s ease forwards 1.6s;
}

.hero-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--text-light); /* full weight — primary headline */
  margin-bottom: 1.25rem;
  line-height: 1.1;
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards 0.4s;
}

.hero-caps {
  font-family: var(--sans);
  font-size: clamp(.65rem, 1.8vw, .8rem);
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0; /* accent label — let accent colour do the work */
  margin-bottom: 2.75rem;
  animation: fade-up .7s var(--ease) forwards 0.8s;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(240, 235, 239, 0.6); /* supporting copy — pulled back */
  max-width: 42ch;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards 1s;
}

/* Pill row */
.feature-pills {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards 1.1s;
}

.pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: .72rem;
  color: var(--text-dim);
  letter-spacing: .03em;
}

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

.pill-dot { color: rgba(240,235,239,.2); font-size: 1.1rem; line-height: 1; }

/* CTA button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2rem;
  background: linear-gradient(135deg, #D46A38 0%, #C05C30 50%, #A84E28 100%);
  color: #fff;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(192, 92, 48, .3), 0 1px 0 rgba(255,255,255,.15) inset;
  transition: transform .25s var(--ease), box-shadow .25s;
}

/* shimmer sweep on hover */
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
}

.btn-cta:hover::after { transform: translateX(100%); }

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(192, 92, 48, .4), 0 1px 0 rgba(255,255,255,.15) inset;
}

/* Physical press feel */
.btn-cta:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 4px 12px rgba(192, 92, 48, .3);
  transition: transform .1s ease, box-shadow .1s ease;
}

.hero-btn {
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards 1.4s;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fade-in 1s ease forwards 3.2s;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  transform-origin: top;
  animation: scroll-breathe 2.4s ease-in-out infinite 3.8s;
}

@keyframes scroll-breathe {
  0%, 100% { opacity: .35; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(.7); }
}


/* ════════════════════════════════════════
   SHARED UTILITIES
════════════════════════════════════════ */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: .65; /* directional label — secondary importance */
  margin-bottom: .85rem;
}

.light-eye { color: var(--text-dim); opacity: .55; }

.section-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 4rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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


/* ════════════════════════════════════════
   PILLARS
════════════════════════════════════════ */
.pillars-section {
  background: var(--cream);
  padding: 8rem 2rem;
  text-align: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin: 4rem auto 0;
}

.pillar-card {
  will-change: transform;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  /* warm dark parchment — belongs to the same palette as the hero */
  background: linear-gradient(160deg, #28201E 0%, #211A18 100%);
  border: 1px solid rgba(192, 92, 48, 0.12);
  border-top-color: rgba(192, 92, 48, 0.22); /* faint warm top rim */
  border-radius: 16px;
  padding: 2rem 1.75rem 2.25rem;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.pillar-card:hover {
  border-color: rgba(192, 92, 48, 0.28);
  border-top-color: rgba(192, 92, 48, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 0 transparent;
}

/* thin amber left-edge accent line */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 2px;
  height: 60%;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(to bottom, transparent, rgba(192, 92, 48, 0.5), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}

.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  width: 36px;
  height: 36px;
  background: rgba(192, 92, 48, 0.1);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.pillar-icon svg { width: 18px; height: 18px; }

.pillar-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: rgba(240, 235, 232, 0.92);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.pillar-card p {
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(190, 175, 165, 0.65);
}


/* ════════════════════════════════════════
   SHOWCASE SECTIONS
════════════════════════════════════════ */
.showcase { padding: 8rem 0; position: relative; }

/* ── Margin deco shapes — desktop only ── */
.showcase-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 1s var(--ease);
  pointer-events: none;
}

.showcase-deco.visible { opacity: 1; }

.showcase-deco--left  { left: 2rem; }
.showcase-deco--right { right: 2rem; }

.showcase-deco svg { display: block; overflow: visible; }

/* Hide below 1300px where margins don't exist */
@media (max-width: 1300px) {
  .showcase-deco { display: none; }
}

.dark-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Muted streak + grain on dark showcase sections for visual continuity */
.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(192, 92, 48, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 50%, rgba(120, 40, 20, 0.06) 0%, transparent 60%);
}

.dark-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 28px,
    rgba(255, 255, 255, 0.012) 28px,
    rgba(255, 255, 255, 0.012) 29px
  );
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-image:         linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.light-section { background: var(--warm-white); }
.cream-section { background: var(--cream); }

.showcase-layout {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.showcase-layout.reverse { flex-direction: row-reverse; }

.showcase-text { flex: 1; min-width: 0; }

/* Display headings inside showcases */
.display-light {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--text-light); /* primary — full opacity */
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.display-dark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--text-dark); /* primary — full opacity */
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.display-dark em {
  font-style: italic;
  color: var(--accent);
}

.body-light {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(240, 235, 239, 0.55); /* supporting — pulled back */
  max-width: 420px;
}

.body-dark {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(30, 25, 26, 0.55); /* supporting — pulled back */
  max-width: 420px;
}

.showcase-phone {
  flex: 1;
  display: flex;
  justify-content: center;
}

.phone-wrap {
  position: relative;
  transition: transform .35s var(--ease), filter .35s ease;
}

.phone-wrap:hover {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.35));
}


/* ════════════════════════════════════════
   PHONE MOCKUP BASE
════════════════════════════════════════ */
.phone {
  width: 255px;
  aspect-ratio: 390 / 844;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.dark-phone {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 50px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}

.light-phone {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 40px 80px rgba(0,0,0,.2);
}

.phone-notch {
  width: 96px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dark-notch  { background: var(--dark); }
.light-notch { background: var(--cream); }


/* ── App bar ── */
.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 6px;
  background: var(--dark);
}

.app-bar-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-light);
}

.display-sm {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.app-bar-right { display: flex; align-items: center; gap: 7px; }

.icon-badge {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(240,235,239,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.avatar-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
}


/* ── Vault grid nav ── */
.vg-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px 5px;
  background: #F7F4EF;
}

.vg-back { font-size: 18px; color: var(--text-dark); line-height: 1; }

.vg-pills { display: flex; gap: 4px; flex: 1; }

.vg-pill {
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 100px;
  padding: 3px 8px;
  font-size: 7px;
  color: var(--text-dark);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.vg-pill:hover  { background: rgba(0,0,0,.06); }
.vg-pill:active { transform: scale(0.93); background: rgba(0,0,0,.1); }


/* ── Memory grid ── */
.memory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px 8px;
  flex: 1;
  overflow: hidden;
  background: #F7F4EF;
}

.mem-tile {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 7px;
  min-height: 80px;
}

.mem-fav {
  position: absolute;
  top: 5px; right: 6px;
  font-size: 9px;
  color: rgba(255,255,255,.65);
}

.mem-fav.dark { color: rgba(0,0,0,.25); }

.mem-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mem-play {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,.9);
}

.mem-report {
  flex: 1;
  padding: 2px 0;
}

.mem-report-title {
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.mem-report-row {
  display: flex;
  justify-content: space-between;
  font-size: 6.5px;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 2px 0;
}

.grade { color: var(--accent); font-weight: 600; }

.mem-letter { flex: 1; padding: 2px 0; }

.letter-salutation {
  font-size: 6.5px;
  font-style: italic;
  color: rgba(0,0,0,.5);
  margin-bottom: 5px;
}

.letter-line {
  height: 1px;
  background: rgba(0,0,0,.18);
  border-radius: 1px;
  margin-bottom: 4px;
}

.letter-line.short { width: 55%; }

.mem-info { margin-top: auto; }

.mem-title {
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  line-height: 1.2;
}

.mem-title.dark-txt { color: var(--text-dark); }

.mem-date {
  font-size: 6px;
  color: rgba(255,255,255,.6);
  margin-top: 1px;
}

.mem-date.dark-txt { color: var(--text-muted); }


/* ── Vault list ── */
.vault-list {
  padding: 6px 10px 4px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  overflow: hidden;
}

.vault-row {
  background: var(--dark-card);
  border-radius: 12px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.vault-row:hover  { background: #2C2426; }
.vault-row:active { transform: scale(0.97); background: #322628; }

.v-emoji { font-size: 17px; flex-shrink: 0; }

.v-info { flex: 1; min-width: 0; }

.v-name {
  font-size: 10px; font-weight: 600;
  color: var(--text-light);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.v-count { font-size: 8.5px; color: var(--text-dim); margin-top: 1px; }

.v-shared { display: flex; align-items: center; gap: 3px; margin-top: 4px; }

.v-private { font-size: 8px; color: var(--text-dim); margin-top: 4px; }

.dot-avatar {
  width: 13px; height: 13px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 6.5px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

.shared-txt { font-size: 7.5px; color: var(--text-dim); margin-left: 2px; }

.v-chev { color: var(--text-dim); font-size: 15px; flex-shrink: 0; }

.vault-new {
  background: rgba(192,92,48,.09);
  border: 1px dashed rgba(192,92,48,.3);
  border-radius: 12px;
  padding: 9px 11px;
  display: flex; align-items: center; gap: 8px;
}

.new-plus {
  width: 20px; height: 20px;
  border-radius: 6px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1; color: #fff; font-weight: 300;
}

.new-label { font-size: 10px; font-weight: 500; color: var(--accent); }


/* ── Tab bar ── */
.tab-bar {
  display: flex;
  justify-content: space-around;
  padding: 9px 0 14px;
  background: var(--warm-white);
  border-top: 1px solid rgba(0,0,0,.06);
}

.dark-tab {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
}

.tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 8.5px; color: var(--text-muted);
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}

.tab:hover  { opacity: .75; }
.tab:active { transform: scale(0.88); }

.dark-tab .tab { color: var(--text-dim); }

.tab-active { color: var(--text-dark) !important; }
.dark-tab .tab-active { color: var(--text-light) !important; }

.tab-accent { color: var(--accent) !important; }


/* ── Scan screen ── */
.scan-bar {
  padding: 8px 14px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}

.scan-title {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  color: var(--text-dark);
}

.scan-view {
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 6px;
}

.scan-frame {
  width: 218px; min-height: 270px;
  background: #F0EBE0;
  border-radius: 6px;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  overflow: hidden;
}

.corner-tl, .corner-tr, .corner-bl, .corner-br {
  position: absolute; width: 15px; height: 15px;
  border-style: solid; border-color: var(--text-dark);
}
.corner-tl { top:6px; left:6px;  border-width: 2px 0 0 2px; }
.corner-tr { top:6px; right:6px; border-width: 2px 2px 0 0; }
.corner-bl { bottom:6px; left:6px;  border-width: 0 0 2px 2px; }
.corner-br { bottom:6px; right:6px; border-width: 0 2px 2px 0; }

.scan-art { width: 100%; height: auto; display: block; }

.scan-scanning {
  position: absolute; bottom: 9px;
  font-size: 7px; letter-spacing: .14em;
  color: rgba(30,25,26,.5);
}

.scan-btn-row {
  display: flex; justify-content: center; padding: 8px 0 4px;
}

.shutter-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 2px 8px rgba(192, 92, 48, .4);
}

.shutter-btn:hover  { box-shadow: 0 4px 14px rgba(192, 92, 48, .55); transform: scale(1.06); }
.shutter-btn:active { transform: scale(0.9); box-shadow: 0 1px 4px rgba(192, 92, 48, .3); }


/* ── Share screen ── */
.share-screen {
  padding: 11px 13px 10px;
  background: var(--warm-white);
}

.share-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 9px;
}

.share-title-text {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 500;
  color: var(--text-dark);
}

.share-done-btn {
  font-size: .65rem; color: var(--accent); font-weight: 500;
  padding: 3px 8px;
  border: 1px solid var(--accent); border-radius: 100px;
}

.share-counts {
  background: var(--cream);
  border-radius: 10px;
  padding: 9px;
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.share-count-col { flex: 1; text-align: center; }

.share-divider {
  width: 1px; height: 24px;
  background: rgba(192,92,48,.2);
}

.sc-label { font-size: 8px; font-weight: 600; color: var(--text-dark); }
.sc-val   { font-size: 8px; color: var(--text-muted); margin-top: 2px; }

.field-label {
  font-size: 6.5px; font-weight: 700; letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.collab-title { margin-top: 8px; }

.invite-field {
  background: var(--cream);
  border-radius: 8px;
  padding: 7px 9px;
  font-size: 8.5px; color: var(--text-muted);
  margin-bottom: 7px;
}

.role-row { display: flex; gap: 4px; margin-bottom: 8px; }

.role-opt {
  flex: 1;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  padding: 6px 4px;
  text-align: center;
  font-size: 7.5px; font-weight: 600;
  color: var(--text-muted);
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.role-opt:hover  { border-color: rgba(192, 92, 48, .3); background: rgba(192, 92, 48, .04); }
.role-opt:active { transform: scale(0.95); }

.role-opt span { font-size: 6.5px; font-weight: 400; }

.dark-role {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.send-invite {
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 7px;
  text-align: center;
  font-size: 8.5px; font-weight: 600;
  margin-bottom: 8px;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
  position: relative;
  overflow: hidden;
}

.send-invite:hover  { filter: brightness(1.1); }
.send-invite:active { transform: scale(0.96); filter: brightness(0.95); }

.collab-list { display: flex; flex-direction: column; gap: 6px; }

.collab-row { display: flex; align-items: center; gap: 7px; }

.c-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 7.5px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

.c-info { flex: 1; min-width: 0; }
.c-name  { font-size: 8.5px; font-weight: 600; color: var(--text-dark); }
.c-email { font-size: 7.5px; color: var(--text-muted); }

.c-status { text-align: right; font-size: 7.5px; color: var(--text-dark); }
.c-role   { font-size: 7.5px; }
.c-badge  { font-size: 7px; margin-top: 1px; }
.accepted { color: #2D7A2D; }
.pending  { color: var(--text-muted); }


/* ── Tags screen ── */
.tag-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 13px 5px;
  background: #fff;
}

.back-arrow { font-size: 17px; color: var(--text-dark); }

.tag-actions { display: flex; gap: 12px; }

.tag-img { position: relative; overflow: hidden; }

.photo-pill {
  position: absolute; top: 7px; left: 7px;
  background: rgba(0,0,0,.38);
  color: #fff;
  font-size: 6.5px; font-weight: 700; letter-spacing: .1em;
  padding: 2px 6px; border-radius: 4px;
  z-index: 1;
}

.tag-body { padding: 0 13px 10px; background: #fff; }

.field-label-sm {
  font-size: 6.5px; font-weight: 700; letter-spacing: .12em;
  color: var(--text-muted);
  padding-top: 7px;
  margin-bottom: 3px;
}

.tags-row-label { display: flex; align-items: center; justify-content: space-between; }

.edit-tags {
  font-size: 6.5px; font-weight: 400;
  color: var(--accent); letter-spacing: 0;
}

.tag-field-val {
  background: #F5F0EA;
  border-radius: 7px;
  padding: 6px 9px;
  font-size: 9px; color: var(--text-dark);
  margin-bottom: 1px;
}

.tag-date-val {
  display: inline-block;
  background: #F5F0EA;
  border-radius: 7px;
  padding: 5px 9px;
  font-size: 8.5px; color: var(--text-dark);
}

.tag-group { padding-top: 4px; }

.tag-cat-row { display: flex; align-items: center; gap: 4px; margin-bottom: 3px; }
.tag-cat-icon { font-size: 8px; opacity: .55; }
.tag-cat-name { font-size: 6.5px; font-weight: 700; letter-spacing: .1em; color: var(--text-muted); }

.chip-row { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 3px; }

.chip {
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 7.5px; font-weight: 500;
}

.filled  { background: var(--accent); color: #fff; }
.outline { border: 1px solid var(--border-light); color: var(--text-muted); }


/* ════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
.final-cta {
  background: radial-gradient(ellipse 70% 60% at 50% 40%, #261F26 0%, var(--dark) 70%);
  padding: 10rem 2rem 9rem;
  text-align: center;
}

.cta-inner { max-width: 580px; margin: 0 auto; }

.inf-sm { width: 70px; height: 35px; margin-bottom: 2.5rem; }

.cta-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 5rem);
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-sub {
  font-family: var(--sans);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.cta-fine {
  margin-top: 1.5rem;
  font-size: .78rem;
  color: var(--text-dim);
  opacity: .5; /* secondary tagline — softened */
  letter-spacing: .03em;
}


/* ════════════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #E8903A);
  z-index: 200;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(192, 92, 48, .5);
}

/* Gradient scrim — blurs and fades from the top edge downward */
.top-scrim {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 99;
  background: linear-gradient(
    to bottom,
    rgba(26, 22, 26, 0.45) 0%,
    rgba(26, 22, 26, 0.18) 40%,
    rgba(26, 22, 26, 0.04) 70%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  transition: opacity .4s ease;
}

/* Fade scrim out over light sections so it doesn't tint the cream bg */
.top-scrim.light-mode {
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 244, 0.5) 0%,
    rgba(250, 248, 244, 0.15) 50%,
    transparent 100%
  );
}


/* ════════════════════════════════════════
   SIDE SECTION DOTS
════════════════════════════════════════ */
.section-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-end;
}

.section-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240, 235, 239, 0.25);
  border: 1px solid rgba(240, 235, 239, 0.2);
  transition: background .3s ease, transform .3s ease, width .3s ease;
  cursor: pointer;
  display: block;
}

/* Label that slides in on hover */
.section-dot::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.section-dot:hover::before,
.section-dot.active::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.section-dot:hover {
  background: rgba(240, 235, 239, 0.5);
  transform: scale(1.4);
}

.section-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(192, 92, 48, .5);
}

/* Over light sections — flip dot colours */
.section-dots.light-mode .section-dot {
  background: rgba(30, 25, 26, 0.2);
  border-color: rgba(30, 25, 26, 0.15);
}

.section-dots.light-mode .section-dot::before {
  color: var(--text-muted);
}

.section-dots.light-mode .section-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* Hide dots on small screens */
@media (max-width: 820px) {
  .section-dots { display: none; }
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
}

.footer-cta {
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem;
  margin-bottom: .75rem;
}

.footer-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: block;
}

.footer-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--text-light);
}

.footer-copy { font-size: .72rem; color: var(--text-dim); opacity: .4; } /* least important */


/* ════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ripple-out {
  to { transform: scale(1); opacity: 0; }
}


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

/* ════════════════════════════════════════
   MOBILE PERFORMANCE — kill expensive GPU
   ops that cause jank on phones
════════════════════════════════════════ */
@media (max-width: 820px) {

  /* Replace animated blur orbs with a static gradient — blur filter on
     animated/composited layers is the #1 mobile jank source             */
  .hero-orb { display: none; }

  .hero::before {
    animation: none;
    background:
      radial-gradient(ellipse 100% 60% at 25% 15%, rgba(192, 92, 48, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse 60% 40% at 80% 75%, rgba(120, 40, 20, 0.12) 0%, transparent 55%);
  }

  .hero::after { animation: none; }

  /* Static dark section glows — no animation */
  .dark-section::before,
  .dark-section::after { animation: none; }

  /* Disable phone hover lift (touch has no hover) */
  .phone-wrap:hover {
    transform: none;
    filter: none;
  }

  /* Disable reveal transition on very small screens — just show elements */
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

/* ════════════════════════════════════════
   TABLET  (≤820px)
════════════════════════════════════════ */
@media (max-width: 820px) {
  /* Showcase sections stack vertically */
  .showcase-layout,
  .showcase-layout.reverse {
    flex-direction: column;
    gap: 3rem;
  }

  .showcase-text { text-align: center; }
  .body-light, .body-dark { max-width: 100%; }
  .eyebrow, .light-eye { text-align: center; }

  /* Phone always on top */
  .showcase-phone,
  .showcase-layout.reverse .showcase-phone { order: -1; }

  .showcase { padding: 5rem 0; }

  /* Pillar grid 2-col on tablet */
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero orbs scale down */
  .hero::before { width: 480px; height: 480px; }
  .hero::after  { width: 340px; height: 340px; }
  .hero-orb     { width: 280px; height: 280px; }
}

/* ════════════════════════════════════════
   MOBILE  (≤520px)
════════════════════════════════════════ */
@media (max-width: 520px) {
  /* Nav */
  .site-nav { padding: .85rem 1.25rem; }
  .nav-cta  { display: none; }

  /* Hero */
  .hero { padding: 6rem 1.5rem 5rem; }
  .hero-italic  { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-caps    { font-size: .6rem; margin-bottom: 1.5rem; }
  .hero-sub     { font-size: .875rem; margin-bottom: 2rem; }

  /* Pillar cards stack single-col */
  .pillar-grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
    gap: 1rem;
  }
  .pillar-card { padding: 1.75rem 1.25rem; }

  /* Showcase sections */
  .showcase { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* Phone mockup smaller */
  .phone       { width: 220px; }
  .scan-frame  { width: 188px; }

  /* Text sizing */
  .display-dark,
  .display-light { font-size: clamp(2rem, 9vw, 3rem); }

  .body-dark,
  .body-light    { font-size: .9rem; }

  /* Footer */
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-cta { margin-bottom: 2rem; }
  .btn-cta { font-size: .85rem; padding: .8rem 1.5rem; }
}


/* ════════════════════════════════════════
   LANDING PAGE REFRESH
   The refresh preserves Bindle's existing type and color system while
   widening the primary grid and adding clearer product-led sections.
════════════════════════════════════════ */
.container {

  width: min(100%, 1240px);
  max-width: 1240px;

}

.site-nav {

  padding-right: clamp(1.25rem, 4vw, 4rem);
  padding-left: clamp(1.25rem, 4vw, 4rem);

}

.nav-links {

  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 2rem;
  transform: translateX(-50%);

}

.nav-links a {

  color: rgba(240, 235, 239, .62);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .035em;
  transition: color .25s ease;

}

.nav-links a:hover {

  color: var(--text-light);

}

.site-nav.light-bg .nav-links a {

  color: rgba(30, 25, 26, .58);

}

.site-nav.light-bg .nav-links a:hover {

  color: var(--text-dark);

}

.hero {

  /* Keep the opening product story anchored to the first viewport. */
  min-height: 100svh;
  padding: 9.5rem 2rem 5rem;
  justify-content: center;
  text-align: left;

}

.hero-inner {

  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  align-items: stretch;

}

.hero-layout {

  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);

}

.hero-copy {

  max-width: 650px;

}

.hero-heading {

  margin-bottom: 1.65rem;
  color: var(--text-light);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.25rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .96;
  opacity: 0;
  animation: fade-up .75s var(--ease) forwards .35s;

}

.hero-heading em {

  color: var(--accent);
  font-weight: 300;

}

.hero-caps {

  margin-bottom: 1.25rem;
  font-size: .68rem;
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards .15s;

}

.hero-sub {

  max-width: 57ch;
  margin: 0 0 2rem;
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards .55s;

}

.hero-actions {

  display: flex;
  align-items: center;
  gap: 1.4rem;
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards .75s;

}

.hero-btn {

  opacity: 1;
  animation: none;

}

.hero-link {

  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent);
  font-size: .84rem;
  font-weight: 500;
  transition: gap .25s var(--ease), color .25s ease;

}

.hero-link:hover {

  gap: .8rem;
  color: #DD7544;

}

.hero-proof {

  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.35rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fade-up .7s var(--ease) forwards .95s;

}

.hero-proof span {

  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(240, 235, 239, .45);
  font-size: .68rem;
  letter-spacing: .02em;

}

.hero-proof span::before {

  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: '';
  opacity: .8;

}

.hero-product {

  position: relative;
  padding: 0 0 2.25rem 1.25rem;
  opacity: 0;
  animation: fade-up .85s var(--ease) forwards .55s;

}

.hero-product::before {

  position: absolute;
  z-index: -1;
  top: -12%;
  right: -8%;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 92, 48, .18), transparent 68%);
  content: '';
  filter: blur(15px);

}

.hero-product-window {

  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: #EEE8DF;
  box-shadow: 0 42px 90px rgba(0, 0, 0, .38), 0 1px 0 rgba(255, 255, 255, .12) inset;
  color: var(--text-dark);

}

.hero-product-bar {

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(30, 25, 26, .08);
  background: rgba(255, 255, 255, .52);
  color: rgba(30, 25, 26, .55);
  font-size: .62rem;
  font-weight: 500;

}

.hero-window-controls {

  display: flex;
  gap: .35rem;

}

.hero-window-controls span {

  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(30, 25, 26, .15);

}

.hero-private {

  justify-self: end;
  padding: .28rem .6rem;
  border: 1px solid rgba(192, 92, 48, .18);
  border-radius: 100px;
  color: var(--accent-deep);

}

.hero-product-header {

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.4rem 1.25rem;

}

.hero-product-kicker {

  margin-bottom: .35rem;
  color: var(--accent);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .18em;

}

.hero-product-header h2 {

  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -.02em;

}

.hero-family-avatars {

  display: flex;
  padding-right: .3rem;

}

.hero-family-avatars span {

  display: grid;
  width: 28px;
  height: 28px;
  margin-right: -6px;
  place-items: center;
  border: 2px solid #EEE8DF;
  border-radius: 50%;
  background: var(--dark-card);
  color: var(--text-light);
  font-size: .46rem;
  font-weight: 600;

}

.hero-family-avatars span:nth-child(2) {

  background: #725848;

}

.hero-family-avatars span:nth-child(3) {

  background: #74806C;

}

.hero-family-avatars span:last-child {

  background: var(--accent);

}

.hero-memory-grid {

  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, minmax(128px, 1fr));
  gap: .75rem;
  min-height: 330px;
  padding: 0 1rem 1rem;

}

.hero-memory-card {

  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 0;
  padding: 1rem;
  border-radius: 15px;
  color: #FFF;

}

.hero-memory-card::after {

  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(20, 12, 10, .58));
  content: '';

}

.hero-memory-card strong,
.hero-memory-card small,
.hero-file-type {

  position: relative;
  z-index: 2;

}

.hero-memory-card strong {

  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;

}

.hero-memory-card small {

  margin-top: .15rem;
  font-size: .55rem;
  opacity: .68;

}

.hero-file-type {

  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: .3rem .5rem;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 100px;
  background: rgba(20, 12, 10, .14);
  font-size: .45rem;
  font-weight: 600;
  letter-spacing: .1em;

}

.hero-memory-card--drawing {

  grid-row: 1 / span 2;
  background: linear-gradient(145deg, #D57638, #B34E2B);

}

.hero-memory-card--document {

  background: linear-gradient(145deg, #9B8B72, #71614D);

}

.hero-memory-card--video {

  background: linear-gradient(145deg, #6E8993, #3F5F69);

}

.hero-butterfly {

  position: absolute;
  top: 30%;
  left: 50%;
  width: 14px;
  height: 48px;
  border-radius: 100%;
  background: #321D15;
  transform: translate(-50%, -50%);

}

.hero-butterfly::before,
.hero-butterfly::after {

  position: absolute;
  top: -13px;
  width: 72px;
  height: 74px;
  border: 2px solid rgba(50, 29, 21, .62);
  background: rgba(255, 201, 75, .62);
  content: '';

}

.hero-butterfly::before {

  right: 5px;
  border-radius: 70% 35% 58% 40%;
  transform: rotate(-12deg);

}

.hero-butterfly::after {

  left: 5px;
  border-radius: 35% 70% 40% 58%;
  transform: rotate(12deg);

}

.hero-report {

  position: absolute;
  top: 46%;
  left: 50%;
  display: flex;
  width: 66%;
  padding: .8rem;
  flex-direction: column;
  gap: .45rem;
  border-radius: 5px;
  background: rgba(255, 250, 242, .82);
  box-shadow: 0 8px 16px rgba(40, 25, 18, .15);
  transform: translate(-50%, -50%) rotate(-3deg);

}

.hero-report span {

  height: 3px;
  border-radius: 10px;
  background: rgba(76, 57, 43, .22);

}

.hero-report span:nth-child(2) {

  width: 75%;

}

.hero-report span:nth-child(3) {

  width: 55%;

}

.hero-play {

  position: absolute;
  top: 43%;
  left: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  font-size: .72rem;
  transform: translate(-50%, -50%);

}

.hero-notification {

  position: absolute;
  right: -1.25rem;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 245px;
  padding: .85rem 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(35, 29, 35, .94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .34);
  color: var(--text-light);
  backdrop-filter: blur(14px);

}

.hero-notification-avatar {

  display: grid;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-size: .55rem;
  font-weight: 600;

}

.hero-notification div {

  display: flex;
  flex-direction: column;
  gap: .2rem;

}

.hero-notification strong {

  font-size: .66rem;
  font-weight: 500;

}

.hero-notification div span {

  color: var(--text-dim);
  font-size: .58rem;

}

.hero-pillars {

  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin: 5rem 0 0;

}

.hero-pillars .pillar-card {

  min-height: 220px;

}

.process-section {

  padding: clamp(6rem, 9vw, 9rem) 0;

}

.section-intro {

  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: 4rem;

}

.section-intro .eyebrow {

  grid-column: 1 / -1;
  margin-bottom: -1.75rem;

}

.section-intro .display-dark {

  margin-bottom: 0;

}

.section-intro .body-dark {

  max-width: 52ch;
  padding-bottom: .4rem;

}

.process-grid {

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;

}

.process-card {

  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 2rem;
  border: 1px solid rgba(192, 92, 48, .12);
  border-radius: 18px;
  background: #F1ECE4;

}

.process-card:nth-child(2) {

  background: #E8E0D5;

}

.process-card:nth-child(3) {

  background: var(--dark-card);
  color: var(--text-light);

}

.process-number {

  display: block;
  margin-bottom: 4.5rem;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;

}

.process-label {

  margin-bottom: .65rem;
  color: var(--accent);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;

}

.process-card h3 {

  margin-bottom: .75rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;

}

.process-card > p:last-child {

  color: rgba(30, 25, 26, .58);
  font-size: .85rem;
  line-height: 1.7;

}

.process-card:nth-child(3) > p:last-child {

  color: rgba(240, 235, 239, .55);

}

.showcase {

  padding: clamp(6rem, 9vw, 9rem) 0;

}

.showcase-layout {

  gap: clamp(5rem, 10vw, 10rem);

}

.showcase-text {

  max-width: 540px;

}

.showcase-deco,
.section-dots {

  display: none;

}

.display-light em {

  color: var(--accent);
  font-style: italic;

}

.pricing-section {

  padding: clamp(6rem, 9vw, 9rem) 0;
  scroll-margin-top: 70px;

}

.pricing-heading {

  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: 4rem;

}

.pricing-billing-toggle {

  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  margin: calc(var(--pricing-space-4) * -0.45) auto var(--pricing-space-3);
  padding: .3rem;
  gap: .25rem;
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  background: rgba(35, 29, 35, .72);

}

.pricing-billing-option {

  padding: .65rem .9rem;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: rgba(240, 235, 239, .58);
  cursor: pointer;
  font: inherit;
  font-size: clamp(.68rem, .62rem + .12vw, .76rem);
  font-weight: 600;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;

}

.pricing-billing-option span {

  color: var(--accent);
  font-size: .85em;

}

.pricing-billing-option.is-selected {

  background: var(--accent);
  box-shadow: 0 .5rem 1.25rem rgba(192, 92, 48, .24);
  color: #FFF8F3;

}

.pricing-billing-option.is-selected span {

  color: inherit;

}

.pricing-heading .display-light {

  margin-bottom: 0;

}

.pricing-heading .body-light {

  max-width: 50ch;
  padding-bottom: .5rem;

}

.pricing-grid {

  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;

}

.pricing-card {

  position: relative;
  display: flex;
  min-height: 530px;
  padding: 2rem;
  flex-direction: column;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  background: rgba(35, 29, 35, .72);
  color: var(--text-light);

}

.pricing-card--featured {

  border-color: rgba(192, 92, 48, .55);
  background: linear-gradient(160deg, #33231F, #241C21);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .28), 0 0 0 1px rgba(192, 92, 48, .09) inset;

}

.pricing-badge {

  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .35rem .65rem;
  border-radius: 100px;
  background: rgba(192, 92, 48, .16);
  color: #E48961;
  font-size: .48rem;
  font-weight: 600;
  letter-spacing: .12em;

}

.pricing-card-top {

  min-height: 200px;

}

.pricing-name {

  margin-bottom: 2rem;
  color: var(--accent);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;

}

.pricing-price {

  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;

}

.pricing-price span {

  font-size: clamp(2.25rem, 3vw, 3.1rem);

}

.pricing-yearly {

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem .7rem;
  margin: -0.45rem 0 1rem;
  color: rgba(240, 235, 239, .62);
  font-size: .72rem;

}

.pricing-yearly strong {

  color: rgba(240, 235, 239, .86);
  font-weight: 500;

}

.pricing-yearly span {

  padding: .26rem .5rem;
  border-radius: 100px;
  background: rgba(192, 92, 48, .16);
  color: #E8A27D;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;

}

.pricing-description {

  max-width: 36ch;
  color: rgba(240, 235, 239, .5);
  font-size: .82rem;
  line-height: 1.65;

}

.pricing-features {

  display: flex;
  margin: 1rem 0 2rem;
  padding: 1.5rem 0 0;
  flex-direction: column;
  gap: .85rem;
  border-top: 1px solid var(--border-dark);
  list-style: none;

}

.pricing-features li {

  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(240, 235, 239, .72);
  font-size: .76rem;

}

.pricing-features li::before {

  display: grid;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: rgba(192, 92, 48, .14);
  color: var(--accent);
  content: '✓';
  font-size: .58rem;

}

.pricing-button,
.pricing-primary {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  border: 1px solid rgba(240, 235, 239, .14);
  border-radius: 100px;
  color: var(--text-light);
  font-size: .78rem;
  font-weight: 500;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);

}

.pricing-button:hover {

  border-color: rgba(192, 92, 48, .5);
  background: rgba(192, 92, 48, .08);
  transform: translateY(-2px);

}

.pricing-primary {

  padding: .8rem 1rem;

}

.pricing-note {

  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  color: rgba(240, 235, 239, .35);
  font-size: .68rem;
  text-align: center;

}

.faq-section {

  padding: clamp(6rem, 9vw, 9rem) 0;
  scroll-margin-top: 70px;

}

.faq-layout {

  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: clamp(4rem, 10vw, 10rem);

}

.faq-intro {

  align-self: start;

}

.faq-intro .body-dark {

  max-width: 45ch;

}

.faq-contact {

  margin-top: 1.75rem;

}

.faq-list {

  border-top: 1px solid rgba(30, 25, 26, .14);

}

.faq-item {

  border-bottom: 1px solid rgba(30, 25, 26, .14);

}

.faq-item summary {

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.55rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  font-weight: 400;
  list-style: none;

}

.faq-item summary::-webkit-details-marker {

  display: none;

}

.faq-toggle {

  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(192, 92, 48, .28);
  border-radius: 50%;

}

.faq-toggle::before,
.faq-toggle::after {

  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: var(--accent);
  content: '';
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);

}

.faq-toggle::after {

  transform: translate(-50%, -50%) rotate(90deg);

}

.faq-item[open] .faq-toggle::after {

  transform: translate(-50%, -50%) rotate(0deg);

}

.faq-item p {

  max-width: 66ch;
  padding: 0 3.5rem 1.75rem 0;
  color: rgba(30, 25, 26, .58);
  font-size: .9rem;
  line-height: 1.75;

}

.closing-section {

  padding: 5rem 0;

}

.closing-card {

  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 5rem);
  border: 1px solid rgba(192, 92, 48, .22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(192, 92, 48, .12), rgba(35, 29, 35, .7));

}

.closing-card::after {

  position: absolute;
  z-index: -1;
  top: -160px;
  right: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 92, 48, .24), transparent 68%);
  content: '';

}

.closing-card .display-light {

  margin-bottom: 1rem;

}

.closing-card .body-light {

  max-width: 55ch;

}

.closing-button {

  flex-shrink: 0;

}

.closing-action {

  display: flex;
  flex-direction: column;
  align-items: center;

}

.bindle-waitlist-form {

  width: min(100%, 600px);

}

.waitlist-form-fields {

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .65rem;

}

.bindle-waitlist-form input[type='email'] {

  width: 100%;
  min-width: 0;
  padding: .85rem 1rem;
  border: 1px solid rgba(240, 235, 239, .2);
  border-radius: 100px;
  outline: none;
  background: rgba(255, 255, 255, .08);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: .85rem;

}

.bindle-waitlist-form input[type='email']::placeholder {

  color: rgba(240, 235, 239, .5);

}

.bindle-waitlist-form input[type='email']:focus {

  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 92, 48, .18);

}

.bindle-waitlist-form button[type='submit'] {

  display: inline-flex;
  min-height: 100%;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.25rem;
  border: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, #D46A38 0%, #C05C30 50%, #A84E28 100%);
  color: #fff;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;

}

.waitlist-loader {

  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: waitlist-spin .8s linear infinite;

}

.waitlist-loader[hidden] {

  display: none;

}

.waitlist-honeypot {

  position: absolute;
  left: -9999px;

}

.waitlist-turnstile {

  margin-top: .75rem;

}

.waitlist-status {

  margin-top: .75rem;
  color: #E8B17B;
  font-size: .9rem;

}

.bindle-waitlist-form button[type='submit'][disabled] {

  cursor: wait;
  opacity: .8;

}

@keyframes waitlist-spin {

  to { transform: rotate(360deg); }

}

.closing-action .cta-fine {

  margin-top: 1rem;

}


/* ════════════════════════════════════════
   REFRESH RESPONSIVE LAYOUT
════════════════════════════════════════ */
@media (max-width: 1040px) {

  .nav-links {

    display: none;

  }

  .hero-layout {

    grid-template-columns: 1fr;
    gap: 4rem;

  }

  .hero-copy {

    max-width: 760px;

  }

  .hero-product {

    width: min(100%, 760px);
    margin: 0 auto;

  }

  .hero-pillars {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

  .pricing-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}

@media (max-width: 820px) {

  .hero {

    padding: 8rem 1.5rem 4.5rem;

  }

  .hero-pillars {

    grid-template-columns: 1fr;
    margin-top: 4rem;

  }

  .hero-pillars .pillar-card {

    min-height: 0;

  }

  .section-intro,
  .pricing-heading {

    grid-template-columns: 1fr;
    gap: 1.5rem;

  }

  .section-intro .eyebrow {

    margin-bottom: -.4rem;

  }

  .process-grid {

    grid-template-columns: 1fr;

  }

  .process-card {

    min-height: 250px;

  }

  .process-number {

    margin-bottom: 2.5rem;

  }

  .pricing-grid {

    grid-template-columns: 1fr;

  }

  .pricing-card,
  .pricing-card:last-child {

    grid-column: auto;
    min-height: 470px;

  }

  .faq-layout {

    grid-template-columns: 1fr;
    gap: 3.5rem;

  }

  .faq-intro {

    position: static;

  }

  .closing-card {

    grid-template-columns: 1fr;

  }

  .closing-button {

    justify-self: start;

  }

  .closing-action {

    align-items: flex-start;

  }

}

@media (max-width: 560px) {

  .container {

    padding-right: 1.25rem;
    padding-left: 1.25rem;

  }

  .hero {

    padding: 6.5rem 1.25rem 4rem;

  }

  .hero-heading {

    font-size: clamp(3rem, 14vw, 4.3rem);

  }

  .hero-actions {

    align-items: flex-start;
    flex-direction: column;

  }

  .hero-proof {

    flex-direction: column;

  }

  .hero-product {

    margin-left: -.25rem;
    padding: 0 0 2.5rem;

  }

  .hero-product-bar {

    grid-template-columns: 1fr auto;

  }

  .hero-product-bar > span:nth-child(2) {

    display: none;

  }

  .hero-product-header {

    align-items: flex-start;
    flex-direction: column;

  }

  .hero-memory-grid {

    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 150px;
    min-height: 0;

  }

  .hero-memory-card--drawing {

    grid-column: 1 / -1;
    grid-row: auto;

  }

  .hero-notification {

    right: .5rem;
    left: .5rem;
    min-width: 0;

  }

  .pricing-card {

    min-height: 500px;
    padding: 1.5rem;

  }

  .closing-section {

    padding: 1rem 0 4rem;

  }

  .closing-card {

    border-right: 0;
    border-left: 0;
    border-radius: 0;

  }

  .waitlist-form-fields {

    grid-template-columns: 1fr;

  }

  .bindle-waitlist-form button[type='submit'] {

    width: 100%;
    justify-content: center;

  }

}


/* ════════════════════════════════════════
   FLUID BROWSER BREAKPOINTS
   Keep the desktop composition comfortable as the viewport narrows before
   it reaches the dedicated phone layout.
════════════════════════════════════════ */
@media (max-width: 1180px) {

  .site-nav {

    padding-right: 1.5rem;
    padding-left: 1.5rem;

  }

  .nav-links {

    display: none;

  }

  .hero {

    min-height: auto;
    padding-top: 8.5rem;
    padding-bottom: 5.5rem;

  }

  .hero-layout {

    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
    gap: clamp(2.5rem, 5vw, 4rem);

  }

  .hero-heading {

    font-size: clamp(3.5rem, 6.5vw, 5.3rem);

  }

  .hero-memory-grid {

    min-height: 290px;

  }

  .section-intro {

    gap: clamp(2rem, 5vw, 4rem);

  }

  .showcase-layout {

    gap: clamp(3.5rem, 7vw, 6rem);

  }

}

@media (max-width: 960px) {

  .hero-layout {

    grid-template-columns: 1fr;
    gap: 3.5rem;

  }

  .hero-copy {

    max-width: 680px;

  }

  .hero-product {

    width: min(100%, 680px);
    margin: 0;

  }

  .hero-memory-grid {

    min-height: 340px;

  }

  .section-intro {

    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;

  }

  .section-intro .eyebrow {

    margin-bottom: 0;

  }

  .section-intro .body-dark {

    max-width: 60ch;
    padding-bottom: 0;

  }

  .process-card {

    min-height: 275px;
    padding: 1.5rem;

  }

  .pricing-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

  .pricing-card:last-child {

    grid-column: auto;

  }

}

@media (max-width: 700px) {

  .container {

    padding-right: 1.5rem;
    padding-left: 1.5rem;

  }

  .hero {

    padding-right: 1.5rem;
    padding-left: 1.5rem;

  }

  .hero-product {

    width: 100%;

  }

  .hero-memory-grid {

    grid-template-rows: repeat(2, minmax(115px, 1fr));
    min-height: 275px;

  }

  .showcase-layout,
  .showcase-layout.reverse {

    gap: 2.75rem;

  }

  .showcase-text {

    max-width: 460px;

  }

  .pricing-heading {

    padding: 1.75rem;

  }

  .closing-card {

    gap: 2rem;
    padding: 2.5rem;

  }

}

@media (prefers-reduced-motion: reduce) {

  .hero-heading,
  .hero-caps,
  .hero-sub,
  .hero-actions,
  .hero-proof,
  .hero-product {

    opacity: 1;
    animation: none;

  }

}


/* ════════════════════════════════════════
   MOBILE-FIRST COMPOSITION
   The desktop page is intentionally spacious. On phones, the experience
   becomes a short editorial sequence with smaller, more focused previews.
════════════════════════════════════════ */
.nav-cta-mobile-label {

  display: none;

}

@media (max-width: 560px) {

  html {

    scroll-padding-top: 4.5rem;

  }

  .site-nav {

    min-height: 4.25rem;
    padding: .75rem 1rem;
    background: rgba(26, 22, 26, .7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

  }

  .site-nav.light-bg {

    background: rgba(250, 248, 244, .78);

  }

  .nav-mark {

    width: 26px;
    height: 26px;

  }

  .nav-wordmark {

    font-size: 1.25rem;

  }

  .nav-cta {

    display: inline-flex;
    padding: .58rem .85rem;
    gap: .35rem;
    font-size: .72rem;

  }

  .nav-cta .waitlist-icon,
  .nav-cta-desktop-label {

    display: none;

  }

  .nav-cta-mobile-label {

    display: inline;

  }

  .hero {

    min-height: auto;
    padding: 7.5rem 1.25rem 3.25rem;

  }

  .hero-layout {

    gap: 2.75rem;

  }

  .hero-copy {

    text-align: left;

  }

  .hero-caps {

    margin-bottom: .9rem;
    letter-spacing: .18em;

  }

  .hero-heading {

    max-width: 10ch;
    margin-bottom: 1.15rem;
    font-size: clamp(2.85rem, 13.5vw, 4rem);
    line-height: 1;

  }

  .hero-sub {

    margin-bottom: 1.5rem;
    font-size: .93rem;
    line-height: 1.6;

  }

  .hero-actions {

    align-items: center;
    flex-direction: row;
    gap: 1rem;

  }

  .hero-btn {

    padding: .8rem 1rem;

  }

  .hero-proof {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem .75rem;
    margin-top: 1.45rem;

  }

  .hero-proof span {

    font-size: .62rem;

  }

  .hero-proof span:last-child {

    grid-column: 1 / -1;

  }

  .hero-product {

    width: 100%;
    margin: 0;
    padding: 0 0 2.75rem;

  }

  .hero-product-window {

    border-radius: 18px;

  }

  .hero-product-bar {

    padding: .7rem .8rem;

  }

  .hero-product-header {

    display: block;
    padding: 1.1rem 1rem .85rem;

  }

  .hero-product-header h2 {

    font-size: 1.4rem;

  }

  .hero-family-avatars {

    display: none;

  }

  .hero-memory-grid {

    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: 170px;
    gap: .55rem;
    min-height: 0;
    padding: 0 .65rem .65rem;

  }

  .hero-memory-card {

    padding: .75rem;
    border-radius: 11px;

  }

  .hero-memory-card--drawing {

    grid-column: auto;
    grid-row: auto;

  }

  .hero-memory-card--video {

    display: none;

  }

  .hero-memory-card strong {

    font-size: .86rem;

  }

  .hero-file-type {

    top: .55rem;
    left: .55rem;
    font-size: .4rem;

  }

  .hero-notification {

    right: .75rem;
    bottom: 0;
    left: .75rem;
    min-width: 0;
    padding: .7rem .8rem;

  }

  .hero-notification-avatar {

    width: 29px;
    height: 29px;

  }

  .hero-notification strong {

    font-size: .6rem;

  }

  .hero-notification div span {

    font-size: .54rem;

  }

  .process-section,
  .showcase,
  .pricing-section,
  .faq-section {

    padding-top: 4.25rem;
    padding-bottom: 4.25rem;

  }

  .section-intro {

    gap: 1rem;
    margin-bottom: 2.25rem;

  }

  .section-intro .eyebrow,
  .section-intro .display-dark,
  .section-intro .body-dark,
  .showcase-text,
  .eyebrow,
  .light-eye {

    text-align: left;

  }

  .display-dark,
  .display-light {

    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.04;

  }

  .process-grid {

    gap: .75rem;

  }

  .process-card {

    display: grid;
    min-height: 0;
    padding: 1.25rem;
    grid-template-columns: 3.2rem 1fr;
    column-gap: .75rem;

  }

  .process-number {

    grid-row: 1 / span 3;
    margin: 0;
    font-size: 2.35rem;

  }

  .process-label {

    margin-bottom: .35rem;

  }

  .process-card h3 {

    margin-bottom: .45rem;
    font-size: 1.3rem;

  }

  .process-card > p:last-child {

    font-size: .8rem;
    line-height: 1.55;

  }

  .showcase-layout,
  .showcase-layout.reverse {

    gap: 2.5rem;

  }

  .showcase-phone,
  .showcase-layout.reverse .showcase-phone {

    order: 0;

  }

  .showcase-text {

    order: -1;

  }

  .phone {

    width: 230px;

  }

  .pricing-heading {

    padding: 1.5rem;
    border-radius: 16px;

  }

  .pricing-grid {

    gap: .85rem;

  }

  .pricing-card,
  .pricing-card:last-child {

    min-height: 0;
    padding: 1.4rem;

  }

  .pricing-card--featured {

    padding-top: 2.2rem;

  }

  .pricing-price span {

    font-size: 2.45rem;

  }

  .pricing-features {

    gap: .6rem;
    margin: 1.35rem 0;

  }

  .pricing-button,
  .pricing-primary {

    width: 100%;
    justify-content: center;

  }

  .faq-layout {

    gap: 2.25rem;

  }

  .faq-item summary {

    padding: 1.1rem 0;
    font-size: .95rem;

  }

  .closing-section {

    padding: 0 0 3rem;

  }

  .closing-card {

    padding: 2.5rem 1.25rem;

  }

  .closing-action,
  .bindle-waitlist-form {

    width: 100%;

  }

}


/* ════════════════════════════════════════
   MODULAR PRICING SCALE
   A single scale keeps the cards proportional as the viewport changes.
════════════════════════════════════════ */
.pricing-section {

  --pricing-space-1: clamp(.55rem, .45rem + .25vw, .75rem);
  --pricing-space-2: clamp(.9rem, .75rem + .45vw, 1.25rem);
  --pricing-space-3: clamp(1.25rem, 1rem + .75vw, 2rem);
  --pricing-space-4: clamp(2.5rem, 4vw, 4rem);
  --pricing-copy-size: clamp(.78rem, .73rem + .12vw, .88rem);
  --pricing-card-radius: clamp(1rem, .8rem + .5vw, 1.25rem);

}

.pricing-heading {

  gap: clamp(1.5rem, 5vw, 5rem);
  margin-bottom: var(--pricing-space-4);

}

.pricing-grid {

  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: var(--pricing-space-2);

}

.pricing-card,
.pricing-card:last-child {

  min-width: 0;
  min-height: clamp(27rem, 37vw, 30rem);
  padding: var(--pricing-space-3);
  border-radius: var(--pricing-card-radius);

}

.pricing-card-top {

  min-height: clamp(11.5rem, 15vw, 12.5rem);

}

.pricing-name {

  margin-bottom: var(--pricing-space-3);
  font-size: clamp(.58rem, .53rem + .12vw, .68rem);

}

.pricing-price {

  margin-bottom: var(--pricing-space-1);
  font-size: clamp(1.05rem, .95rem + .3vw, 1.4rem);

}

.pricing-price span {

  font-size: clamp(2.2rem, 3vw, 3.1rem);

}

.pricing-yearly {

  gap: var(--pricing-space-1);
  margin: calc(var(--pricing-space-1) * -.6) 0 var(--pricing-space-2);
  font-size: clamp(.68rem, .62rem + .12vw, .76rem);

}

.pricing-yearly span {

  max-width: 100%;
  padding: .3rem .55rem;
  background: rgba(192, 92, 48, .28);
  color: #F4A17B;
  font-size: clamp(.53rem, .49rem + .1vw, .62rem);

}

.pricing-description,
.pricing-features li {

  font-size: var(--pricing-copy-size);

}

.pricing-features {

  margin: var(--pricing-space-2) 0 var(--pricing-space-3);
  padding-top: var(--pricing-space-2);
  gap: var(--pricing-space-1);

}

.pricing-features li {

  gap: var(--pricing-space-1);

}

.pricing-features li::before {

  width: clamp(1rem, .9rem + .25vw, 1.1rem);
  height: clamp(1rem, .9rem + .25vw, 1.1rem);

}

.pricing-cta {

  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 34rem);
  min-height: clamp(2.85rem, 2.6rem + .7vw, 3.15rem);
  margin: var(--pricing-space-3) auto 0;
  padding: .8rem var(--pricing-space-2);
  justify-content: center;
  font-size: clamp(.74rem, .68rem + .12vw, .84rem);

}

@media (max-width: 1100px) {

  .pricing-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

  .pricing-card:last-child {

    grid-column: auto;

  }

}

@media (max-width: 720px) {

  .pricing-heading {

    grid-template-columns: 1fr;
    gap: var(--pricing-space-2);

  }

  .pricing-billing-toggle {

    margin-top: 0;

  }

  .pricing-grid {

    grid-template-columns: minmax(0, 1fr);
    gap: var(--pricing-space-2);

  }

  .pricing-card,
  .pricing-card:last-child {

    min-height: 0;
    padding: clamp(1.25rem, 5vw, 1.75rem);

  }

  .pricing-card-top {

    min-height: 0;

  }

  .pricing-card--featured {

    padding-top: clamp(2.1rem, 8vw, 2.6rem);

  }

  .pricing-yearly {

    align-items: flex-start;
    flex-direction: column;
    gap: .45rem;

  }

  .pricing-cta {

    width: 100%;

  }

}
