/* VANILLA — Premium Web3 Landing */

/* ── TOKENS ── */
:root {
  --orange:       #FF4D00;
  --orange-hover: #FF6B2B;
  --orange-dim:   rgba(255, 77, 0, 0.10);
  --orange-glow:  rgba(255, 77, 0, 0.18);
  --orange-gradient: linear-gradient(135deg, #FF4D00 0%, #FF7533 45%, #FFAA44 100%);

  --black:        #080808;
  --black-2:      #0E0E0E;
  --black-3:      #141414;
  --black-4:      #1C1C1C;
  --black-5:      #262626;
  --grey:         #737373;
  --grey-light:   #A3A3A3;
  --white:        #F5F5F5;

  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-30: 7.5rem;

  --container:  1180px;
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);
  --section-y:  clamp(5rem, 10vw, 7.5rem);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-pill: 100px;

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-blur: blur(24px) saturate(1.8);

  --ease:  cubic-bezier(0.25, 0.1, 0.25, 1);
  --snap:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* Orange gradient text */
.orange-gradient,
.hero__title-orange,
.section-header__num,
.section-header__title em,
.features-editorial__label,
.feature-item__num,
.article-card__source,
.article-card__link,
.privacy-content__num,
.privacy-nav a:hover,
.privacy-nav a.active,
.process-item:hover .process-item__num,
.faq-item.active .faq-question__num,
.faq-item.active .faq-question__text,
.article-card:hover .article-card__title,
.footer__col ul li a:hover {
  background: var(--orange-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.orange-gradient,
.hero__title-orange,
.section-header__title em,
.process-item:hover .process-item__num,
.article-card:hover .article-card__title,
.faq-item.active .faq-question__text {
  background-size: 100% auto;
}

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

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

body {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--grey-light);
  background: var(--black);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

a, button { font-family: inherit; cursor: pointer; }

::selection { background: var(--orange); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--black-5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--grey); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── NAV — floating glass pill ── */
.nav {
  position: fixed;
  top: var(--space-4);
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  pointer-events: none;
}

.nav__shell {
  pointer-events: auto;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.scrolled .nav__shell {
  background: rgba(12, 12, 12, 0.55);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 77, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 10px 10px 10px 18px;
  min-height: 52px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__brand-icon {
  width: 22px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(255, 77, 0, 0.25));
}

.nav__brand-name {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: capitalize;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey-light);
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.nav__cta {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 77, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 120, 60, 0.35);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav__cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--orange-glow);
}

.nav__toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s, border-color 0.2s;
}

.nav__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s var(--snap), opacity 0.2s;
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--space-8)) var(--gutter) var(--space-16);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 35%, rgba(255, 77, 0, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 80%, rgba(255, 77, 0, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 15%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__label {
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.hero__label::before,
.hero__label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange-gradient);
}

.hero__title {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0;
}

.hero__title-line { display: block; }

.hero__title-orange {
  font-style: normal;
  font-weight: 300;
}

.hero__tagline {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey-light);
  max-width: 480px;
  margin: var(--space-10) auto 0;
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.hero__btn-primary {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero__btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--orange-glow);
}

.hero__btn-primary svg { width: 14px; height: 14px; }

.hero__btn-ghost {
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--grey-light);
  border: 1px solid var(--black-5);
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hero__btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 77, 0, 0.4);
  background: var(--orange-dim);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  margin-top: var(--space-20);
  border-top: 1px solid var(--black-4);
  padding-top: var(--space-10);
  width: 100%;
  max-width: 640px;
}

.hero__stat-value {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(1.625rem, 3vw, 2rem);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: var(--space-2);
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: var(--space-16);
  max-width: 640px;
}

.section-header__num {
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.section-header__num::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange-gradient);
}

.section-header__title {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
}

.section-header__title em {
  font-style: normal;
}

.section-header__rule {
  width: 48px;
  height: 2px;
  background: var(--orange-gradient);
  margin-top: var(--space-6);
  border-radius: 1px;
}

.section-header--center {
  max-width: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header--center .section-header__num {
  justify-content: center;
}

.section-header--center .section-header__num::before {
  display: none;
}

.section-header--center .section-header__rule {
  margin-left: auto;
  margin-right: auto;
}

/* ── PROCESS ── */
.process-section {
  padding: var(--section-y) 0;
  background: var(--black-2);
  border-top: 1px solid var(--black-4);
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.process-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: start;
  gap: clamp(var(--space-6), 4vw, var(--space-10));
  padding: var(--space-10) 0;
  border-top: 1px solid var(--black-4);
  transition: background 0.25s, padding-left 0.25s var(--ease);
}

.process-item:last-child { border-bottom: 1px solid var(--black-4); }

.process-item:hover {
  background: rgba(255, 77, 0, 0.03);
  padding-left: var(--space-4);
}

.process-item__num {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--black-5);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color 0.25s;
}

.process-item__title {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.process-item__body {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.75;
  max-width: 520px;
}

.process-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black-5);
  background: var(--black-3);
  transition: all 0.25s;
  flex-shrink: 0;
  margin-top: var(--space-1);
}

.process-item:hover .process-item__icon {
  border-color: rgba(255, 77, 0, 0.4);
  background: var(--orange-dim);
}

.process-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--grey);
  transition: color 0.25s;
}

.process-item:hover .process-item__icon svg { color: var(--orange); }

/* ── FEATURES ── */
.features-section {
  padding: var(--section-y) 0;
  background: var(--black);
}

.features-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.features-editorial__main {
  background: var(--black-2);
  border: 1px solid var(--black-4);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-10);
  min-height: 420px;
}

.features-editorial__label {
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.features-editorial__title {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: var(--space-4);
}

.features-editorial__body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.8;
}

.features-editorial__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.features-editorial__item {
  flex: 1;
  background: var(--black-2);
  border: 1px solid var(--black-4);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--snap);
  min-height: 0;
}

.features-editorial__item:hover {
  background: var(--black-3);
  border-color: rgba(255, 77, 0, 0.25);
  transform: translateY(-2px);
}

.features-editorial__item-icon {
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  background: var(--orange-dim);
  border-radius: var(--radius-sm);
}

.features-editorial__item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.features-editorial__item-title {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.features-editorial__item-body {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
}

.features-editorial__item-tag {
  font-size: 0.625rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: var(--space-4);
}

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

.feature-item {
  background: var(--black-2);
  border: 1px solid var(--black-4);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--snap);
  position: relative;
}

.feature-item:hover {
  background: var(--black-3);
  border-color: rgba(255, 77, 0, 0.2);
  transform: translateY(-3px);
}

.feature-item__num {
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-6);
}

.feature-item__icon {
  width: 36px;
  height: 36px;
  padding: var(--space-2);
  background: var(--orange-dim);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
}

.feature-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.feature-item__title {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.feature-item__body {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ── PRICING / PRODUCT CARD ── */
.pricing-section {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 77, 0, 0.08) 0%, transparent 55%),
    var(--black-2);
  border-top: 1px solid var(--black-4);
  border-bottom: 1px solid var(--black-4);
}

.product-card {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--black-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.product-card--compact .product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--black-4);
  background: rgba(255, 77, 0, 0.04);
}

.product-card__price-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.product-card__price {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.product-card__price-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.04em;
}

.product-card__list {
  list-style: none;
  padding: var(--space-3) 0;
}

.product-card__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-8);
  transition: background 0.2s;
}

.product-card__item:hover {
  background: rgba(255, 77, 0, 0.03);
}

.product-card__check {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card__check svg {
  width: 12px;
  height: 12px;
  color: var(--orange);
}

.product-card__item-text {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.4;
}

.product-card__btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background: var(--orange);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.product-card__btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.product-card__btn svg {
  width: 12px;
  height: 12px;
}

/* ── ARTICLES ── */
.articles-section {
  padding: var(--section-y) 0;
  background: var(--black);
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 720px;
}

.article-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--black-4);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, background 0.2s;
}

.article-card:hover {
  border-color: rgba(255, 77, 0, 0.25);
  background: rgba(255, 77, 0, 0.03);
}

.article-card__body {
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.article-card__source {
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-card__date {
  font-size: 0.625rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.article-card__title {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: var(--space-2);
  transition: background-position 0.3s var(--ease);
}

.article-card__excerpt {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s;
}

.article-card:hover .article-card__link { gap: var(--space-3); }

.article-card__link svg {
  width: 12px;
  height: 12px;
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}

/* ── FAQ ── */
.faq-section {
  padding: var(--section-y) 0;
  background: var(--black-2);
  border-top: 1px solid var(--black-4);
}

.faq-list {
  list-style: none;
  max-width: 800px;
}

.faq-item {
  border-top: 1px solid var(--black-4);
  transition: border-color 0.25s;
}

.faq-item:last-child { border-bottom: 1px solid var(--black-4); }

.faq-item.active { border-top-color: rgba(255, 77, 0, 0.4); }
.faq-item.active:last-child { border-bottom-color: rgba(255, 77, 0, 0.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question__num {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 28px;
  transition: color 0.2s;
}

.faq-question__text {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--white);
  flex: 1;
  transition: color 0.2s;
  line-height: 1.4;
}

.faq-question__toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--black-5);
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease), border-color 0.2s, background 0.2s;
}

.faq-item.active .faq-question__toggle {
  transform: rotate(45deg);
  border-color: rgba(255, 77, 0, 0.4);
  background: var(--orange-dim);
}

.faq-question__toggle::before,
.faq-question__toggle::after {
  content: '';
  position: absolute;
  background: var(--grey-light);
  transition: background 0.2s;
}

.faq-question__toggle::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question__toggle::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-question__toggle::before,
.faq-item.active .faq-question__toggle::after { background: var(--orange); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s;
  opacity: 0;
}

.faq-answer.open {
  max-height: 320px;
  opacity: 1;
}

.faq-answer__inner {
  padding: 0 0 var(--space-8) calc(28px + var(--space-6));
}

.faq-answer__body {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.8;
}

/* ── PRIVACY ── */
.privacy-section {
  padding: var(--section-y) 0;
  background: var(--black);
  border-top: 1px solid var(--black-4);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 96px;
}

.privacy-sidebar__title {
  font-size: 0.625rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.privacy-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.privacy-nav a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey-light);
  text-decoration: none;
  padding: var(--space-3) var(--space-4);
  border-left: 2px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all 0.2s;
}

.privacy-nav a:hover,
.privacy-nav a.active {
  border-left-color: var(--orange);
  background: var(--orange-dim);
}

.privacy-nav a:hover .privacy-nav__num,
.privacy-nav a.active .privacy-nav__num {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.privacy-nav__num {
  font-size: 0.625rem;
  font-weight: 300;
  color: var(--grey);
}

.privacy-content__header {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--black-4);
}

.privacy-content__doc-label {
  font-size: 0.625rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.privacy-content__title {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.privacy-content__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-5);
}

.privacy-content__meta-item {
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.04em;
}

.privacy-content h4 {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--white);
  margin: var(--space-10) 0 var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.privacy-content h4:first-of-type { margin-top: 0; }

.privacy-content__num {
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.privacy-content p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.85;
  margin-bottom: var(--space-4);
}

.privacy-content ul {
  list-style: none;
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.privacy-content ul li {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.75;
  padding-left: var(--space-5);
  position: relative;
}

.privacy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.7;
}

/* ── MODALS ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.modal.open { display: flex; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
}

.modal.open .modal__backdrop { opacity: 1; }

.modal__panel {
  background: var(--black-2);
  border: 1px solid var(--black-5);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  position: relative;
  z-index: 1;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: all 0.35s var(--snap);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal.open .modal__panel {
  transform: none;
  opacity: 1;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--black-4);
}

.modal__header-label {
  font-size: 0.625rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.modal__close {
  width: 32px;
  height: 32px;
  background: var(--black-3);
  border: 1px solid var(--black-5);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.modal__close:hover {
  border-color: rgba(255, 77, 0, 0.4);
  background: var(--orange-dim);
}

.modal__close::before,
.modal__close::after {
  content: '';
  position: absolute;
  background: var(--grey-light);
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  margin: -0.75px 0 0 -6px;
  transition: background 0.2s;
}

.modal__close:hover::before,
.modal__close:hover::after { background: var(--orange); }

.modal__close::before { transform: rotate(45deg); }
.modal__close::after { transform: rotate(-45deg); }

.modal__body { padding: var(--space-8) var(--space-6); }

.modal__title {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.modal__subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.form-field { margin-bottom: var(--space-5); }

.form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--white);
  background: var(--black-3);
  border: 1px solid var(--black-5);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}

.form-input::placeholder { color: var(--grey); }

.form-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey);
  text-align: center;
  margin-top: var(--space-5);
  line-height: 1.65;
}

.modal__actions { margin-top: var(--space-6); }

.modal__btn {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.modal__btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.loading-modal .modal__panel { max-width: 340px; }

.modal__panel--compact { max-width: 340px; }

.modal__title--compact { font-size: 1.2rem; }

.modal__subtitle--compact { margin-bottom: 0; }

.loading-modal .modal__body,
.modal__body--loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-16) var(--space-6);
  text-align: center;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 77, 0, 0.15);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

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

/* ── FOOTER ── */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--black-4);
  padding: var(--space-20) 0 var(--space-10);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--black-4);
  margin-bottom: var(--space-10);
}

.footer__brand-icon {
  width: 22px;
  height: 28px;
  margin-bottom: var(--space-5);
  filter: drop-shadow(0 2px 6px rgba(255, 77, 0, 0.2));
}

.footer__brand-name {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer__brand-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.75;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.625rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col ul li a {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey-light);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.footer__col ul li a:hover { background-position: right center; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.02em;
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer__meta-item {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-editorial { grid-template-columns: 1fr; }
  .features-editorial__main { min-height: auto; }
  .features-editorial__aside { flex-direction: row; }
  .features-editorial__item { min-height: 200px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .privacy-sidebar { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__shell {
    border-radius: var(--radius-lg);
  }

  .nav__inner {
    padding: 8px 8px 8px 14px;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(12, 12, 12, 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  }

  .nav__links.open { display: flex; }

  .nav__links a {
    padding: var(--space-3) var(--space-4);
    font-size: 0.875rem;
    border-radius: var(--radius-md);
  }

  .nav__toggle { display: flex; }

  .nav__cta {
    padding: 8px 14px;
    font-size: 0.625rem;
  }

  .nav__brand-name { display: none; }

  .hero {
    padding-bottom: var(--space-16);
  }

  .hero__meta {
    gap: var(--space-8);
  }

  .process-item {
    grid-template-columns: 48px 1fr;
    gap: var(--space-6);
    padding: var(--space-8) 0;
  }

  .process-item:hover { padding-left: 0; }

  .process-item__icon { display: none; }

  .product-card--compact .product-card__top {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: var(--space-4);
  }

  .product-card__btn {
    width: 100%;
    justify-content: center;
  }

  .product-card__item {
    padding: var(--space-3) var(--space-6);
  }

  .features-editorial__aside { flex-direction: column; }

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

  .footer__top { grid-template-columns: 1fr; gap: var(--space-8); }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-answer__inner {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn-primary,
  .hero__btn-ghost {
    justify-content: center;
    text-align: center;
  }

  .product-card__btn {
    max-width: none;
  }
}

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