/* ============ Tokens (from Lovable debrief) ============ */
:root {
  --canvas: #f7f5ff;
  --white: #ffffff;
  --ink: #111827;        /* gray-900 */
  --body-c: #4b5563;     /* gray-600 */
  --micro-c: #6b7280;    /* gray-500 */
  --violet: #7c3aed;
  --pink: #ec4899;
  --blue: #3b82f6;
  --indigo: #6366f1;
  --purple: #a855f7;
  --aurora: linear-gradient(110deg, #7c3aed, #ec4899, #3b82f6);
  --brand-grad: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
  --grad-blue: linear-gradient(120deg, #6366f1, #38bdf8, #3b82f6, #38bdf8, #6366f1);
  --grad-pink: linear-gradient(120deg, #6366f1, #a855f7, #ec4899, #a855f7, #6366f1);
  --grad-gold: linear-gradient(120deg, #fbbf24, #f59e0b, #fde68a, #f59e0b, #fbbf24);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Snell Roundhand', 'Apple Chancery', 'Segoe Script', 'Brush Script MT', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; }

h1, h2 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; }

.aurora {
  background: var(--aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ Chips & section headers ============ */
.chip {
  display: inline-flex;
  padding: 0.38rem 0.9rem;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #6d28d9;
  background: linear-gradient(135deg, rgba(124,58,237,0.10), rgba(236,72,153,0.10));
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.sec-sub { color: var(--body-c); font-weight: 500; margin-top: 0.9rem; font-size: 1.05rem; }
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.section-narrow { max-width: 860px; }

/* ============ Buttons ============ */
.btn-aurora {
  font-family: var(--font);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(120deg, #7c3aed, #ec4899, #3b82f6, #ec4899, #7c3aed);
  background-size: 250% 100%;
  animation: borderFlow 6s linear infinite;
  color: #fff;
  font-weight: 700; font-size: 0.98rem;
  text-decoration: none;
  border: 0; border-radius: 999px;
  padding: 1rem 2.2rem;
  box-shadow: 0 8px 24px -8px rgba(124,58,237,0.5), 0 16px 40px -16px rgba(236,72,153,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.btn-aurora::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shimmer 3.2s linear infinite;
  pointer-events: none;
}
.btn-aurora:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(124,58,237,0.6), 0 22px 50px -16px rgba(236,72,153,0.5);
}
.btn-glass {
  font-family: var(--font);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(#fff, #fff) padding-box, var(--brand-grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 10px 30px -10px rgba(124,58,237,0.25);
  color: var(--ink);
  font-weight: 700; font-size: 0.98rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 1rem 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-glass::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(124,58,237,0.12), transparent);
  animation: shimmer 4s linear infinite;
  pointer-events: none;
}
.btn-glass:hover { transform: scale(1.03); box-shadow: 0 14px 38px -10px rgba(124,58,237,0.4); }
.btn-glass .arr { transition: transform 0.25s ease; }
.btn-glass:hover .arr { transform: translateX(4px); }
.btn-aurora .arr { transition: transform 0.25s ease; }
.btn-aurora:hover .arr { transform: translateX(4px); }

/* ============ Navbar ============ */
.nav {
  position: fixed; top: 0.9rem; left: 0; right: 0; z-index: 60;
  padding: 0 1rem;
  transition: transform 0.3s ease;
}
.nav.nav-hidden { transform: translateY(-130%); }
.nav-inner {
  max-width: 768px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.6rem;
  padding: 0.55rem 0.55rem 0.55rem 1.4rem;
  background: var(--brand-grad);
  border-radius: 999px;
  box-shadow: 0 16px 40px -16px rgba(120, 60, 220, 0.55);
}
.logo {
  font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em;
  color: #fff; text-decoration: none; white-space: nowrap;
}
.logo span { opacity: 0.8; font-weight: 600; }
.nav-links { display: flex; gap: 1.5rem; margin: 0 auto; }
.nav-links a {
  position: relative;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
  padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: #fff; border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: #fff; color: #111;
  font-weight: 700; font-size: 0.88rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { transform: scale(1.03); }
@media (max-width: 640px) { .nav-links { display: none; } .nav-inner { gap: 0.8rem; } }

/* ============ Hero ============ */
.hero { position: relative; overflow: hidden; padding: 8.5rem 1.25rem 4.5rem; }
@media (min-width: 768px) { .hero { min-height: 92vh; display: flex; align-items: center; padding-top: 9rem; } }
.hero-glow {
  position: absolute; width: 640px; height: 640px; border-radius: 50%;
  right: -6%; top: 8%;
  background: radial-gradient(circle at 40% 40%, rgba(124,58,237,0.35), rgba(236,72,153,0.3) 45%, rgba(59,130,246,0.25) 70%, transparent 75%);
  filter: blur(64px); opacity: 0.55; pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1.1fr 0.9fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 10px 30px -10px rgba(15,15,31,0.12), 0 30px 60px -30px rgba(124,58,237,0.18);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.6rem;
}
.ping-dot {
  position: relative; width: 8px; height: 8px; border-radius: 50%;
  background: #10b981; display: inline-block;
}
.ping-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #34d399; animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }
.hero-sub { color: var(--body-c); font-weight: 500; font-size: 1.15rem; max-width: 46ch; margin: 1.5rem 0 2rem; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-micro { color: var(--micro-c); font-size: 0.88rem; font-weight: 500; margin-top: 1.2rem; }

@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-badge, .hero-copy h1, .hero-sub, .hero-ctas, .hero-micro { animation: riseIn 0.7s ease-out both; }
.hero-copy h1 { animation-delay: 0.06s; }
.hero-sub { animation-delay: 0.14s; }
.hero-ctas { animation-delay: 0.22s; }
.hero-micro { animation-delay: 0.3s; }

/* Phone */
.hero-phone { display: flex; justify-content: center; }
.phone {
  width: 272px; height: 560px;
  background: #101019;
  border-radius: 46px;
  padding: 12px;
  filter: drop-shadow(0 30px 60px rgba(124,58,237,0.25));
  animation: phoneIn 0.9s ease-out 0.2s both, floatY 6s ease-in-out 1.2s infinite;
  position: relative;
}
@keyframes phoneIn { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone-notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 24px; background: #101019; border-radius: 999px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(175deg, #ffffff, #f3f1fd);
  border-radius: 36px;
  padding: 3.4rem 1rem 1rem;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.app-greet { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--micro-c); }
.app-title { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.05; margin-top: 2px; }
.app-card {
  background: #fff;
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 18px;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 8px 20px -14px rgba(124,58,237,0.3);
}
.app-card-row { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.app-class { font-weight: 800; font-size: 0.88rem; }
.app-time { font-size: 0.72rem; color: var(--micro-c); }
.app-book {
  font-size: 0.7rem; font-weight: 800;
  background: var(--aurora); color: #fff;
  border-radius: 999px; padding: 0.32rem 0.8rem;
}
.app-book.booked { background: #111827; }
.app-spots { height: 5px; background: #f1eefb; border-radius: 999px; margin-top: 0.6rem; overflow: hidden; }
.app-spots i { display: block; height: 100%; width: var(--w); background: var(--aurora); border-radius: 999px; animation: barFill 1.1s ease-out 1s both; }
@keyframes barFill { from { width: 0; } }
.app-left { font-size: 0.66rem; color: var(--micro-c); margin-top: 0.35rem; }
.app-streak {
  margin-top: auto;
  background: var(--aurora); color: #fff;
  border-radius: 18px; padding: 0.85rem 1rem;
  display: flex; align-items: baseline; gap: 0.55rem;
}
.app-streak-num { font-weight: 800; font-size: 1.9rem; line-height: 1; letter-spacing: -0.02em; }
.app-streak-label { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.92; }

/* ============ Our Work ============ */
.work-card {
  background: linear-gradient(90deg, #a855f7 0%, #a855f7 50%, #ec4899 100%);
  border-radius: 30px;
  padding: 2px;
  margin-bottom: 2.5rem;
}
.work-card:last-child { margin-bottom: 0; }
.work-grid {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 30px 60px -30px rgba(124,58,237,0.20);
  padding: 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
@media (min-width: 1024px) {
  .work-grid { grid-template-columns: 1fr 1fr; padding: 3.5rem 4rem; }
  .work-grid.flip .work-media { order: 2; }
  .work-grid.flip .work-body { order: 1; }
}
.work-media {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.work-media[data-grad="a"] { background: linear-gradient(135deg, #ede9fe, #fce7f3); }
.work-media[data-grad="b"] { background: linear-gradient(135deg, #e0e7ff, #dbeafe); }
.work-media[data-grad="c"] { background: linear-gradient(135deg, #fdf2f8, #ede9fe); }
.work-media::before {
  content: attr(data-app);
  font-size: clamp(6rem, 12vw, 9rem); font-weight: 800; letter-spacing: -0.05em;
  background: var(--aurora);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.9;
}
.work-media span {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: #6d28d9; background: rgba(255,255,255,0.8);
  border-radius: 999px; padding: 0.35rem 0.9rem;
  white-space: nowrap;
}
.work-meta { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.tag-dot { width: 8px; height: 8px; border-radius: 50%; background: #7c3aed; }
.tag-label { color: #475569; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em; }
.work-badge {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: 999px; padding: 0.3rem 0.8rem;
}
.work-body h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; }
.work-bullets { list-style: none; margin-top: 1.4rem; display: grid; gap: 1.1rem; }
.work-bullets li { position: relative; padding-left: 1.5rem; color: var(--body-c); }
.work-bullets li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%; background: #a78bfa;
}

/* ============ Tile cards (Who + Included) ============ */
.grid-6 {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
@media (min-width: 640px) { .grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-6 { grid-template-columns: repeat(3, 1fr); } }
.tile-card {
  position: relative;
  background: var(--brand-grad);
  border-radius: 16px;
  padding: 1.5px;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.tile-card:hover { transform: translateY(-3px); filter: drop-shadow(0 14px 40px rgba(168,85,247,0.35)); }
.tile-card::before {
  content: ''; position: absolute; inset: 1.5px;
  background: #fff; border-radius: 14px;
}
.tile-card > .icon-tile, .tile-card > h3, .tile-card > p { position: relative; }
.tile-card > .icon-tile { margin: 1.5rem 1.5rem 1rem; }
.tile-card > h3 { margin: 0 1.5rem 0.4rem; font-size: 1.1rem; }
.tile-card > p { margin: 0 1.5rem 1.5rem; color: var(--body-c); font-size: 0.95rem; }
.icon-tile { margin: 0; }
.tile-card {
  /* inner via pseudo wrapper */
}
.tile-card { position: relative; }
.tile-card > .icon-tile, .tile-card > h3, .tile-card > p { position: relative; }
.tile-card::before {
  content: ''; position: absolute; inset: 1.5px;
  background: #fff; border-radius: 14px;
}
.tile-card { padding: 1.5px; }
.tile-card > * { background: transparent; }
.tile-card { overflow: hidden; }
.tile-inner-pad { padding: 1.5rem; }
.tile-card > .icon-tile { margin: 1.5rem 1.5rem 1rem; }
.tile-card > h3 { margin: 0 1.5rem 0.4rem; font-size: 1.1rem; }
.tile-card > p { margin: 0 1.5rem 1.5rem; color: var(--body-c); font-size: 0.95rem; }
.icon-tile {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-grad);
  display: grid; place-items: center;
  box-shadow: 0 10px 22px -10px rgba(236,72,153,0.5);
}
.icon-tile svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============ Pricing ============ */
.grid-3 {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: stretch;
}
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.price-wrap {
  position: relative;
  border-radius: 24px;
  padding: 2px;
  background-size: 300% 100%;
  animation: borderFlow 8s linear infinite;
}
.tier-blue { background-image: var(--grad-blue); }
.tier-pink { background-image: var(--grad-pink); animation-duration: 6s; }
.tier-gold { background-image: var(--grad-gold); }
@keyframes borderFlow { 0% { background-position: 0% 0; } 50% { background-position: 100% 0; } 100% { background-position: 0% 0; } }
.price-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  height: 100%;
  display: flex; flex-direction: column;
}
.price-tag {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #fff;
  background: linear-gradient(90deg, #4f46e5, #9333ea);
  border-radius: 999px;
  padding: 0.45rem 1.15rem;
  box-shadow: 0 10px 24px -10px rgba(140, 60, 230, 0.6);
  white-space: nowrap;
}
.tier-head { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; min-height: 32px; }
.tier-badge {
  font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  white-space: nowrap;
}
.tier-blue .tier-badge { background: #e0e7ff; color: #4338ca; }
.tier-pink .tier-badge { background: #f3e8ff; color: #7e22ce; }
.tier-gold .tier-badge { background: #fef3c7; color: #b45309; }
.tier-desc { color: var(--body-c); font-size: 0.95rem; margin-top: 0.8rem; min-height: 60px; }
.price { margin-top: 0.8rem; display: flex; align-items: baseline; gap: 0.55rem; min-height: 56px; }
.price small { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: #64748b; }
.price span { font-weight: 800; font-size: 2.4rem; letter-spacing: -0.03em; color: #0f172a; }
.tier-btn {
  display: block; text-align: center; text-decoration: none;
  color: #fff; font-weight: 700; font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  margin-top: 1.2rem;
  position: relative; overflow: hidden;
  background-size: 200% 100%;
  animation: borderFlow 6s linear infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-blue .tier-btn { background-image: linear-gradient(120deg, #6366f1, #3b82f6, #38bdf8, #3b82f6, #6366f1); box-shadow: 0 10px 30px -8px rgba(99,102,241,0.45); }
.tier-pink .tier-btn { background-image: linear-gradient(120deg, #6366f1, #a855f7, #ec4899, #a855f7, #6366f1); box-shadow: 0 10px 30px -8px rgba(168,85,247,0.45); }
.tier-gold .tier-btn { background-image: linear-gradient(120deg, #f59e0b, #fbbf24, #fde68a, #fbbf24, #f59e0b); box-shadow: 0 10px 30px -8px rgba(245,158,11,0.45); }
.tier-btn:hover { transform: translateY(-2px); }
.tier-btn::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shimmer 3.2s linear infinite;
}
@keyframes shimmer { 0% { left: -60%; } 100% { left: 130%; } }
.tier-includes {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #94a3b8;
  margin-top: 1.7rem;
}
.price-card ul { list-style: none; margin: 0.9rem 0 0.3rem; display: grid; gap: 0.65rem; }
.price-card li { font-size: 0.9rem; color: #334155; padding-left: 1.7rem; position: relative; }
.price-card li::before {
  content: ''; position: absolute; left: 0; top: 0.24em;
  width: 1em; height: 1em;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tier-blue li::before { background: #6366f1; }
.tier-pink li::before { background: #a855f7; }
.tier-gold li::before { background: #f59e0b; }

/* ============ Founder CTA ============ */
.founder-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center; max-width: 1100px;
}
@media (min-width: 1024px) { .founder-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.founder-note p:not(.chip):not(.signature):not(.signature-sub) {
  color: var(--body-c); font-size: 1.08rem; margin-top: 1.2rem;
}
.founder-note h2 { margin-top: 0.2rem; }
.signature { font-family: var(--script); font-size: 2.4rem; color: var(--ink); margin-top: 1.8rem; }
.signature-sub { color: var(--micro-c); font-size: 0.88rem; margin-top: 0.2rem; }
.founder-card-wrap {
  background: var(--brand-grad);
  border-radius: 18px;
  padding: 1.5px;
}
.founder-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 20px 60px -20px rgba(168,85,247,0.35);
}
.founder-card h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-top: 0.2rem; }
.founder-card p:not(.chip):not(.founder-micro) { color: var(--body-c); margin: 0.8rem 0 1.6rem; }
.founder-micro { color: var(--micro-c); font-size: 0.85rem; margin-top: 1.1rem; }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 1rem; }
.faq-wrap {
  background: linear-gradient(90deg, #a855f7, #a855f7, #ec4899);
  border-radius: 12px;
  padding: 2px;
  transition: box-shadow 0.3s ease;
}
.faq-wrap:hover { box-shadow: 0 10px 30px rgba(168,85,247,0.3); }
.faq-wrap details { background: #fff; border-radius: 10px; padding: 1.15rem 1.4rem; }
summary {
  font-weight: 600; font-size: 1.05rem; cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 0.7rem;
}
summary::-webkit-details-marker { display: none; }
summary em { font-style: normal; font-weight: 600; color: #9333ea; }
.faq-plus { margin-left: auto; position: relative; width: 18px; height: 18px; flex: none; transition: transform 0.25s ease; }
.faq-plus::before, .faq-plus::after {
  content: ''; position: absolute; background: #6b7280; border-radius: 2px;
}
.faq-plus::before { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-plus::after { left: 0; top: 8px; width: 18px; height: 2px; }
details[open] .faq-plus { transform: rotate(45deg); }
.faq-wrap details p { color: #374151; margin-top: 0.8rem; padding-left: 2rem; }

/* ============ Footer ============ */
.footer-outer { padding: 1.5rem 1rem 2rem; }
.footer-card {
  max-width: 1240px; margin: 0 auto;
  background: var(--brand-grad);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 640px) { .footer-card { padding: 3rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.footer-brand { font-weight: 800; font-size: 1.15rem; color: #fff; letter-spacing: -0.01em; }
.footer-text { font-size: 0.95rem; margin-top: 0.7rem; max-width: 34ch; }
.footer-mail { display: block; color: #fff; font-weight: 600; font-size: 0.92rem; margin-top: 1rem; text-decoration: none; }
.footer-mail:hover { text-decoration: underline; }
.footer-ig {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; margin-top: 0.7rem;
}
.footer-ig:hover { color: #fff; }
.footer-ig svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-head { color: #fff; font-weight: 700; margin-bottom: 0.9rem; }
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a { text-decoration: none; font-size: 0.95rem; color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2.5rem; padding-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ============ Consent ============ */
.consent {
  position: fixed; bottom: 1.2rem; left: 1.2rem; z-index: 100;
  max-width: 400px;
  background: #fff;
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 18px;
  box-shadow: 0 28px 70px -22px rgba(80, 40, 180, 0.4);
  padding: 1.25rem 1.4rem;
}
@media (max-width: 520px) { .consent { right: 1.2rem; } }
.consent p { font-size: 0.88rem; color: var(--body-c); }
.consent a { color: #7c3aed; font-weight: 600; }
.consent-btns { display: flex; gap: 0.6rem; margin-top: 1rem; }
.btn-consent {
  border: 0; cursor: pointer; font-family: var(--font);
  font-weight: 700; font-size: 0.88rem;
  border-radius: 999px; padding: 0.6rem 1.4rem;
  transition: transform 0.15s ease;
}
.btn-consent:active { transform: scale(0.97); }
.btn-consent.accept { background: var(--aurora); color: #fff; }
.btn-consent.decline { background: #f3f4f6; color: var(--ink); }

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translate3d(0, 12px, 0); transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
.grid-6 .reveal:nth-child(2), .grid-3 .reveal:nth-child(2), .faq-list .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid-6 .reveal:nth-child(3), .grid-3 .reveal:nth-child(3), .faq-list .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid-6 .reveal:nth-child(4), .faq-list .reveal:nth-child(4) { transition-delay: 0.24s; }
.grid-6 .reveal:nth-child(5), .faq-list .reveal:nth-child(5) { transition-delay: 0.32s; }
.grid-6 .reveal:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ V3: Sectioning, marquee, dark sections, shine ============ */

/* Animated aurora text */
.aurora { background-size: 200% 100%; animation: auroraShift 6s ease-in-out infinite; }
@keyframes auroraShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Hero blob drift */
.hero-glow { animation: blobDrift 14s ease-in-out infinite; }
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.08); }
}

/* Marquee */
.marquee {
  background: #0a0a1f;
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.2rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  color: rgba(255,255,255,0.75);
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  white-space: nowrap;
}
.marquee-track i {
  width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: linear-gradient(110deg, #7c3aed, #ec4899);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Dark sections */
.section-dark {
  background:
    radial-gradient(rgba(124,58,237,0.14) 1px, transparent 1.5px) 0 0 / 26px 26px,
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,58,237,0.18), transparent 65%),
    #0a0a1f;
  position: relative;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .sec-sub { color: #b0aecd; }
.chip-dark {
  color: #c4b5fd;
  background: rgba(124,58,237,0.15);
  border-color: rgba(167,139,250,0.3);
}

/* Work cards on dark */
.section-dark .work-card {
  background: linear-gradient(90deg, #a855f7, #6366f1 40%, #ec4899);
  background-size: 200% 100%;
  animation: auroraShift 8s ease-in-out infinite;
  position: relative;
}
.section-dark .work-grid {
  background: linear-gradient(160deg, #14142e, #0f0f24);
  box-shadow: 0 30px 80px -30px rgba(124,58,237,0.45);
  position: relative;
  overflow: hidden;
}
.section-dark .work-grid::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-12deg);
  transition: left 0.9s ease;
  pointer-events: none;
}
.section-dark .work-card:hover .work-grid::after { left: 130%; }
.section-dark .work-bullets li { color: #c7c5e0; }
.section-dark .tag-label { color: #a5a3c4; }
.section-dark .tag-dot { box-shadow: 0 0 12px rgba(167,139,250,0.9); }
.section-dark .work-media { box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6); }

/* Founder section on dark */
.section-dark .founder-note p:not(.chip):not(.signature):not(.signature-sub) { color: #c7c5e0; }
.section-dark .signature { color: #fff; }
.section-dark .signature-sub { color: #8f8db0; }
.section-dark .founder-card-wrap {
  background-size: 200% 100%;
  animation: auroraShift 7s ease-in-out infinite;
}
.section-dark .founder-card { box-shadow: 0 30px 80px -25px rgba(124,58,237,0.5); }

/* Tint section (pricing) */
.section-tint {
  background:
    radial-gradient(ellipse 55% 45% at 18% 20%, rgba(124,58,237,0.12), transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(236,72,153,0.12), transparent 70%),
    radial-gradient(ellipse 45% 40% at 70% 10%, rgba(59,130,246,0.1), transparent 70%),
    #faf9ff;
}

/* Icon tile pop on hover */
.tile-card:hover .icon-tile { transform: scale(1.08) rotate(-3deg); }
.icon-tile { transition: transform 0.3s ease; }

/* Price glow halo */
.price-wrap::after {
  content: ''; position: absolute; inset: -6px; z-index: -1;
  border-radius: 28px;
  background: inherit;
  filter: blur(22px); opacity: 0.35;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.55; } }
.price-wrap { isolation: isolate; }


/* ============ Hero image (real phones) ============ */
.hero-img {
  width: 100%; max-width: 360px; height: auto; display: block;
  filter: drop-shadow(0 30px 60px rgba(124,58,237,0.28));
  animation: phoneIn 0.9s ease-out 0.2s both, floatY 6s ease-in-out 1.2s infinite;
}
@media (max-width: 1023px) { .hero-img { max-width: 340px; margin: 0 auto; } }


/* ============ Logo mark ============ */
.logo { display: flex; align-items: center; }
.logo-mark { height: 34px; width: auto; display: block; }
@media (max-width: 640px) { .logo-mark { height: 30px; } }


/* ============ Work card real image ============ */
.work-media-img { aspect-ratio: 4 / 3; }
.work-media-img::before { content: none; }
.work-media-img picture, .work-media-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 20px; display: block;
}
.work-media-img { position: relative; }
.work-media-img span { display: none; }

/* ============ Bento: What's Included ============ */
.section-bento {
  background:
    radial-gradient(ellipse 50% 40% at 80% 15%, rgba(236,72,153,0.08), transparent 70%),
    radial-gradient(ellipse 50% 45% at 15% 80%, rgba(124,58,237,0.09), transparent 70%),
    linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px),
    #fbfaff;
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}
.bento {
  display: grid; gap: 1.2rem;
  grid-template-columns: 1fr;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .b-design { grid-column: span 2; }
  .b-founder { grid-column: span 3; }
}
.bento-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 22px;
  padding: 1.8rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -30px rgba(124,58,237,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 30px 70px -30px rgba(168,85,247,0.45);
}
/* top gradient hairline that glows on hover */
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: var(--aurora);
  background-size: 200% 100%;
  animation: auroraShift 6s ease-in-out infinite;
  opacity: 0.5; border-radius: 999px;
  transition: opacity 0.3s ease, left 0.3s ease, right 0.3s ease;
}
.bento-card:hover::before { opacity: 1; left: 4%; right: 4%; }
.bento-card h3 { font-size: 1.12rem; margin-top: 1rem; }
.bento-card p { color: var(--body-c); font-size: 0.95rem; margin-top: 0.45rem; }
.b-icon {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--brand-grad);
  background-size: 200% 100%;
  animation: auroraShift 7s ease-in-out infinite;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -10px rgba(236,72,153,0.55);
}
.b-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.b-icon-spin svg { animation: spinSlow 9s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.b-icon-pulse { animation: auroraShift 7s ease-in-out infinite, iconPulse 3s ease-in-out infinite; }
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 10px 24px -10px rgba(236,72,153,0.55); }
  50% { box-shadow: 0 10px 34px -6px rgba(124,58,237,0.75); }
}

/* Design card: drifting layered UI panels */
.b-design { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 640px) { .b-design { grid-template-columns: 1fr 1fr; align-items: center; } }
.b-visual { position: relative; min-height: 170px; }
.layer {
  position: absolute; border-radius: 14px;
  border: 1px solid rgba(124,58,237,0.18);
}
.layer.l1 {
  width: 62%; height: 78%; left: 4%; top: 8%;
  background: linear-gradient(140deg, #ede9fe, #fce7f3);
  animation: drift1 7s ease-in-out infinite;
}
.layer.l2 {
  width: 52%; height: 62%; left: 26%; top: 22%;
  background: #fff;
  box-shadow: 0 16px 40px -18px rgba(124,58,237,0.4);
  animation: drift2 7s ease-in-out infinite;
}
.layer.l3 {
  width: 34%; height: 34%; left: 56%; top: 6%;
  background: var(--aurora);
  background-size: 200% 100%;
  opacity: 0.9;
  animation: drift1 8s ease-in-out infinite reverse, auroraShift 8s ease-in-out infinite;
}
@keyframes drift1 { 0%, 100% { transform: translate(0,0) rotate(-2deg); } 50% { transform: translate(6px,-8px) rotate(0deg); } }
@keyframes drift2 { 0%, 100% { transform: translate(0,0) rotate(1.5deg); } 50% { transform: translate(-6px,6px) rotate(0deg); } }

/* Launch card: approved pill */
.b-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1.1rem;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}
.b-pill i {
  width: 7px; height: 7px; border-radius: 50%; background: #10b981;
  position: relative;
}
.b-pill i::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #34d399; animation: ping 1.8s cubic-bezier(0,0,0.2,1) infinite;
}

/* Analytics card: living bars */
.b-bars {
  display: flex; align-items: flex-end; gap: 0.45rem;
  height: 56px; margin-top: 1.2rem;
}
.b-bars i {
  flex: 1; border-radius: 5px 5px 2px 2px;
  background: var(--aurora); background-size: 100% 300%;
  transform-origin: bottom;
  animation: barLive 3.2s ease-in-out infinite;
}
.b-bars i:nth-child(1) { height: 40%; animation-delay: 0s; }
.b-bars i:nth-child(2) { height: 62%; animation-delay: 0.2s; }
.b-bars i:nth-child(3) { height: 48%; animation-delay: 0.4s; }
.b-bars i:nth-child(4) { height: 82%; animation-delay: 0.6s; }
.b-bars i:nth-child(5) { height: 58%; animation-delay: 0.8s; }
.b-bars i:nth-child(6) { height: 92%; animation-delay: 1.0s; }
.b-bars i:nth-child(7) { height: 70%; animation-delay: 1.2s; }
@keyframes barLive { 0%, 100% { transform: scaleY(0.85); opacity: 0.85; } 50% { transform: scaleY(1); opacity: 1; } }

/* Founder strip: chat */
.b-founder { display: grid; grid-template-columns: 1fr; gap: 1.4rem; align-items: center; }
@media (min-width: 768px) { .b-founder { grid-template-columns: 1fr 1fr; } }
.b-chat { display: grid; gap: 0.7rem; }
.bubble {
  max-width: 90%;
  border-radius: 16px;
  padding: 0.75rem 1.05rem;
  font-size: 0.92rem; font-weight: 500;
  animation: bubbleIn 0.5s ease-out both;
}
.bubble.you {
  justify-self: start;
  background: #f3f0ff;
  border: 1px solid rgba(124,58,237,0.15);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.bubble.max {
  justify-self: end;
  background: var(--aurora);
  background-size: 200% 100%;
  animation: bubbleIn 0.5s ease-out 0.9s both, auroraShift 6s ease-in-out infinite;
  color: #fff;
  border-bottom-right-radius: 4px;
}
@keyframes bubbleIn { from { opacity: 0; transform: translateY(10px) scale(0.96); } to { opacity: 1; transform: none; } }
.b-dot-row { display: inline-flex; gap: 3px; margin-left: 0.4rem; vertical-align: middle; }
.b-dot-row i {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.85);
  animation: typeDot 1.2s ease-in-out infinite;
}
.b-dot-row i:nth-child(2) { animation-delay: 0.15s; }
.b-dot-row i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typeDot { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(-3px); opacity: 1; } }

/* Bento stagger */
.bento .reveal:nth-child(2) { transition-delay: 0.08s; }
.bento .reveal:nth-child(3) { transition-delay: 0.16s; }
.bento .reveal:nth-child(4) { transition-delay: 0.24s; }
.bento .reveal:nth-child(5) { transition-delay: 0.32s; }
.bento .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ============ How it works ============ */
.section-process {
  background:
    radial-gradient(ellipse 50% 45% at 85% 20%, rgba(124,58,237,0.10), transparent 70%),
    radial-gradient(ellipse 45% 40% at 10% 85%, rgba(236,72,153,0.09), transparent 70%),
    #fbfaff;
}
.process-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center; max-width: 1080px;
}
@media (min-width: 1024px) { .process-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } }
.process-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.process-sub { max-width: 46ch; font-size: 0.98rem; margin-top: 0.7rem; }
.process-steps {
  list-style: none; counter-reset: pstep;
  display: grid; gap: 0.7rem; margin-top: 1.6rem;
}
.process-steps li {
  counter-increment: pstep;
  position: relative;
  background: #fff;
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 14px;
  padding: 0.85rem 1.1rem 0.85rem 3.1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: default;
}
.process-steps li::before {
  content: counter(pstep);
  position: absolute; left: 0.95rem; top: 0.9rem;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.78rem;
  color: #7c3aed;
  background: #f3f0ff;
  border: 1.5px solid rgba(124,58,237,0.25);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.process-steps li:hover {
  border-color: rgba(168,85,247,0.55);
  box-shadow: 0 18px 45px -18px rgba(168,85,247,0.45);
  transform: translateX(6px);
}
.process-steps li:hover::before {
  background: linear-gradient(110deg, #7c3aed, #ec4899);
  color: #ffffff;
  border-color: transparent;
}
.process-steps h3 { font-size: 0.95rem; }
.process-steps p { color: var(--body-c); font-size: 0.86rem; line-height: 1.5; margin-top: 0.2rem; }
.process-video-wrap {
  background: var(--brand-grad);
  background-size: 200% 100%;
  animation: auroraShift 8s ease-in-out infinite;
  border-radius: 30px;
  padding: 2px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 40px 90px -35px rgba(124,58,237,0.5);
}
.process-video {
  border-radius: 28px;
  overflow: hidden;
  background: #0a0a1f;
  line-height: 0;
}
.process-video video { width: 100%; height: auto; display: block; }


/* ============ Mobile polish ============ */
.hero-phone-mobile { display: none; }
@media (max-width: 1023px) {
  /* Nav: CTA hard right */
  .nav-cta { margin-left: auto; }

  /* Hero: centred, compact, image between sub and CTAs */
  .hero { padding-top: 7rem; padding-bottom: 2.5rem; }
  .hero-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-badge { padding: 0.4rem 0.95rem; font-size: 0.78rem; margin-bottom: 1.1rem; }
  .hero-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 15ch;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.9rem auto 0;
    max-width: 34ch;
    color: var(--body-c);
  }
  .hero-phone { display: none; }
  .hero-phone-mobile {
    display: block;
    margin: 1.4rem auto;
    max-width: 200px;
  }
  .hero-phone-mobile img {
    width: 100%; height: auto; display: block;
    filter: drop-shadow(0 20px 40px rgba(124,58,237,0.28));
    animation: riseIn 0.8s ease-out 0.2s both;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 0.7rem;
  }
  .hero-ctas .btn-aurora, .hero-ctas .btn-glass {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
  }
  .hero-micro { font-size: 0.78rem; margin-top: 0.9rem; }
}


/* ============ Floating actions ============ */
.float-actions {
  position: fixed;
  right: 1.2rem; bottom: 1.2rem;
  z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0.7rem;
  opacity: 0; transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.float-actions.show { opacity: 1; transform: none; pointer-events: auto; }
.float-top {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid transparent;
  background-image: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), var(--brand-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 12px 30px -12px rgba(124,58,237,0.5);
  transition: transform 0.2s ease;
}
.float-top:hover { transform: translateY(-2px); }
.float-top svg { width: 20px; height: 20px; stroke: #7c3aed; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.float-cta {
  font-weight: 700; font-size: 0.9rem;
  color: #fff; text-decoration: none;
  background: var(--aurora);
  background-size: 200% 100%;
  animation: auroraShift 6s ease-in-out infinite;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  box-shadow: 0 14px 34px -12px rgba(124,58,237,0.6);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: transform 0.2s ease;
}
.float-cta:hover { transform: translateY(-2px); }
.float-arr { font-size: 1rem; line-height: 1; }
@media (max-width: 1023px) {
  .float-cta { display: none; }
  .float-actions { right: 1rem; bottom: 1rem; }
}

/* ============ Blog ============ */
.blog-index { max-width: 1080px; margin: 0 auto; padding: 8.5rem 1.25rem 4rem; }

/* Featured card */
.bfeat {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
  text-decoration: none;
  background: linear-gradient(160deg, #14122a, #0a0a1f) padding-box, var(--brand-grad) border-box;
  border: 2px solid transparent;
  background-size: auto, 200% 100%;
  animation: auroraShift 8s ease-in-out infinite;
  border-radius: 26px;
  padding: 2.4rem;
  margin-top: 1rem;
  box-shadow: 0 40px 90px -35px rgba(124,58,237,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.bfeat::after {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(168,85,247,0.22); filter: blur(90px);
  right: -140px; top: -140px; pointer-events: none;
}
.bfeat:hover { transform: translateY(-4px); box-shadow: 0 50px 110px -35px rgba(168,85,247,0.65); }
@media (min-width: 860px) { .bfeat { grid-template-columns: 1.4fr 0.6fr; align-items: center; } }
.bfeat-copy { position: relative; z-index: 1; }
.bfeat-tags { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.bfeat h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.2rem); letter-spacing: -0.02em; max-width: 22ch; }
.bfeat p { color: #b0aecd; margin-top: 0.8rem; max-width: 52ch; }
.bfeat-meta { margin-top: 1.6rem; }
.bfeat-meta > span:first-child { color: #8f8db0; }
.bfeat-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.bfeat-price {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 22px;
  padding: 1.8rem 2.2rem;
  box-shadow: 0 20px 50px -20px rgba(124,58,237,0.55);
}
.bfeat-from, .bfeat-note {
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #8f8db0;
}
.bfeat-amount {
  font-weight: 800; font-size: 2.8rem; letter-spacing: -0.03em;
  background: var(--aurora);
  background-size: 200% 100%;
  animation: auroraShift 6s ease-in-out infinite;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Post cards */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 1.4rem; }
@media (min-width: 860px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.bpost {
  position: relative;
  display: flex; flex-direction: column;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 20px;
  padding: 1.6rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -30px rgba(124,58,237,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bpost::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: var(--aurora);
  background-size: 200% 100%;
  animation: auroraShift 6s ease-in-out infinite;
  opacity: 0.5; border-radius: 999px;
  transition: opacity 0.3s ease, left 0.3s ease, right 0.3s ease;
}
.bpost:hover { transform: translateY(-4px); border-color: rgba(168,85,247,0.4); box-shadow: 0 30px 70px -30px rgba(168,85,247,0.45); }
.bpost:hover::before { opacity: 1; left: 4%; right: 4%; }
.bpost-top { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.bpost-icon { width: 44px; height: 44px; border-radius: 12px; }
.bpost-tag {
  font-size: 0.64rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #6d28d9;
  background: linear-gradient(135deg, rgba(124,58,237,0.10), rgba(236,72,153,0.10));
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  white-space: nowrap;
}
.bpost-tag-feat { color: #fff; background: var(--aurora); border-color: transparent; }
.bpost h2 { font-size: 1.08rem; letter-spacing: -0.015em; margin-top: 1.1rem; color: var(--ink); }
.bpost p { color: var(--body-c); font-size: 0.9rem; margin-top: 0.5rem; }
.bpost-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  margin-top: auto; padding-top: 1.2rem;
  font-size: 0.78rem; font-weight: 600; color: var(--micro-c);
}
.bpost-arrow {
  font-weight: 800; font-size: 0.85rem;
  background: var(--aurora);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.bpost-arrow i { font-style: normal; transition: transform 0.25s ease; }
.bpost:hover .bpost-arrow i, .bfeat:hover .bfeat-arrow i { transform: translateX(4px); }

/* Post page */
.post { max-width: 720px; margin: 0 auto; padding: 8.5rem 1.25rem 4rem; }
.post-back { font-weight: 700; font-size: 0.9rem; color: #7c3aed; text-decoration: none; }
.post-back:hover { text-decoration: underline; }
.post-meta { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--micro-c); margin: 1.4rem 0 0.6rem; }
.post h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); }
.post-excerpt { color: var(--body-c); font-size: 1.1rem; margin-top: 1rem; }
.post-body { margin-top: 2rem; }
.post-body h2 {
  font-size: 1.3rem; letter-spacing: -0.02em; max-width: none;
  margin: 2.2rem 0 0.7rem;
}
.post-body p { color: #374151; margin-bottom: 1rem; line-height: 1.75; }
.post-cta {
  margin-top: 3rem;
  background: linear-gradient(#fff, #fff) padding-box, var(--brand-grad) border-box;
  border: 2px solid transparent;
  border-radius: 22px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 24px 60px -28px rgba(124,58,237,0.35);
}
.post-cta h2 { font-size: 1.4rem; margin: 0 auto 0.6rem; max-width: none; }
.post-cta p { color: var(--body-c); margin-bottom: 1.4rem; }

/* ============ Comparison ============ */
.compare-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.4rem; max-width: 980px; margin: 0 auto;
}
@media (min-width: 820px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-card {
  border-radius: 22px;
  padding: 2rem;
}
.compare-card h3 { font-size: 1.2rem; margin-bottom: 1.2rem; }
.compare-card ul { list-style: none; display: grid; gap: 0.8rem; }
.compare-card li { position: relative; padding-left: 1.9rem; font-size: 0.95rem; }
.compare-card li::before {
  content: ''; position: absolute; left: 0; top: 0.18em;
  width: 1.1em; height: 1.1em;
}
.compare-them {
  background: #f4f4f6;
  border: 1px solid rgba(0,0,0,0.07);
  color: #55525f;
}
.compare-them li::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / contain no-repeat;
  background: #b3aec2;
}
.compare-us {
  background: linear-gradient(#fff, #fff) padding-box, var(--brand-grad) border-box;
  border: 2px solid transparent;
  box-shadow: 0 30px 70px -30px rgba(168,85,247,0.4);
}
.compare-us li::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
  background: linear-gradient(110deg, #7c3aed, #ec4899);
}
.compare-more { text-align: center; margin-top: 1.8rem; color: var(--body-c); font-size: 0.95rem; }
.compare-more a { color: #7c3aed; font-weight: 700; }

/* ============ Closing CTA ============ */
.closing-cta { text-align: center; }
.closing-cta h2 { margin: 0 auto 2rem; max-width: 24ch; line-height: 1.15; }
.btn-close { font-size: 1.05rem; padding: 1.1rem 2.6rem; }
.closing-micro { color: #b0aecd; font-size: 0.88rem; margin-top: 1.2rem; }

/* ============ VS icons ============ */
.vs-x, .vs-tick { flex: none; width: 24px; height: 24px; border-radius: 50%; position: relative; }
.vs-x { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); }
.vs-x::before {
  content: ''; position: absolute; inset: 6px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center / contain no-repeat;
  background: #8f8db0;
}
.vs-tick {
  background: var(--aurora);
  box-shadow: 0 6px 16px -6px rgba(236,72,153,0.7);
}
.vs-tick::before {
  content: ''; position: absolute; inset: 6px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
  background: #fff;
}

/* ============ VSX aligned comparison ============ */
.vsx { position: relative; max-width: 1020px; margin: 0 auto; display: grid; gap: 0.8rem; }
.vsx-spine {
  position: absolute; left: 50%; top: 70px; bottom: 10px;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(124,58,237,0.6), rgba(236,72,153,0.35), rgba(59,130,246,0.15));
  display: none;
}
.vsx-row {
  display: grid; grid-template-columns: 1fr;
  gap: 0.5rem;
  position: relative;
}
@media (min-width: 860px) {
  .vsx-spine { display: block; }
  .vsx-row { grid-template-columns: 1fr 120px 1fr; gap: 1rem; align-items: stretch; }
}
.vsx-header { margin-bottom: 0.6rem; align-items: center; }
.vsx-side-title {
  font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.vsx-side-them { color: #8f8db0; }
@media (min-width: 860px) { .vsx-side-them { text-align: right; align-items: flex-end; } }
.vsx-side-us { color: #fff; }
.vsx-side-sub {
  font-size: 0.64rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #6d6a8f;
}
.vsx-side-sub-us {
  background: var(--aurora);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vsx-label { display: flex; align-items: center; justify-content: center; }
.vsx-label span {
  font-size: 0.66rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #c4b5fd;
  background: linear-gradient(160deg, #17142e, #100e22) padding-box, var(--brand-grad) border-box;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  white-space: nowrap;
  position: relative; z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vsx-vs span { font-size: 0.85rem; padding: 0.7rem 1rem; border-radius: 50%; }
.vsx-cell {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.94rem; line-height: 1.5;
  border-radius: 16px;
  padding: 0.95rem 1.15rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.vsx-them {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #a5a3c4;
}
@media (min-width: 860px) { .vsx-them { flex-direction: row-reverse; text-align: right; } }
.vsx-us {
  background: linear-gradient(160deg, rgba(124,58,237,0.16), rgba(236,72,153,0.10));
  border: 1px solid rgba(167,139,250,0.28);
  color: #efedfb;
  box-shadow: 0 14px 40px -18px rgba(124,58,237,0.45);
}
.vsx-row:hover .vsx-them { background: rgba(255,255,255,0.06); }
.vsx-row:hover .vsx-us {
  transform: translateY(-2px);
  border-color: rgba(196,181,253,0.6);
  box-shadow: 0 22px 55px -18px rgba(168,85,247,0.65);
}
.vsx-row:hover .vsx-label span { transform: scale(1.07); box-shadow: 0 10px 26px -10px rgba(168,85,247,0.7); }
/* staggered entrance */
.vsx-row.reveal { transition-delay: calc(var(--i, 0) * 0.09s); }
.vsx-footer { text-align: center; margin-top: 2.4rem; }
.vsx-footer .btn-aurora { padding: 1.05rem 2.6rem; font-size: 1rem; }
.vsx-footer .compare-more { margin-top: 1.3rem; }
.section-dark .compare-more { color: #a5a3c4; }
.section-dark .compare-more a { color: #c4b5fd; }

/* ============ Founder v2: photo + gold signature ============ */
.signature-gold {
  position: relative;
  display: inline-block;
  font-size: 3.4rem;
  background: linear-gradient(
    100deg,
    #9a6a00 0%,
    #d4a017 10%,
    #ffd700 22%,
    #fff7ae 30%,
    #ffd700 38%,
    #b8860b 50%,
    #ffd700 62%,
    #fffbe0 70%,
    #ffcc00 78%,
    #d4a017 90%,
    #9a6a00 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: goldShine 2.8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.55)) drop-shadow(0 0 22px rgba(255,204,0,0.35)) drop-shadow(0 2px 4px rgba(120,80,0,0.6));
}
@keyframes goldShine {
  0% { background-position: 200% 50%; }
  100% { background-position: -100% 50%; }
}
.section-dark .signature-sub { color: #8f8db0; }

.founder-photo-col {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.4rem;
}
@media (min-width: 1024px) {
  .founder-grid { align-items: end; }
  .founder-photo-col { align-items: flex-end; padding-bottom: 0.5rem; }
  .founder-photo-wrap { margin-right: 1rem; }
}
.founder-photo-wrap { position: relative; width: min(150px, 45vw); }
.founder-ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #7c3aed, #ec4899, #3b82f6, #a855f7, #7c3aed);
  animation: ringSpin 9s linear infinite;
  filter: blur(0.5px);
}
.founder-ring::after {
  content: ''; position: absolute; inset: 4px;
  border-radius: 50%;
  background: #0a0a1f;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.founder-photo {
  position: relative; z-index: 1;
  width: 100%; height: auto; display: block;
  border-radius: 50%;
  box-shadow: 0 24px 55px -22px rgba(124,58,237,0.65);
}
.founder-badge {
  position: absolute; z-index: 2;
  left: 50%; bottom: -12px;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: #fff;
  background: linear-gradient(160deg, #17142e, #100e22) padding-box, var(--aurora) border-box;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  box-shadow: 0 14px 34px -12px rgba(124,58,237,0.7);
}
.founder-btn { margin-top: 0.8rem; }
.section-dark .founder-micro { color: #8f8db0; font-size: 0.85rem; }
@media (prefers-reduced-motion: reduce) {
  .founder-ring, .signature-gold { animation: none; }
}

/* ============ Founder v3: one composed card ============ */
.founder-card2 {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 980px; margin: 0 auto;
  background: linear-gradient(160deg, #16132c, #0e0c1f) padding-box, var(--brand-grad) border-box;
  border: 2px solid transparent;
  background-size: auto, 200% 100%;
  animation: auroraShift 9s ease-in-out infinite;
  border-radius: 28px;
  padding: 2.4rem;
  box-shadow: 0 40px 90px -35px rgba(124,58,237,0.5);
  position: relative; overflow: hidden;
}
.founder-card2::after {
  content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: rgba(168,85,247,0.18); filter: blur(90px);
  right: -120px; bottom: -140px; pointer-events: none;
}
@media (min-width: 860px) {
  .founder-card2 { grid-template-columns: 230px 1fr; gap: 3rem; padding: 3rem; align-items: center; }
}
.fc-left {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.2rem;
  position: relative; z-index: 1;
}
.fc-left .founder-photo-wrap { width: 170px; margin-bottom: 1.4rem; }
.fc-left .signature-gold { font-size: 3rem; }
.fc-right { position: relative; z-index: 1; }
.fc-right h2 { margin-top: 0.2rem; }
.fc-right p:not(.chip):not(.founder-micro) { color: #b7b4d4; margin-top: 1rem; font-size: 1.02rem; }
.fc-lead { color: #e8e6f7 !important; font-size: 1.1rem !important; font-weight: 600; }
.fc-actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 1rem; margin-top: 1.8rem;
}
.fc-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #d9d6f2;
  background: rgba(124,58,237,0.14);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  white-space: nowrap;
}
.founder-card2 .founder-micro { margin-top: 1rem; color: #8f8db0; font-size: 0.85rem; }
@media (max-width: 859px) {
  .fc-right { text-align: center; }
  .fc-actions { justify-content: center; }
}

/* ============ Coded hero phones ============ */
.phones { position: relative; width: 470px; height: 590px; margin: 0 auto; }
.ph {
  width: 250px; height: 530px;
  background: #101019;
  border-radius: 42px;
  padding: 10px;
  position: absolute;
  filter: drop-shadow(0 30px 60px rgba(124,58,237,0.28));
}
.pha { left: 0; top: 0; transform: rotate(-5deg); z-index: 1; animation: phoneIn 0.9s ease-out 0.15s both, floatY 7s ease-in-out 1.2s infinite; }
.phb { right: 0; top: 34px; transform: rotate(4deg); z-index: 2; animation: phoneIn 0.9s ease-out 0.3s both, floatY 7s ease-in-out 1.6s infinite reverse; }
.ph-notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px; background: #101019; border-radius: 999px; z-index: 3;
}
.ph-screen {
  width: 100%; height: 100%;
  border-radius: 33px;
  overflow: hidden;
  padding: 2.9rem 0.85rem 0.9rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  font-size: 0.72rem;
}
/* Phone A: light shot analysis */
.pha-screen { background: linear-gradient(175deg, #ffffff, #f3f1fb); color: #14121f; }
.pha-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #6b7280; }
.pha-head b { color: #14121f; font-size: 0.78rem; }
.pha-video {
  position: relative;
  height: 118px; border-radius: 14px;
  background: linear-gradient(150deg, #2b4ec9, #3f6ce0 55%, #2c3f9e);
  overflow: hidden;
}
.pha-video::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px) 0 0 / 100% 24px,
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px) 0 0 / 24px 100%;
}
.pha-play {
  position: absolute; left: 10px; bottom: 22px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
}
.pha-play::after {
  content: ''; position: absolute; left: 9px; top: 7px;
  border-left: 8px solid #2b4ec9;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.pha-time {
  position: absolute; right: 8px; bottom: 24px;
  font-size: 0.58rem; font-weight: 700; color: #fff; opacity: 0.9;
}
.pha-prog { position: absolute; left: 10px; right: 10px; bottom: 10px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.3); }
.pha-prog i { display: block; height: 100%; width: 46%; border-radius: 999px; background: #c8f542; animation: barFill 1.2s ease-out 1s both; }
.pha-detect {
  display: flex; justify-content: space-between; align-items: center; gap: 0.4rem;
  background: #fff; border: 1px solid rgba(124,58,237,0.12);
  border-radius: 12px; padding: 0.55rem 0.7rem;
}
.pha-detect b { font-size: 0.7rem; display: block; }
.pha-detect small { font-size: 0.58rem; color: #6b7280; }
.pha-detect > span { font-size: 0.6rem; font-weight: 700; background: #f3f0ff; border-radius: 999px; padding: 0.3rem 0.55rem; white-space: nowrap; }
.pha-score {
  display: flex; align-items: center; gap: 0.8rem;
  background: #fff; border: 1px solid rgba(124,58,237,0.12);
  border-radius: 14px; padding: 0.7rem;
}
.pha-ring {
  flex: none; width: 58px; height: 58px; border-radius: 50%;
  background: conic-gradient(#a3e635 0 78%, #e5e7eb 78% 100%);
  display: grid; place-items: center; position: relative;
}
.pha-ring::before { content: ''; position: absolute; inset: 6px; border-radius: 50%; background: #fff; }
.pha-ring b { position: relative; font-size: 1rem; }
.pha-ring small { position: relative; font-size: 0.5rem; color: #6b7280; margin-top: -2px; }
.pha-ring { flex-direction: column; display: flex; align-items: center; justify-content: center; }
.pha-read small { font-size: 0.55rem; font-weight: 800; letter-spacing: 0.1em; color: #84cc16; }
.pha-read b { display: block; font-size: 0.78rem; margin-top: 1px; }
.pha-read p { font-size: 0.6rem; color: #6b7280; margin-top: 2px; line-height: 1.4; }
.pha-metric {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border: 1px solid rgba(124,58,237,0.10);
  border-radius: 10px; padding: 0.5rem 0.7rem;
  font-size: 0.62rem; color: #6b7280;
}
.pha-metric b { color: #14121f; font-size: 0.64rem; }
/* Phone B: dark gym app */
.phb-screen { background: linear-gradient(175deg, #17151f, #100e18); color: #fff; }
.phb-status { position: absolute; top: 22px; left: 26px; font-size: 0.62rem; font-weight: 700; color: #fff; z-index: 4; }
.phb-greet { color: #8b8798; font-size: 0.62rem; }
.phb-title { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.phb-workout {
  background: #211e2c; border-radius: 14px; padding: 0.8rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  margin-top: 0.2rem;
}
.phb-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  border: 2px solid #a3e635;
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.phb-workout b { font-size: 0.85rem; }
.phb-workout small { color: #8b8798; font-size: 0.6rem; }
.phb-bar { height: 5px; border-radius: 999px; background: #322e40; overflow: hidden; margin-top: 0.3rem; }
.phb-bar i { display: block; height: 100%; width: var(--w); border-radius: 999px; background: #a3e635; animation: barFill 1.1s ease-out 1.1s both; }
.phb-start {
  margin-top: 0.5rem; text-align: center;
  background: #c8f542; color: #101019;
  font-weight: 800; font-size: 0.68rem;
  border-radius: 10px; padding: 0.55rem;
}
.phb-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
.phb-stats div { background: #211e2c; border-radius: 11px; padding: 0.5rem 0.3rem; text-align: center; }
.phb-stats b { display: block; font-size: 0.8rem; }
.phb-stats small { color: #8b8798; font-size: 0.52rem; }
.phb-sub { font-size: 0.78rem; font-weight: 800; margin-top: 0.15rem; }
.phb-target { font-size: 0.6rem; }
.phb-target span { color: #d5d2df; font-weight: 600; }
.phb-target em { font-style: normal; float: right; color: #8b8798; }
@media (max-width: 1023px) {
  .phones { width: auto; height: auto; }
  .hero-phone-mobile .ph { position: static; transform: none; width: 240px; height: 508px; margin: 0 auto; animation: riseIn 0.8s ease-out 0.2s both; }
}

/* ============ Polish pass: rhythm ============ */
.section-canvas {
  background: var(--canvas);
  border-top: 1px solid rgba(124,58,237,0.08);
  border-bottom: 1px solid rgba(124,58,237,0.08);
}

/* ============ Polish pass: micro-interactions ============ */
.marquee-track i { animation: dotPulse 2.4s ease-in-out infinite; }
.marquee-track i:nth-child(4n) { animation-delay: 0.6s; }
.marquee-track i:nth-child(4n+2) { animation-delay: 1.2s; }
@keyframes dotPulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.5); opacity: 1; } }
.nav-inner { transition: padding 0.3s ease, box-shadow 0.3s ease; }
.nav-scrolled .nav-inner { padding-top: 0.4rem; padding-bottom: 0.4rem; box-shadow: 0 10px 30px -12px rgba(90, 50, 220, 0.65); }
.logo-mark { transition: height 0.3s ease; }
.nav-scrolled .logo-mark { height: 28px; }

/* ============ Polish pass: unified type & spacing ============ */
.section { padding: 6.5rem 0; }
.section-tight { padding: 2.5rem 0 4.5rem; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.process-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.sec-head { margin-bottom: 3rem; }
.sec-head .chip { margin-bottom: 1rem; }
.sec-sub { font-size: 1.02rem; }
@media (max-width: 640px) { .section { padding: 4.5rem 0; } .sec-head { margin-bottom: 2.2rem; } }

/* ============ Polish pass: unified card language ============ */
:root { --r-card: 22px; --shadow-card: 0 24px 60px -28px rgba(124,58,237,0.3); }
.tile-card, .price-wrap, .bpost, .founder-card2, .bfeat { border-radius: var(--r-card); }
.tile-card::before { border-radius: calc(var(--r-card) - 1.5px); }
.price-card { border-radius: calc(var(--r-card) - 2px); }
.work-card { border-radius: calc(var(--r-card) + 2px); }
.work-grid { border-radius: var(--r-card); }
.faq-wrap { border-radius: 14px; }
.faq-wrap details { border-radius: 12px; }
.tile-card:hover { filter: drop-shadow(0 16px 44px rgba(124,58,237,0.32)); }
.bpost, .blog-card { box-shadow: var(--shadow-card); }
