:root {
  --bg: #050505;
  --panel: #121212;
  --panel-soft: #1a1a1a;
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-dark: #61656f;
  --line: rgba(255, 255, 255, 0.12);
  --mint: #5ef0cd;
  --mint-soft: rgba(94, 240, 205, 0.12);
  --light: #f3f6f5;
  --white: #ffffff;
  --black: #000000;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --wrap: 980px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 200px;
  height: auto;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.nav a:hover,
.nav a:focus-visible,
.contact-alt a,
.contact-privacy a {
  color: var(--mint);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.btn-primary {
  background: var(--mint);
  color: var(--black);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: transparent;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 64px;
  background:
    radial-gradient(circle at 85% 20%, rgba(94, 240, 205, 0.22), transparent 26%),
    radial-gradient(circle at 20% 0%, rgba(94, 240, 205, 0.1), transparent 34%),
    linear-gradient(180deg, #060606 0%, #0b0b0b 100%);
}

.hero-grid,
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-label,
.card-kicker,
.stat-label {
  display: inline-block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
}

.eyebrow,
.section-label,
.stat-label {
  color: var(--mint);
}

.hero h1,
.section h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 12ch;
  text-wrap: balance;
  font-weight: 400;
}

.section-heading {
  display: grid;
  gap: 18px;
}

.section h2 {
  font-size: clamp(28px, 4.8vw, 48px);
  max-width: 14ch;
}

.lede,
.intro-copy p,
.section-heading p,
.faq-body,
.contact-intro p,
.value-card p,
.feature-card p,
.channel-card p,
.step-card p {
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 16px);
}

.section-heading p {
  margin: 0;
  max-width: 620px;
}

.hero-copy .lede {
  max-width: 500px;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-media {
  position: relative;
}

.hero-video {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: var(--shadow);
}

.hero-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.hero-stat {
  position: absolute;
  right: -14px;
  bottom: 22px;
  width: min(240px, 72%);
  padding: 14px 16px;
  border: 1px solid rgba(94, 240, 205, 0.28);
  border-radius: 10px;
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.hero-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.1;
}

.hero-stat p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: var(--bg);
  color: var(--text);
}

.section-light,
.section-contact {
  background: var(--light);
  color: #121417;
}

.section-light .section-label,
.section-contact .section-label {
  color: #0f9e86;
}

.section-light .section-heading p,
.section-contact .contact-intro p,
.section-light .value-card p,
.section-light .channel-card p,
.section-light .step-card p {
  color: var(--muted-dark);
}

.intro-copy {
  max-width: 500px;
}

.intro-copy p {
  margin: 0 0 14px;
}

.accent-copy {
  color: #121417;
  font-weight: 600;
}

.cards-grid,
.feature-grid,
.channels-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.cards-grid,
.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.channels-grid,
.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card,
.feature-card,
.channel-card,
.step-card,
.gallery-card,
.contact-panel,
.faq-list details {
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.value-card,
.channel-card,
.step-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
}

.card-kicker {
  color: #0f9e86;
  margin-bottom: 10px;
}

.value-card h3,
.feature-card h3,
.channel-card h3,
.step-card h3 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-wrap: balance;
  font-weight: 400;
}

.visual-proof .section-heading h2,
.section-light .section-heading h2,
.section-contact .contact-intro h2 {
  max-width: 16ch;
}

.section-heading h2,
.contact-intro h2 {
  margin-bottom: 10px;
}

.section-title-wide {
  max-width: 24ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.gallery-card {
  background: #0f0f0f;
  border-color: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 13px;
}

.step-card {
  position: relative;
  padding-top: 58px;
}

.step-number {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #0f9e86;
}

.feature-card {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #111111;
}

.feature-card-highlight {
  background: linear-gradient(180deg, rgba(94, 240, 205, 0.14), rgba(17, 17, 17, 1));
  border-color: rgba(94, 240, 205, 0.4);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-list details {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-wrap: balance;
  font-weight: 400;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--mint);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 22px 18px;
  max-width: 760px;
}

.section-contact {
  padding-bottom: 86px;
}

.contact-intro {
  max-width: 620px;
}

.contact-panel {
  margin-top: 28px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(8, 16, 17, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field span {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #4c5360;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #d3d9dc;
  border-radius: 8px;
  padding: 13px 15px;
  font: inherit;
  color: #121417;
  background: #ffffff;
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(94, 240, 205, 0.3);
  border-color: #7fdcc9;
}

.contact-actions {
  margin-top: 18px;
}

.btn-submit {
  min-width: 210px;
}

.contact-status,
.contact-alt,
.contact-privacy {
  margin: 12px 0 0;
  color: #5c6370;
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid rgba(94, 240, 205, 0.35);
  background: #000000;
  color: rgba(255, 255, 255, 0.96);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 2fr) 32px;
  gap: 34px;
  padding: 56px 0 44px;
}

.footer-brand img {
  width: 320px;
  height: auto;
  background: transparent;
}

.footer-tagline,
.footer-description {
  max-width: 420px;
  margin: 14px 0 0;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.footer-partners img {
  height: 24px;
  width: auto;
  opacity: 0.94;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h3,
.footer-subheading {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-subheading {
  margin-top: 10px;
}

.footer-column a {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.footer-column a:hover,
.footer-bottom a:hover,
.footer-social a:hover {
  color: var(--mint);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(94, 240, 205, 0.35);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.92);
}

.contact-status[data-state="success"] {
  color: #0f8a5e;
}

.contact-status[data-state="error"] {
  color: #c43b34;
}

.sticky-mobile {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  z-index: 45;
}

.sticky-mobile .btn {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .cards-grid,
  .feature-grid,
  .channels-grid,
  .steps-grid,
  .gallery-grid,
  .hero-grid,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section h2 {
    max-width: none;
  }

  .hero-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-stat {
    right: 16px;
  }
}

@media (max-width: 820px) {
  .nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 176px;
  }

  .section,
  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero h1,
  .section h2 {
    font-size: clamp(30px, 11vw, 46px);
  }

  .contact-panel {
    padding: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-social {
    flex-direction: row;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    gap: 18px;
  }

  .sticky-mobile {
    display: block;
    transform: translateY(120%);
    transition: transform 0.25s ease;
  }

  .sticky-mobile.visible {
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 24px));
  }

  .hero-video {
    border-radius: 14px;
  }

  .hero-stat {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .value-card,
  .feature-card,
  .channel-card,
  .step-card,
  .contact-panel,
  .faq-list summary,
  .faq-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand img {
    width: 240px;
  }

  .eu-flag-badge {
    top: auto;
    bottom: 88px;
    transform: none;
  }

  .eu-flag-badge__flag {
    width: 40px;
    height: 60px;
  }
}
.eu-flag-badge {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 48;
  display: block;
  transform: translateY(-50%);
}

.eu-flag-badge__flag {
  display: block;
  width: 51px;
  height: 77px;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.eu-flag-badge:hover .eu-flag-badge__flag,
.eu-flag-badge:focus-visible .eu-flag-badge__flag {
  filter: brightness(1.04);
}

.eu-flag-badge:focus-visible {
  outline: none;
}
