@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-dark: #0d1117;
  --bg-dark-alt: #12181f;
  --surface-dark: #161d26;
  --ink: #e8edf2;
  --ink-dim: #a9b6c2;
  --paper: #f4f6f5;
  --paper-alt: #eaeef0;
  --text-on-paper: #14201c;
  --text-on-paper-dim: #4a5852;

  --neon: #39ffb0;
  --neon-dim: color-mix(in oklch, var(--neon), black 30%);
  --neon-bright: color-mix(in oklch, var(--neon), white 25%);
  --cyan: #38e0ff;
  --magenta: #ff4fd8;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --radius-xl: 40px;

  --shadow-sharp: 0 1px 2px rgba(0,0,0,0.4), 0 4px 10px rgba(0,0,0,0.3);
  --shadow-neon: 0 0 0 1px color-mix(in oklch, var(--neon), transparent 60%), 0 8px 30px color-mix(in oklch, var(--neon), transparent 80%);
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);

  --font-head: 'Gabarito', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text-on-paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.scanline-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background: repeating-linear-gradient(
    to bottom,
    rgba(57, 255, 176, 0.015) 0px,
    rgba(57, 255, 176, 0.015) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

.PACE .pace-progress { background: var(--neon); box-shadow: 0 0 10px var(--neon), 0 0 5px var(--neon); height: 3px; }
.PACE .pace-progress-inner { box-shadow: none; }
.PACE .pace-activity { display: none; }


.site-header {
  position: sticky; top: 0; z-index: 1000;
  transition: background-color .4s ease, box-shadow .4s ease;
}
.header-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background-color: var(--bg-dark);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  transition: opacity .3s ease;
}
.brand:hover { opacity: 0.85; }
.brand-mark {
  font-family: var(--font-mono); color: var(--neon);
  font-weight: 700; font-size: 1.3rem;
  text-shadow: 0 0 12px color-mix(in oklch, var(--neon), transparent 30%);
}
.brand-accent { color: var(--neon); }

.nav-desktop { display: none; gap: 6px; align-items: center; }
.nav-link {
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 0.94rem; font-weight: 500;
  transition: background-color .3s ease, color .3s ease;
  color: var(--paper);
}
.nav-link--active { font-weight: 600; }


.site-header[data-theme="ondark"] { color: var(--ink); }
.site-header[data-theme="ondark"] .nav-link:hover { background: rgba(255,255,255,0.08); }
.site-header[data-theme="ondark"] .nav-link--active { color: var(--neon); }
.site-header[data-theme="ondark"] .menu-toggle span { background: var(--ink); }
.site-header[data-theme="ondark"] .brand-text { color: var(--ink); }

.site-header[data-theme="onlight"] { color: var(--text-on-paper); }
.site-header[data-theme="onlight"] .nav-link:hover { background: rgba(20,32,28,0.06); }
.site-header[data-theme="onlight"] .nav-link--active { color: color-mix(in oklch, var(--neon), black 45%); }
.site-header[data-theme="onlight"] .menu-toggle span { background: var(--text-on-paper); }
.site-header[data-theme="onlight"] .brand-text { color: var(--paper); }
.site-header[data-theme="onlight"] .brand-mark { color: color-mix(in oklch, var(--neon), black 35%); text-shadow: none; }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; z-index: 1001;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease;
  display: flex; flex-direction: column;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(57,255,176,0.15);
}
.mobile-panel a {
  padding: 16px 24px; color: var(--ink);
  font-weight: 500; font-size: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  min-height: 44px; display: flex; align-items: center;
  transition: background-color .3s ease, color .3s ease, padding-left .3s ease;
}
.mobile-panel a:hover { background: rgba(57,255,176,0.08); color: var(--neon); padding-left: 30px; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .mobile-panel { display: none; }
}


.section {
  position: relative;
  width: 100%;
  padding: clamp(60px, 10vw, 130px) 0;
  background: var(--paper);
}
.section-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--ink);
}
.section--dark .section-lead, .section--dark p { color: var(--ink-dim); }

.section--hero {
  background:
    radial-gradient(ellipse at 20% 20%, color-mix(in oklch, var(--neon), transparent 92%), transparent 55%),
    radial-gradient(ellipse at 80% 70%, color-mix(in oklch, var(--cyan), transparent 92%), transparent 55%),
    var(--bg-dark);
  color: var(--ink);
  padding: clamp(80px, 14vw, 170px) 0 clamp(60px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(57,255,176,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,176,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-tag {
  display: flex; align-items: center; gap: 8px;
  flex-direction: column;
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.03em;
  color: var(--neon); background: rgba(57,255,176,0.08);
  border: 1px solid rgba(57,255,176,0.25);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 8px var(--neon); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  line-height: 1.04; letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.cursor-blink {
  color: var(--neon); animation: blink 1s step-end infinite; font-weight: 400;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--ink-dim); max-width: 640px; margin-bottom: 38px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-terminal {
  background: var(--surface-dark); border-radius: var(--radius-md);
  border: 1px solid rgba(57,255,176,0.18);
  box-shadow: var(--shadow-neon), var(--shadow-sharp);
  overflow: hidden; max-width: 620px;
}
.terminal-bar {
  display: flex; gap: 7px; padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.terminal-bar span:nth-child(1) { background: #ff5f57; }
.terminal-bar span:nth-child(2) { background: #febc2e; }
.terminal-bar span:nth-child(3) { background: #28c840; }
.terminal-body { padding: 20px 22px; font-family: var(--font-mono); font-size: 0.86rem; }
.terminal-body p { margin-bottom: 10px; color: var(--ink-dim); }
.term-prompt { color: var(--neon); margin-right: 6px; }
.term-out { color: color-mix(in oklch, var(--cyan), white 10%); padding-left: 14px; }


.section--diagonal-top {
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: clamp(90px, 12vw, 150px);
}
.section--diagonal-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
}
.section--angled {
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -30px 0;
  padding-top: clamp(90px, 12vw, 150px);
  padding-bottom: clamp(90px, 12vw, 150px);
}
.section--angled-alt {
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
}


h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.01em; }
.page-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800; line-height: 1.05; margin-bottom: 18px;
}
.eyebrow {
  display: inline-block; font-family: var(--font-mono); font-size: 0.8rem;
  color: color-mix(in oklch, var(--neon), black 25%);
  letter-spacing: 0.04em; margin-bottom: 14px; font-weight: 500;
}
.section--dark .eyebrow { color: var(--neon); }
.section-head { max-width: 720px; margin-bottom: 50px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2, .grid-2col h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px;
}
.section-lead { font-size: 1.08rem; color: var(--text-on-paper-dim); }

.grid-2col {
  display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
  margin-bottom: 60px;
}
.grid-2col:last-child { margin-bottom: 0; }
@media (min-width: 860px) {
  .grid-2col { grid-template-columns: 1fr 1fr; gap: 60px; }
  .grid-2col--reverse .text-block { order: 2; }
  .grid-2col--reverse .image-frame { order: 1; }
}
.text-block h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 14px; }
.text-block p { margin-bottom: 14px; color: var(--text-on-paper-dim); }
.section--dark .text-block h3 { color: var(--ink); }

.image-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.05);
  aspect-ratio: 4/3;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.image-frame:hover img { transform: scale(1.05); }
.image-frame--tall { aspect-ratio: 3/4; }


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.98rem; font-family: var(--font-body);
  border: none; cursor: pointer; min-height: 48px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}
.btn--primary {
  background: var(--neon); color: #06140f;
  box-shadow: 0 6px 18px color-mix(in oklch, var(--neon), transparent 60%), 0 2px 4px rgba(0,0,0,0.2);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in oklch, var(--neon), transparent 50%); background: var(--neon-bright); }
.btn--outline {
  background: transparent; border: 1.5px solid currentColor;
}
.section--hero .btn--outline, .section--dark .btn--outline { color: var(--ink); }
.btn--outline:hover { background: rgba(57,255,176,0.1); border-color: var(--neon); color: var(--neon); }
.btn--lg { padding: 17px 36px; font-size: 1.02rem; }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; min-height: 40px; }
.btn--full { width: 100%; }


.counter-reset { counter-reset: card-counter; }
.card-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card-grid--three { grid-template-columns: 1fr; }
@media (min-width: 780px) { .card-grid--three { grid-template-columns: repeat(3, 1fr); } }

.card {
  counter-increment: card-counter;
  position: relative;
  background: var(--surface-dark);
  border: 1px solid rgba(57,255,176,0.14);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sharp);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.section:not(.section--dark) .card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--text-on-paper);
}
.card:hover { transform: translateY(-6px); border-color: color-mix(in oklch, var(--neon), transparent 30%); box-shadow: var(--shadow-neon); }
.card-number {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem;
  color: var(--neon); margin-bottom: 12px; letter-spacing: 0.05em;
}
.card-number::before {
  content: "0" counter(card-counter);
}
.card-icon { font-size: 1.6rem; color: var(--neon); margin-bottom: 14px; display: block; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: var(--ink-dim); }
.section:not(.section--dark) .card p { color: var(--text-on-paper-dim); }


.cta-split {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 860px) { .cta-split { grid-template-columns: 1.3fr 1fr; gap: 60px; } }
.cta-split-text h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 14px 0 18px; }
.cta-split-text p { color: var(--text-on-paper-dim); font-size: 1.05rem; }
.cta-split-action { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-note { font-size: 0.88rem; color: var(--text-on-paper-dim); max-width: 280px; }


.map-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 700px) { .map-grid { grid-template-columns: 1fr 1fr; } }
.map-region {
  background: var(--surface-dark);
  border: 1px solid rgba(57,255,176,0.14);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color .3s ease, transform .3s ease;
}
.map-region:hover { border-color: color-mix(in oklch, var(--neon), transparent 30%); transform: translateY(-4px); }
.map-region i { font-size: 1.4rem; color: var(--neon); margin-bottom: 12px; display: block; }
.map-region h3 { font-size: 1.1rem; margin-bottom: 8px; }
.map-region p { color: var(--ink-dim); font-size: 0.95rem; }


.gallery-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-sharp);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }


.closing-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.closing-inner h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); margin: 14px 0 18px; }
.closing-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 36px;
}
.link-card {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  font-weight: 600; box-shadow: var(--shadow-sharp);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.section--dark .link-card { background: var(--surface-dark); border-color: rgba(57,255,176,0.15); color: var(--ink); }
.link-card i { color: var(--neon); }
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-neon); border-color: color-mix(in oklch, var(--neon), transparent 40%); }


.timeline { display: flex; flex-direction: column; gap: 34px; }
.timeline-item { display: grid; grid-template-columns: 60px 1fr; gap: 22px; align-items: start; }
@media (min-width: 640px) { .timeline-item { grid-template-columns: 80px 1fr; } }
.timeline-marker {
  font-family: var(--font-mono); font-weight: 800; font-size: 1.3rem;
  color: var(--neon); background: rgba(57,255,176,0.08);
  border: 1px solid rgba(57,255,176,0.25);
  border-radius: var(--radius-sm);
  width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
}
@media (min-width: 640px) { .timeline-marker { width: 80px; height: 80px; font-size: 1.5rem; } }
.timeline-content { background: #fff; border-radius: var(--radius-md); padding: 26px 28px; box-shadow: var(--shadow-sharp); border: 1px solid rgba(0,0,0,0.05); }
.timeline-content h3 { font-size: 1.2rem; margin-bottom: 10px; }
.timeline-content p { color: var(--text-on-paper-dim); }


.example-block { margin-bottom: 70px; }
.example-block:last-child { margin-bottom: 0; }
.example-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.82rem;
  color: color-mix(in oklch, var(--neon), black 30%);
  background: color-mix(in oklch, var(--neon), white 85%);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; font-weight: 600;
}


.contact-grid { display: grid; grid-template-columns: 1fr; gap: 46px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 60px; } }
.contact-info h2, .contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-item i { color: var(--neon); font-size: 1.2rem; margin-top: 3px; background: color-mix(in oklch, var(--neon), white 85%); width: 42px; height: 42px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; margin-bottom: 4px; }
.contact-item p { color: var(--text-on-paper-dim); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; margin-top: 26px; box-shadow: var(--shadow-sharp); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-weight: 600; font-size: 0.92rem; }
.form-field input[type="text"], .form-field input[type="email"], .form-field textarea {
  padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0,0,0,0.12); font-family: var(--font-body);
  font-size: 1rem; background: #fff; color: var(--text-on-paper);
  transition: border-color .3s ease, box-shadow .3s ease;
  min-height: 48px;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: color-mix(in oklch, var(--neon), black 20%);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--neon), transparent 82%);
}
.form-field--checkbox { flex-direction: row; align-items: flex-start; gap: 12px; }
.form-field--checkbox input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--neon); flex-shrink: 0; }
.form-field--checkbox label { font-weight: 400; font-size: 0.9rem; color: var(--text-on-paper-dim); }
.form-field--checkbox a { color: color-mix(in oklch, var(--neon), black 30%); text-decoration: underline; }


.section--legal { padding-bottom: 60px; }
.legal-inner { max-width: 820px; }
.faq-item { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item h2 { font-size: 1.35rem; margin-bottom: 14px; }
.faq-item p { color: var(--text-on-paper-dim); }

.thanks-back { text-align: center; margin-top: 50px; }


.site-footer { background: var(--bg-dark); color: var(--ink); padding-top: 70px; }
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px 50px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 700px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col a { display: block; color: var(--ink-dim); margin-bottom: 12px; font-size: 0.92rem; transition: color .3s ease; }
.footer-col a:hover { color: var(--neon); }
.footer-brand p { color: var(--ink-dim); margin-top: 16px; font-size: 0.92rem; max-width: 320px; }
.footer-col p { color: var(--ink-dim); font-size: 0.9rem; margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.footer-col p i { color: var(--neon); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 24px; text-align: center;
  font-size: 0.85rem; color: var(--ink-dim);
}


.cookie-bell {
  position: fixed; bottom: 22px; right: 22px; z-index: 1500;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface-dark); border: 1px solid rgba(57,255,176,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--neon); font-size: 1.3rem;
  box-shadow: var(--shadow-neon), 0 4px 14px rgba(0,0,0,0.35);
  transition: transform .3s ease;
}
.cookie-bell:hover { transform: scale(1.08); }
.cookie-badge {
  position: absolute; top: -3px; right: -3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--magenta); border: 2px solid var(--bg-dark);
  display: none;
}
.cookie-badge.show { display: block; }

.cookie-panel {
  position: fixed; bottom: 0; right: 0; left: 0;
  max-width: 460px; margin: 0 auto 0 auto;
  background: var(--surface-dark); color: var(--ink);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid rgba(57,255,176,0.2); border-bottom: none;
  padding: 26px 26px 30px;
  transform: translateY(120%);
  transition: transform .45s ease;
  z-index: 1600;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.4);
}
@media (min-width: 540px) {
  .cookie-panel { right: 22px; left: auto; border-radius: var(--radius-lg); margin-bottom: 90px; }
}
.cookie-panel.open { transform: translateY(0); }
.cookie-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cookie-panel-head h3 { font-size: 1.15rem; }
.cookie-panel-head button { background: none; border: none; color: var(--ink-dim); font-size: 1.6rem; cursor: pointer; line-height: 1; min-width: 44px; min-height: 44px; }
.cookie-panel p { color: var(--ink-dim); font-size: 0.9rem; margin-bottom: 18px; }
.cookie-option { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.cookie-option strong { font-size: 0.92rem; display: block; margin-bottom: 4px; }
.cookie-option p { font-size: 0.82rem; margin-bottom: 0; }
.cookie-option input { width: 22px; height: 22px; accent-color: var(--neon); flex-shrink: 0; }
.cookie-panel-actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-panel-actions .btn { flex: 1; }


@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
}