/* ============================================================
   TREZOR — CSS
   ============================================================ */

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

:root {
  --bg:          #eaeae4;
  --bg-dark:     #0d0f09;
  --bg-card:     #f5f5f0;
  --accent:      #00ff66;
  --accent-dark: #00cc52;
  --text:        #1a1c16;
  --text-muted:  #6b6e64;
  --border:      #d8d8d2;
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --nav-h:       72px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.btn:active { transform: scale(0.97); }

.btn--green {
  background: var(--accent);
  color: #0d0f09;
}
.btn--green:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,255,102,0.3);
}

.btn--dark {
  background: var(--text);
  color: var(--white);
}
.btn--dark:hover {
  background: #2a2c26;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn--outline-dark:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(13, 15, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-icon { width: 18px; height: 22px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
  text-decoration: none;
}
.nav__link:hover { color: var(--white); }
.nav__link:focus-visible { color: var(--accent); outline: none; }


.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
  z-index: 10;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg-dark);
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  width: 100%;
}

.hero__content { color: var(--white); }

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 44ch;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__device {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,255,102,0.12));
  animation: float 6s ease-in-out infinite;
  max-width: 260px;
}
.hero__glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0,255,102,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero__trust {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
}
.hero__trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.5);
  font-size: 0.83rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.trust-item strong { color: rgba(255,255,255,0.8); }
.trust-sep { opacity: 0.3; }

/* ============================================================
   COMPLIANCE DISCLAIMER
   ============================================================ */
.compliance-disclaimer {
  background: #f5f5f5;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compliance-disclaimer__text {
  text-align: center;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  max-width: 78ch;
  margin: 0 auto;
}

/* ============================================================
   PAYDAY
   ============================================================ */
.payday {
  padding: 100px 0;
  text-align: center;
}
.payday__text {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.payday__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================================
   TAKE CONTROL
   ============================================================ */
.control {
  padding: 100px 0;
  background: #f0f0ea;
  overflow: hidden;
}

.control__visual {
  display: flex;
  justify-content: center;
}
.control__img-wrap {
  position: relative;
  max-width: 340px;
}
.control__img-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(0,255,102,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.control__img-wrap img { filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin-bottom: 36px;
  line-height: 1.7;
}

.feature-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  color: var(--text);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-item strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.feature-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   TREZOR SUITE
   ============================================================ */
.suite { padding: 100px 0; }
.suite__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.suite__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.suite__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.suite__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.suite__mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
  background: var(--bg-dark);
}
.suite__mockup img { width: 100%; height: auto; }

/* ============================================================
   ONE WALLET
   ============================================================ */
.one-wallet {
  padding: 120px 0;
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}
.one-wallet__grid {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.one-wallet__title {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.one-wallet__title--right {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.35);
}
.one-wallet__divider {
  width: 4px;
  height: 80px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.one-wallet__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   FEATURES SPLIT
   ============================================================ */
.features-split { padding: 100px 0; }
.features-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-block {
  background: var(--bg-card);
  padding: 56px 48px;
}
.feature-block--right { background: var(--bg); }

.feature-block__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  color: var(--text);
  opacity: 0.9;
}
.feature-block__icon svg { width: 100%; height: 100%; }

.feature-block__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.feature-block__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-block__list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.feature-block__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-size: 0.85rem;
}
.feature-block__trust-line {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================================
   ULTIMATE FREEDOM
   ============================================================ */
.freedom {
  padding: 120px 0;
  background: var(--bg);
  overflow: hidden;
}
.freedom__headline {
  display: flex;
  gap: 32px;
  align-items: baseline;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.freedom__word {
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.freedom__word--outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--text);
}

.freedom__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.freedom__quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.freedom__quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.freedom__quote p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.freedom__stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.freedom__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}
.freedom__stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.freedom__stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { padding: 100px 0; background: #f5f5f0; }

.products__header { text-align: center; margin-bottom: 48px; }
.products__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.products__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.products__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

.products__filter {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--text); color: var(--text); }
.filter-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.filter-btn--active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1.5px solid var(--border);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.09);
}
.product-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 50px rgba(0,255,102,0.08);
}
.product-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.product-card__img {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  height: 200px;
  align-items: center;
}
.product-card__img img { max-height: 180px; width: auto; }

.product-card__body { flex: 1; display: flex; flex-direction: column; }

.product-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.product-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.product-card__price {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.product-card__price strong {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}
.product-card__btn { width: 100%; }

.products__compare {
  text-align: center;
  margin-top: 36px;
}
.compare-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.compare-link:hover { color: var(--accent-dark); }

/* ============================================================
   THOUSANDS OF COINS
   ============================================================ */
.coins {
  padding: 120px 0;
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}
.coins__title {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.coins__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 54ch;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.coins__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.coin-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease-out);
  cursor: default;
}
.coin-logo:hover { transform: scale(1.15); }
.coin-logo svg { width: 52px; height: 52px; }

.coins__more {
  background: rgba(255,255,255,0.1);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(255,255,255,0.15);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; }
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.faq__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.faq__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.faq__sub a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.15s;
}
.faq__sub a:hover { color: var(--accent-dark); }

.faq__list { display: flex; flex-direction: column; }

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  cursor: pointer;
  transition: color 0.15s;
}
.faq__question:hover { color: #2a6a2a; }
.faq__question:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.faq__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  transition: transform 0.25s var(--ease-out), background 0.15s;
  line-height: 1;
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--text);
  color: var(--white);
}

.faq__answer {
  overflow: hidden;
}
.faq__answer p {
  padding: 0 0 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 64ch;
}
.faq__answer[hidden] { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 64px;
}

.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer__company {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__company:hover { color: var(--white); }

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }
.footer__links a:focus-visible { color: var(--accent); outline: none; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.footer__legal a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .container--split {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .control__visual { order: -1; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .freedom__body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .freedom__headline { gap: 16px; }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .features-split__grid {
    grid-template-columns: 1fr;
  }
  .products__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px 48px;
  }
  .hero__actions { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__device { max-width: 200px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    pointer-events: none;
  }
  .nav__menu.is-open {
    transform: translateX(0);
    pointer-events: all;
  }
  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .nav__link {
    font-size: 1.2rem;
    color: var(--white);
  }

  .hero__inner { gap: 40px; padding: 48px 20px 40px; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .hero__trust-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .trust-sep { display: none; }

  .one-wallet__grid { flex-direction: column; gap: 8px; }
  .one-wallet__divider { width: 60px; height: 3px; margin: 0 auto; }

  .products__grid { grid-template-columns: 1fr; }
  .products__filter { display: none; }

  .freedom__headline { flex-direction: column; gap: 0; }
  .freedom__word { font-size: clamp(3rem, 15vw, 5rem); }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .faq__layout { gap: 32px; }

  .feature-block { padding: 40px 28px; }

  .coins__logos { gap: 10px; }
  .coin-logo, .coin-logo svg { width: 44px; height: 44px; }

  .freedom__stats { gap: 24px; }

  .container--split { gap: 40px; }
}

@media (max-width: 400px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
