:root {
  --c-primary: #0A84FF;
  --c-primary-light: #5EB4FF;
  --c-primary-dark: #0063c9;
  --c-bg-1: #05070d;
  --c-bg-2: #0a1020;
  --c-bg-3: #0e1a38;
  --c-white: #ffffff;
  --c-text: #eaf2ff;
  --c-text-dim: rgba(234, 242, 255, 0.72);
  --c-text-mute: rgba(234, 242, 255, 0.55);
  --c-border: rgba(255, 255, 255, 0.14);
  --c-border-strong: rgba(255, 255, 255, 0.22);

  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;
  --glass-border: 1px solid rgba(255, 255, 255, 0.14);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --shadow-lg: 0 20px 60px rgba(0, 20, 60, 0.45);
  --shadow-glow: 0 0 40px rgba(10, 132, 255, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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

/* ==== BACKGROUND ==== */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 10%, #102a60 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, #0a1e4a 0%, transparent 55%),
    linear-gradient(180deg, #05070d 0%, #060b1c 50%, #05070d 100%);
}

.bg__gradient {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(10, 132, 255, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(94, 180, 255, 0.22) 0%, transparent 40%);
  filter: blur(40px);
  animation: gradientShift 22s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-4%, 3%, 0) scale(1.1); }
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.bg__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.bg__shape--1 { width: 480px; height: 480px; background: radial-gradient(circle, #0a84ff, transparent 70%); top: -120px; left: -120px; }
.bg__shape--2 { width: 520px; height: 520px; background: radial-gradient(circle, #5eb4ff, transparent 70%); bottom: -160px; right: -120px; }
.bg__shape--3 { width: 360px; height: 360px; background: radial-gradient(circle, #1a4fbf, transparent 70%); top: 40%; right: 20%; }
.bg__shape--4 { width: 280px; height: 280px; background: radial-gradient(circle, #3b82f6, transparent 70%); bottom: 15%; left: 20%; opacity: 0.4; }

.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.bg__rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg__rays span {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(180deg, transparent 0%, rgba(94, 180, 255, 0.35) 45%, rgba(94, 180, 255, 0.5) 50%, rgba(94, 180, 255, 0.35) 55%, transparent 100%);
  filter: blur(1px);
  opacity: 0;
  transform-origin: top center;
  animation: rayFall 9s linear infinite;
}

.bg__rays span:nth-child(1) { left: 18%; animation-delay: 0s; animation-duration: 11s; }
.bg__rays span:nth-child(2) { left: 42%; animation-delay: 2.5s; animation-duration: 14s; }
.bg__rays span:nth-child(3) { left: 68%; animation-delay: 4s; animation-duration: 10s; }
.bg__rays span:nth-child(4) { left: 86%; animation-delay: 6s; animation-duration: 13s; }

@keyframes rayFall {
  0% { transform: translateY(-100%) rotate(8deg); opacity: 0; }
  15% { opacity: 0.9; }
  85% { opacity: 0.9; }
  100% { transform: translateY(20%) rotate(8deg); opacity: 0; }
}

.bg__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 255, 0.9), rgba(94, 180, 255, 0.1));
  box-shadow: 0 0 8px rgba(94, 180, 255, 0.8);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translate3d(0, 0, 0) scale(0.6); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.9; }
  100% { transform: translate3d(var(--dx, 0), -110vh, 0) scale(1); opacity: 0; }
}

.bg__shape--1, .bg__shape--2, .bg__shape--3, .bg__shape--4 {
  animation: shapePulse 8s ease-in-out infinite alternate;
}
.bg__shape--2 { animation-duration: 10s; animation-delay: -2s; }
.bg__shape--3 { animation-duration: 12s; animation-delay: -4s; }
.bg__shape--4 { animation-duration: 9s; animation-delay: -1s; }

@keyframes shapePulse {
  0% { filter: blur(80px); opacity: 0.45; }
  100% { filter: blur(95px); opacity: 0.7; }
}

/* ==== GLASS UTILITY ==== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 10, 40, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ==== PRELOADER ==== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.preloader__logo {
  display: flex;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 7vw, 56px);
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #ffffff 0%, #5EB4FF 50%, #0A84FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.preloader__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
}

.preloader__bar {
  width: min(260px, 60vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0A84FF, #5EB4FF);
  border-radius: 2px;
}

body.is-loaded .preloader { pointer-events: none; }

/* ==== HEADER ==== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 56px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo__mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  filter: drop-shadow(0 8px 24px rgba(10, 132, 255, 0.5)) drop-shadow(0 2px 6px rgba(10, 132, 255, 0.4));
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.logo__mark svg { width: 100%; height: 100%; }

.logo:hover .logo__mark {
  transform: translateY(-2px) rotate(-2deg);
  filter: drop-shadow(0 12px 32px rgba(94, 180, 255, 0.7)) drop-shadow(0 2px 6px rgba(10, 132, 255, 0.5));
}

.logo__wordmark {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, #ffffff 0%, #dbeaff 45%, #5EB4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 20px rgba(94, 180, 255, 0.2);
}

.logo__tagline {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: rgba(188, 218, 255, 0.65);
  text-transform: uppercase;
  padding-left: 1px;
}

.lang {
  display: flex;
  gap: 4px;
  padding: 5px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
}

.lang__btn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-text-dim);
  border-radius: var(--radius-pill);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.lang__btn:hover { color: var(--c-white); }

.lang__btn.is-active {
  color: var(--c-white);
  background: linear-gradient(135deg, rgba(10,132,255,0.9), rgba(94,180,255,0.85));
  box-shadow: 0 6px 20px rgba(10, 132, 255, 0.35);
}

/* ==== HERO ==== */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px clamp(20px, 5vw, 60px) 120px;
  position: relative;
}

.hero__inner {
  max-width: 880px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  border-radius: var(--radius-pill);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 12vw, 160px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  background: linear-gradient(180deg, #ffffff 0%, #bcdaff 50%, #5EB4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 40px rgba(10, 132, 255, 0.35));
}

.hero__title-line { display: inline-block; }

.hero__subtitle {
  margin: 0;
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0.01em;
}

.hero__desc {
  margin: 0;
  max-width: 620px;
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--c-text-dim);
  line-height: 1.7;
}

.hero__cta {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==== BUTTONS ==== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0A84FF 0%, #2f9dff 50%, #5EB4FF 100%);
  background-size: 200% 200%;
  box-shadow: 0 14px 40px rgba(10, 132, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35), transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s var(--ease);
}

.btn--primary:hover::before { transform: translateX(100%); }

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(10, 132, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  background-position: 100% 0;
}

.btn--primary:active { transform: translateY(0); }

.btn__loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.btn.is-loading .btn__text { opacity: 0; }
.btn.is-loading .btn__loader { opacity: 1; }
.btn.is-loading { pointer-events: none; }

/* ==== COUNTDOWN ==== */
.countdown {
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.countdown__title {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  position: relative;
  padding: 0 28px;
}

.countdown__title::before,
.countdown__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 180, 255, 0.6));
}

.countdown__title::before { right: 100%; transform: scaleX(-1); }
.countdown__title::after { left: 100%; }

.countdown__grid {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
}

.countdown__item {
  position: relative;
  min-width: 96px;
  padding: 22px 14px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: var(--radius-md);
  transition: transform 0.5s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
}

.countdown__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 180, 255, 0.9), transparent);
  opacity: 0.7;
}

.countdown__item:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-hover);
}

.countdown__value {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #bcdaff 60%, #5EB4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.countdown__value.is-flip {
  animation: flipDown 0.6s var(--ease);
}

@keyframes flipDown {
  0% { transform: translateY(-8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

.countdown__label {
  font-size: 10px;
  color: var(--c-text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown__sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding-top: 38px;
  flex: 0 0 auto;
}

.countdown__sep i {
  flex: 0 0 auto;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(94, 180, 255, 0.75);
  box-shadow: 0 0 10px rgba(94, 180, 255, 0.6);
  animation: blink 1.5s ease-in-out infinite;
}

.countdown__sep i:nth-child(2) { animation-delay: 0.25s; }

@keyframes blink {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}

/* ==== SOCIALS ==== */
.socials {
  position: fixed;
  right: clamp(16px, 2.5vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-pill);
  background: rgba(10, 18, 40, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 10, 40, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.socials__item {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #d4e4ff;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.socials__item svg {
  width: 22px;
  height: 22px;
  display: block;
  position: relative;
  z-index: 1;
}

.socials__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A84FF, #5EB4FF);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.socials__item:hover {
  transform: translateY(-2px) scale(1.08);
  color: #fff;
  box-shadow: 0 12px 32px rgba(10, 132, 255, 0.55);
}

.socials__item:hover::after { opacity: 1; }

/* ==== FOOTER ==== */
.footer {
  padding: 22px 24px 28px;
  text-align: center;
  font-size: 12px;
  color: var(--c-text-mute);
  letter-spacing: 0.06em;
}

/* ==== MODAL ==== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 18, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal__window {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 44px 36px 36px;
  border-radius: var(--radius-xl);
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  background: linear-gradient(180deg, rgba(20, 36, 74, 0.9), rgba(10, 18, 40, 0.92));
  border: 1px solid rgba(94, 180, 255, 0.2);
  box-shadow: 0 40px 100px rgba(0, 10, 40, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal.is-open .modal__window {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-dim);
  background: rgba(255, 255, 255, 0.06);
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.modal__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}

.modal__close svg { width: 18px; height: 18px; }

.modal__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.modal__subtitle {
  margin: 0 0 28px;
  text-align: center;
  color: var(--c-text-dim);
  font-size: 14px;
}

/* ==== FORM ==== */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-left: 2px;
}

.form__input {
  width: 100%;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form__input::placeholder { color: rgba(255, 255, 255, 0.35); }

.form__input:focus {
  border-color: rgba(94, 180, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.15);
}

.form__field.has-error .form__input {
  border-color: rgba(255, 80, 80, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 80, 80, 0.12);
}

.form__error {
  font-size: 12px;
  color: #ff7070;
  min-height: 14px;
  padding-left: 4px;
}

.form__submit {
  margin-top: 6px;
  width: 100%;
  padding: 17px 24px;
}

.form__policy {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  color: var(--c-text-mute);
}

/* ==== SUCCESS ==== */
.modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 0 8px;
  text-align: center;
}

.modal__success.is-visible { display: flex; }
.modal__content.is-hidden { display: none; }

.success-check {
  width: 80px;
  height: 80px;
  color: #22c55e;
}

.modal__success h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.modal__success p {
  margin: 0;
  color: var(--c-text-dim);
  font-size: 15px;
  max-width: 320px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .header { padding: 16px 18px; }
  .logo { gap: 10px; }
  .logo__text { font-size: 18px; letter-spacing: 0.14em; }
  .logo__tagline { font-size: 7px; letter-spacing: 0.22em; }
  .logo__mark { width: 40px; height: 40px; border-radius: 12px; }
  .lang__btn { padding: 7px 11px; font-size: 12px; }

  .hero { padding: 120px 18px 140px; }
  .hero__inner { gap: 20px; }

  .countdown { gap: 14px; }
  .countdown__title { font-size: 11px; letter-spacing: 0.14em; }
  .countdown__grid { gap: 6px; }
  .countdown__item { min-width: 0; flex: 1; padding: 16px 6px 12px; }
  .countdown__value { font-size: clamp(22px, 8vw, 32px); }
  .countdown__label { font-size: 9px; letter-spacing: 0.08em; }
  .countdown__sep { gap: 5px; padding-top: 24px; }
  .countdown__sep i { width: 4px; height: 4px; }

  .socials {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 20px;
    transform: translateX(-50%);
    flex-direction: row;
    padding: 8px;
  }

  .socials__item { width: 42px; height: 42px; }
  .socials__item svg { width: 20px; height: 20px; }

  .footer { padding-bottom: 90px; }

  .modal__window { padding: 40px 22px 28px; }
  .modal__title { font-size: 22px; }
}

@media (max-width: 420px) {
  .btn { padding: 14px 24px; font-size: 14px; }
  .hero__badge { font-size: 11px; padding: 8px 16px; }
  .socials { gap: 8px; padding: 7px; }
  .socials__item { width: 40px; height: 40px; }
  .countdown__sep { gap: 4px; padding-top: 20px; }
  .countdown__item { padding: 14px 4px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
