:root {
  --black: #0b0b0b;
  --ink: #161616;
  --muted: #5a5f66;
  --line: #d7d7d7;
  --paper: #ffffff;
  --soft: #f3f3f3;
  --red: #e30613;
  --red-dark: #a6000b;
  --blue: #005a8d;
  --blue-dark: #003b5c;
  --gold: #c4ad7c;
  --max: 1180px;
  --font: Arial, Helvetica, "Univers", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--red-dark);
}

img,
video {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--black);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--black);
  border-left: 8px solid var(--red);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--red);
}

.hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--black) url("hero-poster-mobile-portrait.webp") center / cover no-repeat;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.06) 46%);
}

.hero-content,
.hero-facts {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(var(--max), calc(100% - 48px));
  min-width: 0;
  margin: 0 auto;
  padding: 120px 0 34px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
  border-left: 10px solid var(--red);
  padding-left: 12px;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  font-weight: 900;
}

.hero h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
}

h2 {
  font-size: clamp(1.8rem, 3.618:29 25.06.2026vw, 3.78rem);
  font-weight: 900;
}

h3 {
  font-size: 1.22rem;
  font-weight: 900;
}

.lead,
.section-lead {
  max-width: 760px;
  color: inherit;
  font-size: 1.2rem;
}

.mint-explain {
  margin-bottom: 0;
}

.lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.split-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.button.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: #fff;
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button.secondary {
  color: #fff;
  background: transparent;
}

.button.compact {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.95rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts article {
  min-height: 104px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts article:last-child {
  border-right: 0;
}

.hero-facts strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: start;
}

.highlight-box,
.requirements article,
.feature-grid article,
.timeline div,
.logo-card,
.video-grid article,
.faq details,
.document-list {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.highlight-box {
  padding: 28px;
  border-top: 8px solid var(--blue);
}

.highlight-box.neutral {
  border-top-color: var(--gold);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.check-list li:first-child {
  border-top: 0;
}

.feature-grid,
.requirements,
.video-grid,
.logo-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.feature-grid article,
.requirements article {
  min-height: 210px;
  padding: 26px;
}

.feature-grid article {
  border-top: 7px solid var(--red);
}

.requirements {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0;
}

.requirements article {
  border-top: 7px solid var(--blue);
}

.split-heading {
  justify-content: space-between;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 4px solid var(--black);
}

.timeline div {
  border-top: 0;
  border-radius: 0;
  padding: 26px;
}

.timeline span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--black);
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.document-list {
  margin-top: 22px;
  padding: 22px 26px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.media-section {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--black);
}

.media-section .section-kicker {
  color: #ff6b70;
}

.video-grid {
  grid-template-columns: minmax(0, 860px);
  margin-top: 34px;
}

.video-grid article {
  overflow: hidden;
  color: var(--ink);
}

.video-grid h3 {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.legal-note {
  padding: 20px 0 0 18px;
  border-left: 8px solid var(--red);
  font-weight: 700;
}

.partner-title {
  margin: 56px 0 22px;
}

.logo-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.logo-card {
  display: grid;
  grid-template-rows: 112px auto;
  align-items: center;
  gap: 12px;
  min-height: 180px;
  padding: 18px;
  color: var(--black);
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.logo-card:hover,
.logo-card:focus-visible {
  border-color: var(--red);
  transform: translateY(-2px);
}

.logo-card img {
  width: 100%;
  max-height: 98px;
  object-fit: contain;
}

.logo-card span {
  align-self: start;
  font-size: 0.9rem;
  font-weight: 800;
}

.faq details {
  margin-top: 14px;
  padding: 20px 24px;
}

.site-footer {
  padding: 76px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  color: #fff;
  background: var(--black);
}

.site-footer a {
  color: #fff;
}

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

.footer-grid section {
  padding-top: 18px;
  border-top: 6px solid var(--red);
}

.privacy {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.privacy-text {
  display: grid;
  gap: 12px;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.82);
}

.privacy-text h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.05rem;
}

.privacy-text p {
  margin: 0;
}

.privacy-text ul {
  margin: 0;
  padding-left: 1.2rem;
}

.copyright {
  margin: 46px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header,
  .two-column,
  .footer-grid {
    display: grid;
  }

  .main-nav {
    justify-content: start;
  }

  .two-column,
  .feature-grid,
  .requirements,
  .timeline,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    gap: 14px;
    border-top: 0;
  }

  .timeline div {
    border-radius: 6px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .band,
  .media-section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    width: 100%;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero-content,
  .hero-facts {
    width: calc(100% - 36px);
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(1.35rem, 6.1vw, 2.35rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-facts article:last-child {
    border-bottom: 0;
  }

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

  .logo-card {
    grid-template-rows: 96px auto;
    min-height: 164px;
    padding: 14px;
  }
}
