/* ============================================================
 BlueRock × World SME Day — Landing Page
 Cinematic, premium, scroll-driven. Deep Blue / Sky / White.
 ============================================================ */

:root {
 --deep: #001F44;
 --deep2: #062a52;
 --sky: #00A4FF;
 --sky2: #7FD1FF;
 --ink: #192128;
 --ease: cubic-bezier(.2, .7, .2, 1);
 --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
 margin: 0; font-family: var(--font-sans); color: var(--ink);
 background: var(--deep); overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* ---------- shared type ---------- */
.kicker {
 display: inline-flex; align-items: center; gap: 16px;
 font-size: 15px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
 color: var(--sky); margin: 0;
}
.kicker::before { content: ""; width: 34px; height: 4px; background: var(--sky); transform: skewX(-18deg); flex: none; }
.kicker.center { justify-content: center; }
.kicker.ink { color: var(--deep); }

/* Rotating hero eyebrow (typewriter + fade) */
.kicker.kicker--rotate {
 display: flex;
 flex-wrap: nowrap;
 align-items: center;
 max-width: 100%;
 width: 100%;
}
.kicker.kicker--rotate .hero-rotate {
 flex: 1 1 auto;
 min-width: 0;
 max-width: 100%;
 overflow: hidden;
}
.kicker .hero-rotate {
 display: block;
 vertical-align: bottom;
 position: relative;
 min-height: 1.2em;
}
.kicker .hero-rotate__line {
 display: block;
 font: inherit;
 letter-spacing: inherit;
 text-transform: inherit;
 color: inherit;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: clip;
}
.hero-rotate[data-effect="typewriter"] .hero-rotate__line::after,
.hero-rotate[data-effect="typewriter-fade"] .hero-rotate__line::after {
 content: "";
 display: inline-block;
 width: 2px;
 height: .95em;
 margin-left: 2px;
 vertical-align: -.12em;
 background: currentColor;
 animation: hero-rotate-cursor 1s step-end infinite;
}
@keyframes hero-rotate-cursor {
 50% { opacity: 0; }
}
.hero-rotate[data-effect="typewriter-fade"] .hero-rotate__line {
 transition: opacity .5s ease;
}
.hero-rotate[data-effect="typewriter-fade"] .hero-rotate__line.is-out {
 opacity: 0;
}
.site-hero-flag {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 1.5em;
 height: 1em;
 margin-right: .45em;
 border-radius: 2px;
 overflow: hidden;
 box-shadow: 0 0 0 1px rgba(255,255,255,.12);
 flex: none;
}
.site-hero-flag svg { display: block; width: 100%; height: 100%; }
@media (prefers-reduced-motion: reduce) {
 .hero-rotate[data-effect="typewriter"] .hero-rotate__line::after,
 .hero-rotate[data-effect="typewriter-fade"] .hero-rotate__line::after {
  display: none;
 }
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -.025em; line-height: 1.03; font-weight: 800; }
.hl { color: var(--sky); }
.lede { font-size: clamp(18px, 1.5vw, 23px); line-height: 1.6; color: var(--gray-500); font-weight: 400; }
.on-dark .lede, .lede.on-dark { color: rgba(255,255,255,.72); }

/* ---------- slant motif ---------- */
.bars { display: inline-flex; flex-direction: column; gap: 9px; }
.bars span { display: block; height: 11px; transform: skewX(-18deg); }
.bars span:nth-child(1){ width: 56px; background: var(--sky); }
.bars span:nth-child(2){ width: 42px; background: var(--sky2); }
.bars span:nth-child(3){ width: 68px; background: var(--sky); }
.bars span:nth-child(4){ width: 42px; background: var(--sky2); }
.wm { position: absolute; pointer-events: none; display: flex; flex-direction: column; gap: 26px; opacity: .045; }
.wm span { display: block; transform: skewX(-18deg); background: #fff; }
.wm span:nth-child(1){ width: 320px; height: 64px; }
.wm span:nth-child(2){ width: 230px; height: 64px; }
.wm span:nth-child(3){ width: 400px; height: 64px; }

/* ---------- buttons ---------- */
.btn {
 display: inline-flex; align-items: center; gap: 14px; cursor: pointer; border: none;
 font-family: inherit; font-size: 17px; font-weight: 700; letter-spacing: -.01em;
 padding: 18px 30px; border-radius: 10px; transition: transform .2s var(--ease), background .2s, box-shadow .3s;
}
.btn svg { width: 20px; height: 20px; transition: transform .25s var(--ease); }
.btn path { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover svg { transform: translateX(5px); }
.btn-sky { background: var(--sky); color: var(--deep); box-shadow: 0 10px 30px rgba(0,164,255,.3); }
.btn-sky:hover { background: var(--sky2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* ---------- NAV ---------- */
.nav {
 position: fixed; top: 0; left: 0; right: 0; z-index: 100;
 display: flex; align-items: center; justify-content: space-between;
 padding: 22px 40px; transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.nav.scrolled { background: rgba(0,18,40,.82); backdrop-filter: blur(14px); padding: 14px 40px; box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.nav .logo { height: 34px; width: auto; }
.nav .nav-r { display: flex; align-items: center; gap: 28px; }
.nav .nav-links { display: flex; gap: 30px; }
.nav .nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.82); transition: color .2s; }
.nav .nav-links a:hover { color: #fff; }
.nav .btn { padding: 12px 22px; font-size: 15px; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: max(100vh, 720px); overflow: hidden; display: flex; align-items: center; }
.hero .hero-content { padding-bottom: 72px; box-sizing: border-box; }
.hero.hero--solid { background: var(--deep, #000f22); }
.hero video, .hero .hero-fallback {
 position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero .scrim {
 position: absolute; inset: 0; z-index: 1;
 background:
 linear-gradient(105deg, rgba(0,15,34,.92) 0%, rgba(0,15,34,.7) 38%, rgba(0,15,34,.25) 70%, rgba(0,15,34,.55) 100%),
 linear-gradient(0deg, rgba(0,15,34,.85) 0%, rgba(0,15,34,0) 38%);
}
.hero .wm { right: -80px; bottom: -60px; z-index: 1; opacity: .07; }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero h1 { color: #fff; font-size: clamp(48px, 7.4vw, 116px); max-width: 16ch; }
.hero .lede { color: rgba(255,255,255,.8); max-width: 46ch; margin-top: 28px; }
.hero-cta { display: flex; align-items: center; gap: 22px; margin-top: 44px; flex-wrap: nowrap; }
.hero .price-chip {
 display: inline-flex; align-items: baseline; gap: 10px;
 background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
 padding: 14px 22px; border-radius: 10px; backdrop-filter: blur(6px);
}
.hero .price-chip { white-space: nowrap; }
.hero .price-chip b { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero .price-chip span { font-size: 15px; color: rgba(255,255,255,.6); }
.scrolldown {
 position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
 display: flex; flex-direction: column; align-items: center; gap: 10px;
 font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.scrolldown .mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; position: relative; }
.scrolldown .mouse::after { content: ""; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--sky); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ---------- SECTION SCAFFOLD ---------- */
section { position: relative; }
.sec { padding: clamp(90px, 12vh, 160px) 0; }
.sec.deep { background: var(--deep); color: #fff; }
.sec.deep2 { background: var(--deep2); color: #fff; }
.sec.light { background: #fff; color: var(--ink); }
.sec.page { background: var(--gray-100); color: var(--ink); }
.eyebrow-h { font-size: clamp(34px, 4.4vw, 68px); }
.eyebrow-h.on-dark { color: #fff; }
.eyebrow-h.ink { color: var(--deep); }

/* ---------- BIG STATEMENT ---------- */
.statement { text-align: left; }
.statement h2 { font-size: clamp(40px, 6.4vw, 104px); color: #fff; max-width: 18ch; }
.statement .lede { margin-top: 30px; max-width: 52ch; }

/* ---------- REALITY split ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.split .media { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 80px rgba(0,8,24,.5); }
.split .media img { width: 100%; height: 100%; object-fit: cover; object-position: 22% center; }
.stats-row { display: flex; gap: 54px; margin-top: 40px; }
.stat .n { font-size: clamp(38px, 4.4vw, 60px); font-weight: 800; color: var(--deep); letter-spacing: -.02em; line-height: 1; }
.on-dark .stat .n { color: var(--sky); }
.stat .l { font-size: 16px; color: var(--gray-500); margin-top: 8px; line-height: 1.4; }
.on-dark .stat .l { color: rgba(255,255,255,.62); }

/* ---------- PILLAR OVERVIEW CARDS ---------- */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.pcard {
 position: relative; border-radius: 18px; overflow: hidden; min-height: 440px;
 display: flex; flex-direction: column; justify-content: flex-end; padding: 36px;
 color: #fff; box-shadow: 0 20px 60px rgba(0,8,24,.3);
}
.pcard img { position: absolute; left: 0; right: 0; top: -34%; width: 100%; height: 140%; object-fit: cover; object-position: 50% 50%; z-index: 0; transition: transform .8s var(--ease); }
.pcard .pscrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0,15,34,.95) 8%, rgba(0,15,34,.4) 55%, rgba(0,15,34,.1) 100%); }
.pcard:hover img { transform: scale(1.06); }
.pcard .pc-body { position: relative; z-index: 2; }
.pcard .pnum { font-size: 14px; font-weight: 700; letter-spacing: .18em; color: var(--sky2); }
.pcard .pc-body h3 { min-height: 2.4em; }
.pcard h3 { font-size: 28px; margin: 14px 0 12px; color: #fff; }
.pcard p { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.78); margin: 0; font-weight: 400; }

/* ---------- PILLAR DEEP-DIVE ---------- */
.pillar { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pillar.rev .pillar-media { order: 2; }
.pillar-media { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 5/6; box-shadow: 0 30px 80px rgba(0,8,24,.5); }
.pillar-media img { width: 100%; height: 100%; object-fit: cover; }
.pillar-media .tagnum { position: absolute; top: 28px; left: 28px; z-index: 2; font-size: 76px; font-weight: 800; color: rgba(255,255,255,.92); letter-spacing: -.04em; text-shadow: 0 6px 30px rgba(0,8,24,.5); }
.pillar h2 { font-size: clamp(34px, 4vw, 60px); }
.pillar .lede { margin: 24px 0 28px; }
.featlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.featlist li { display: flex; gap: 16px; align-items: flex-start; font-size: 18px; line-height: 1.45; font-weight: 500; }
.on-dark .featlist li { color: rgba(255,255,255,.9); }
.featlist .dot { flex: none; width: 12px; height: 12px; border-radius: 3px; transform: skewX(-18deg); background: var(--sky); margin-top: 8px; }
.featlist li b { font-weight: 700; }

/* ---------- FOUND-EVERYWHERE rows ---------- */
.found { display: grid; gap: 14px; margin-top: 28px; }
.found-row { display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 18px 22px; }
.found-row .fic { flex: none; width: 46px; height: 46px; border-radius: 10px; background: rgba(0,164,255,.16); display: grid; place-items: center; }
.found-row .fic svg { width: 24px; height: 24px; fill: none; stroke: var(--sky); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.found-row .ft b { display: block; font-size: 18px; font-weight: 700; color: #fff; }
.found-row .ft span { font-size: 14px; color: rgba(255,255,255,.62); }
.found-row .tg { margin-left: auto; font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--sky2); }

/* ---------- LOYALTY WALLET PASSES ---------- */
.wallet { display: flex; gap: 26px; }
.pass { flex: 1; border-radius: 22px; padding: 28px; color: #fff; box-shadow: 0 24px 60px rgba(0,8,24,.45); position: relative; overflow: hidden; }
.pass.p1 { background: linear-gradient(155deg, #06335f, #001b3d); border: 1px solid rgba(255,255,255,.12); }
.pass.p2 { background: linear-gradient(155deg, #00A4FF, #0072c6); }
.pass.p3 { background: linear-gradient(155deg, #16273f, #0a1830); border: 1px solid rgba(127,209,255,.3); }
.pass-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.pass-brand { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; }
.pass-brand img { width: 26px; }
.pass.p2, .pass.p2 .pass-type { color: #001F44; }
.pass-type { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.pass-label { font-size: 15px; font-weight: 600; opacity: .72; margin-bottom: 6px; }
.pass-value { font-size: 32px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 18px; }
.pass.p2 .pass-value, .pass.p2 .pass-label { color: #001F44; }
.stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.stamps .s { aspect-ratio: 1; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); display: grid; place-items: center; }
.stamps .s.on { background: var(--sky); border-color: var(--sky); }
.stamps .s.on svg { width: 15px; height: 15px; fill: none; stroke: #001F44; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.pass .bar { margin-top: 20px; height: 44px; border-radius: 7px; background: repeating-linear-gradient(90deg, #fff 0 3px, transparent 3px 6px); opacity: .85; }
.pass.p2 .bar { background: repeating-linear-gradient(90deg, #001F44 0 3px, transparent 3px 6px); }
.pass .vip { font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sky2); }

/* ---------- HOW IT WORKS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 56px; }
.step { position: relative; padding-top: 30px; }
.step .line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.14); border-radius: 2px; overflow: hidden; }
.step .line i { position: absolute; inset: 0; background: var(--sky); transform: skewX(-18deg) scaleX(.45); transform-origin: left; }
.step .sn { font-size: 16px; font-weight: 800; color: var(--sky); letter-spacing: .1em; margin-bottom: 16px; }
.step h4 { font-size: 24px; color: #fff; margin-bottom: 10px; }
.step p { font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.68); margin: 0; font-weight: 400; }

/* ---------- OFFER ---------- */
.offer-card {
 background: linear-gradient(160deg, #073363 0%, #001b3d 100%);
 border: 1px solid rgba(127,209,255,.2); border-radius: 24px; overflow: hidden;
 display: grid; grid-template-columns: .85fr 1.15fr; box-shadow: 0 40px 100px rgba(0,8,24,.5);
}
.offer-left { padding: 56px; border-right: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.offer-price { font-size: clamp(56px, 6vw, 92px); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: .9; }
.offer-price small { font-size: 26px; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: 0; }
.offer-after { font-size: 18px; color: rgba(255,255,255,.62); }
.offer-after .strike { text-decoration: line-through; text-decoration-color: var(--sky); text-decoration-thickness: 2px; }
.offer-deadline { display: inline-flex; align-items: center; gap: 12px; align-self: flex-start; font-size: 15px; font-weight: 600; color: #fff; background: rgba(255,255,255,.08); padding: 12px 20px; border-radius: 9px; }
.offer-deadline .d { width: 11px; height: 11px; border-radius: 50%; background: var(--sky); }
.offer-right { padding: 56px; }
.offer-right h4 { font-size: 15px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sky2); margin-bottom: 26px; }
.inclist { list-style: none; margin: 0 0 34px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.inclist li { display: flex; align-items: center; gap: 14px; font-size: 17px; color: rgba(255,255,255,.92); font-weight: 500; }
.inclist .ck { flex: none; width: 30px; height: 30px; border-radius: 7px; background: rgba(0,164,255,.18); display: grid; place-items: center; }
.inclist .ck svg { width: 17px; height: 17px; fill: none; stroke: var(--sky); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- FINAL CTA ---------- */
.finale { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.finale img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.finale .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0,15,34,.92), rgba(0,15,34,.55)); }
.finale .wm { left: -80px; top: 10%; z-index: 1; }
.finale-c { position: relative; z-index: 2; }
.finale h2 { font-size: clamp(44px, 6.6vw, 104px); color: #fff; max-width: 14ch; }
.finale .lede { margin: 26px 0 40px; max-width: 44ch; }
.contact { display: flex; gap: 16px 40px; flex-wrap: wrap; margin-top: 40px; }
.contact a { display: inline-flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 600; color: #fff; transition: color .2s; }
.contact a:hover { color: var(--sky2); }
.contact svg { width: 22px; height: 22px; fill: none; stroke: var(--sky); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- LEAD MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,10,26,.72); backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s var(--ease); }
.modal.open .modal-backdrop { opacity: 1; }
.modal-panel {
 position: absolute; top: 50%; left: 50%; transform: translate(-50%, -46%) scale(.98);
 width: min(920px, calc(100vw - 40px)); max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px); overflow: hidden;
 background: #fff; border-radius: 20px; box-shadow: 0 50px 120px rgba(0,8,24,.6);
 display: grid; grid-template-columns: .82fr 1.18fr; opacity: 0;
 transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.modal.open .modal-panel { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.modal-x { position: absolute; top: 16px; right: 16px; z-index: 4; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--gray-300); background: rgba(255,255,255,.92); color: var(--deep); cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; box-shadow: 0 4px 14px rgba(0,8,24,.18); }
.modal-x:hover { background: #fff; transform: scale(1.05); }
.modal-x svg { width: 20px; height: 20px; }

.modal-aside { position: relative; background: linear-gradient(160deg, #073363, #001b3d); color: #fff; padding: 40px 34px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px); min-height: 0; }
.modal-aside .wm { right: -120px; bottom: -90px; opacity: .07; }
.modal-aside .wm span:nth-child(1){ width: 220px; height: 46px; } .modal-aside .wm span:nth-child(2){ width: 160px; height: 46px; } .modal-aside .wm span:nth-child(3){ width: 280px; height: 46px; }
.modal-logo { height: 28px; width: auto; position: relative; z-index: 1; }
.modal-aside-body { position: relative; z-index: 1; }
.modal-aside-h { font-size: 32px; color: #fff; margin: 14px 0 16px; }
.modal-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.modal-price b { font-size: 34px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.modal-price span { font-size: 15px; color: rgba(255,255,255,.62); }
.modal-price-after { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.modal-price-after .strike { text-decoration: line-through; text-decoration-color: var(--sky); text-decoration-thickness: 2px; }
.modal-mini { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.modal-mini li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.9); }
.modal-mini .ck { flex: none; width: 26px; height: 26px; border-radius: 6px; background: rgba(0,164,255,.2); display: grid; place-items: center; }
.modal-mini .ck svg { width: 15px; height: 15px; fill: none; stroke: var(--sky); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.modal-aside-foot { position: relative; z-index: 1; display: flex; gap: 12px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }
.modal-aside-foot b { color: #fff; font-weight: 700; }
.maf-ic { flex: none; width: 30px; height: 30px; border-radius: 8px; background: rgba(0,164,255,.18); display: grid; place-items: center; color: var(--sky); }
.maf-ic svg { width: 18px; height: 18px; }

.modal-form-wrap { padding: 44px 42px; overflow-y: auto; max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px); min-height: 0; }
.modal-title { font-size: 30px; color: var(--deep); }
.modal-sub { font-size: 15px; line-height: 1.5; color: var(--gray-500); margin: 10px 0 24px; }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--deep); letter-spacing: .01em; }
.field label .opt { font-weight: 400; color: var(--gray-500); }
.field input, .field textarea {
 font-family: inherit; font-size: 16px; color: var(--ink); background: var(--gray-100);
 border: 1px solid var(--gray-300); border-radius: 8px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s, background .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3ad; }
.field input:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--sky); box-shadow: 0 0 0 3px var(--blue-300); }
.field.invalid input, .field.invalid textarea { border-color: var(--error); box-shadow: 0 0 0 3px rgba(220,38,38,.16); }
.field .err { font-size: 12px; color: var(--error); display: none; }
.field.invalid .err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.modal-submit { justify-content: center; width: 100%; margin-top: 6px; }
.modal-submit[disabled] { opacity: .7; cursor: default; }
.modal-submit.loading .btn-label::after { content: ""; }
.modal-fineprint { font-size: 12px; line-height: 1.5; color: var(--gray-500); margin: 4px 0 0; text-align: center; }
.form-error-msg { font-size: 14px; color: var(--error); background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.2); border-radius: 8px; padding: 12px 14px; display: none; }
.form-error-msg.show { display: block; }
.form-error-msg a { color: var(--deep); font-weight: 600; text-decoration: underline; }

.lead-success { text-align: center; padding: 30px 10px; display: flex; flex-direction: column; align-items: center; gap: 14px; animation: rise .5s var(--ease) both; }
.ls-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--blue-50); color: var(--sky); display: grid; place-items: center; }
.ls-icon svg { width: 38px; height: 38px; }
.lead-success h3 { font-size: 28px; color: var(--deep); }
.lead-success p { font-size: 16px; line-height: 1.55; color: var(--gray-500); max-width: 36ch; margin: 0; }
.lead-success .btn { margin-top: 10px; color: var(--deep); border-color: var(--gray-300); }
.lead-success .btn:hover { background: var(--blue-50); }

@media (max-width: 720px) {
 .modal-panel { grid-template-columns: 1fr; max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); width: calc(100vw - 24px); }
 .modal-aside { display: none; }
 .modal-form-wrap { padding: 30px 22px calc(28px + env(safe-area-inset-bottom)); max-height: calc(100dvh - 24px); }
 .field-row { grid-template-columns: 1fr; }
 /* close button visible over the white form on mobile */
 .modal-x { top: 12px; right: 12px; width: 44px; height: 44px; background: rgba(255,255,255,.92); border: 1px solid var(--gray-300); color: var(--deep); }
 .modal-x:hover { background: var(--gray-300); }
 .modal-title { padding-right: 52px; }
}

/* ---------- FINALE COUNTDOWN ---------- */
.finale-wrap { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.finale-main { flex: 1; min-width: 0; }
.countdown {
 flex: none; width: 360px; align-self: center;
 background: rgba(7,30,58,.55); border: 1px solid rgba(127,209,255,.25);
 border-radius: 18px; padding: 28px; backdrop-filter: blur(12px);
 box-shadow: 0 30px 80px rgba(0,8,24,.5);
}
.cd-tag { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--sky2); margin-bottom: 18px; }
.cd-tag .d { width: 9px; height: 9px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 0 rgba(0,164,255,.5); animation: cdpulse 2s var(--ease) infinite; flex: none; }
@keyframes cdpulse { 0% { box-shadow: 0 0 0 0 rgba(0,164,255,.5); } 70% { box-shadow: 0 0 0 8px rgba(0,164,255,0); } 100% { box-shadow: 0 0 0 0 rgba(0,164,255,0); } }
.cd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cd-cell { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 14px 6px; text-align: center; }
.cd-cell b { display: block; font-size: 36px; font-weight: 800; letter-spacing: -.02em; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-cell span { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 7px; display: block; }
.cd-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 20px 0 18px; flex-wrap: wrap; }
.cd-price { display: flex; align-items: baseline; gap: 6px; }
.cd-price b { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.cd-price span { font-size: 14px; color: rgba(255,255,255,.6); }
.cd-after { font-size: 13px; color: rgba(255,255,255,.6); }
.cd-after .strike { text-decoration: line-through; text-decoration-color: var(--sky); text-decoration-thickness: 2px; }
.cd-cta { width: 100%; justify-content: center; }
.countdown.ended .cd-grid { display: none; }
.countdown.ended .cd-tag { color: #fff; }

@media (max-width: 980px) {
 .finale-wrap { flex-direction: column; align-items: stretch; gap: 44px; }
 .countdown { width: 100%; max-width: 440px; }
}

/* ---------- FOOTER ---------- */
.footer { background: #00132a; color: rgba(255,255,255,.6); padding: 64px 0 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand img { height: 32px; }
.footer-brand .tagline { font-size: 15px; color: rgba(255,255,255,.66); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: background .2s, border-color .2s, transform .2s var(--ease); }
.socials a:hover { background: var(--sky); border-color: var(--sky); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.socials a:hover svg { stroke: var(--deep); }
.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.fcol h5 { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sky2); margin: 0 0 14px; }
.fcol p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.72); margin: 0 0 8px; }
.fcol a { color: rgba(255,255,255,.72); transition: color .2s; }
.fcol a:hover { color: #fff; }
.footer .disc { font-size: 12px; line-height: 1.5; max-width: none; color: rgba(255,255,255,.4); margin-top: 30px; }
.footer-bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; flex-wrap: wrap; }
.footer-bottom .disc { margin-top: 30px; }
.powered { font-size: 12px; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.45); margin: 0; white-space: normal; }
@media (min-width: 769px) { .powered { width: 100%; text-align: center; } .footer .disc { width: 100%; text-align: center; } }
@media (max-width: 768px) { .powered .cp { display: block; } .powered .sep { display: none; } }
.powered a { color: var(--sky2); transition: color .2s; }
.powered a:hover { color: #fff; }

/* ---------- WHATSAPP WIDGET ---------- */
.wa { position: fixed; right: 22px; bottom: 22px; z-index: 150; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; pointer-events: none; }
/* container is click-through; only the launcher and the OPEN popup are interactive,
 so the (in-flow) closed popup never swallows taps over the lower screen on mobile */
.wa-launch, .wa.open .wa-pop { pointer-events: auto; }
.wa-launch {
 position: relative; width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
 background: #25D366; box-shadow: 0 10px 30px rgba(37,211,102,.45); display: grid; place-items: center;
 transition: transform .2s var(--ease), box-shadow .3s;
}
.wa-launch:hover { transform: scale(1.07); box-shadow: 0 14px 38px rgba(37,211,102,.55); }
.wa-launch .wa-ic { width: 34px; height: 34px; }
.wa-launch::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: wapulse 2.4s var(--ease) infinite; }
@keyframes wapulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.wa-badge { position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; border-radius: 10px; background: var(--sky); color: var(--deep); font-size: 12px; font-weight: 800; display: grid; place-items: center; padding: 0 5px; box-shadow: 0 2px 6px rgba(0,8,24,.3); }

.wa-pop {
 width: 320px; max-width: calc(100vw - 44px); background: #fff; border-radius: 16px; overflow: hidden;
 box-shadow: 0 24px 60px rgba(0,8,24,.4); transform: translateY(16px) scale(.96); opacity: 0; pointer-events: none;
 transition: opacity .25s var(--ease), transform .25s var(--ease); transform-origin: bottom right;
}
.wa.open .wa-pop { opacity: 1; transform: none; pointer-events: auto; }
.wa-pop-head { background: #075E54; color: #fff; padding: 16px 16px; display: flex; align-items: center; gap: 12px; }
.wa-avatar { flex: none; width: 42px; height: 42px; border-radius: 50%; background: #25D366; display: grid; place-items: center; }
.wa-avatar svg { width: 24px; height: 24px; }
.wa-pop-id { flex: 1; min-width: 0; line-height: 1.3; }
.wa-pop-id b { display: block; font-size: 15px; font-weight: 700; }
.wa-pop-id span { font-size: 12px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ee07a; display: inline-block; }
.wa-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,.8); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 2px; }
.wa-close:hover { color: #fff; }
.wa-pop-body { padding: 22px 16px 16px; background: #ECE5DD; }
.wa-msg { background: #fff; border-radius: 4px 12px 12px 12px; padding: 12px 14px; font-size: 14px; line-height: 1.5; color: #303030; box-shadow: 0 1px 2px rgba(0,8,24,.12); max-width: 92%; }
.wa-msg-from { display: block; font-size: 12px; font-weight: 700; color: #075E54; margin-bottom: 4px; }
.wa-cta { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff; font-size: 15px; font-weight: 700; padding: 15px; text-decoration: none; transition: background .2s; }
.wa-cta:hover { background: #1fb855; }
.wa-cta svg { width: 18px; height: 18px; }

@media (max-width: 560px) {
 .wa { right: 16px; bottom: 16px; }
 .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }
.reveal-x { opacity: 0; transform: translateX(-50px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-x.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
 .reveal, .reveal-x { opacity: 1 !important; transform: none !important; }
 html { scroll-behavior: auto; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
 .wrap { padding: 0 24px; }
 .split, .pillar, .offer-card { grid-template-columns: 1fr; gap: 44px; }
 .pillar.rev .pillar-media { order: 0; }
 .offer-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
 .cards3 { grid-template-columns: 1fr; }
 .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
 .nav .nav-links { display: none; }
 .inclist { grid-template-columns: 1fr; }
 .wallet { flex-direction: column; }
}
@media (max-width: 560px) {
 .stats-row { flex-direction: column; gap: 26px; }
 .steps { grid-template-columns: 1fr; }
 .hero-cta { gap: 10px; flex-wrap: nowrap; }
 .hero-cta .btn { padding: 12px 14px; font-size: 14px; gap: 8px; white-space: nowrap; }
 .hero-cta .btn svg { width: 16px; height: 16px; }
 /* compact header on mobile so the CTA never overlaps the logo */
 .nav { padding: 14px 18px; }
 .nav .logo { height: 27px; }
 .nav .btn { padding: 9px 14px; font-size: 13px; gap: 8px; white-space: nowrap; }
 .nav .btn svg { width: 16px; height: 16px; }
 .kicker.kicker--rotate {
  font-size: clamp(9px, 2.6vw, 13px);
  letter-spacing: .14em;
  gap: 10px;
 }
 .kicker.kicker--rotate::before { width: 24px; }
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; margin-top: 48px; max-width: 880px; }
.faq-item { border: 1px solid var(--gray-300); border-radius: 12px; background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .25s; }
.faq-item[open] { border-color: var(--blue-300); box-shadow: 0 10px 30px rgba(0,31,68,.08); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; font-size: 18px; font-weight: 700; color: var(--deep); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex: none; width: 11px; height: 11px; border-right: 2.5px solid var(--sky); border-bottom: 2.5px solid var(--sky); transform: rotate(45deg); transition: transform .25s var(--ease); margin-top: -4px; }
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-a { padding: 0 26px 24px; font-size: 16px; line-height: 1.65; color: var(--gray-500); max-width: 72ch; }
@media (max-width: 560px) {
 .faq-item summary { font-size: 16px; padding: 18px; }
 .faq-a { padding: 0 18px 20px; }
}

/* FIX 2026-06-07: make the [hidden] attribute actually hide the form/success.
 .lead-form/.lead-success set display:flex which was overriding [hidden],
 so the success block was always visible + the form never hid on submit. */
.lead-form[hidden], .lead-success[hidden] { display: none !important; }
