:root {
  --bg: #070a0d;
  --bg-soft: #0d1217;
  --card: rgba(10, 14, 18, 0.66);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f4f3ef;
  --muted: rgba(244, 243, 239, 0.72);
  --soft: rgba(244, 243, 239, 0.48);
  --line: rgba(255, 255, 255, 0.16);
  --accent: #f3d33b;
  --accent-warm: #f7b928;
  --brand-green: #19a67a;
  --brand-dark: #10181d;
  --shadow: rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --header-height: 84px;
  --content-width: min(1200px, calc(100vw - 40px));
  --cursor-x: 50%;
  --cursor-y: 50%;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", sans-serif;
  background: #ebebea;
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

::selection {
  background: rgba(243, 211, 59, 0.35);
  color: #fff;
}

.site-shell {
  background: #0b0e12;
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 18px 0;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(12, 15, 19, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--content-width);
  margin: 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 96px;
  height: 96px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  opacity: .65;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-mark:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  flex: 1;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.2rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.newsletter-button:hover,
.newsletter-button:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #0a0d10;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.08) translate3d(5%, 0, 0);
  transition: opacity 1.15s var(--ease), transform 1.35s var(--ease), filter 1.15s var(--ease);
  filter: blur(10px) saturate(1.08);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) translate3d(0, 0, 0);
  filter: blur(0);
}

.hero-slide.is-leaving {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.12) translate3d(-5%, 0, 0);
  filter: blur(14px);
}

.hero-background,
.hero-background::before,
.hero-background::after {
  position: absolute;
  inset: 0;
}

.hero-background {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.15) translate3d(calc((var(--cursor-x) - 50%) * 0.12), calc((var(--cursor-y) - 50%) * 0.12), 0);
  transition: transform 0.45s ease-out;
}

.hero-background::before {
  content: "";
  background: linear-gradient(120deg, rgba(7, 10, 13, 0.76), rgba(7, 10, 13, 0.28) 42%, rgba(7, 10, 13, 0.64));
}

.hero-background::after {
  content: "";
  background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255,255,255,0.18), transparent 18%);
  mix-blend-mode: screen;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(12, 15, 19, 0.18), rgba(16, 24, 29, 0.42));
  border-left: 1px solid rgba(255,255,255,0.1);
}

.hero-pattern::before,
.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.06) 1px,
    transparent 1px,
    transparent 42px
  );
  opacity: 0.28;
}

.hero-pattern::after {
  inset: 8% 10% 14% 8%;
  border: 1px solid rgba(255,255,255,0.08);
  transform: skewY(-4deg) rotate(-2deg);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: end;
  height: 100%;
  width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 120px 0 60px;
}

.hero-copy {
  max-width: 640px;
  transform: translate3d(calc((var(--cursor-x) - 50%) * 0.08), calc((var(--cursor-y) - 50%) * 0.08), 0);
  transition: transform 0.35s ease-out;
}

.kicker {
  display: inline-block;
  margin: 0 0 20px;
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34rem;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.82;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f8f6f2;
}

.hero-subtitle {
  margin: 12px 0 0;
  color: #f7d337;
  font-size: clamp(1.2rem, 2vw, 2.1rem);
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-description {
  margin-top: 18px;
  max-width: 540px;
  color: rgba(255,255,255,0.82);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-weight: 700;
  font-size: 0.76rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  background: rgba(243, 211, 59, 0.18);
  color: #fff7cf;
  border-color: rgba(243, 211, 59, 0.7);
}

.secondary-button {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.hero-meta {
  position: absolute;
  right: min(5vw, 70px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 6;
  color: rgba(255,255,255,0.8);
}

.slide-counter {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.progress-line {
  position: relative;
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.22);
  overflow: hidden;
}

.progress-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(243,211,59,0.9), rgba(255,255,255,0.95));
  transition: width 0.2s ease;
}

.slider-controls {
  position: absolute;
  right: min(5vw, 70px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 6;
}

.slider-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15,17,19,0.36);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.9);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  transform: scale(1.06);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.32);
}

.slider-button svg {
  width: 18px;
  height: 18px;
}

.statement {
  background: #f3f0eb;
  color: #0d1217;
  padding: 100px 0 54px;
}

.statement-inner {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: end;
}

.statement-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.statement-tag {
  margin: 0;
  color: rgba(13,18,23,0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26rem;
  text-transform: uppercase;
}

.statement-headline {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(3.3rem, 6vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statement-lead {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  color: #0d1217;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.statement-note {
  margin: 0;
  color: rgba(13,18,23,0.74);
  max-width: 560px;
  font-size: 1.14rem;
  line-height: 1.75;
}

.statement-panel {
  padding: 22px 18px 18px;
  border: 1px solid rgba(13,18,23,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.38);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.05);
}

.statement-panel-title {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  color: rgba(13,18,23,0.62);
}

.statement-words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.statement-word {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: #0d1217;
  color: #f3f0eb;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.coming-soon {
  background: linear-gradient(180deg, #0e1418 0%, #0a0d10 100%);
  padding: 64px 0 90px;
}

.coming-soon-wrap {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.coming-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coming-kicker {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26rem;
  text-transform: uppercase;
}

.coming-title {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(3.3rem, 6vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-description {
  margin: 0;
  max-width: 680px;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.countdown.hidden {
  display: none;
}

.countdown-card {
  min-width: 100px;
  padding: 18px 12px 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.countdown-card strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: "Archivo", "Segoe UI", sans-serif;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #f7d337;
}

.countdown-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.coming-panel {
  padding: 28px 26px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.coming-panel-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

.coming-panel-value {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter {
  background: #f2efe9;
  color: #0c1116;
  padding: 90px 0 110px;
}

.newsletter-wrap {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.newsletter-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-kicker {
  margin: 0;
  color: rgba(12,17,22,0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26rem;
  text-transform: uppercase;
}

.newsletter-title {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-description {
  margin: 0;
  color: rgba(12,17,22,0.76);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 560px;
}

.newsletter-card {
  padding: 24px 22px;
  border-radius: var(--radius);
  background: rgba(10, 14, 18, 0.96);
  color: #f3f0eb;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.label-text {
  font-size: 0.72rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(243,240,235,0.74);
}

.newsletter-input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.42);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(243,211,59,0.8);
  box-shadow: 0 0 0 3px rgba(243,211,59,0.18);
  background: rgba(255,255,255,0.06);
}

.newsletter-input.is-error {
  border-color: rgba(255, 88, 88, 0.9);
  box-shadow: 0 0 0 3px rgba(255,88,88,0.15);
}

.newsletter-button {
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(243,211,59,0.97), rgba(247,185,40,0.9));
  color: #0b0d10;
  border-color: transparent;
  font-weight: 800;
}

.newsletter-button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-state {
  min-height: 24px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}

.form-state.is-success {
  color: #a9f5b3;
}

.form-state.is-error {
  color: #ff9c9c;
}

.social-section {
  background: #0b1014;
  padding: 0 0 68px;
}

.social-wrap {
  width: var(--content-width);
  margin: 0 auto;
}

.social-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.site-footer {
  padding: 26px 0 42px;
  background: #090d10;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-wrap {
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand strong {
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.footer-brand span {
  color: rgba(255,255,255,0.7);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 20px;
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .statement-inner,
  .newsletter-wrap,
  .coming-soon-wrap {
    grid-template-columns: 1fr;
  }

  .newsletter-copy,
  .coming-copy {
    max-width: 100%;
  }

  .hero-copy {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 14px 0;
  }

  .navbar {
    gap: 12px;
  }

  .brand-mark {
    width: 62px;
    height: 28px;
    font-size: 0.66rem;
    letter-spacing: 0.2rem;
  }

  .nav-cta {
    min-height: 38px;
    font-size: 0.62rem;
    letter-spacing: 0.12rem;
    padding: 0 0.9rem;
  }

  .hero {
    min-height: 620px;
    height: 100svh;
  }

  .hero-content {
    width: min(100vw - 28px, 1280px);
    padding-top: 110px;
    padding-bottom: 36px;
  }

  .hero-copy {
    max-width: 78vw;
  }

  .hero-title {
    font-size: clamp(3rem, 20vw, 6rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-meta {
    right: 18px;
    bottom: 18px;
  }

  .slider-controls {
    right: 18px;
    top: auto;
    bottom: 18px;
    transform: none;
    flex-direction: row;
  }

  .progress-line {
    width: 88px;
  }

  .statement,
  .coming-soon,
  .newsletter {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .countdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(94px, 1fr));
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}
