/* ============================================================
   NEKOED — Design System & Landing Page Styles
   Based on the Arcade design reference (design.md)
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---- Design Tokens ---- */
:root {
  /* Colors */
  --color-voltage-blue: #2142e7;
  --color-deep-voltage: #182fa5;
  --color-midnight-ink: #111827;
  --color-slate-600: #4b5563;
  --color-slate-700: #374151;
  --color-slate-500: #70747d;
  --color-graphite: #414652;
  --color-paper-white: #ffffff;
  --color-fog-50: #f9fafb;
  --color-fog-100: #f3f4f6;
  --color-mist-200: #e5e7eb;
  --color-smoke-300: #d9dadc;

  /* Typography — Families */
  --font-inter: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-unbounded: 'Unbounded', var(--font-inter);

  /* Typography — Scale */
  --text-caption: 12px;
  --leading-caption: 1.5;
  --text-body-sm: 14px;
  --leading-body-sm: 1.5;
  --text-body: 16px;
  --leading-body: 1.56;
  --text-subheading: 18px;
  --leading-subheading: 1.5;
  --tracking-subheading: -0.126px;
  --text-heading-sm: 20px;
  --leading-heading-sm: 1.4;
  --tracking-heading-sm: -0.14px;
  --text-heading: 24px;
  --leading-heading: 1.33;
  --tracking-heading: -0.24px;
  --text-heading-lg: 30px;
  --leading-heading-lg: 1.29;
  --tracking-heading-lg: -0.45px;
  --text-display: 48px;
  --leading-display: 1.14;
  --tracking-display: -0.96px;
  --text-display-lg: 64px;
  --leading-display-lg: 1.06;
  --tracking-display-lg: -1.6px;

  /* Typography — Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-56: 56px;
  --spacing-64: 64px;
  --spacing-96: 96px;

  /* Layout */
  --page-max-width: 1200px;
  --section-gap: 64px;
  --card-padding: 32px;
  --element-gap: 8px;

  /* Border Radius */
  --radius-tabs: 12px;
  --radius-cards: 16px;
  --radius-pills: 9999px;
  --radius-inputs: 16px;
  --radius-buttons: 12px;
  --radius-hero-frame: 24px;

  /* Shadows */
  --shadow-cta: rgba(17,24,39,0.04) 0px 2px 2px -1px, rgba(17,24,39,0.04) 0px 4px 4px -2px, rgba(17,24,39,0.04) 0px 8px 8px 0px, rgba(17,24,39,0.04) 0px 16px 16px 0px, rgba(17,24,39,0.04) 0px 32px 32px 0px, rgb(24,47,165) 0px 0px 0px 1px;
  --shadow-ghost: rgba(17,24,39,0.04) 0px 2px 2px -1px, rgba(17,24,39,0.04) 0px 4px 4px -2px, rgba(17,24,39,0.04) 0px 8px 8px 0px, rgba(17,24,39,0.04) 0px 16px 16px 0px, rgba(17,24,39,0.04) 0px 32px 32px 0px, rgba(17,24,39,0.16) 0px 0px 0px 1px;
  --shadow-float: rgba(17,24,39,0.2) 0px 8px 8px 0px, rgba(17,24,39,0.1) 0px 4px 4px 0px, rgba(17,24,39,0.1) 0px 2px 2px 0px, rgba(17,24,39,0.1) 0px 0px 0px 1px, inset rgba(255,255,255,0.06) 0px 1px 0px 0px;
  --shadow-card: rgba(17,24,39,0.12) 0px 0px 0px 1px, rgba(17,24,39,0.03) 0px 2px 2px -2px, rgba(17,24,39,0.03) 0px 4px 4px 0px, rgba(17,24,39,0.03) 0px 8px 8px 0px, rgba(17,24,39,0.03) 0px 16px 16px 0px;
  --shadow-subtle: rgba(17,24,39,0.1) 0px 0px 0px 1px, rgba(17,24,39,0.04) 0px 1px 1px -0.5px, rgba(17,24,39,0.04) 0px 3px 3px -1.5px, rgba(17,24,39,0.04) 0px 6px 6px -3px, rgba(17,24,39,0.04) 0px 12px 12px -6px, rgba(17,24,39,0.04) 0px 24px 24px -12px;

  /* Surfaces */
  --surface-canvas: #f9fafb;
  --surface-card: #ffffff;
  --surface-nested: #f3f4f6;
  --surface-ink: #111827;
}

/* ---- Base ---- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-inter);
  font-weight: var(--fw-regular);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-slate-600);
  background-color: var(--surface-canvas);
  font-feature-settings: 'cv11', 'ss01';
  overflow-x: hidden;
}

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

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

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

ul, ol { list-style: none; }

/* ---- Typography Utilities ---- */
.text-display-lg {
  font-size: var(--text-display-lg);
  line-height: var(--leading-display-lg);
  letter-spacing: var(--tracking-display-lg);
  font-weight: var(--fw-bold);
  color: var(--color-midnight-ink);
}

.text-display {
  font-size: var(--text-display);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  font-weight: var(--fw-bold);
  color: var(--color-midnight-ink);
}

.text-heading-lg {
  font-size: var(--text-heading-lg);
  line-height: var(--leading-heading-lg);
  letter-spacing: var(--tracking-heading-lg);
  font-weight: var(--fw-bold);
  color: var(--color-midnight-ink);
}

.text-heading {
  font-size: var(--text-heading);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  font-weight: var(--fw-bold);
  color: var(--color-midnight-ink);
}

.text-heading-sm {
  font-size: var(--text-heading-sm);
  line-height: var(--leading-heading-sm);
  letter-spacing: var(--tracking-heading-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-midnight-ink);
}

.text-subheading {
  font-size: var(--text-subheading);
  line-height: var(--leading-subheading);
  letter-spacing: var(--tracking-subheading);
}

.text-body { font-size: var(--text-body); line-height: var(--leading-body); }
.text-body-sm { font-size: var(--text-body-sm); line-height: var(--leading-body-sm); }
.text-caption { font-size: var(--text-caption); line-height: var(--leading-caption); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-24);
}

.section {
  padding: var(--spacing-96) 0;
}

.section-alt {
  background: var(--surface-card);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
  font-size: var(--text-body);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-buttons);
  padding: 10px 20px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-voltage-blue);
  color: var(--color-paper-white);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: #1a37c9;
  box-shadow: var(--shadow-cta), rgba(33,66,231,0.2) 0px 8px 24px 0px;
}

.btn-ghost {
  background: var(--color-paper-white);
  color: var(--color-midnight-ink);
  box-shadow: var(--shadow-ghost);
}

.btn-ghost:hover {
  background: var(--color-fog-50);
}

.btn-lg {
  padding: 14px 28px;
  font-size: var(--text-subheading);
  border-radius: var(--radius-cards);
}

.btn-sm {
  padding: 8px 16px;
  font-size: var(--text-body-sm);
}

/* ---- Cards ---- */
.card {
  background: var(--surface-card);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

/* ---- Pill Badge ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-8);
  background: var(--color-paper-white);
  border: 1px solid var(--color-mist-200);
  border-radius: var(--radius-pills);
  padding: 8px 16px;
  font-size: var(--text-body-sm);
  font-weight: var(--fw-medium);
  color: var(--color-midnight-ink);
}

.pill .pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-voltage-blue);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-mist-200);
  height: 64px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-unbounded);
  font-weight: var(--fw-bold);
  font-size: var(--text-heading-sm);
  color: var(--color-midnight-ink);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-32);
}

.nav-links a {
  font-size: var(--text-body);
  font-weight: var(--fw-medium);
  color: var(--color-slate-600);
  transition: color 0.15s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--color-midnight-ink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-voltage-blue);
  border-radius: 1px;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--color-fog-100);
  border-radius: var(--radius-pills);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 6px 12px;
  font-size: var(--text-caption);
  font-weight: var(--fw-medium);
  color: var(--color-slate-500);
  border-radius: var(--radius-pills);
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--color-paper-white);
  color: var(--color-midnight-ink);
  font-weight: var(--fw-semibold);
  box-shadow: rgba(17,24,39,0.08) 0px 1px 3px;
}

.lang-btn:hover:not(.active) {
  color: var(--color-slate-700);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-midnight-ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  padding: var(--spacing-32) var(--spacing-24);
  flex-direction: column;
  gap: var(--spacing-24);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  font-size: var(--text-heading);
  font-weight: var(--fw-semibold);
  color: var(--color-midnight-ink);
  padding: var(--spacing-12) 0;
  border-bottom: 1px solid var(--color-mist-200);
}

.mobile-menu .lang-switcher {
  margin-top: var(--spacing-16);
  align-self: flex-start;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-96) 0 120px;
  background: radial-gradient(ellipse 120% 100% at 30% 20%, rgba(255,255,255,0.95) 0%, rgba(233,237,255,0.7) 35%, rgba(33,66,231,0.15) 65%, rgba(33,66,231,0.35) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(33,66,231,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: hero-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-5%, 3%) scale(1.1); opacity: 1; }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-64);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-24);
}

.hero-badge {
  align-self: flex-start;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: var(--fw-bold);
  color: var(--color-midnight-ink);
}

.hero h1 .accent {
  color: var(--color-voltage-blue);
}

.hero-subtitle {
  font-size: var(--text-subheading);
  line-height: var(--leading-subheading);
  color: var(--color-slate-600);
  max-width: 480px;
}

/* Domain Search Input */
.domain-search {
  display: flex;
  align-items: center;
  background: var(--color-paper-white);
  border: 1px solid var(--color-mist-200);
  border-radius: var(--radius-inputs);
  padding: 6px 6px 6px 20px;
  max-width: 520px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.domain-search:focus-within {
  border-color: var(--color-voltage-blue);
  box-shadow: var(--shadow-card), 0 0 0 3px rgba(33,66,231,0.1);
}

.domain-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-inter);
  font-size: var(--text-body);
  color: var(--color-midnight-ink);
  background: transparent;
  font-feature-settings: 'cv11', 'ss01';
}

.domain-search input::placeholder {
  color: var(--color-slate-500);
}

.domain-search .search-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-voltage-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.1s ease;
}

.domain-search .search-btn:hover {
  background: #1a37c9;
}

.domain-search .search-btn:active {
  transform: scale(0.93);
}

.domain-search .search-btn svg {
  width: 20px;
  height: 20px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
  font-size: var(--text-body-sm);
  color: var(--color-slate-500);
}

.hero-trust-icons {
  display: flex;
  gap: -4px;
}

.hero-trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-fog-100);
  border: 2px solid var(--color-paper-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
}

.hero-trust-icon:first-child {
  margin-left: 0;
}

/* Hero Sticker */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-sticker {
  width: 420px;
  height: 420px;
  position: relative;
  z-index: 1;
}

.hero-visual::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,66,231,0.1) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Float badges */
.float-badge {
  position: absolute;
  background: var(--color-paper-white);
  border-radius: var(--radius-cards);
  padding: 12px 16px;
  box-shadow: var(--shadow-float);
  font-size: var(--text-body-sm);
  font-weight: var(--fw-medium);
  color: var(--color-midnight-ink);
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  z-index: 2;
  animation: float-badge 3s ease-in-out infinite;
}

.float-badge-1 {
  top: 10%;
  right: -10px;
  animation-delay: 0s;
}

.float-badge-2 {
  bottom: 15%;
  left: -10px;
  animation-delay: 1.5s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-badge .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.badge-icon-blue {
  background: rgba(33,66,231,0.1);
  color: var(--color-voltage-blue);
}

.badge-icon-green {
  background: rgba(16,185,129,0.1);
  color: #10b981;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--spacing-64);
}

.section-header h2 {
  margin-bottom: var(--spacing-16);
}

.section-header p {
  font-size: var(--text-subheading);
  color: var(--color-slate-600);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-8);
  font-size: var(--text-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-voltage-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-16);
}

.section-label .label-line {
  width: 24px;
  height: 2px;
  background: var(--color-voltage-blue);
  border-radius: 1px;
}

/* ============================================================
   WHY .TG SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-24);
}

.why-card {
  text-align: center;
  padding: var(--spacing-40) var(--card-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-16);
}

.why-card .sticker-container {
  width: 120px;
  height: 120px;
  margin-bottom: var(--spacing-8);
}

.why-card h3 {
  font-size: var(--text-heading);
  color: var(--color-midnight-ink);
  font-weight: var(--fw-bold);
}

.why-card p {
  color: var(--color-slate-600);
  max-width: 300px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-32);
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-mist-200), var(--color-voltage-blue), var(--color-mist-200));
  z-index: 0;
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-16);
  position: relative;
  z-index: 1;
  padding: var(--spacing-32);
  background: transparent;
  box-shadow: none;
}

.step-card:hover {
  transform: none;
  box-shadow: none;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-voltage-blue);
  color: var(--color-paper-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-heading);
  font-weight: var(--fw-bold);
  box-shadow: 0 4px 16px rgba(33,66,231,0.25);
  flex-shrink: 0;
}

.step-card .sticker-container {
  width: 100px;
  height: 100px;
}

.step-card h3 {
  font-size: var(--text-heading-sm);
  color: var(--color-midnight-ink);
  font-weight: var(--fw-semibold);
}

.step-card p {
  color: var(--color-slate-600);
  font-size: var(--text-body-sm);
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-24);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-buttons);
  background: rgba(33,66,231,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-voltage-blue);
  margin-bottom: var(--spacing-4);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: var(--text-heading-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-midnight-ink);
}

.feature-card p {
  color: var(--color-slate-600);
  font-size: var(--text-body-sm);
}

/* Feature check list */
.feature-checks {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
  margin-top: var(--spacing-8);
}

.feature-check {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  font-size: var(--text-body-sm);
  color: var(--color-slate-600);
}

.feature-check .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(33,66,231,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check .check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--color-voltage-blue);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-48);
  align-items: center;
}

.pricing-card {
  padding: var(--spacing-48);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-voltage-blue), #03b5ed);
}

.pricing-label {
  font-size: var(--text-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-voltage-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-16);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-8);
}

.pricing-amount .price {
  font-size: 56px;
  font-weight: var(--fw-bold);
  color: var(--color-midnight-ink);
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-amount .period {
  font-size: var(--text-subheading);
  color: var(--color-slate-500);
}

.pricing-subtitle {
  color: var(--color-slate-500);
  margin-bottom: var(--spacing-32);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
  margin-bottom: var(--spacing-32);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  font-size: var(--text-body);
  color: var(--color-slate-600);
}

.pricing-feature svg {
  width: 20px;
  height: 20px;
  color: var(--color-voltage-blue);
  flex-shrink: 0;
}

.pricing-compare {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-24);
}

.pricing-compare h3 {
  font-size: var(--text-heading);
  color: var(--color-midnight-ink);
  font-weight: var(--fw-bold);
  margin-bottom: var(--spacing-8);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-cards);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: var(--text-body-sm);
  border-bottom: 1px solid var(--color-mist-200);
}

.compare-table th {
  background: var(--color-fog-50);
  font-weight: var(--fw-semibold);
  color: var(--color-midnight-ink);
}

.compare-table td {
  background: var(--color-paper-white);
  color: var(--color-slate-600);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-highlight {
  color: var(--color-voltage-blue) !important;
  font-weight: var(--fw-semibold) !important;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
}

.faq-item {
  background: var(--surface-card);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-24);
  font-size: var(--text-body);
  font-weight: var(--fw-semibold);
  color: var(--color-midnight-ink);
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease;
}

.faq-question:hover {
  color: var(--color-voltage-blue);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--color-slate-500);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 var(--spacing-24) var(--spacing-24);
  color: var(--color-slate-600);
  line-height: 1.7;
}

/* ============================================================
   CTA / WAITLIST SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(102deg, var(--surface-ink) 0%, rgba(30,43,72,0.95) 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(33,66,231,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(circle, rgba(3,181,237,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-32);
}

.cta-sticker {
  width: 180px;
  height: 180px;
}

.cta-content h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--color-paper-white);
  max-width: 600px;
}

.cta-content p {
  font-size: var(--text-subheading);
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-16);
  flex-wrap: wrap;
  justify-content: center;
}

.btn-telegram {
  background: #2AABEE;
  color: white;
  box-shadow: 0 4px 16px rgba(42,171,238,0.3);
}

.btn-telegram:hover {
  background: #229ED9;
  box-shadow: 0 6px 24px rgba(42,171,238,0.4);
}

.btn-cta-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.btn-cta-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface-ink);
  padding: var(--spacing-48) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-24);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
}

.footer-brand img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.footer-brand span {
  font-family: var(--font-unbounded);
  font-weight: var(--fw-bold);
  color: var(--color-paper-white);
  font-size: var(--text-body);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-24);
}

.footer-links a {
  font-size: var(--text-body-sm);
  color: rgba(255,255,255,0.5);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-copy {
  font-size: var(--text-caption);
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--surface-ink);
  color: var(--color-paper-white);
  padding: 14px 24px;
  border-radius: var(--radius-cards);
  font-size: var(--text-body-sm);
  font-weight: var(--fw-medium);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 200;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
  .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
  .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
  .animate-on-scroll.delay-4 { transition-delay: 0.4s; }
  .animate-on-scroll.delay-5 { transition-delay: 0.5s; }

  /* CSS Scroll-driven animations for modern browsers */
  @supports (animation-timeline: view()) {
    .scroll-reveal {
      animation: scroll-fade-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 100%;
    }

    @keyframes scroll-fade-in {
      from {
        opacity: 0;
        transform: translateY(32px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subtitle {
    max-width: 560px;
    margin: 0 auto;
  }

  .domain-search {
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-sticker {
    width: 280px;
    height: 280px;
  }

  .float-badge {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps-grid::before {
    display: none;
  }

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

  .pricing-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --text-display: 36px;
    --text-display-lg: 44px;
    --section-gap: 48px;
    --card-padding: 24px;
  }

  .section {
    padding: var(--spacing-64) 0;
  }

  .container {
    padding: 0 var(--spacing-16);
  }

  /* Nav */
  .nav-links, .nav-right .btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-right .lang-switcher {
    display: none;
  }

  /* Hero */
  .hero {
    padding: var(--spacing-64) 0 var(--spacing-64);
  }

  .hero-sticker {
    width: 200px;
    height: 200px;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .hero-subtitle {
    font-size: var(--text-body);
  }

  .domain-search {
    flex-direction: row;
  }

  /* Grids */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-card {
    padding: var(--spacing-32);
  }

  .pricing-amount .price {
    font-size: 44px;
  }

  /* Section headers */
  .section-header h2 {
    font-size: var(--text-heading-lg);
  }

  /* Footer */
  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---- Sticker Container ---- */
.sticker-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticker-container canvas {
  width: 100% !important;
  height: 100% !important;
}

/* ---- Misc ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
