/* ============================================================
   Switchtill — Landing Page
   Foundation: Credail Design System (Poppins, 8px grid, radii,
   shadow scale). Brand layer: teal→blue + warm CTA per brief.
   ============================================================ */

/* ---- Poppins (from Credail DS) ---- */
@font-face { font-family:"Poppins"; src:url("fonts/Poppins-Light.ttf")    format("truetype"); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("fonts/Poppins-Regular.ttf")  format("truetype"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("fonts/Poppins-Medium.ttf")   format("truetype"); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("fonts/Poppins-SemiBold.ttf") format("truetype"); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("fonts/Poppins-Bold.ttf")     format("truetype"); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"Poppins"; src:url("fonts/Poppins-ExtraBold.ttf")format("truetype"); font-weight:800; font-style:normal; font-display:swap; }

:root{
  /* ===== Switchtill brand ===== */
  --teal:      #0EA5A4;
  --teal-deep: #0B8C8B;
  --blue:      #0B5FFF;
  --blue-deep: #0A4FD6;
  --brand-grad: linear-gradient(120deg, var(--teal) 0%, var(--blue) 100%);
  --brand-grad-soft: linear-gradient(120deg, #0EA5A4 0%, #0B5FFF 120%);

  /* warm CTA accent */
  --warm:      #F97316;
  --warm-deep: #EA6406;
  --warm-soft: #FFF1E7;

  /* ink / neutrals (charcoal text per brief, slate ramp) */
  --ink:       #0F172A;
  --ink-2:     #334155;
  --ink-3:     #64748B;
  --ink-4:     #94A3B8;
  --hair:      #E7ECF3;   /* hairline */
  --hair-2:    #EEF2F7;
  --surface:   #FFFFFF;
  --surface-2: #F7FAFC;   /* airy section tint */
  --surface-3: #F1F6FB;
  --on-brand:  #FFFFFF;

  /* signal / semantic */
  --danger:    #E5484D;
  --danger-soft:#FDECEC;
  --good:      #10B981;
  --maple:     #D8232A;   /* subtle Canadian cue */

  /* ===== type (Poppins, Credail scale extended up) ===== */
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --w-light:300; --w-reg:400; --w-med:500; --w-semi:600; --w-bold:700; --w-xbold:800;

  /* ===== spacing (8px grid) ===== */
  --s1:4px; --s2:8px; --s3:12px; --s4:16px; --s5:20px; --s6:24px;
  --s8:32px; --s10:40px; --s12:48px; --s16:64px; --s20:80px; --s28:112px;

  /* ===== radius ===== */
  --r-sm:10px; --r-md:14px; --r-lg:20px; --r-xl:28px; --r-pill:999px;

  /* ===== shadows (soft, premium) ===== */
  --sh-1: 0 1px 2px rgba(15,23,42,.05), 0 1px 1px rgba(15,23,42,.04);
  --sh-2: 0 4px 14px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --sh-3: 0 12px 32px rgba(15,23,42,.09), 0 4px 8px rgba(15,23,42,.05);
  --sh-4: 0 24px 60px rgba(15,23,42,.14), 0 8px 18px rgba(15,23,42,.08);
  --sh-teal: 0 16px 40px rgba(11,95,255,.18), 0 4px 12px rgba(14,165,164,.16);
  --sh-warm: 0 10px 26px rgba(249,115,22,.34), 0 2px 6px rgba(249,115,22,.24);

  /* ===== motion ===== */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0; font-family:var(--font); color:var(--ink);
  background:var(--surface); font-weight:var(--w-reg);
  line-height:1.5; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
h1,h2,h3,h4,p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
::selection{ background:rgba(14,165,164,.22); }

/* ---- layout helpers ---- */
.wrap{ width:100%; max-width:1200px; margin-inline:auto; padding-inline:clamp(20px,5vw,40px); }
.wrap-tight{ max-width:1040px; }
section{ position:relative; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:var(--w-semi); letter-spacing:.08em; text-transform:uppercase;
  color:var(--teal-deep);
}
.eyebrow::before{ content:""; width:22px; height:2px; border-radius:2px; background:var(--brand-grad); }
.eyebrow.center::before{ display:none; }

.h-sec{
  font-weight:var(--w-xbold); letter-spacing:-.022em; line-height:1.06;
  font-size:clamp(30px,4.4vw,52px); color:var(--ink); text-wrap:balance;
}
.sub-sec{
  font-size:clamp(16px,1.5vw,19px); color:var(--ink-3); line-height:1.6; max-width:60ch; text-wrap:pretty;
}
.grad-text{
  background:var(--brand-grad); -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  height:52px; padding:0 26px; border-radius:var(--r-pill);
  font-weight:var(--w-semi); font-size:15.5px; letter-spacing:-.01em;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  will-change:transform;
}
.btn svg{ width:18px; height:18px; }
.btn-warm{ background:var(--warm); color:#fff; box-shadow:var(--sh-warm); }
.btn-warm:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(249,115,22,.42),0 4px 10px rgba(249,115,22,.3); background:var(--warm-deep); }
.btn-dark{ background:var(--ink); color:#fff; box-shadow:var(--sh-2); }
.btn-dark:hover{ transform:translateY(-3px); box-shadow:var(--sh-3); }
.btn-ghost{ background:#fff; color:var(--ink); box-shadow:inset 0 0 0 1.5px var(--hair); }
.btn-ghost:hover{ transform:translateY(-3px); box-shadow:inset 0 0 0 1.5px #cdd8e6, var(--sh-2); }
.btn-brand{ background:var(--brand-grad); color:#fff; box-shadow:var(--sh-teal); }
.btn-brand:hover{ transform:translateY(-3px); box-shadow:0 22px 50px rgba(11,95,255,.26),0 6px 16px rgba(14,165,164,.2); }
.btn-sm{ height:44px; padding:0 20px; font-size:14.5px; }
.btn-lg{ height:58px; padding:0 32px; font-size:16.5px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:100; height:72px;
  display:flex; align-items:center;
  transition:background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s, height .35s var(--ease);
}
.nav .wrap{ display:flex; align-items:center; gap:32px; width:100%; }
.nav.scrolled{
  height:64px; background:rgba(255,255,255,.82); backdrop-filter:saturate(1.6) blur(16px);
  -webkit-backdrop-filter:saturate(1.6) blur(16px); box-shadow:0 1px 0 var(--hair),0 6px 24px rgba(15,23,42,.05);
}
.nav-links{ display:flex; gap:30px; margin-left:14px; }
.nav-links a{ font-size:15px; font-weight:var(--w-med); color:var(--ink-2); transition:color .2s; position:relative; }
.nav-links a:hover{ color:var(--ink); }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; border-radius:2px; background:var(--brand-grad); transition:width .3s var(--ease); }
.nav-links a:hover::after{ width:100%; }
.nav-actions{ margin-left:auto; display:flex; align-items:center; gap:14px; }
.nav-signin{ font-size:15px; font-weight:var(--w-med); color:var(--ink-2); transition:color .2s; }
.nav-signin:hover{ color:var(--ink); }
.nav-burger{ display:none; width:44px; height:44px; align-items:center; justify-content:center; border-radius:12px; color:var(--ink); }
.nav-burger:hover{ background:var(--surface-2); }

/* ---- Logo / wordmark with toggle motif ---- */
.logo{ display:inline-flex; align-items:center; gap:11px; }
.logo-mark{
  width:46px; height:27px; border-radius:999px; background:var(--brand-grad);
  position:relative; box-shadow:var(--sh-1); flex:none;
}
.logo-mark::after{
  content:""; position:absolute; top:3px; right:3px; width:21px; height:21px; border-radius:50%;
  background:#fff; box-shadow:0 2px 5px rgba(11,95,255,.35);
  transition:left .45s var(--ease), right .45s var(--ease), background .3s;
}
.logo-word{ font-weight:var(--w-bold); font-size:21px; letter-spacing:-.03em; color:var(--ink); }
.logo-word b{ font-weight:var(--w-xbold); }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; padding:138px 0 90px; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero-bg .blob{ position:absolute; border-radius:50%; filter:blur(70px); opacity:.5; }
.hero-bg .b1{ width:560px; height:560px; top:-180px; right:-120px; background:radial-gradient(circle,#9be5e4,transparent 65%); }
.hero-bg .b2{ width:520px; height:520px; bottom:-220px; left:-140px; background:radial-gradient(circle,#bcd2ff,transparent 65%); }
.hero-grid{
  position:absolute; inset:0; opacity:.5;
  background-image:linear-gradient(var(--hair) 1px,transparent 1px),linear-gradient(90deg,var(--hair) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image:radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.hero .wrap{ position:relative; z-index:2; display:grid; grid-template-columns:1.04fr .96fr; gap:clamp(32px,5vw,68px); align-items:center; }

.hero-pill{
  display:inline-flex; align-items:center; gap:10px; height:36px; padding:0 8px 0 8px;
  border-radius:var(--r-pill); background:#fff; box-shadow:var(--sh-2), inset 0 0 0 1px var(--hair);
  font-size:13.5px; font-weight:var(--w-med); color:var(--ink-2); margin-bottom:26px;
}
.hero-pill .tag{
  display:inline-flex; align-items:center; height:24px; padding:0 10px; border-radius:var(--r-pill);
  background:var(--warm-soft); color:var(--warm-deep); font-weight:var(--w-semi); font-size:12px; letter-spacing:.01em;
}
.hero h1{
  font-weight:var(--w-xbold); font-size:clamp(38px,5.6vw,68px); line-height:1.02; letter-spacing:-.032em;
  color:var(--ink); margin-bottom:24px; text-wrap:balance;
}
.hero h1 .word{ display:inline-block; }
.hero h1 .line{ display:block; }
.hero h1 .hostage{ position:relative; white-space:nowrap; }
.hero h1 .hostage .grad-text{ position:relative; }
.hero-lead{ font-size:clamp(17px,1.7vw,20px); color:var(--ink-3); line-height:1.6; max-width:30em; margin-bottom:32px; text-wrap:pretty; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; }
.hero-note{ display:flex; align-items:center; gap:16px; margin-top:26px; color:var(--ink-3); font-size:14px; flex-wrap:wrap; }
.hero-note .dot{ display:inline-flex; align-items:center; gap:7px; }
.hero-note .dot svg{ width:16px; height:16px; color:var(--teal); }

/* stagger anim primitives — visible by default; hidden only when motion is welcome */
@media (prefers-reduced-motion:no-preference){
  html.js body:not(.is-loaded) .stagger > *{ opacity:0; transform:translateY(22px); }
  .is-loaded .stagger > *{ transition:opacity .7s var(--ease-out), transform .7s var(--ease-out); }
  .is-loaded .stagger > *:nth-child(1){ transition-delay:.05s; }
  .is-loaded .stagger > *:nth-child(2){ transition-delay:.13s; }
  .is-loaded .stagger > *:nth-child(3){ transition-delay:.21s; }
  .is-loaded .stagger > *:nth-child(4){ transition-delay:.29s; }
  .is-loaded .stagger > *:nth-child(5){ transition-delay:.37s; }
  .is-loaded .stagger > *:nth-child(6){ transition-delay:.45s; }
  html.js body:not(.is-loaded) .hero h1 .word{ opacity:0; transform:translateY(26px) rotate(.5deg); }
  .is-loaded .hero h1 .word{ transition:opacity .62s var(--ease-out), transform .62s var(--ease-out); }
}

/* ---- Hero POS mockup ---- */
.hero-visual{ position:relative; z-index:2; perspective:1400px; }
.mock-stage{ position:relative; transform-style:preserve-3d; will-change:transform; }

.pos{
  position:relative; background:#fff; border-radius:var(--r-xl); box-shadow:var(--sh-4);
  overflow:hidden; transform-style:preserve-3d;
}
.pos-top{ display:flex; align-items:center; gap:10px; padding:16px 20px; border-bottom:1px solid var(--hair-2); }
.pos-top .dotrow{ display:flex; gap:7px; }
.pos-top .dotrow i{ width:11px; height:11px; border-radius:50%; background:#E2E8F0; display:block; }
.pos-top .dotrow i:nth-child(1){ background:#FF5F57; } .pos-top .dotrow i:nth-child(2){ background:#FEBC2E; } .pos-top .dotrow i:nth-child(3){ background:#28C840; }
.pos-top .ttl{ margin-left:6px; font-size:13px; font-weight:var(--w-semi); color:var(--ink-2); }
.pos-top .live{ margin-left:auto; display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:var(--w-semi); color:var(--good); }
.pos-top .live i{ width:7px; height:7px; border-radius:50%; background:var(--good); box-shadow:0 0 0 0 rgba(16,185,129,.5); animation:livepulse 2s infinite; }
@keyframes livepulse{ 0%{ box-shadow:0 0 0 0 rgba(16,185,129,.45);} 70%{ box-shadow:0 0 0 7px rgba(16,185,129,0);} 100%{ box-shadow:0 0 0 0 rgba(16,185,129,0);} }

.pos-body{ display:grid; grid-template-columns:1.5fr 1fr; gap:0; }
.pos-main{ padding:20px; border-right:1px solid var(--hair-2); }
.pos-side{ padding:20px; background:var(--surface-2); }

.pos-kpis{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:18px; }
.kpi{ background:#fff; border:1px solid var(--hair); border-radius:var(--r-md); padding:13px 14px; }
.kpi .lab{ font-size:11.5px; font-weight:var(--w-med); color:var(--ink-3); letter-spacing:.01em; }
.kpi .val{ font-size:22px; font-weight:var(--w-xbold); letter-spacing:-.02em; color:var(--ink); margin-top:3px; }
.kpi .val small{ font-size:13px; font-weight:var(--w-semi); color:var(--good); margin-left:4px; }
.kpi.brand{ background:var(--brand-grad); border-color:transparent; }
.kpi.brand .lab{ color:rgba(255,255,255,.85); } .kpi.brand .val{ color:#fff; } .kpi.brand .val small{ color:#CFFAFA; }

.pos-chart{ background:#fff; border:1px solid var(--hair); border-radius:var(--r-md); padding:15px 16px; }
.pos-chart .ch-head{ display:flex; align-items:baseline; justify-content:space-between; margin-bottom:14px; }
.pos-chart .ch-head .t{ font-size:13px; font-weight:var(--w-semi); color:var(--ink-2); }
.pos-chart .ch-head .n{ font-size:13px; font-weight:var(--w-semi); color:var(--teal-deep); }
.bars{ display:flex; align-items:flex-end; gap:9px; height:96px; }
.bars .bar{ flex:1; height:100%; border-radius:6px 6px 3px 3px; background:linear-gradient(var(--surface-3),var(--surface-3)); position:relative; overflow:hidden; }
.bars .bar span{ position:absolute; inset:auto 0 0 0; border-radius:6px 6px 3px 3px; background:var(--brand-grad); height:var(--h); transform-origin:bottom; transition:transform .8s var(--ease); }
@media (prefers-reduced-motion:no-preference){
  .bars .bar span{ transform:scaleY(0); }
  .in-view .bars .bar span{ transform:scaleY(1); }
}
.bars .bar:nth-child(1) span{ transition-delay:.05s;} .bars .bar:nth-child(2) span{ transition-delay:.11s;}
.bars .bar:nth-child(3) span{ transition-delay:.17s;} .bars .bar:nth-child(4) span{ transition-delay:.23s;}
.bars .bar:nth-child(5) span{ transition-delay:.29s;} .bars .bar:nth-child(6) span{ transition-delay:.35s;}
.bars .bar:nth-child(7) span{ transition-delay:.41s;}

.pos-side .side-ttl{ font-size:13px; font-weight:var(--w-semi); color:var(--ink-2); margin-bottom:13px; display:flex; align-items:center; justify-content:space-between; }
.pos-side .side-ttl .pill{ font-size:11px; font-weight:var(--w-semi); color:var(--teal-deep); background:#DCFBFA; padding:2px 8px; border-radius:999px; }
.order{ display:flex; align-items:center; gap:11px; padding:10px 0; border-bottom:1px solid var(--hair); }
.order:last-child{ border-bottom:none; }
.order .ic{ width:34px; height:34px; border-radius:10px; flex:none; display:flex; align-items:center; justify-content:center; font-size:16px; }
.order .ic.t{ background:#DCFBFA; } .order .ic.b{ background:#E3ECFF; } .order .ic.w{ background:var(--warm-soft); }
.order .meta{ flex:1; min-width:0; } .order .meta .o1{ font-size:13px; font-weight:var(--w-semi); color:var(--ink); }
.order .meta .o2{ font-size:11.5px; color:var(--ink-3); }
.order .amt{ font-size:13.5px; font-weight:var(--w-bold); color:var(--ink); }
.pos-pay{ margin-top:16px; padding:14px; border-radius:var(--r-md); background:var(--ink); color:#fff; }
.pos-pay .pl{ font-size:11.5px; color:rgba(255,255,255,.6); }
.pos-pay .pr{ display:flex; align-items:center; justify-content:space-between; margin-top:4px; }
.pos-pay .pr .pv{ font-size:20px; font-weight:var(--w-xbold); letter-spacing:-.02em; }
.pos-pay .pr .pb{ font-size:11px; font-weight:var(--w-semi); background:var(--teal); padding:5px 10px; border-radius:999px; }

/* floating chips around mock */
.float-chip{
  position:absolute; z-index:5; background:#fff; box-shadow:var(--sh-3); border:1px solid var(--hair);
  border-radius:14px; padding:11px 14px; display:flex; align-items:center; gap:10px;
  font-size:13px; font-weight:var(--w-semi); color:var(--ink); will-change:transform;
}
.float-chip .fi{ width:30px; height:30px; border-radius:9px; display:flex; align-items:center; justify-content:center; flex:none; }
.float-chip .fi.green{ background:#DCFCE7; color:#16a34a; } .float-chip .fi.teal{ background:#DCFBFA; color:var(--teal-deep); }
.float-chip small{ display:block; font-size:11px; font-weight:var(--w-med); color:var(--ink-3); }
.fc-1{ top:-22px; left:-26px; } .fc-2{ bottom:38px; right:-30px; } .fc-3{ bottom:-24px; left:34px; }

/* ============================================================
   LOGO STRIP / SOCIAL PROOF
   ============================================================ */
.proof{ padding:34px 0 8px; }
.proof .lab{ text-align:center; font-size:13px; font-weight:var(--w-med); color:var(--ink-4); letter-spacing:.04em; margin-bottom:22px; }
.proof-row{ display:flex; align-items:center; justify-content:center; gap:clamp(26px,5vw,64px); flex-wrap:wrap; opacity:.72; }
.proof-row .pl{ font-weight:var(--w-bold); font-size:19px; letter-spacing:-.02em; color:var(--ink-3); white-space:nowrap; }

/* ============================================================
   SECTION SHELL + REVEAL
   ============================================================ */
.band{ padding:clamp(72px,9vw,118px) 0; }
.band.tint{ background:var(--surface-2); }
.band.tint-3{ background:linear-gradient(180deg,#fff,var(--surface-3)); }
.sec-head{ max-width:760px; margin-bottom:clamp(40px,5vw,60px); }
.sec-head.center{ margin-inline:auto; text-align:center; }
.sec-head .eyebrow{ margin-bottom:16px; }
.sec-head .sub-sec{ margin-top:18px; }
.sec-head.center .sub-sec{ margin-inline:auto; }

.reveal{ transition:opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; } .reveal.d3{ transition-delay:.24s; }
.reveal.d4{ transition-delay:.32s; } .reveal.d5{ transition-delay:.40s; }
@media (prefers-reduced-motion:no-preference){
  .reveal{ opacity:0; transform:translateY(30px); }
  .reveal.in-view{ opacity:1; transform:none; }
}

/* ============================================================
   THE TRAP
   ============================================================ */
.trap-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:30px; }
.trap-card{
  background:#fff; border:1px solid var(--hair); border-radius:var(--r-lg); padding:26px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.trap-card:hover{ transform:translateY(-5px); box-shadow:var(--sh-3); border-color:#f3d6d7; }
.trap-card .ti{ width:48px; height:48px; border-radius:13px; background:var(--danger-soft); color:var(--danger); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.trap-card .ti svg{ width:24px; height:24px; }
.trap-card h3{ font-size:19px; font-weight:var(--w-bold); letter-spacing:-.01em; margin-bottom:9px; }
.trap-card p{ font-size:15px; color:var(--ink-3); line-height:1.62; }

.settle{
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:clamp(20px,4vw,44px);
  background:var(--ink); color:#fff; border-radius:var(--r-xl); padding:clamp(28px,4vw,42px) clamp(28px,4vw,48px);
  position:relative; overflow:hidden;
}
.settle::after{ content:""; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border-radius:50%; background:radial-gradient(circle,rgba(229,72,77,.4),transparent 65%); }
.settle .big{ position:relative; z-index:2; font-weight:var(--w-xbold); font-size:clamp(52px,8vw,86px); line-height:.9; letter-spacing:-.04em; color:#fff; }
.settle .big .sym{ color:var(--danger); }
.settle .mid{ position:relative; z-index:2; }
.settle .mid .m1{ font-size:13px; font-weight:var(--w-semi); letter-spacing:.08em; text-transform:uppercase; color:#FCA5A8; margin-bottom:7px; }
.settle .mid .m2{ font-size:clamp(17px,2vw,21px); font-weight:var(--w-semi); line-height:1.4; color:#fff; max-width:30ch; }
.settle .mid .m3{ font-size:13.5px; color:rgba(255,255,255,.6); margin-top:10px; }
.settle .cta{ position:relative; z-index:2; }

/* ============================================================
   PROMISES
   ============================================================ */
.pillars{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.pillar{
  position:relative; background:#fff; border:1px solid var(--hair); border-radius:var(--r-xl); padding:32px;
  overflow:hidden; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.pillar::before{ content:""; position:absolute; inset:0 auto 0 0; width:4px; background:var(--brand-grad); opacity:0; transition:opacity .4s; }
.pillar:hover{ transform:translateY(-5px); box-shadow:var(--sh-3); border-color:transparent; }
.pillar:hover::before{ opacity:1; }
.pillar .pnum{ position:absolute; top:24px; right:28px; font-size:54px; font-weight:var(--w-xbold); color:var(--surface-3); letter-spacing:-.04em; line-height:1; }
.pillar .pic{ width:54px; height:54px; border-radius:15px; background:var(--brand-grad-soft); color:#fff; display:flex; align-items:center; justify-content:center; margin-bottom:20px; box-shadow:var(--sh-teal); }
.pillar .pic svg{ width:27px; height:27px; }
.pillar h3{ font-size:22px; font-weight:var(--w-bold); letter-spacing:-.015em; margin-bottom:11px; }
.pillar p{ font-size:15.5px; color:var(--ink-3); line-height:1.64; max-width:42ch; }
.pillar .ptag{ display:inline-flex; align-items:center; gap:7px; margin-top:18px; font-size:13px; font-weight:var(--w-semi); color:var(--teal-deep); }
.pillar .ptag svg{ width:15px; height:15px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.cmp{ border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--sh-3); border:1px solid var(--hair); background:#fff; }
.cmp-table{ width:100%; border-collapse:collapse; }
.cmp-table th, .cmp-table td{ padding:18px 20px; text-align:center; }
.cmp-table thead th{ font-size:14px; font-weight:var(--w-bold); color:var(--ink-2); border-bottom:1px solid var(--hair); vertical-align:bottom; }
.cmp-table thead th:first-child{ text-align:left; }
.cmp-table thead .brandcol{ position:relative; }
.cmp-head-brand{ display:flex; flex-direction:column; align-items:center; gap:6px; padding-top:6px; }
.cmp-head-brand .lw{ font-weight:var(--w-xbold); font-size:17px; letter-spacing:-.02em; background:var(--brand-grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.cmp-head-brand .tagb{ font-size:10.5px; font-weight:var(--w-semi); color:var(--teal-deep); background:#DCFBFA; padding:3px 9px; border-radius:999px; letter-spacing:.02em; }
.cmp-feat{ text-align:left !important; font-size:15px; font-weight:var(--w-semi); color:var(--ink); }
.cmp-feat small{ display:block; font-size:12.5px; font-weight:var(--w-reg); color:var(--ink-4); margin-top:2px; }
.cmp-table tbody tr{ border-bottom:1px solid var(--hair-2); }
.cmp-table tbody tr:last-child{ border-bottom:none; }
.cmp-row{ transition:opacity .55s var(--ease-out), transform .55s var(--ease-out); }
@media (prefers-reduced-motion:no-preference){
  .cmp-row{ opacity:0; transform:translateY(14px); }
  .cmp.in-view .cmp-row{ opacity:1; transform:none; }
}
.cmp.in-view .cmp-row:nth-child(1){ transition-delay:.05s;} .cmp.in-view .cmp-row:nth-child(2){ transition-delay:.12s;}
.cmp.in-view .cmp-row:nth-child(3){ transition-delay:.19s;} .cmp.in-view .cmp-row:nth-child(4){ transition-delay:.26s;}
.cmp.in-view .cmp-row:nth-child(5){ transition-delay:.33s;} .cmp.in-view .cmp-row:nth-child(6){ transition-delay:.40s;}
.cmp.in-view .cmp-row:nth-child(7){ transition-delay:.47s;}

.cell-val{ font-size:14.5px; font-weight:var(--w-med); color:var(--ink-3); }
.brandcol{ background:linear-gradient(180deg,rgba(14,165,164,.06),rgba(11,95,255,.06)); position:relative; }
td.brandcol{ box-shadow:inset 1px 0 0 rgba(14,165,164,.16), inset -1px 0 0 rgba(11,95,255,.16); }
.cmp-table tbody td.brandcol .cell-val{ color:var(--ink); font-weight:var(--w-semi); }
.yes{ display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:#DCFBFA; color:var(--teal-deep); }
.yes svg{ width:15px; height:15px; }
.no{ display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:#F1F5F9; color:var(--ink-4); transition:background .25s, color .25s, transform .25s; }
.no svg{ width:14px; height:14px; }
.cmp-table td:not(.brandcol):hover .no{ background:var(--danger-soft); color:var(--danger); transform:scale(1.12); animation:nopulse 1.1s ease-in-out; }
@keyframes nopulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(229,72,77,0);} 40%{ box-shadow:0 0 0 6px rgba(229,72,77,.16);} }
.cmp-foot{ background:linear-gradient(180deg,rgba(14,165,164,.05),rgba(11,95,255,.07)); }
.cmp-foot td{ padding:22px 20px; }

/* ============================================================
   CANADA STRIP
   ============================================================ */
.canada{ background:var(--ink); color:#fff; border-radius:var(--r-xl); padding:clamp(34px,5vw,56px); position:relative; overflow:hidden; }
.canada::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 85% 12%, rgba(14,165,164,.22), transparent 45%),radial-gradient(circle at 8% 92%, rgba(11,95,255,.22), transparent 45%); }
.canada .c-head{ position:relative; z-index:2; display:flex; align-items:center; gap:14px; margin-bottom:34px; flex-wrap:wrap; }
.canada .maple{ width:34px; height:34px; color:var(--maple); flex:none; }
.canada .c-head h2{ font-size:clamp(26px,3.4vw,38px); font-weight:var(--w-xbold); letter-spacing:-.02em; color:#fff; }
.canada .c-head p{ color:rgba(255,255,255,.66); font-size:16px; width:100%; max-width:60ch; }
.ca-grid{ position:relative; z-index:2; display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.ca-item{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-md); padding:20px 18px; transition:transform .35s var(--ease), background .35s; }
.ca-item:hover{ transform:translateY(-4px); background:rgba(255,255,255,.09); }
.ca-item .ci{ width:42px; height:42px; border-radius:12px; background:rgba(14,165,164,.16); color:#5EEAD4; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.ca-item .ci svg{ width:22px; height:22px; }
.ca-item h4{ font-size:15.5px; font-weight:var(--w-semi); color:#fff; margin-bottom:5px; }
.ca-item p{ font-size:13px; color:rgba(255,255,255,.6); line-height:1.5; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch; }
.price{
  position:relative; background:#fff; border:1px solid var(--hair); border-radius:var(--r-xl); padding:32px 30px;
  display:flex; flex-direction:column; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.price:hover{ transform:translateY(-6px) scale(1.012); box-shadow:var(--sh-3); }
.price.feat{ border-color:transparent; box-shadow:var(--sh-teal); transform:scale(1.03); }
.price.feat:hover{ transform:scale(1.03) translateY(-6px); }
.price.feat::before{ content:""; position:absolute; inset:0; border-radius:var(--r-xl); padding:1.6px; background:var(--brand-grad); -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0); -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none; }
.price .pbadge{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--brand-grad); color:#fff; font-size:12px; font-weight:var(--w-semi); padding:6px 16px; border-radius:999px; box-shadow:var(--sh-teal); white-space:nowrap; }
.price .mtm{ display:inline-flex; align-items:center; gap:6px; align-self:flex-start; font-size:11.5px; font-weight:var(--w-semi); color:var(--teal-deep); background:#DCFBFA; padding:5px 11px; border-radius:999px; margin-bottom:16px; }
.price .mtm svg{ width:13px; height:13px; }
.price h3{ font-size:21px; font-weight:var(--w-bold); letter-spacing:-.01em; margin-bottom:6px; }
.price .pdesc{ font-size:14px; color:var(--ink-3); line-height:1.55; margin-bottom:22px; min-height:42px; }
.price .pamt{ display:flex; align-items:flex-end; gap:4px; margin-bottom:4px; }
.price .pamt .cur{ font-size:22px; font-weight:var(--w-bold); color:var(--ink); margin-bottom:7px; }
.price .pamt .num{ font-size:50px; font-weight:var(--w-xbold); letter-spacing:-.03em; line-height:1; color:var(--ink); }
.price .pamt .per{ font-size:15px; color:var(--ink-3); margin-bottom:7px; font-weight:var(--w-med); }
.price .psub{ font-size:13px; color:var(--ink-4); margin-bottom:24px; }
.price .pbtn{ margin-bottom:26px; }
.price .pbtn .btn{ width:100%; }
.price .feats{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:13px; }
.price .feats li{ display:flex; gap:11px; font-size:14.5px; color:var(--ink-2); line-height:1.45; }
.price .feats li svg{ width:19px; height:19px; flex:none; color:var(--teal); margin-top:1px; }
.price .feats li.muted{ color:var(--ink-4); } .price .feats li.muted svg{ color:var(--ink-4); }
.price-note{ text-align:center; margin-top:30px; font-size:14px; color:var(--ink-3); }
.price-note b{ color:var(--ink); font-weight:var(--w-semi); }

/* ============================================================
   MIGRATION
   ============================================================ */
.mig{ display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(36px,6vw,80px); align-items:center; }
.mig-steps{ display:flex; flex-direction:column; gap:8px; }
.mstep{ display:grid; grid-template-columns:auto 1fr; gap:20px; position:relative; padding-bottom:30px; }
.mstep:last-child{ padding-bottom:0; }
.mstep .mnum{ width:48px; height:48px; border-radius:50%; background:#fff; border:1.5px solid var(--hair); color:var(--ink); display:flex; align-items:center; justify-content:center; font-weight:var(--w-bold); font-size:18px; z-index:2; position:relative; transition:.4s var(--ease); }
.mstep.on .mnum{ background:var(--brand-grad); color:#fff; border-color:transparent; box-shadow:var(--sh-teal); }
.mstep::before{ content:""; position:absolute; left:23.5px; top:48px; bottom:-2px; width:2px; background:var(--hair); }
.mstep:last-child::before{ display:none; }
.mstep.on::before{ background:var(--brand-grad); }
.mstep .mtxt h4{ font-size:18px; font-weight:var(--w-bold); margin-bottom:6px; }
.mstep .mtxt p{ font-size:14.5px; color:var(--ink-3); line-height:1.6; }
.mig-card{ background:var(--ink); color:#fff; border-radius:var(--r-xl); padding:clamp(30px,4vw,42px); position:relative; overflow:hidden; }
.mig-card::after{ content:""; position:absolute; inset:auto -60px -60px auto; width:240px; height:240px; border-radius:50%; background:radial-gradient(circle,rgba(14,165,164,.4),transparent 65%); }
.mig-card .mc-ic{ width:56px; height:56px; border-radius:16px; background:rgba(255,255,255,.1); color:#5EEAD4; display:flex; align-items:center; justify-content:center; margin-bottom:22px; position:relative; z-index:2; }
.mig-card .mc-ic svg{ width:28px; height:28px; }
.mig-card .mc-amt{ position:relative; z-index:2; font-size:clamp(40px,6vw,60px); font-weight:var(--w-xbold); letter-spacing:-.03em; line-height:1; margin-bottom:12px; }
.mig-card h3{ position:relative; z-index:2; font-size:22px; font-weight:var(--w-bold); margin-bottom:10px; color:#fff; }
.mig-card p{ position:relative; z-index:2; color:rgba(255,255,255,.66); font-size:15px; line-height:1.62; margin-bottom:24px; }
.mig-card .mc-list{ position:relative; z-index:2; list-style:none; padding:0; margin:0 0 0; display:flex; flex-direction:column; gap:11px; }
.mig-card .mc-list li{ display:flex; gap:10px; font-size:14.5px; color:rgba(255,255,255,.84); }
.mig-card .mc-list li svg{ width:18px; height:18px; color:#5EEAD4; flex:none; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final{ position:relative; overflow:hidden; background:var(--brand-grad); border-radius:var(--r-xl); padding:clamp(48px,7vw,84px) clamp(32px,5vw,64px); text-align:center; color:#fff; }
.final::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 20% 0%, rgba(255,255,255,.18), transparent 40%),radial-gradient(circle at 85% 100%, rgba(255,255,255,.14), transparent 42%); }
.final-grid{ position:absolute; inset:0; opacity:.16; background-image:linear-gradient(rgba(255,255,255,.4) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.4) 1px,transparent 1px); background-size:48px 48px; mask-image:radial-gradient(circle at 50% 50%,#000,transparent 75%); -webkit-mask-image:radial-gradient(circle at 50% 50%,#000,transparent 75%); }
.final .inner{ position:relative; z-index:2; }
.final h2{ font-size:clamp(32px,5vw,56px); font-weight:var(--w-xbold); letter-spacing:-.03em; line-height:1.04; margin-bottom:20px; text-wrap:balance; }
.final p{ font-size:clamp(16px,1.8vw,20px); color:rgba(255,255,255,.86); max-width:52ch; margin:0 auto 34px; line-height:1.55; }
.final .fcta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.final .btn-warm{ box-shadow:0 16px 40px rgba(0,0,0,.22); }
.final .btn-light{ background:#fff; color:var(--ink); }
.final .btn-light:hover{ transform:translateY(-3px); box-shadow:0 16px 40px rgba(0,0,0,.2); }
.final .fnote{ margin-top:24px; font-size:14px; color:rgba(255,255,255,.78); display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.final .fnote span{ display:inline-flex; align-items:center; gap:7px; }
.final .fnote svg{ width:16px; height:16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot{ padding:64px 0 40px; border-top:1px solid var(--hair); background:#fff; }
.foot-top{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid var(--hair); }
.foot-brand .logo{ margin-bottom:16px; }
.foot-brand p{ font-size:14.5px; color:var(--ink-3); line-height:1.6; max-width:34ch; }
.foot-col h5{ font-size:13px; font-weight:var(--w-bold); letter-spacing:.04em; text-transform:uppercase; color:var(--ink-4); margin-bottom:16px; }
.foot-col a{ display:block; font-size:14.5px; color:var(--ink-2); margin-bottom:11px; transition:color .2s; }
.foot-col a:hover{ color:var(--teal-deep); }
.foot-bot{ display:flex; align-items:center; justify-content:space-between; padding-top:26px; gap:16px; flex-wrap:wrap; }
.foot-bot .powered{ display:inline-flex; align-items:center; gap:8px; font-size:14px; color:var(--ink-3); }
.foot-bot .powered b{ color:var(--ink); font-weight:var(--w-semi); }
.foot-bot .legal{ display:flex; gap:22px; font-size:13.5px; color:var(--ink-4); }
.foot-bot .legal a:hover{ color:var(--ink-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .hero .wrap{ grid-template-columns:1fr; gap:54px; }
  .hero-visual{ max-width:560px; margin-inline:auto; width:100%; }
  .mig{ grid-template-columns:1fr; }
  .ca-grid{ grid-template-columns:repeat(3,1fr); }
  .foot-top{ grid-template-columns:1fr 1fr; gap:32px; }
  .foot-brand{ grid-column:1/-1; }
}
@media (max-width:860px){
  .nav-links, .nav-signin{ display:none; }
  .nav-burger{ display:flex; }
  .trap-grid{ grid-template-columns:1fr; }
  .pillars{ grid-template-columns:1fr; }
  .price-grid{ grid-template-columns:1fr; max-width:440px; margin-inline:auto; }
  .price.feat{ transform:none; } .price.feat:hover{ transform:translateY(-6px); }
  .settle{ grid-template-columns:1fr; text-align:left; gap:18px; }
  .cmp-wrap{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .cmp{ min-width:680px; }
}
@media (max-width:560px){
  .hero{ padding:118px 0 64px; }
  .ca-grid{ grid-template-columns:1fr 1fr; }
  .float-chip{ display:none; }
  .pos-body{ grid-template-columns:1fr; }
  .pos-main{ border-right:none; border-bottom:1px solid var(--hair-2); }
  .hero-cta .btn{ width:100%; }
  .foot-top{ grid-template-columns:1fr; }
}

/* utility */
.nowrap{ white-space:nowrap; }
.center{ text-align:center; }
