
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & ROOT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue:       #0057B8;
  --blue-mid:   #0066D6;
  --blue-hi:    #0071E3;
  --blue-glow:  rgba(0,87,184,0.16);
  --blue-mist:  rgba(0,87,184,0.055);
  --blue-tint:  rgba(0,87,184,0.038);

  --ink:        #0F0F10;
  --ink-70:     #2C2C2E;
  --mid:        #6E6E73;
  --soft:       #98989D;
  --pale:       #C7C7CC;
  --faint:      #E5E5EA;
  --ghost:      #F5F5F7;
  --snow:       #FAFAFA;
  --white:      #FFFFFF;

  --b0: rgba(0,0,0,0.04);
  --b1: rgba(0,0,0,0.07);
  --b2: rgba(0,0,0,0.11);
  --b3: rgba(0,0,0,0.15);

  --s-xs:  0 1px 3px rgba(0,0,0,0.05);
  --s-sm:  0 2px 10px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --s-md:  0 8px 28px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --s-lg:  0 20px 56px rgba(0,0,0,0.11), 0 6px 18px rgba(0,0,0,0.06);
  --s-xl:  0 32px 88px rgba(0,0,0,0.14), 0 10px 28px rgba(0,0,0,0.07);
  --s-2xl: 0 56px 120px rgba(0,0,0,0.17), 0 18px 48px rgba(0,0,0,0.09);
  --sb-sm: 0 4px 16px rgba(0,87,184,0.26);
  --sb-md: 0 10px 32px rgba(0,87,184,0.34);
  --sb-lg: 0 20px 56px rgba(0,87,184,0.42);

  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Outfit', system-ui, sans-serif;

  --e1: cubic-bezier(0.16, 1, 0.3, 1);
  --e2: cubic-bezier(0.34, 1.56, 0.64, 1);
  --e3: cubic-bezier(0.45, 0.05, 0.15, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WELCOME SCREEN
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ws {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 1.1s var(--e3), transform 1.1s var(--e3);
}
.ws.out { opacity: 0; transform: scale(1.022); pointer-events: none; }

/* Background system */
.ws-bg { position: absolute; inset: 0; pointer-events: none; }

.ws-orb {
  position: absolute; border-radius: 50%;
  animation: breathe var(--dur) ease-in-out var(--del) infinite alternate;
}
.o1 { width:65vmax; height:65vmax; top:-18%; left:-18%;
  background: radial-gradient(circle, rgba(0,87,184,0.065) 0%, transparent 68%);
  --dur:24s; --del:0s; }
.o2 { width:50vmax; height:50vmax; bottom:-14%; right:-12%;
  background: radial-gradient(circle, rgba(0,113,227,0.055) 0%, transparent 68%);
  --dur:19s; --del:-7s; }
.o3 { width:36vmax; height:36vmax; top:35%; right:18%;
  background: radial-gradient(circle, rgba(120,190,255,0.038) 0%, transparent 68%);
  --dur:28s; --del:-13s; }

.ws-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,87,184,0.10) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 60% 60% at center, black 10%, transparent 80%);
  opacity: 0; animation: fadeUp 2s ease 0.8s forwards;
}
.ws-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent calc(12.5% - 0.5px),
    rgba(0,87,184,0.025) calc(12.5% - 0.5px), rgba(0,87,184,0.025) 12.5%
  );
}

/* Grain */
.ws::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.016; mix-blend-mode: multiply;
}

/* Inner */
.ws-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 40px 24px; max-width: 620px;
}

/* Emblem */
.ws-em {
  width: 100px; height: 100px; margin-bottom: 48px;
  opacity: 0; animation: liftUp 1s var(--e1) 0.1s forwards;
}
.ws-em svg { width: 100%; height: 100%; }
.em-r1 { fill:none; stroke:var(--blue); stroke-width:1; opacity:0.08; stroke-dasharray:314; stroke-dashoffset:314; animation:drawS 2.4s var(--e1) 0.4s forwards; }
.em-r2 { fill:none; stroke:var(--blue); stroke-width:1.2; opacity:0.15; stroke-dasharray:226; stroke-dashoffset:226; animation:drawS 2s var(--e1) 0.7s forwards; }
.em-arc{ fill:none; stroke:var(--blue); stroke-width:2.5; opacity:0; stroke-linecap:round; stroke-dasharray:90; stroke-dashoffset:90; animation:drawS 0.9s var(--e1) 1.8s forwards, fIn 0.4s ease 1.8s forwards; }
.em-disk{ opacity:0; animation:popUp 0.7s var(--e2) 2.3s forwards; }
.em-ck  { fill:none; stroke:white; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:32; stroke-dashoffset:32; animation:drawS 0.55s var(--e1) 2.75s forwards; }

/* Pill badge */
.ws-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px;
  border: 1px solid var(--b1); border-radius: 100px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 22px;
  opacity: 0; animation: liftUp 0.9s var(--e1) 0.35s forwards;
}
.ws-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-hi); animation: pulse 2.8s ease 3s infinite; }

/* Title */
.ws-h {
  font-family: var(--fd);
  font-size: clamp(60px, 11.5vw, 108px);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 26px;
  opacity: 0; animation: liftUp 1.1s var(--e1) 0.5s forwards;
}
.ws-h em { font-style: italic; color: var(--blue-hi); display: block; }

/* Sub */
.ws-p {
  font-size: 17px; font-weight: 300; line-height: 1.72;
  color: var(--soft); max-width: 340px; margin: 0 auto 56px;
  opacity: 0; animation: liftUp 1s var(--e1) 0.65s forwards;
}

/* CTA */
.ws-cta { display: flex; flex-direction: column; align-items: center; gap: 15px; opacity: 0; animation: liftUp 0.9s var(--e1) 0.8s forwards; }

.btn-start {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 13px;
  padding: 18px 46px;
  font-family: var(--fb); font-size: 15px; font-weight: 500; letter-spacing: 0.01em;
  color: white; background: var(--blue);
  border: none; border-radius: 100px; cursor: pointer;
  box-shadow: var(--sb-md);
  transition: transform 0.4s var(--e1), box-shadow 0.4s var(--e1), background 0.3s;
}
.btn-start::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 55%);
  pointer-events: none;
}
.btn-start::after {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--e1);
}
.btn-start:hover { background: var(--blue-mid); box-shadow: var(--sb-lg); transform: translateY(-2.5px) scale(1.012); }
.btn-start:hover::after { left: 160%; }
.btn-start:hover .s-arr { transform: translateX(5px); }
.btn-start:active { transform: translateY(0) scale(0.988); box-shadow: var(--sb-sm); }
.s-arr { transition: transform 0.4s var(--e2); }

.ws-micro { font-size: 11.5px; font-weight: 300; letter-spacing: 0.05em; color: var(--pale); }

/* Bottom caret */
.ws-caret {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: 0; animation: fIn 1s ease 3.2s forwards;
}
.caret-label { font-size: 9.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pale); }
.caret-icon { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.caret-icon span {
  display: block; width: 9px; height: 5.5px;
  border-right: 1.5px solid var(--pale); border-bottom: 1.5px solid var(--pale);
  transform: rotate(45deg);
  animation: caretDrop 2.2s ease 3.8s infinite;
}
.caret-icon span:nth-child(2) { animation-delay: 3.95s; opacity: 0.55; }
.caret-icon span:nth-child(3) { animation-delay: 4.1s; opacity: 0.28; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   APP SHELL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.app { opacity: 0; visibility: hidden; transition: opacity 0.9s var(--e1); }
.app.live { opacity: 1; visibility: visible; }

/* ── HEADER ── */
.hdr {
  position: sticky; top: 0; z-index: 500;
  height: 52px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(220%) blur(32px);
  -webkit-backdrop-filter: saturate(220%) blur(32px);
  border-bottom: 1px solid var(--b0);
}
.hdr-in {
  max-width: 1160px; margin: 0 auto; height: 100%;
  padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--ink);
  transition: opacity 0.25s;
}
.logo:hover { opacity: 0.6; }
.logo-gem { width: 26px; height: 26px; }
.lgr { fill: none; stroke: var(--blue); stroke-width: 1.4; opacity: 0.2; }
.lgd { fill: var(--blue); }
.logo-name { font-family: var(--fd); font-size: 22px; font-weight: 400; letter-spacing: 0.02em; }

.hdr-right { display: flex; align-items: center; gap: 8px; }
.status-chip {
  display: flex; align-items: center; gap: 7px; padding: 5px 14px;
  background: var(--snow); border: 1px solid var(--b1); border-radius: 100px;
  font-size: 11.5px; font-weight: 400; color: var(--mid);
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #30D158; box-shadow: 0 0 0 2.5px rgba(48,209,88,0.2); }

/* ── STAGE ── */
.stage {
  min-height: calc(100dvh - 52px);
  display: flex; align-items: center; justify-content: center;
  padding: 72px 24px;
}
.view { display: none; width: 100%; max-width: 1120px; }
.view.on { display: block; animation: viewIn 0.8s var(--e1) both; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SIGN-IN VIEW
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.si {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  border-radius: 28px;
  box-shadow: var(--s-2xl);
  border: 1px solid var(--b0);
  overflow: hidden; min-height: 620px;
}

/* Left — brand immersion */
.si-l {
  position: relative; overflow: hidden;
  padding: 64px 56px;
  background: linear-gradient(162deg, #002F72 0%, #003D96 22%, #004DBF 46%, #0061D8 70%, #1473E6 100%);
  display: flex; flex-direction: column; justify-content: space-between;
}
.si-l::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 55% at 15% 0%, rgba(255,255,255,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 70% 70% at 95% 105%, rgba(0,15,60,0.35) 0%, transparent 55%);
  pointer-events: none;
}
.si-l-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.038) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(165deg, transparent 0%, rgba(0,0,0,0.5) 30%, black 60%, black 100%);
  pointer-events: none;
}
.si-l-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04; mix-blend-mode: overlay;
}
.si-l-orb {
  position: absolute; top: -90px; right: -90px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(120,180,255,0.16) 0%, transparent 65%);
  pointer-events: none;
  animation: breathe 9s ease-in-out infinite alternate;
}
.si-l-orb2 {
  position: absolute; bottom: -60px; left: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,20,90,0.4) 0%, transparent 70%);
  pointer-events: none;
}

/* Brand top */
.si-brand { position: relative; z-index: 1; }
.si-logo-row {
  display: flex; align-items: center; gap: 11px; margin-bottom: 44px;
}
.si-logo-box {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.si-logo-name { font-family: var(--fd); font-size: 22px; font-weight: 400; color: white; letter-spacing: 0.02em; }

.si-headline {
  font-family: var(--fd);
  font-size: 42px; font-weight: 300; line-height: 1.14;
  color: white; letter-spacing: -0.012em; margin-bottom: 18px;
}
.si-headline em { font-style: italic; opacity: 0.78; }
.si-desc { font-size: 14px; font-weight: 300; line-height: 1.78; color: rgba(255,255,255,0.55); max-width: 300px; }

/* Stats */
.si-stats { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0; }
.si-stat {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.si-stat:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.si-stat-ico {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  display: flex; align-items: center; justify-content: center;
}
.si-stat-ico svg { width: 16px; height: 16px; }
.si-stat-n { font-size: 16px; font-weight: 500; color: white; line-height: 1.2; }
.si-stat-l { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,0.46); }

/* Right — form */
.si-r {
  background: var(--white);
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}

.si-mark {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.si-mark-line { width: 22px; height: 1.5px; background: var(--blue); border-radius: 2px; opacity: 0.55; }
.si-mark-txt { font-size: 10.5px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); }

.si-h { font-family: var(--fd); font-size: 52px; font-weight: 300; letter-spacing: -0.02em; line-height: 1.02; color: var(--ink); margin-bottom: 10px; }
.si-sub { font-size: 15px; font-weight: 300; line-height: 1.68; color: var(--mid); margin-bottom: 46px; }

/* Buttons */
.btn-A {
  position: relative; overflow: hidden;
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 24px;
  font-family: var(--fb); font-size: 15px; font-weight: 500;
  color: white; background: var(--blue);
  border: none; border-radius: 14px; cursor: pointer;
  box-shadow: var(--sb-sm);
  transition: all 0.35s var(--e1);
  text-decoration: none;
}
.btn-A::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent); pointer-events: none; }
.btn-A:hover { background: var(--blue-mid); box-shadow: var(--sb-md); transform: translateY(-1.5px); }
.btn-A:active { transform: translateY(0); box-shadow: none; }

.btn-B {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px;
  font-family: var(--fb); font-size: 15px; font-weight: 400;
  color: var(--ink-70); background: var(--ghost);
  border: 1px solid var(--b1); border-radius: 14px; cursor: pointer;
  transition: all 0.25s var(--e1); text-decoration: none;
}
.btn-B:hover { background: var(--faint); color: var(--ink); transform: translateY(-1px); }
.btn-B:active { transform: translateY(0); }

.or { display: flex; align-items: center; gap: 14px; padding: 3px 0; }
.or::before, .or::after { content: ''; flex: 1; height: 1px; background: var(--b1); }
.or span { font-size: 10.5px; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; color: var(--pale); }

/* Footer row */
.si-foot {
  margin-top: 36px; padding-top: 26px;
  border-top: 1px solid var(--b0);
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.si-foot-note { font-size: 13.5px; font-weight: 300; color: var(--mid); }
.si-foot-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: var(--blue);
  text-decoration: none;
  transition: gap 0.3s var(--e2), opacity 0.2s;
}
.si-foot-cta svg { transition: transform 0.3s var(--e2); }
.si-foot-cta:hover { gap: 10px; opacity: 0.75; }
.si-foot-cta:hover svg { transform: translateX(2px); }

/* Trust */
.trust {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--b0); border-radius: 12px; overflow: hidden;
}
.trust-cell {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 8px;
  background: var(--snow);
  border-right: 1px solid var(--b0);
  font-size: 11px; font-weight: 400; color: var(--mid);
  transition: background 0.2s;
}
.trust-cell:last-child { border-right: none; }
.trust-cell:hover { background: var(--ghost); }
.trust-cell svg { color: var(--blue); opacity: 0.55; flex-shrink: 0; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SIGN-UP VIEW
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Top header */
.su-hd {
  text-align: center; margin-bottom: 72px;
}
.su-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 18px; border: 1px solid var(--b1); border-radius: 100px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 22px;
}
.su-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-hi); }
.su-h {
  font-family: var(--fd);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 300; line-height: 1.04; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 16px;
}
.su-h em { font-style: italic; color: var(--blue-hi); }
.su-p { font-size: 17px; font-weight: 300; line-height: 1.68; color: var(--soft); max-width: 380px; margin: 0 auto; }

/* Plans layout — side by side, equal height */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 60px;
  align-items: stretch;
}

/* ── Plan card ── */
.plan {
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--b1);
  padding: 0;
  position: relative; overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column;
  box-shadow: var(--s-sm);
  transition: transform 0.5s var(--e1), box-shadow 0.5s var(--e1), border-color 0.4s;
}
.plan::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--blue-hi) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--s-lg), 0 0 0 1px var(--blue-hi); border-color: var(--blue-hi); }
.plan:hover::after { opacity: 0.6; }

/* Featured */
.plan-hot {
  border: 2px solid var(--blue);
  box-shadow: var(--s-md);
  background: linear-gradient(162deg, rgba(0,87,184,0.028) 0%, var(--white) 40%);
}
.plan-hot::after { opacity: 0.5; }
.plan-hot:hover { box-shadow: var(--s-xl), 0 0 0 2px var(--blue); border-color: var(--blue); }

/* Plan header band */
.plan-band {
  padding: 28px 36px 24px;
  border-bottom: 1px solid var(--b0);
  position: relative; z-index: 1;
}
/* Glow disc in top-right */
.plan-glow {
  position: absolute; top: -70px; right: -70px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.plan:hover .plan-glow, .plan-hot .plan-glow { opacity: 1; }

.plan-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  margin-bottom: 18px;
}
.chip-b { background: var(--blue); color: white; }
.chip-g { background: var(--ghost); color: var(--mid); border: 1px solid var(--b1); }

.plan-tier { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft); margin-bottom: 6px; }
.plan-name { font-family: var(--fd); font-size: 44px; font-weight: 300; letter-spacing: -0.015em; line-height: 1.02; color: var(--ink); }

/* Plan body */
.plan-body { padding: 28px 36px; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 1; }

/* Price block */
.price-block { margin-bottom: 24px; }
.price-row { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; }
.price-n {
  font-size: 60px; font-weight: 600; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink);
}
.price-c { font-size: 22px; font-weight: 300; color: var(--mid); margin-bottom: 10px; }
.price-p { font-size: 13px; font-weight: 300; color: var(--soft); margin-bottom: 10px; margin-left: 3px; }
.price-note { font-size: 13.5px; font-weight: 300; line-height: 1.65; color: var(--mid); }

/* Divider */
.plan-div { height: 1px; background: var(--b0); margin-bottom: 22px; }

/* Features */
.feats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 30px; }
.feats li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 300; line-height: 1.5; color: var(--mid);
}
.f-pip {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-mist);
  border: 1px solid rgba(0,87,184,0.11);
}
.f-pip svg { width: 8px; height: 8px; }

/* CTA button in card */
.plan-cta {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 24px;
  font-family: var(--fb); font-size: 14px; font-weight: 500;
  border-radius: 12px; cursor: pointer;
  transition: all 0.32s var(--e1); text-decoration: none;
}
.cta-outline {
  color: var(--blue); background: transparent;
  border: 1.5px solid rgba(0,87,184,0.28);
}
.cta-outline:hover { background: var(--blue); color: white; border-color: var(--blue); box-shadow: var(--sb-sm); transform: translateY(-1.5px); }
.cta-fill {
  color: white; background: var(--blue); border: none;
  box-shadow: var(--sb-sm);
}
.cta-fill:hover { background: var(--blue-mid); box-shadow: var(--sb-md); transform: translateY(-1.5px); }
.plan-cta:active { transform: translateY(0) !important; box-shadow: none !important; }
.cta-arr { transition: transform 0.32s var(--e2); }
.plan-cta:hover .cta-arr { transform: translateX(4px); }

/* Comparison hint */
.plans-note {
  text-align: center; margin-bottom: 36px;
  font-size: 13px; font-weight: 300; color: var(--soft);
}
.plans-note a { color: var(--blue); text-decoration: none; font-weight: 400; transition: opacity 0.2s; }
.plans-note a:hover { opacity: 0.7; }

/* Footer */
.su-foot {
  text-align: center; padding-top: 44px;
  border-top: 1px solid var(--b0);
  font-size: 14px; font-weight: 300; color: var(--mid);
}
.su-foot a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); text-decoration: none; font-weight: 500;
  transition: gap 0.3s var(--e2), opacity 0.2s;
}
.su-foot a svg { transition: transform 0.3s var(--e2); }
.su-foot a:hover { gap: 10px; opacity: 0.75; }
.su-foot a:hover svg { transform: translateX(2px); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VIDEO MODAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.modal {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(8,8,12,0.80);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  display: none; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0; transition: opacity 0.4s var(--e1);
}
.modal.open { display: flex; }
.modal.show { opacity: 1; }
.modal-box {
  width: 100%; max-width: 920px;
  border-radius: 22px; overflow: hidden;
  background: #000;
  box-shadow: 0 64px 140px rgba(0,0,0,0.72), 0 20px 48px rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transform: scale(0.92) translateY(18px);
  transition: transform 0.52s var(--e2);
}
.modal.show .modal-box { transform: scale(1) translateY(0); }
.modal-x {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s var(--e2);
}
.modal-x:hover { background: rgba(255,255,255,0.2); transform: scale(1.1) rotate(90deg); }
.modal-x::before, .modal-x::after {
  content: ''; position: absolute;
  width: 13px; height: 1.5px; background: rgba(255,255,255,0.85); border-radius: 1px;
}
.modal-x::before { transform: rotate(45deg); }
.modal-x::after { transform: rotate(-45deg); }
.vid-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.vid-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAMES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes liftUp  { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
@keyframes fIn     { to { opacity:1; } }
@keyframes fadeUp  { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
@keyframes popUp   { from { opacity:0; transform:scale(0.3); } to { opacity:1; transform:scale(1); } }
@keyframes drawS   { to { stroke-dashoffset:0; } }
@keyframes breathe { from { transform:translate(0,0) scale(1); } to { transform:translate(3%,2.5%) scale(1.08); } }
@keyframes pulse   { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(0.6); opacity:0.4; } }
@keyframes caretDrop {
  0% { transform:rotate(45deg) translate(0,0); opacity:1; }
  60% { transform:rotate(45deg) translate(3px,3px); opacity:0.3; }
  61% { opacity:0; }
  62% { transform:rotate(45deg) translate(0,0); opacity:0; }
  100% { opacity:1; }
}
@keyframes viewIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 860px) {
  .si { grid-template-columns: 1fr; max-width: 480px; min-height: auto; }
  .si-l { display: none; }
  .si-r { padding: 52px 40px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 60px; }
}
@media (max-width: 600px) {
  .hdr-in { padding: 0 18px; }
  .status-chip { display: none; }
  .stage { padding: 44px 16px; }
  .si-r { padding: 44px 26px; }
  .si-h { font-size: 42px; }
  .ws-h { font-size: 58px; }
  .su-h { font-size: 40px; }
  .plan-band, .plan-body { padding-left: 28px; padding-right: 28px; }
  .price-n { font-size: 52px; }
  .plan-name { font-size: 38px; }
}
@media (max-width: 400px) {
  .trust { display: none; }
  .si-foot { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
