:root {
  --bg: #0a0c0b;
  --bg-2: #111513;
  --bg-3: #171c1a;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --text: #f3f5f4;
  --muted: #8e9994;
  --soft: #c4ccc8;
  --accent: #46b6e9;
  --accent-2: #1457a6;
  --accent-glow: rgba(70,182,233,.35);
  --grad: linear-gradient(120deg, #7fd3f5 0%, #46b6e9 45%, #1f6fc4 100%);
  --radius: 18px;
  --ease: cubic-bezier(.2,.7,.2,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body::before { /* film grain */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--accent); color: var(--bg); }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 760px) { .wrap { padding: 0 32px; } }
.display { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; line-height: .86; letter-spacing: -.005em; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outline-text { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.55); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: .72rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

/* Buttons */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 28px; border-radius: 999px; font-weight: 700; font-size: .92rem; letter-spacing: .02em; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, border-color .35s, color .35s; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--grad); color: #04121b; box-shadow: 0 10px 40px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(70,182,233,.6), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--text); background: rgba(255,255,255,.03); backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.07); }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .4s, border-color .4s, backdrop-filter .4s; border-bottom: 1px solid transparent; }
header.scrolled { background: rgba(10,12,11,.72); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: .22em; text-transform: uppercase; }
.logo-mark { width: 38px; height: 38px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; color: #04121b; font-weight: 900; font-size: 1.4rem; letter-spacing: 0; font-style: italic; box-shadow: 0 6px 24px -6px var(--accent-glow); }
.nav ul { display: flex; gap: 34px; list-style: none; font-size: .88rem; font-weight: 600; }
.nav ul a { color: var(--soft); position: relative; transition: color .3s; }
.nav ul a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav ul a:hover { color: #fff; }
.nav ul a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { padding: 12px 22px; font-size: .85rem; }
.menu-btn { display: none; background: none; border: 1px solid var(--line-2); border-radius: 12px; color: #fff; cursor: pointer; width: 46px; height: 46px; place-items: center; }
.menu-btn svg { width: 22px; height: 22px; }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; padding: 140px 0 100px; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.glow.g1 { width: 620px; height: 620px; background: #1f6fc4; right: -160px; top: -160px; animation: float 14s ease-in-out infinite; }
.glow.g2 { width: 420px; height: 420px; background: #46b6e9; right: 18%; bottom: -220px; opacity: .3; animation: float 18s ease-in-out infinite reverse; }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%); opacity: .6; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 40px); } }
.hero-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: center; width: 100%; }
.hero h1 { font-size: clamp(4.4rem, 12.5vw, 11rem); margin-top: 28px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }
.hero h1 .italic { font-style: italic; }
.hero .lead { margin-top: 32px; max-width: 500px; color: var(--soft); font-size: 1.12rem; }
.hero .actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { margin-top: 64px; display: flex; flex-wrap: wrap; gap: 40px; }
.hero-meta div { border-left: 1px solid var(--line-2); padding-left: 18px; }
.hero-meta strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.4rem; line-height: 1; }
.hero-meta span { font-size: .8rem; color: var(--muted); letter-spacing: .04em; }

.hero-card { position: relative; border-radius: 24px; padding: 30px; background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.02)); border: 1px solid var(--line-2); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); animation: bob 7s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-14px) rotate(-1.5deg); } }
.hero-card .top { display: flex; justify-content: space-between; align-items: center; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.live { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); }
.live i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(70,182,233,.7); } 70% { box-shadow: 0 0 0 12px rgba(70,182,233,0); } 100% { box-shadow: 0 0 0 0 rgba(70,182,233,0); } }
.hero-card h3 { font-size: 4.2rem; margin-top: 20px; }
.hero-card .type { font-size: .78rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.hero-card ul { list-style: none; margin-top: 22px; }
.hero-card li { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); font-weight: 600; font-size: .95rem; }
.hero-card li span { color: var(--muted); font-variant-numeric: tabular-nums; }
.ring { position: absolute; width: 150px; height: 150px; right: -40px; bottom: -50px; border-radius: 50%; border: 1px dashed rgba(70,182,233,.45); animation: spin 30s linear infinite; z-index: -1; }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-hint { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-hint::after { content: ""; width: 1px; height: 40px; background: linear-gradient(var(--accent), transparent); animation: drip 2s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Marquee */
.marquee { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 22px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.2rem; text-transform: uppercase; letter-spacing: .04em; padding: 0 28px; display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee span:nth-child(even) { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.4); }
.marquee span::after { content: "✦"; color: var(--accent); font-size: 1.2rem; -webkit-text-stroke: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
section { position: relative; padding: 140px 0; }
.head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: 64px; }
.head h2 { font-size: clamp(3.2rem, 7.5vw, 6.4rem); margin-top: 20px; }
.head p { max-width: 420px; color: var(--soft); }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pillar { position: relative; padding: 40px 34px 38px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); overflow: hidden; transition: transform .5s var(--ease), border-color .5s; }
.pillar::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), rgba(70,182,233,.14), transparent 45%); opacity: 0; transition: opacity .4s; }
.pillar:hover { transform: translateY(-6px); border-color: rgba(70,182,233,.35); }
.pillar:hover::before { opacity: 1; }
.pillar .num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 5.5rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(70,182,233,.6); }
.pillar h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.1rem; text-transform: uppercase; margin-top: 36px; line-height: 1; }
.pillar p { margin-top: 14px; color: var(--muted); font-size: .96rem; position: relative; }

/* Manifesto */
.manifesto { background: var(--bg-2); border-block: 1px solid var(--line); overflow: hidden; }
.manifesto .big { font-size: clamp(2.6rem, 6.4vw, 5.6rem); max-width: 1100px; }
.manifesto .big em { font-style: italic; }
.manifesto .sign { margin-top: 44px; display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: .9rem; }
.manifesto .sign .logo-mark { width: 44px; height: 44px; }
.manifesto .bg-word { position: absolute; right: -2vw; bottom: -4vw; font-size: 22vw; opacity: .04; pointer-events: none; }

/* Plans */
.plans { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 36px 28px 30px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); transition: transform .5s var(--ease), border-color .5s; }
.plan:hover { transform: translateY(-6px); border-color: var(--line-2); }
.plan .name { font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.plan .price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 5rem; line-height: .9; margin-top: 22px; display: flex; align-items: flex-start; gap: 4px; }
.plan .price sup { font-size: 1.8rem; margin-top: 8px; color: var(--muted); font-weight: 700; }
.plan .per { color: var(--muted); font-size: .88rem; margin-top: 8px; }
.plan .save { display: inline-block; margin-top: 16px; padding: 5px 12px; border-radius: 999px; font-size: .75rem; font-weight: 700; background: rgba(70,182,233,.12); color: var(--accent); border: 1px solid rgba(70,182,233,.25); align-self: flex-start; }
.plan ul { list-style: none; margin: 28px 0 32px; padding-top: 24px; border-top: 1px solid var(--line); flex: 1; font-size: .92rem; color: var(--soft); }
.plan li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; }
.plan li svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px; color: var(--accent); }
.plan .btn { width: 100%; }
.plan.featured { background: linear-gradient(180deg, #13263a 0%, #0e1a26 60%, var(--bg-2) 100%); border: 1px solid transparent; background-clip: padding-box; transform: translateY(-14px); box-shadow: 0 40px 80px -30px rgba(31,111,196,.55); }
.plan.featured::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: var(--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; }
.plan.featured:hover { transform: translateY(-20px); }
.plan.featured .name { color: var(--accent); }
.badge { position: absolute; top: 18px; right: 18px; font-size: .66rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--grad); color: #04121b; }

/* Schedule */
.schedule { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.day { padding: 32px 30px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); }
.day h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2rem; text-transform: uppercase; line-height: 1; }
.day .label { font-size: .7rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 24px; }
.slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.slot { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: .04em; padding: 8px 14px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--line-2); transition: background .3s, border-color .3s, color .3s; }
.slot:hover { background: rgba(70,182,233,.12); border-color: rgba(70,182,233,.5); color: var(--accent); }
.day.rest { display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(160deg, var(--bg-3), var(--bg-2)); }
.day.rest p { color: var(--muted); margin-top: 16px; }
.note { margin-top: 22px; font-size: .85rem; color: var(--muted); }

/* CTA */
.cta { padding: 0 0 140px; }
.cta-box { position: relative; overflow: hidden; border-radius: 28px; padding: 90px 56px; background: radial-gradient(900px 400px at 85% 0%, rgba(70,182,233,.5), transparent 60%), radial-gradient(700px 400px at 0% 100%, rgba(20,87,166,.55), transparent 60%), var(--bg-3); border: 1px solid var(--line-2); display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; align-items: flex-end; isolation: isolate; }
.cta-box::after { content: "V"; position: absolute; right: 4%; top: 50%; transform: translateY(-50%); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic; font-size: 34rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.08); z-index: -1; }
.cta h2 { font-size: clamp(3rem, 7vw, 6rem); max-width: 720px; }
.cta p { margin-top: 18px; color: var(--soft); max-width: 460px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; }
.faq-grid .head { margin-bottom: 0; display: block; }
.faq-grid .head p { margin-top: 20px; }
details { border-bottom: 1px solid var(--line); }
details:first-child { border-top: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 28px 0; font-weight: 700; font-size: 1.08rem; transition: color .3s; }
summary:hover { color: var(--accent); }
summary::-webkit-details-marker { display: none; }
summary .plus { flex: 0 0 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; transition: transform .4s var(--ease), background .3s, border-color .3s; }
summary .plus::before, summary .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: currentColor; transform: translate(-50%,-50%); }
summary .plus::after { transform: translate(-50%,-50%) rotate(90deg); }
details[open] summary .plus { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: #04121b; }
details p { padding: 0 60px 28px 0; color: var(--muted); }

/* Contact */
.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 20px; }
.contact-card { border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); padding: 40px 36px; display: flex; flex-direction: column; gap: 30px; }
.contact-item .label { font-size: .7rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.contact-item strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2rem; text-transform: uppercase; line-height: 1.05; margin-top: 8px; }
.contact-item span { color: var(--soft); font-size: .92rem; }
.contact-item a strong { transition: color .3s; }
.contact-item a:hover strong { color: var(--accent); }
.contact-card .btn { margin-top: auto; align-self: flex-start; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 440px; background: var(--bg-2); }
.map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; filter: grayscale(1) invert(.92) contrast(.9) hue-rotate(180deg); }

footer { border-top: 1px solid var(--line); padding: 72px 0 40px; overflow: hidden; }
.footer-word { font-size: clamp(5rem, 21vw, 19rem); text-align: center; line-height: .8; }
.footer-bottom { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; color: var(--muted); font-size: .85rem; }
.footer-bottom a:hover { color: var(--accent); }

.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 34px -8px rgba(37,211,102,.6); transition: transform .35s var(--ease); }
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }
.js .hero h1 .line > span { transform: translateY(105%); animation: rise 1.1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero h1 .line > span { transform: none; }
}

@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-card { max-width: 440px; }
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-6px); }
  .faq-grid, .contact { grid-template-columns: 1fr; }
  .faq-grid { gap: 40px; }
}
@media (max-width: 820px) {
  section { padding: 96px 0; }
  .cta { padding-bottom: 96px; }
  .nav ul { position: fixed; inset: 80px 0 auto 0; flex-direction: column; gap: 0; padding: 12px 16px 28px; background: rgba(10,12,11,.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s var(--ease); }
  .nav ul.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav ul a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav ul a::after { display: none; }
  .nav > .btn { display: none; }
  .menu-btn { display: grid; }
  header.menu-open { background: rgba(10,12,11,.97); }
  .pillars, .schedule { grid-template-columns: 1fr; }
  .cta-box { padding: 56px 28px; }
  .cta-box::after { font-size: 20rem; }
  .scroll-hint { display: none; }
  .hero { padding-top: 120px; }
  .hero-meta { gap: 24px; }
}
@media (max-width: 560px) {
  .plans { grid-template-columns: 1fr; }
  .hero .actions .btn { flex: 1 1 100%; }
  .contact-card { padding: 32px 24px; }
  details p { padding-right: 0; }
  .head { margin-bottom: 44px; }
}
