/* ============================================================
   THE CYCLEVAULT — Site CSS
   Palette: calm coral + soft lavender + warm cream
   ============================================================ */

:root {
  --coral:        #FF7A85;
  --coral-soft:   #FFB4BB;
  --coral-wash:   #FFE6E8;
  --lav:          #A89BFF;
  --lav-soft:     #C9C2FF;
  --lav-wash:     #ECE8FF;
  --cream:        #FFF8F6;
  --bg:           #FBF8FB;
  --bg-2:         #F6F1F6;
  --ink:          #0F1116;
  --ink-2:        #2A2733;
  --muted:        #6B6677;
  --muted-2:      #9B95AE;
  --hair:         rgba(15, 17, 22, 0.07);
  --card:         #FFFFFF;
  --card-soft:    rgba(255, 255, 255, 0.72);

  --grad-warm:    linear-gradient(135deg, #FF7A85 0%, #B6ADFF 100%);
  --grad-soft:    linear-gradient(135deg, #FFD3D7 0%, #DAD3FF 100%);
  --grad-wash:    linear-gradient(180deg, #FFF1F2 0%, #F2EEFF 100%);

  --shadow-1:     0 1px 2px rgba(15,17,22,.04), 0 8px 24px rgba(15,17,22,.06);
  --shadow-2:     0 4px 14px rgba(168,155,255,.18), 0 22px 60px rgba(255,122,133,.12);
  --shadow-phone: 0 30px 70px -20px rgba(168,155,255,.45), 0 60px 120px -40px rgba(255,122,133,.30);

  --radius:       22px;
  --radius-lg:    32px;

  --ease-smooth:  cubic-bezier(.2,.7,.1,1);
  --ease-spring:  cubic-bezier(.16,1,.3,1);
}

/* ============================================================
   DARK MODE
   ============================================================ */
[data-theme="dark"] {
  --coral:        #FF8A95;
  --coral-soft:   #FFB4BB;
  --coral-wash:   #3A1F26;
  --lav:          #B6ADFF;
  --lav-soft:     #C9C2FF;
  --lav-wash:     #271F4A;
  --cream:        #1B1626;
  --bg:           #0C0B14;
  --bg-2:         #15131F;
  --ink:          #F5F2FB;
  --ink-2:        #DAD4E8;
  --muted:        #9B95AE;
  --muted-2:      #6B6679;
  --hair:         rgba(255,255,255,.08);
  --card:         #1A1726;
  --card-soft:    rgba(30, 26, 44, 0.72);

  --grad-wash:    linear-gradient(180deg, #1A0F2C 0%, #0A0813 100%);

  --shadow-1:     0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.4);
  --shadow-2:     0 4px 14px rgba(168,155,255,.18), 0 22px 60px rgba(0,0,0,.5);
  --shadow-phone: 0 30px 70px -20px rgba(168,155,255,.35), 0 60px 120px -40px rgba(0,0,0,.6);
}

[data-theme="dark"] body { background: var(--bg); color: var(--ink); }

/* Ambient washes - tone down for dark */
[data-theme="dark"] .ambient { background: var(--grad-wash); }
[data-theme="dark"] .wash { opacity: .25; }
[data-theme="dark"] .grain { opacity: .12; }

/* Nav */
[data-theme="dark"] .nav { background: rgba(12, 11, 20, .72); border-bottom-color: rgba(255,255,255,.06); }
[data-theme="dark"] .nav-cta { background: #F5F2FB; color: #0C0B14; }
[data-theme="dark"] .nav-cta:hover { background: #fff; }
[data-theme="dark"] .nav-links a { color: var(--muted); }
[data-theme="dark"] .nav-links a:hover { color: var(--ink); }

/* Eyebrow */
[data-theme="dark"] .eyebrow { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); color: var(--ink-2); }

/* Meta pills */
[data-theme="dark"] .meta-pill { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); color: var(--ink-2); }
[data-theme="dark"] .float-card { background: var(--card); border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .fc-title { color: var(--ink); }
[data-theme="dark"] .fc-sub { color: var(--muted); }
[data-theme="dark"] .fc-shield { background: rgba(255,138,149,.15); }

/* Buttons */
[data-theme="dark"] .btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10); color: var(--ink); }
[data-theme="dark"] .btn-ghost:hover { background: rgba(255,255,255,.10); }

/* Hero & section text */
[data-theme="dark"] .hero-title,
[data-theme="dark"] .section-title,
[data-theme="dark"] .subpage-hero h1,
[data-theme="dark"] .learn-hero h1,
[data-theme="dark"] .cta-title,
[data-theme="dark"] .article-title { color: var(--ink); }

/* Cards (Why, Privacy, Library, Learn, Future, Pricing, Article-nav, Article-figure, FAQ, Policy) */
[data-theme="dark"] .why-col,
[data-theme="dark"] .priv-card,
[data-theme="dark"] .learn-card,
[data-theme="dark"] .lib-card,
[data-theme="dark"] .future-card,
[data-theme="dark"] .fd-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .article-nav-link,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .policy-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .ps-pill,
[data-theme="dark"] .hist-back,
[data-theme="dark"] .hist-edit,
[data-theme="dark"] .article-back,
[data-theme="dark"] .article-category {
  background: var(--card);
  border-color: rgba(255,255,255,.06);
  color: var(--ink-2);
}
[data-theme="dark"] .why-col header b,
[data-theme="dark"] .priv-card h3,
[data-theme="dark"] .learn-card h3,
[data-theme="dark"] .lib-card h3,
[data-theme="dark"] .fd-card-body h3,
[data-theme="dark"] .price-head h3,
[data-theme="dark"] .future-card h4,
[data-theme="dark"] .policy-card h2,
[data-theme="dark"] .policy-card h3,
[data-theme="dark"] .contact-card h3,
[data-theme="dark"] .lib-card h3,
[data-theme="dark"] .why-list b,
[data-theme="dark"] .article-nav-title,
[data-theme="dark"] .article-body strong,
[data-theme="dark"] .article-body h2,
[data-theme="dark"] .article-body h3,
[data-theme="dark"] .hist-title,
[data-theme="dark"] .hist-section-h { color: var(--ink); }

[data-theme="dark"] .why-col-good { background: var(--card); border-color: rgba(255,138,149,.22); }
[data-theme="dark"] .why-divider .why-arrow { background: var(--card); }
[data-theme="dark"] .why-tag.bad { background: rgba(255,255,255,.06); color: var(--muted); }

/* Privacy strip & misc semi-transparent surfaces */
[data-theme="dark"] .privacy-strip,
[data-theme="dark"] .learn-disclaimer,
[data-theme="dark"] .article-disclaimer,
[data-theme="dark"] .article-end-disclaimer,
[data-theme="dark"] .policy-meta,
[data-theme="dark"] .marquee {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: var(--ink-2);
}
[data-theme="dark"] .marquee::before { background: linear-gradient(to right, var(--bg), transparent); }
[data-theme="dark"] .marquee::after  { background: linear-gradient(to left, var(--bg), transparent); }

/* Section band */
[data-theme="dark"] .section-band { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .section-band-head h2 { color: var(--ink); }

/* Filter chips */
[data-theme="dark"] .filter-chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); color: var(--ink-2); }
[data-theme="dark"] .filter-chip:hover { background: rgba(255,255,255,.09); }
[data-theme="dark"] .filter-chip .filter-count { background: rgba(255,255,255,.10); }

/* Library category badge */
[data-theme="dark"] .lib-cat { background: rgba(20,18,32,.88); color: var(--ink-2); }

/* CTA card */
[data-theme="dark"] .cta-card { background: linear-gradient(135deg, #1A1726 0%, #221A30 50%, #1A1730 100%); border-color: rgba(255,138,149,.22); }

/* Form */
[data-theme="dark"] .cta-form input { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.10); color: var(--ink); }
[data-theme="dark"] .cta-form input::placeholder { color: var(--muted-2); }
[data-theme="dark"] .cta-form input:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,138,149,.12); }
[data-theme="dark"] .cta-error { background: rgba(255,107,128,.14); border-color: rgba(255,107,128,.34); color: #FFB4BB; }

/* Footer */
[data-theme="dark"] .foot { background: rgba(255,255,255,.02); border-top-color: rgba(255,255,255,.06); }
[data-theme="dark"] .foot-bottom { border-top-color: rgba(255,255,255,.06); }
[data-theme="dark"] .foot-cols a:hover { color: var(--coral); }
[data-theme="dark"] .foot-h { color: var(--ink); }

/* History pills */
[data-theme="dark"] .hist-pill-light { background: rgba(255,255,255,.08); color: var(--ink-2); }

/* Article meta sep */
[data-theme="dark"] .article-body hr { background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent); }
[data-theme="dark"] .article-body blockquote { background: rgba(255,138,149,.06); border-color: var(--coral); color: var(--ink); }

/* Phone screens stay LIGHT in dark mode (they represent the iOS app interior). */
[data-theme="dark"] .phone .screen { color: #0F1116; }
[data-theme="dark"] .phone .today-title,
[data-theme="dark"] .phone .ring-days,
[data-theme="dark"] .phone .phase-name,
[data-theme="dark"] .phone .cal-title,
[data-theme="dark"] .phone .hist-title,
[data-theme="dark"] .phone .lock-title,
[data-theme="dark"] .phone .ins-title,
[data-theme="dark"] .phone .ins-num,
[data-theme="dark"] .phone .hist-row,
[data-theme="dark"] .phone .hist-len { color: #0F1116 !important; }

/* Theme toggle button */
.theme-toggle {
  background: transparent;
  border: 1px solid rgba(15,17,22,.08);
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, transform .25s var(--ease-spring);
  color: var(--ink);
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,.6); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .ico-moon { display: none; }
[data-theme="dark"] .theme-toggle { border-color: rgba(255,255,255,.10); color: var(--ink); }
[data-theme="dark"] .theme-toggle:hover { background: rgba(255,255,255,.08); }
[data-theme="dark"] .theme-toggle .ico-sun { display: none; }
[data-theme="dark"] .theme-toggle .ico-moon { display: inline-block; }

/* Tab bar dark — keep light because phone is light */


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv11','ss01','ss03';
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-feature-settings: 'ss01'; }

/* ============================================================
   AMBIENT BACKGROUND WASH (animated)
   ============================================================ */
.ambient {
  position: fixed; inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--grad-wash);
}
.wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  will-change: transform;
}
.wash-a {
  width: 720px; height: 720px;
  background: radial-gradient(circle, #FFCBD0 0%, transparent 60%);
  top: -180px; left: -160px;
  animation: drift-a 26s ease-in-out infinite alternate;
}
.wash-b {
  width: 640px; height: 640px;
  background: radial-gradient(circle, #D6CFFF 0%, transparent 60%);
  top: 30%; right: -200px;
  animation: drift-b 32s ease-in-out infinite alternate;
}
.wash-c {
  width: 580px; height: 580px;
  background: radial-gradient(circle, #FFE6CF 0%, transparent 60%);
  bottom: -160px; left: 30%;
  opacity: .4;
  animation: drift-c 36s ease-in-out infinite alternate;
}
@keyframes drift-a {
  0%   { transform: translate(0,0)        scale(1); }
  100% { transform: translate(160px,80px) scale(1.15); }
}
@keyframes drift-b {
  0%   { transform: translate(0,0)        scale(1); }
  100% { transform: translate(-140px,-60px) scale(1.1); }
}
@keyframes drift-c {
  0%   { transform: translate(0,0)        scale(1); }
  100% { transform: translate(80px,-100px) scale(1.12); }
}
.grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(15,17,22,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .35;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container { width: min(1180px, 92vw); margin: 0 auto; }
.container-narrow { width: min(760px, 92vw); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15,17,22,.06);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,122,133,.18);
  animation: pulse 2.6s ease-in-out infinite;
}
.eyebrow-center { display: inline-flex; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(255,122,133,.18); transform: scale(1); }
  50%     { box-shadow: 0 0 0 6px rgba(255,122,133,.02); transform: scale(1.1); }
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-title {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 700;
  color: var(--ink);
  margin: 18px 0 14px;
}
.section-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 600px; margin: 0 auto;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  background: rgba(251,248,251,.7);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(15,17,22,.05);
}
.nav-inner {
  width: min(1180px, 92vw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; }
.brand-mark img { width: 32px; height: 32px; display: block; object-fit: contain; }
.foot-brand .brand-mark img { width: 26px; height: 26px; }
.brand-text { font-size: 16px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: 14px; color: var(--muted); font-weight: 500;
  transition: color .25s var(--ease-smooth);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: -.01em;
  border-radius: 999px;
  transition: transform .25s var(--ease-spring), background .25s;
}
.nav-cta:hover { transform: translateY(-1px); background: #1a1a1f; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-inner { gap: 14px; }
}
@media (max-width: 540px) {
  .nav-cta { padding: 8px 12px; font-size: 12px; }
  .nav-cta span[aria-hidden="true"] { display: none; }
  .brand-text { font-size: 15px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  border: none; cursor: pointer;
  transition: transform .3s var(--ease-spring), box-shadow .3s, background .3s;
  font-family: inherit;
}
.btn-primary {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255,122,133,.32), 0 1px 0 rgba(255,255,255,.4) inset;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-smooth);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,122,133,.42); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost {
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(15,17,22,.08);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-arrow { transition: transform .3s var(--ease-spring); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 80px 0 40px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  width: min(1180px, 92vw); margin: 0 auto;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
}
.hero-title {
  font-size: clamp(46px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 700;
  margin: 24px 0 22px;
  color: var(--ink);
}
.hero-sub {
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.55;
}
@media (max-width: 920px) { .hero-sub { margin-inline: auto; } }
.hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
@media (max-width: 920px) { .hero-ctas { justify-content: center; } }
.hero-meta { margin-top: 36px; }
.meta-row { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 920px) { .meta-row { justify-content: center; } }
.meta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(15,17,22,.06);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500; color: var(--ink-2);
}
.meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.meta-dot-2 { background: var(--lav); }
.meta-dot-3 { background: #FFB75E; }

/* ----- Hero phone wrapper ----- */
.hero-phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  perspective: 1400px;
}
.phone-aura {
  position: absolute; inset: -10% -8% -10% -8%;
  background: radial-gradient(closest-side, rgba(255,180,187,.55), rgba(201,194,255,.35) 50%, transparent 75%);
  filter: blur(40px);
  z-index: 0;
  animation: aura-breathe 7s ease-in-out infinite;
}
@keyframes aura-breathe {
  0%,100% { transform: scale(1); opacity: .85; }
  50%     { transform: scale(1.06); opacity: 1; }
}

/* sparkles */
.sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.sp {
  position: absolute; width: 8px; height: 8px;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
  border-radius: 50%;
  filter: drop-shadow(0 0 6px rgba(255,180,187,.9));
  opacity: 0;
  animation: sparkle 5s ease-in-out infinite;
}
.sp::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 40%, #fff 50%, transparent 60%),
              linear-gradient(-45deg, transparent 40%, #fff 50%, transparent 60%);
}
.sp1 { top: 10%;  left: 8%;  animation-delay: .2s; }
.sp2 { top: 22%;  right: 5%; animation-delay: 1.4s; }
.sp3 { top: 60%;  left: 3%;  animation-delay: 2.6s; width: 10px; height: 10px; }
.sp4 { top: 75%;  right: 8%; animation-delay: 3.8s; }
.sp5 { top: 40%;  right: -2%; animation-delay: .7s; }
.sp6 { top: 88%;  left: 30%; animation-delay: 4.2s; }
@keyframes sparkle {
  0%,100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50%     { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* ----- Floating cards next to hero phone ----- */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(15,17,22,.06);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(15,17,22,.08);
  font-size: 13px;
  z-index: 4;
  animation: float-card 6s ease-in-out infinite;
}
.fc-1 { top: -2%; left: -12%; animation-delay: 0s; }
.fc-2 { top: 48%; right: -12%; animation-delay: 1.5s; padding: 12px 16px; }
.fc-3 {
  bottom: 4%; left: -8%;
  display: inline-flex; align-items: center; gap: 8px;
  animation-delay: 3s;
  font-weight: 500;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.fc-pill { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink-2); }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 3px rgba(255,122,133,.2); }
.fc-row { display: flex; align-items: center; gap: 10px; }
.fc-emoji { font-size: 20px; }
.fc-title { font-weight: 600; color: var(--ink); }
.fc-sub { font-size: 11.5px; color: var(--muted); }
.fc-shield {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--coral-wash);
  display: inline-flex; align-items: center; justify-content: center;
}
@media (max-width: 920px) {
  .fc-1, .fc-3 { left: 2%; }
  .fc-2 { right: 2%; }
}
@media (max-width: 540px) {
  .float-card { display: none; }
}

/* ============================================================
   PHONE — base
   ============================================================ */
.phone {
  --pw: 320px;
  --ph: calc(var(--pw) * 2.07);
  width: var(--pw);
  height: var(--ph);
  background: #0F1116;
  border-radius: 50px;
  padding: 12px;
  position: relative;
  box-shadow:
    inset 0 0 0 2px #2a2733,
    var(--shadow-phone);
  z-index: 3;
}
.phone::before { /* side button right */
  content: ''; position: absolute;
  right: -2px; top: 130px; width: 3px; height: 56px;
  background: #2a2733; border-radius: 2px;
}
.phone::after { /* volume buttons left */
  content: ''; position: absolute;
  left: -2px; top: 110px; width: 3px; height: 36px;
  background: #2a2733; border-radius: 2px;
  box-shadow: 0 50px 0 #2a2733, 0 100px 0 #2a2733;
  height: 36px;
}
.notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: max(78px, calc(var(--pw) * 0.34));
  height: 26px;
  background: #0F1116;
  border-radius: 16px;
  z-index: 10;
}
.notch::after {
  content: ''; position: absolute;
  top: 50%; right: 14px; transform: translateY(-50%);
  width: 8px; height: 8px;
  background: #1a1a1f; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,.05) inset;
}
.screen {
  width: 100%; height: 100%;
  background: var(--grad-wash);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.phone-hero { animation: phone-float 6s ease-in-out infinite; }
@keyframes phone-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* ============================================================
   STATUS BAR (in-screen)
   ============================================================ */
.status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px 4px;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.sb-right { display: inline-flex; align-items: center; gap: 5px; }
.sb-sig {
  width: 16px; height: 10px;
  background: linear-gradient(to right, var(--ink) 0%, var(--ink) 25%, var(--ink) 25%, var(--ink) 50%, var(--ink) 50%, var(--ink) 75%, var(--ink) 75%, var(--ink) 100%);
  -webkit-mask: linear-gradient(#000,#000) 0 100%/3px 3px no-repeat,
                linear-gradient(#000,#000) 4px 100%/3px 5px no-repeat,
                linear-gradient(#000,#000) 8px 100%/3px 7px no-repeat,
                linear-gradient(#000,#000) 12px 100%/3px 9px no-repeat;
  mask: linear-gradient(#000,#000) 0 100%/3px 3px no-repeat,
                linear-gradient(#000,#000) 4px 100%/3px 5px no-repeat,
                linear-gradient(#000,#000) 8px 100%/3px 7px no-repeat,
                linear-gradient(#000,#000) 12px 100%/3px 9px no-repeat;
  background: var(--ink);
}
.sb-wifi {
  width: 14px; height: 10px;
  background: var(--ink);
  -webkit-mask: radial-gradient(circle at 50% 100%, transparent 0 30%, #000 31% 50%, transparent 51% 60%, #000 61% 80%, transparent 81% 100%);
  mask: radial-gradient(circle at 50% 100%, transparent 0 30%, #000 31% 50%, transparent 51% 60%, #000 61% 80%, transparent 81% 100%);
}
.sb-bat {
  width: 22px; height: 11px;
  border: 1.5px solid var(--ink); border-radius: 3px;
  position: relative;
}
.sb-bat::before {
  content: ''; position: absolute; left: 1px; top: 1px; bottom: 1px; width: 70%;
  background: var(--ink); border-radius: 1px;
}
.sb-bat::after {
  content: ''; position: absolute; right: -3px; top: 3px; width: 2px; height: 4px;
  background: var(--ink); border-radius: 0 1px 1px 0;
}

/* ============================================================
   TODAY SCREEN
   ============================================================ */
.app-today { padding: 0 0 0 0; height: 100%; display: flex; flex-direction: column; position: relative; }
.today-head { padding: 26px 24px 16px; }
.today-title {
  font-size: 26px; font-weight: 800; letter-spacing: -.028em;
  color: var(--ink);
}
.today-hi {
  margin-top: 4px;
  font-size: 14px; font-weight: 600;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sparkle { color: #FFC25E; }
.today-date {
  margin-top: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  color: var(--muted-2);
}
.today-card {
  margin: 6px 18px 14px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(15,17,22,.05);
  display: flex; justify-content: center;
}
.ring { position: relative; width: 174px; height: 174px; }
.ring-svg { width: 100%; height: 100%; animation: ring-rotate 18s linear infinite; }
@keyframes ring-rotate { to { transform: rotate(360deg); } }
.ring-prog { transition: stroke-dasharray 1s var(--ease-smooth); }
.ring-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 12px;
}
.ring-sparkle { animation: gentle-spin 6s ease-in-out infinite alternate; margin-bottom: 4px; }
@keyframes gentle-spin {
  0% { transform: rotate(-8deg) scale(1); }
  100% { transform: rotate(8deg) scale(1.08); }
}
.ring-label { font-size: 10.5px; color: var(--muted); font-weight: 500; }
.ring-days {
  font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.1;
}
.ring-days span { font-size: 13px; color: var(--muted); font-weight: 600; }

.phase-card {
  margin: 0 18px 14px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255,180,187,.35), rgba(201,194,255,.28));
  border: 1px solid rgba(255,180,187,.5);
  border-radius: 18px;
  display: flex; align-items: center; gap: 12px;
}
.phase-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phase-eyebrow { font-size: 9.5px; font-weight: 700; letter-spacing: .16em; color: var(--coral); }
.phase-name { font-size: 17px; font-weight: 700; color: var(--ink); margin-top: 1px; letter-spacing: -.01em; }
.phase-sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

.cta-period {
  margin: 0 18px 14px;
  height: 50px;
  border-radius: 16px; border: none;
  background: var(--grad-warm);
  color: #fff; font-size: 15px; font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 8px 20px rgba(255,122,133,.32);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.cta-period::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.4) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: shimmer 3.6s ease-in-out infinite 1s;
}
@keyframes shimmer {
  0%, 60%, 100% { transform: translateX(-120%); }
  80% { transform: translateX(120%); }
}

.log-preview {
  margin: 0 18px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(15,17,22,.04);
}
.log-head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--ink);
}
.log-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--lav-wash);
  display: inline-flex; align-items: center; justify-content: center;
}
.log-row { margin-top: 8px; }
.log-sub { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.flow-chips { display: flex; gap: 8px; margin-top: 8px; }
.chip {
  flex: 1; text-align: center;
  padding: 10px 0;
  border-radius: 14px;
  background: #F4F1F8;
  font-size: 12.5px; font-weight: 600;
  color: var(--muted);
  border: 1.5px solid transparent;
}
.chip-active {
  background: rgba(255,122,133,.10);
  color: var(--coral);
  border-color: rgba(255,122,133,.4);
}

/* Tabbar */
.tabbar {
  margin-top: auto;
  margin: auto 12px 16px;
  padding: 10px 8px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15,17,22,.08);
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0;
}
.tab {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 9.5px; font-weight: 600; color: var(--muted-2);
}
.tab-active { color: var(--coral); }
.tab-active .tab-ico { background: var(--coral-wash); }
.tab-ico {
  width: 28px; height: 22px;
  border-radius: 8px;
  background: transparent;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
}
.tab-ico::before { content: ''; width: 16px; height: 14px; background: currentColor; -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; opacity: .8; }
.tab-today::before { -webkit-mask: linear-gradient(currentColor,currentColor) center/14px 4px no-repeat, linear-gradient(currentColor,currentColor) 0 4px/14px 4px no-repeat, linear-gradient(currentColor,currentColor) 0 8px/14px 4px no-repeat; mask: linear-gradient(currentColor,currentColor) center/14px 4px no-repeat, linear-gradient(currentColor,currentColor) 0 4px/14px 4px no-repeat, linear-gradient(currentColor,currentColor) 0 8px/14px 4px no-repeat; background: currentColor; }
.tab-cal::before  {
  background-image: none;
  background-color: transparent;
  width: 14px; height: 14px;
  border: 1.5px solid currentColor; border-radius: 3px;
  position: relative;
}
.tab-cal { position: relative; }
.tab-cal .tab-ico::after { content: ''; position: absolute; top: 4px; left: 7px; right: 7px; height: 2px; background: currentColor; }
.tab-hist::before {
  border: 1.5px solid currentColor; border-radius: 50%;
  background: none; width: 12px; height: 12px;
}
.tab-hist::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  width: 1.5px; height: 5px; background: currentColor;
}
.tab-learn::before {
  background: currentColor;
  -webkit-mask: linear-gradient(currentColor,currentColor) 0 0/10px 14px no-repeat, linear-gradient(currentColor,currentColor) 11px 0/3px 14px no-repeat;
  mask: linear-gradient(currentColor,currentColor) 0 0/10px 14px no-repeat, linear-gradient(currentColor,currentColor) 11px 0/3px 14px no-repeat;
  width: 14px; height: 14px;
}
.tab-set::before {
  background: currentColor;
  -webkit-mask: radial-gradient(circle, transparent 28%, currentColor 30%, currentColor 50%, transparent 52%);
  mask: radial-gradient(circle, transparent 28%, currentColor 30%, currentColor 50%, transparent 52%);
  width: 14px; height: 14px;
}

/* ============================================================
   CALENDAR SCREEN
   ============================================================ */
.app-cal { padding: 0; height: 100%; display: flex; flex-direction: column; }
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 8px;
}
.cal-title { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.cal-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 14px;
  background: #fff;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--lav);
  box-shadow: 0 4px 12px rgba(15,17,22,.06);
}
.cal-plus {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lav-wash);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); font-weight: 700; font-size: 16px; line-height: 1;
}
.cal-month {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 24px 10px;
}
.cal-nav {
  width: 30px; height: 30px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--lav-wash); color: var(--lav);
  font-size: 16px; font-weight: 700; line-height: 1;
}
.cal-month-wrap { flex: 1; text-align: center; }
.cal-month-name {
  font-size: 18px; font-weight: 700; letter-spacing: -.02em;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cal-phase { font-size: 11px; color: var(--muted); margin-top: 2px; }
.cal-phase b { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }

.cal-dow {
  display: grid; grid-template-columns: repeat(7,1fr);
  padding: 8px 14px 0;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; color: var(--muted-2);
}
.cal-dow span { text-align: center; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 2px;
  padding: 6px 14px 0;
}
.cd {
  aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  border-radius: 50%;
  position: relative;
}
.cd-n { line-height: 1; }
.cd-dot { width: 4px; height: 4px; border-radius: 50%; }
.dot-men { background: var(--coral); }
.dot-fol { background: #FFB1B8; }
.dot-ov  { background: var(--lav); }
.dot-lut { background: #6B5DCB; }
.cd-period {
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
}
.cd-period::before {
  content: ''; position: absolute; inset: 2px;
  border-radius: 50%; background: var(--coral);
  z-index: -1;
}
.cd-today {
  border: 2px solid var(--lav);
  color: var(--lav);
  box-shadow: 0 0 0 4px rgba(168,155,255,.18);
}
.cal-legend {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  padding: 14px 18px 4px;
  font-size: 10.5px; font-weight: 500; color: var(--muted);
}
.cal-legend span { display: inline-flex; align-items: center; gap: 5px; }
.lg-d { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.lg-pred { background: none; border: 1.5px dashed var(--coral); }
.lg-today { background: none; border: 1.5px solid var(--lav); }
.cal-legend-2 { padding-top: 4px; gap: 10px; font-size: 9.5px; }
.lg-tiny { width: 6px; height: 6px; border-radius: 50%; }
.lg-men { background: var(--coral); }
.lg-fol { background: #FFB1B8; }
.lg-ov  { background: var(--lav); }
.lg-lut { background: #6B5DCB; }

/* ============================================================
   HISTORY SCREEN
   ============================================================ */
.app-hist { padding: 0; height: 100%; display: flex; flex-direction: column; overflow: hidden; }
.hist-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px 0;
}
.hist-back, .hist-edit {
  border: none; cursor: pointer;
  background: #fff;
  box-shadow: 0 3px 10px rgba(15,17,22,.06);
  font-family: inherit;
}
.hist-back { width: 34px; height: 34px; border-radius: 50%; font-size: 16px; color: var(--ink); }
.hist-edit { padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink); }
.hist-title {
  padding: 8px 22px 14px;
  font-size: 28px; font-weight: 800; letter-spacing: -.03em;
  color: var(--ink);
}
.hist-summary {
  margin: 0 18px 14px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 18px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 4px 12px rgba(15,17,22,.04);
}
.hist-row { font-size: 13px; color: var(--ink); font-weight: 600; }
.hist-row b { font-weight: 700; }
.hist-muted { color: var(--muted); font-weight: 500; margin-top: 2px; }
.hist-right { text-align: right; }
.hist-len { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.hist-len span { font-size: 14px; font-weight: 600; }
.hist-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 8px;
  background: var(--lav-wash);
  border-radius: 8px;
  font-size: 10px; font-weight: 600; color: var(--lav);
}
.hist-section-h {
  padding: 0 22px 8px;
  font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -.02em;
}
.hist-log {
  margin: 0 18px 10px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(15,17,22,.04);
}
.hist-log-top { display: flex; justify-content: space-between; align-items: center; }
.hist-log-top b { font-size: 14px; color: var(--ink); }
.hist-pill {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10.5px; font-weight: 600;
}
.hist-pill-light { background: #EFEEEF; color: #4A4655; }
.hist-pill-med { background: rgba(255,122,133,.14); color: var(--coral); }
.hist-empty { font-size: 11px; color: var(--muted-2); margin-top: 6px; }
.hist-chips { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.hchip {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10.5px; font-weight: 600;
}
.hchip-purple { background: rgba(168,155,255,.18); color: var(--lav); }
.hchip-yellow { background: rgba(255,200,90,.22); color: #B07A1A; }
.hchip-blue   { background: rgba(133,180,255,.22); color: #3F7BD1; }

/* ============================================================
   INSIGHTS SCREEN
   ============================================================ */
.app-ins { padding: 0; height: 100%; display: flex; flex-direction: column; }
.ins-head { padding: 22px 22px 4px; }
.ins-title { font-size: 24px; font-weight: 800; letter-spacing: -.025em; color: var(--ink); }
.ins-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ins-card {
  margin: 12px 18px 0;
  padding: 14px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(15,17,22,.04);
}
.ins-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .04em; color: var(--muted); }
.ins-next {
  background: linear-gradient(135deg, #fff 0%, #FFF1F3 100%);
}
.ins-date { margin-top: 6px; display: flex; align-items: baseline; gap: 8px; }
.ins-month { font-size: 16px; font-weight: 700; color: var(--ink); }
.ins-day {
  font-size: 36px; font-weight: 800; letter-spacing: -.03em;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ins-in { font-size: 13px; color: var(--muted); font-weight: 600; }
.ins-len, .ins-phase {
  display: flex; align-items: center; justify-content: space-between;
}
.ins-len-l, .ins-phase > div:first-child { flex: 1; }
.ins-len { border: 1.5px solid rgba(168,155,255,.5); background: rgba(236,232,255,.4); }
.ins-num { font-size: 18px; font-weight: 800; color: var(--ink); margin-top: 3px; letter-spacing: -.02em; }
.ins-num span { font-size: 13px; font-weight: 600; color: var(--muted); margin-left: 4px; }
.ins-num-sm { font-size: 18px; }
.ins-len-r, .ins-leaf {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--lav-wash);
  display: inline-flex; align-items: center; justify-content: center;
}
.ins-phase .ins-leaf { background: rgba(255,180,187,.3); }
.ins-chart { margin-bottom: 18px; }
.trend-svg { width: 100%; height: auto; margin-top: 10px; display: block; }
.trend-line { stroke-dasharray: 800; stroke-dashoffset: 800; animation: draw 2.4s ease-out forwards .3s; }
.trend-area { opacity: 0; animation: fade-in 1.2s ease forwards 1.4s; }
.trend-dots circle { opacity: 0; transform-origin: center; animation: pop-in .4s ease forwards; }
.trend-dots circle:nth-child(1) { animation-delay: 1.6s; }
.trend-dots circle:nth-child(2) { animation-delay: 1.8s; }
.trend-dots circle:nth-child(3) { animation-delay: 2.0s; }
.trend-dots circle:nth-child(4) { animation-delay: 2.2s; }
.trend-dots circle:nth-child(5) { animation-delay: 2.4s; }
.trend-dots circle:nth-child(6) { animation-delay: 2.6s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade-in { to { opacity: 1; } }
@keyframes pop-in {
  0% { opacity: 0; transform: scale(.2); }
  100% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   LOCK SCREEN
   ============================================================ */
.app-lock { padding: 0; height: 100%; display: flex; flex-direction: column; }
.lock-stage {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 40px 30px;
  gap: 14px;
}
.lock-orb {
  position: relative;
  width: 110px; height: 110px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.lock-icon {
  position: relative; z-index: 2;
  width: 84px; height: 84px;
  background: #fff;
  border-radius: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(255,122,133,.25), 0 2px 8px rgba(15,17,22,.06);
}
.lock-pulse {
  position: absolute; inset: 0;
  border-radius: 28px;
  background: var(--coral);
  opacity: .25;
  animation: lock-pulse 2.4s ease-out infinite;
}
.lock-pulse-2 { animation-delay: 1.2s; }
@keyframes lock-pulse {
  0%   { transform: scale(.85); opacity: .35; }
  100% { transform: scale(1.4); opacity: 0; }
}
.lock-title { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.lock-sub { font-size: 13px; color: var(--muted); max-width: 220px; }
.lock-btn {
  margin-top: 14px;
  padding: 13px 30px;
  border: none; cursor: pointer;
  background: var(--grad-warm);
  color: #fff;
  font-family: inherit; font-size: 14px; font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(255,122,133,.32);
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-divider { display: none; }
}
.why-col {
  background: var(--card-soft);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(15,17,22,.06);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-1);
  position: relative;
}
.why-col-good { background: #fff; box-shadow: var(--shadow-2); border-color: rgba(255,122,133,.18); }
.why-col header { margin-bottom: 18px; }
.why-tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
}
.why-tag.bad { background: #F4EEF1; color: #8E7A85; }
.why-tag.good {
  background: var(--grad-warm); color: #fff;
}
.why-list li {
  display: flex; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(15,17,22,.06);
}
.why-list li:last-child { border-bottom: none; padding-bottom: 0; }
.why-list b { font-size: 15px; color: var(--ink); font-weight: 700; letter-spacing: -.01em; }
.why-list p { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.why-list .x, .why-list .check {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}
.why-list .x { background: #F4EEF1; color: #B08894; }
.why-list .check {
  background: var(--grad-warm); color: #fff;
  box-shadow: 0 3px 10px rgba(255,122,133,.3);
}
.why-divider {
  display: flex; align-items: center; justify-content: center;
}
.why-arrow {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-2);
  animation: pulse-arrow 3s ease-in-out infinite;
}
@keyframes pulse-arrow {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.08); }
}

/* ============================================================
   FEATURES (scrollytelling)
   ============================================================ */
.features { padding: 80px 0 40px; }
.feature-stage {
  position: relative;
}
.feature-rail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.feature-text { padding: 80px 0 200px; }
.f-panel {
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 0;
  opacity: .55;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-smooth), transform .8s var(--ease-smooth);
}
.f-panel.f-active { opacity: 1; transform: translateY(0); }
.f-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px; font-weight: 500;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.f-panel h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.f-panel p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 500px;
}
.f-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0;
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
}
.f-bullets li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  margin-top: 7px; flex-shrink: 0;
  background: var(--grad-warm);
}

.feature-sticky {
  position: sticky; top: 0;
  align-self: start;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.feature-sticky .phone { flex-shrink: 0; }
.phone-stage {
  --pw: 300px;
  --ph: calc(var(--pw) * 2.07);
}
@media (max-height: 760px) {
  .phone-stage { --pw: 260px; }
  .feature-sticky .phone .status-bar { font-size: 11px; padding: 12px 20px 4px; }
  .feature-sticky .phone .sb-sig { width: 13px; height: 9px; }
  .feature-sticky .phone .sb-wifi { width: 12px; height: 9px; }
  .feature-sticky .phone .sb-bat { width: 18px; height: 9px; }
  .feature-sticky .phone .sb-right { gap: 4px; }
}
@media (max-height: 620px) {
  .phone-stage { --pw: 220px; }
  .feature-sticky .phone .notch { width: max(64px, calc(var(--pw) * 0.30)); height: 22px; top: 14px; }
  .feature-sticky .phone .status-bar { font-size: 10.5px; padding: 10px 14px 4px; }
  .feature-sticky .phone .sb-sig { width: 11px; height: 8px; }
  .feature-sticky .phone .sb-wifi { width: 10px; height: 8px; }
  .feature-sticky .phone .sb-bat { width: 16px; height: 8px; }
  .feature-sticky .phone .sb-right { gap: 3px; }
}
.feature-progress {
  display: inline-flex; gap: 8px;
}
.fp-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(15,17,22,.15);
  transition: all .4s var(--ease-spring);
}
.fp-dot.fp-active {
  background: var(--grad-warm);
  width: 24px; border-radius: 999px;
}

/* Cross-fade screens */
.f-screen {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .55s var(--ease-smooth), transform .55s var(--ease-smooth);
  pointer-events: none;
}
.f-screen-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 920px) {
  .feature-rail { grid-template-columns: 1fr; gap: 30px; }
  .feature-sticky { position: static; height: auto; }
  .f-panel { min-height: auto; opacity: 1; transform: none; padding: 30px 0; }
  .feature-text { padding: 20px 0; }
}

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy { padding: 100px 0; }
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.priv-card {
  background: #fff;
  border: 1px solid rgba(15,17,22,.05);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-1);
  transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.priv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.priv-ico {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,180,187,.25), rgba(201,194,255,.25));
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.priv-card h3 {
  font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.015em;
  margin-bottom: 8px;
}
.priv-card p { font-size: 14px; color: var(--muted); }

.privacy-strip {
  margin-top: 42px;
  padding: 22px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,122,133,.18);
  border-radius: var(--radius);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
}
.ps-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  box-shadow: 0 2px 6px rgba(15,17,22,.04);
}
.ps-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad-warm);
  color: #fff; font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================================
   LEARN
   ============================================================ */
.learn { padding: 80px 0; }
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.learn-card {
  background: #fff;
  border: 1px solid rgba(15,17,22,.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .4s var(--ease-spring), box-shadow .4s;
  display: block;
}
.learn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.learn-thumb {
  aspect-ratio: 1.6;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.learn-thumb-1 { background: linear-gradient(135deg, #FFE0E4 0%, #E8E0FF 100%); }
.learn-thumb-2 { background: linear-gradient(135deg, #FFE8D6 0%, #FFD9DE 100%); }
.learn-thumb-3 { background: linear-gradient(135deg, #E0DDFF 0%, #FFE0EC 100%); }
.learn-thumb::before {
  content: ''; position: absolute; inset: -50%;
  background: radial-gradient(circle, rgba(255,255,255,.5), transparent 60%);
  animation: drift-a 20s ease-in-out infinite alternate;
}
.lc-emoji { position: relative; z-index: 1; filter: drop-shadow(0 4px 10px rgba(15,17,22,.1)); }
.learn-meta { padding: 18px 22px 4px; font-size: 11.5px; letter-spacing: .04em; color: var(--muted-2); font-weight: 600; }
.learn-card h3 { padding: 0 22px; font-size: 18px; line-height: 1.25; letter-spacing: -.02em; color: var(--ink); font-weight: 700; }
.learn-card p { padding: 8px 22px 22px; font-size: 14px; color: var(--muted); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 860px; margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid rgba(15,17,22,.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-1);
  position: relative;
  transition: transform .4s var(--ease-spring);
}
.price-card:hover { transform: translateY(-4px); }
.price-card-premium {
  background: linear-gradient(180deg, #fff 0%, #FCF7FF 100%);
  border-color: rgba(168,155,255,.3);
  box-shadow: var(--shadow-2);
}
.price-ribbon {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  background: var(--grad-warm); color: #fff;
}
.price-head { margin-bottom: 24px; }
.price-head h3 { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.price-num { font-size: 44px; font-weight: 800; letter-spacing: -.035em; color: var(--ink); margin-top: 8px; }
.price-num-grad { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-sub { font-size: 14px; color: var(--muted); margin-top: 4px; }
.price-list { margin: 20px 0 28px; }
.price-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0;
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
}
.check, .check-grad {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,122,133,.12); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}
.check-grad { background: var(--grad-warm); color: #fff; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 80px 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(15,17,22,.06);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: var(--shadow-1); }
.faq-item[open] { box-shadow: var(--shadow-2); border-color: rgba(255,122,133,.15); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: -.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary .faq-q { flex: 1; min-width: 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--lav-wash);
  position: relative;
  flex-shrink: 0;
  transition: transform .35s var(--ease-spring), background .25s;
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--lav);
  border-radius: 2px;
  transition: background .25s;
}
.faq-plus::before {
  width: 10px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-plus::after {
  width: 2px; height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-plus { background: var(--coral-wash); transform: rotate(135deg); }
.faq-item[open] .faq-plus::before,
.faq-item[open] .faq-plus::after { background: var(--coral); }
.faq-body {
  padding: 0 24px 22px;
  overflow: hidden;
  transition: height .4s cubic-bezier(.2,.7,.1,1);
}
.faq-body p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   CTA WAITLIST
   ============================================================ */
.cta { padding: 80px 0 100px; }
.cta-card {
  position: relative;
  padding: 70px 50px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff 0%, #FFF6F7 50%, #F4F0FF 100%);
  border: 1px solid rgba(255,122,133,.18);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-2);
}
.cta-aura {
  position: absolute; inset: -50%;
  background: radial-gradient(circle at 30% 50%, rgba(255,180,187,.4), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(201,194,255,.4), transparent 50%);
  filter: blur(60px);
  animation: drift-a 18s ease-in-out infinite alternate;
}
.cta-stars { position: absolute; inset: 0; pointer-events: none; }
.cs {
  position: absolute;
  font-size: 14px;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: twinkle 4s ease-in-out infinite;
}
.cs1 { top: 16%; left: 12%; animation-delay: 0s; font-size: 18px; }
.cs2 { top: 22%; right: 14%; animation-delay: 1s; }
.cs3 { bottom: 18%; left: 18%; animation-delay: 2s; font-size: 12px; }
.cs4 { bottom: 30%; right: 10%; animation-delay: .5s; font-size: 22px; }
.cs5 { top: 50%; right: 22%; animation-delay: 1.5s; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.6) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1) rotate(180deg); }
}
.cta-eyebrow {
  position: relative; z-index: 2;
  font-size: 11.5px; font-weight: 700; letter-spacing: .2em;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.cta-title {
  position: relative; z-index: 2;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 700;
  color: var(--ink);
  max-width: 700px; margin: 0 auto 14px;
}
.cta-sub {
  position: relative; z-index: 2;
  font-size: 16px; color: var(--muted);
  max-width: 540px; margin: 0 auto 28px;
}
.cta-form {
  position: relative; z-index: 2;
  display: flex; gap: 10px;
  max-width: 460px; margin: 0 auto;
  flex-wrap: wrap;
}
.cta-form input {
  flex: 1; min-width: 220px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(15,17,22,.1);
  background: #fff;
  font-family: inherit; font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.cta-form input:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,122,133,.12); }
.cta-thanks {
  width: 100%;
  font-size: 12px; color: var(--muted);
  opacity: 0;
  transition: opacity .5s;
}
.cta-thanks.visible { opacity: 1; }
.cta-error {
  width: 100%;
  font-size: 12.5px;
  color: #C5325F;
  background: rgba(255, 122, 133, .08);
  border: 1px solid rgba(255, 122, 133, .3);
  border-radius: 12px;
  padding: 10px 14px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s, max-height .3s ease;
}
.cta-error.visible { opacity: 1; max-height: 80px; }
.cta-form button[disabled] { opacity: .85; cursor: not-allowed; }
.btn-success {
  background: linear-gradient(135deg, #1F8A5B, #2BA86E) !important;
  box-shadow: 0 6px 16px rgba(31, 138, 91, .32) !important;
}
.cta-btn-spinner { display: none; }

/* ============================================================
   FEEDBACK FORM
   ============================================================ */
.feedback-form {
  max-width: 640px;
  margin: 8px auto 16px;
  padding: 28px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15,17,22,.08);
  border-radius: 24px;
  display: flex; flex-direction: column; gap: 22px;
  box-shadow: 0 10px 40px rgba(15,17,22,.04);
}
[data-theme="dark"] .feedback-form {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.ff-types { border: 0; padding: 0; margin: 0; }
.ff-label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.005em;
}
.ff-optional { color: var(--muted); font-weight: 400; }
.ff-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ff-chip { position: relative; cursor: pointer; }
.ff-chip input {
  position: absolute; opacity: 0; pointer-events: none;
}
.ff-chip-body {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15,17,22,.12);
  background: rgba(255,255,255,.85);
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-2);
  transition: border-color .2s, background .2s, color .2s, transform .15s;
}
[data-theme="dark"] .ff-chip-body {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: var(--muted);
}
.ff-chip-glyph {
  font-size: 12px;
  color: var(--coral);
  opacity: .8;
}
.ff-chip:hover .ff-chip-body { border-color: rgba(255,122,133,.4); }
.ff-chip input:focus-visible + .ff-chip-body {
  box-shadow: 0 0 0 3px rgba(255,122,133,.18);
}
.ff-chip input:checked + .ff-chip-body {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  transform: translateY(-1px);
}
.ff-chip input:checked + .ff-chip-body .ff-chip-glyph { color: #fff; opacity: 1; }
.ff-field { display: flex; flex-direction: column; gap: 8px; }
.ff-field input,
.ff-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15,17,22,.12);
  background: #fff;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.ff-field textarea { min-height: 140px; line-height: 1.55; }
.ff-field input:focus,
.ff-field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,122,133,.12);
}
[data-theme="dark"] .ff-field input,
[data-theme="dark"] .ff-field textarea {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: var(--ink);
}
[data-theme="dark"] .ff-field input::placeholder,
[data-theme="dark"] .ff-field textarea::placeholder { color: var(--muted-2); }
[data-theme="dark"] .ff-field input:focus,
[data-theme="dark"] .ff-field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,138,149,.12);
}
.ff-hint {
  font-size: 12px;
  color: var(--muted);
}
.ff-actions {
  display: flex; flex-direction: column; gap: 12px; align-items: stretch;
}
.ff-actions .btn { align-self: flex-start; }
.ff-thanks {
  font-size: 13px; color: var(--muted);
  opacity: 0;
  transition: opacity .5s;
}
.ff-thanks.visible { opacity: 1; }
.ff-error {
  font-size: 12.5px;
  color: #C5325F;
  background: rgba(255, 122, 133, .08);
  border: 1px solid rgba(255, 122, 133, .3);
  border-radius: 12px;
  padding: 10px 14px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s, max-height .3s ease;
}
.ff-error.visible { opacity: 1; max-height: 80px; }
.feedback-form button[disabled] { opacity: .85; cursor: not-allowed; }
.ff-btn-spinner { display: none; }
.ff-pp {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}
.ff-pp a { color: var(--coral); text-decoration: none; font-weight: 500; }
.ff-pp a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .feedback-form { padding: 20px; border-radius: 20px; }
  .ff-actions .btn { align-self: stretch; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  margin-top: 100px;
  padding: 22px 0;
  border-top: 1px solid rgba(15,17,22,.06);
  border-bottom: 1px solid rgba(15,17,22,.06);
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track {
  display: inline-flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 22px; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -.01em;
}
.marquee-track .m-sep {
  font-family: 'Inter', sans-serif;
  color: var(--coral);
  font-size: 14px;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(15,17,22,.06);
  background: rgba(255,255,255,.4);
  backdrop-filter: blur(12px);
}
.foot-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 720px) {
  .foot-inner { grid-template-columns: 1fr; }
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-title { font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.foot-tag { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.foot-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
@media (max-width: 480px) { .foot-cols { grid-template-columns: 1fr 1fr; } }
.foot-h { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; color: var(--ink); margin-bottom: 12px; text-transform: uppercase; }
.foot-cols a { display: block; font-size: 13.5px; color: var(--muted); padding: 4px 0; transition: color .2s; }
.foot-cols a:hover { color: var(--coral); }
.foot-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(15,17,22,.05);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12.5px; color: var(--muted);
  flex-wrap: wrap;
}
.foot-disc { max-width: 540px; text-align: right; }
@media (max-width: 720px) { .foot-disc { text-align: left; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.js-on .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-smooth), transform .9s var(--ease-smooth);
}
.js-on .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-late { transition-delay: .15s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .wash, .phone-hero, .ring-svg, .ring-inner, .marquee-track, .lock-pulse, .sp, .cs, .cta-period::after, .btn-primary::after { animation: none !important; }
}

/* ============================================================
   RESPONSIVE — small screens
   ============================================================ */
@media (max-width: 720px) {
  .hero { padding: 56px 0 30px; }
  .hero-grid { gap: 40px; }
  .hero-phone-wrap .phone { --pw: 270px; }
  .why { padding: 70px 0; }
  .features { padding: 60px 0 20px; }
  .privacy { padding: 70px 0; }
  .pricing { padding: 70px 0; }
  .faq { padding: 60px 0; }
  .cta { padding: 60px 0 80px; }
  .cta-card { padding: 50px 26px; }
  .subpage-hero { padding: 70px 0 24px; }
  .section-head { margin-bottom: 36px; }
  .why-list b { font-size: 14.5px; }
  .feature-detail-grid { padding: 20px 0 40px; gap: 14px; }
  .fd-card { padding: 24px; }
  .marquee { margin-top: 60px; }
  .marquee-track { font-size: 18px; gap: 24px; }
  .price-card { padding: 28px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .section-title { font-size: 30px; }
  .subpage-hero h1 { font-size: 38px; }
  .learn-hero h1 { font-size: 40px; }
  .cta-title { font-size: 30px; }
  .article-title { font-size: 32px; }
  .hero-phone-wrap .phone { --pw: 240px; }
  .hero-sub { font-size: 15.5px; }
  .float-card { display: none; }
  .cta-card { padding: 44px 20px; }
  .cta-form { flex-direction: column; }
  .cta-form input { min-width: 0; width: 100%; }
  .cta-form button { width: 100%; }
  .priv-card, .fd-card, .lib-card, .learn-card, .price-card, .policy-card, .contact-card, .future-card, .why-col, .article-nav-link {
    padding: 22px;
  }
  .policy-card { padding: 26px 22px; }
  .article-shell { padding: 40px 18px 60px; }
  .article-body { font-size: 16.5px; }
  .nav-inner { gap: 10px; }
  .ps-pill { font-size: 12.5px; padding: 7px 12px; }
  .ps-pill > span:first-child { display: inline-flex; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 38px; }
  .hero-phone-wrap .phone { --pw: 220px; }
  .nav-cta { display: none; }
  .brand-text { font-size: 14px; }
  .article-body { font-size: 16px; }
  .why-grid { gap: 18px; }
}

/* ============================================================
   LEARN LIBRARY (index)
   ============================================================ */
.learn-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}
.learn-hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--ink);
  margin: 18px auto 18px;
  max-width: 900px;
}
.learn-hero p.learn-hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
}
.learn-disclaimer {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 22px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168,155,255,.22);
  border-radius: 16px;
  font-size: 13.5px;
  color: var(--muted);
  display: flex; gap: 14px; align-items: flex-start;
  text-align: left;
}
.learn-disclaimer-ico {
  width: 28px; height: 28px; border-radius: 10px; flex-shrink: 0;
  background: var(--lav-wash);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--lav);
  font-weight: 800;
  font-size: 14px;
}
.learn-disclaimer a { color: var(--coral); border-bottom: 1px solid rgba(255,122,133,.3); }

/* Filter chips */
.learn-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin: 48px auto 32px;
}
.filter-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(15,17,22,.08);
  font-size: 13.5px; font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .25s var(--ease-spring);
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
}
.filter-chip:hover { transform: translateY(-1px); background: #fff; }
.filter-chip[aria-pressed="true"] {
  background: var(--grad-warm);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(255,122,133,.28);
}
.filter-chip .filter-count {
  font-size: 11px;
  opacity: .65;
  background: rgba(15,17,22,.06);
  padding: 1px 7px;
  border-radius: 999px;
}
.filter-chip[aria-pressed="true"] .filter-count { background: rgba(255,255,255,.25); opacity: 1; }

/* Library grid */
.library {
  padding: 0 0 100px;
}
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.lib-card {
  background: #fff;
  border: 1px solid rgba(15,17,22,.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .4s var(--ease-spring), box-shadow .4s;
  display: flex; flex-direction: column;
  position: relative;
}
.lib-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.lib-card.hidden { display: none; }
.lib-thumb {
  aspect-ratio: 1.5;
  background: linear-gradient(135deg, var(--coral-wash), var(--lav-wash));
  position: relative;
  overflow: hidden;
}
.lib-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-smooth);
}
.lib-card:hover .lib-thumb img { transform: scale(1.06); }
.lib-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,17,22,.04));
  pointer-events: none;
}
.lib-cat {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.lib-cat-dot { width: 6px; height: 6px; border-radius: 50%; }
.lib-body {
  padding: 20px 22px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.lib-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted-2);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.lib-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.lib-card .lib-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.lib-read {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700;
  background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  align-self: flex-start;
}
.lib-read .lib-arrow {
  -webkit-text-fill-color: var(--coral);
  color: var(--coral);
  transition: transform .25s var(--ease-spring);
}
.lib-card:hover .lib-arrow { transform: translateX(4px); }

/* Category dot colors */
.cat-foundations .lib-cat-dot, .filter-foundations.filter-chip:not([aria-pressed="true"]) .lib-cat-dot { background: var(--coral); }
.cat-variation .lib-cat-dot,   .filter-variation.filter-chip:not([aria-pressed="true"]) .lib-cat-dot   { background: var(--lav); }
.cat-symptoms .lib-cat-dot,    .filter-symptoms.filter-chip:not([aria-pressed="true"]) .lib-cat-dot    { background: #FFB75E; }
.cat-tracking .lib-cat-dot,    .filter-tracking.filter-chip:not([aria-pressed="true"]) .lib-cat-dot    { background: #6FCF97; }
.cat-wellbeing .lib-cat-dot,   .filter-wellbeing.filter-chip:not([aria-pressed="true"]) .lib-cat-dot   { background: #8FA8FF; }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(15,17,22,.06);
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  transition: background .2s;
  margin-bottom: 36px;
}
.article-back:hover { background: #fff; color: var(--coral); }
.article-category {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15,17,22,.06);
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 22px;
}
.article-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.article-meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.article-meta b {
  font-weight: 600;
  background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.article-disclaimer {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255,180,187,.16), rgba(201,194,255,.16));
  border: 1px solid rgba(168,155,255,.2);
  border-radius: 14px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 40px;
  display: flex; gap: 14px; align-items: flex-start;
}
.article-disclaimer-ico {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--lav-wash);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--lav);
  font-weight: 800;
  font-size: 14px;
}
.article-disclaimer b { color: var(--ink); }
.article-figure {
  margin: 40px -10px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-1);
}
.article-figure img {
  width: 100%; height: auto;
  display: block;
}
.article-figure figcaption {
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 10px 16px;
  background: rgba(255,255,255,.6);
  border-top: 1px solid rgba(15,17,22,.05);
}
.article-body {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-2);
}
.article-body p {
  margin: 0 0 1.2em;
  text-wrap: pretty;
}
.article-body h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 56px 0 16px;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-style: italic;
}
.article-body h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
  margin: 44px 0 12px;
  color: var(--ink);
}
.article-body h3 + p { margin-top: 4px; }
.article-body hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,17,22,.12), transparent);
  margin: 36px 0;
}
.article-body ul {
  margin: 0 0 1.4em;
  padding-left: 0;
}
.article-body ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 6px; top: .7em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-warm);
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a {
  color: var(--coral);
  border-bottom: 1px solid rgba(255,122,133,.3);
  transition: border-color .2s;
}
.article-body a:hover { border-color: var(--coral); }
.article-body blockquote {
  margin: 32px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--coral);
  background: rgba(255,180,187,.10);
  border-radius: 0 12px 12px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

.article-end-disclaimer {
  margin-top: 60px;
  padding: 22px;
  background: rgba(255,255,255,.6);
  border: 1px dashed rgba(15,17,22,.12);
  border-radius: 14px;
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}
.article-refs {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(15,17,22,.06);
}
.article-refs h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.article-refs ul li {
  padding-left: 0;
  margin-bottom: 8px;
  font-size: 13px;
}
.article-refs ul li::before { display: none; }
.article-refs a {
  color: var(--lav);
  border: none;
  word-break: break-all;
}
.article-refs a:hover { color: var(--coral); }

.article-support {
  margin-top: 40px;
  padding: 22px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}
.article-support a {
  color: var(--coral);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,122,133,.3);
}
.article-nav {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.article-nav-link {
  padding: 18px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,17,22,.06);
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
  display: block;
}
.article-nav-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: rgba(255,122,133,.2);
}
.article-nav-link.disabled { opacity: 0; pointer-events: none; }
.article-nav-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.article-nav-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.3;
}
.article-nav-next { text-align: right; }

@media (max-width: 600px) {
  .article-nav { grid-template-columns: 1fr; }
  .article-nav-next { text-align: left; }
  .article-figure { margin: 32px 0; }
}

/* ============================================================
   BRAND WORDMARK — "The CycleVault" wherever it appears
   ============================================================ */
.brand-name,
.brand-text,
.foot-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.012em;
  background: linear-gradient(110deg, #E55A6B 0%, #B6ADFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.brand-text { font-size: 17px; }
.foot-title { font-size: 17px; }
.brand-name { letter-spacing: -.01em; }
/* When the wordmark sits inside a heading already in gradient/italic, keep its identity */
h1 .brand-name, h2 .brand-name { letter-spacing: -.02em; }

/* Within colored pills, buttons, and other strong-bg containers, the wordmark
   inherits the parent's contrast color instead of fighting it with a gradient. */
.why-tag.good .brand-name,
.btn .brand-name,
.btn-primary .brand-name,
.nav-cta .brand-name,
.cta-period .brand-name,
.lock-btn .brand-name,
.price-ribbon .brand-name,
.cta-eyebrow .brand-name,
.hist-tag .brand-name,
.cd-period .brand-name,
.tab-active .brand-name {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: currentColor;
}
/* In hero footer or other emphatic spots, allow inheritance of size */

/* ============================================================
   SUBPAGES (Features, Privacy, Contact)
   ============================================================ */
.subpage-hero {
  padding: 100px 0 40px;
  text-align: center;
}
.subpage-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--ink);
  margin: 18px auto 16px;
  max-width: 900px;
}
.subpage-hero .subpage-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Features page detail cards */
.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  padding: 30px 0 60px;
}
.fd-card {
  background: #fff;
  border: 1px solid rgba(15,17,22,.06);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-1);
  display: flex; gap: 20px;
  transition: transform .4s var(--ease-spring), box-shadow .4s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.fd-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(255,122,133,.18); }
.fd-card-glyph {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,180,187,.22), rgba(201,194,255,.22));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--coral);
}
.fd-card-glyph svg { width: 26px; height: 26px; }
.fd-card-body h3 {
  font-size: 18px; font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 8px;
}
.fd-card-body p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.fd-card-body ul { margin-top: 10px; }
.fd-card-body ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px; color: var(--ink-2);
  margin-bottom: 4px;
}
.fd-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-warm);
}

.section-band {
  margin: 40px 0;
  padding: 60px 0;
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(15,17,22,.05);
  border-bottom: 1px solid rgba(15,17,22,.05);
}
.section-band-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-band-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -.03em;
  font-weight: 700;
  color: var(--ink);
  margin: 12px 0 8px;
}
.section-band-head p { font-size: 16px; color: var(--muted); max-width: 620px; margin: 0 auto; }

.future-cluster {
  margin-bottom: 50px;
}
.future-cluster-h {
  font-family: 'Fraunces', serif;
  font-style: italic;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.future-card {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(15,17,22,.05);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(8px);
}
.future-card-h {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.future-glyph {
  width: 28px; height: 28px;
  border-radius: 9px;
  background: var(--lav-wash);
  color: var(--lav);
  display: inline-flex; align-items: center; justify-content: center;
}
.future-glyph svg { width: 16px; height: 16px; }
.future-card h4 { font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.future-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* Policy / Long-form list pages */
.policy-stack {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 0 80px;
}
.policy-meta {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 0 auto 36px;
  padding: 8px 16px;
  display: inline-block;
  background: rgba(255,255,255,.6);
  border-radius: 999px;
  border: 1px solid rgba(15,17,22,.06);
}
.policy-meta-wrap { text-align: center; margin-bottom: 32px; }
.policy-card {
  background: #fff;
  border: 1px solid rgba(15,17,22,.06);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  transition: box-shadow .3s, border-color .3s;
}
.policy-card:hover { box-shadow: var(--shadow-2); border-color: rgba(168,155,255,.2); }
.policy-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.policy-card h2 .policy-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 9px;
  background: var(--grad-warm);
  color: #fff;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0;
}
.policy-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 18px 0 6px;
}
.policy-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 10px;
}
.policy-card ul {
  margin: 6px 0 14px;
  padding-left: 0;
}
.policy-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 4px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.policy-card ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: .65em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-warm);
}
.policy-card a {
  color: var(--coral);
  border-bottom: 1px solid rgba(255,122,133,.3);
  font-weight: 600;
}
.policy-card a:hover { border-color: var(--coral); }

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 920px;
  margin: 30px auto 60px;
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(15,17,22,.06);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-1);
  text-align: center;
  transition: transform .4s var(--ease-spring), box-shadow .4s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,180,187,.3), transparent 70%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: rgba(255,122,133,.18); }
.contact-card:hover::after { opacity: 1; }
.contact-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,180,187,.25), rgba(201,194,255,.25));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--coral);
  margin: 0 auto 18px;
  position: relative; z-index: 1;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-card h3 {
  font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -.02em;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.contact-card p {
  font-size: 14px; color: var(--muted);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.contact-email {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  border-bottom: 1px solid rgba(255,122,133,.25);
  transition: border-color .25s;
  position: relative; z-index: 1;
}
.contact-card:hover .contact-email { border-color: var(--coral); }
