:root {
  --ink: #08090c;
  --ink-soft: #0d0f14;
  --surface: #12151c;
  --surface-2: #181c25;
  --line: #2a303c;
  --line-bright: #3a414f;
  --text: #f8f9fb;
  --muted: #a5adbc;
  --subtle: #737c8d;
  --yellow: #ffca0a;
  --yellow-2: #ff9d00;
  --orange: #ff6900;
  --green: #45d49a;
  --danger: #ff6c72;
  --radius: 22px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 35%, rgba(255, 202, 10, .035), transparent 24rem),
    radial-gradient(circle at 92% 62%, rgba(255, 105, 0, .045), transparent 28rem),
    var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.site-shell { overflow: hidden; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.nav-wrap {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 20px;
}
.nav {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(8, 9, 12, .78);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -.045em;
}
.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 10px;
  color: #fff;
  background: #0e1015;
  box-shadow: 5px 5px 0 var(--yellow);
  font-size: .78rem;
}
.brand-mark::after {
  position: absolute;
  top: -10px;
  right: -10px;
  color: var(--yellow);
  content: "★";
  font-size: .72rem;
  text-shadow: 0 2px 8px rgba(255, 202, 10, .35);
}
.brand-name { font-size: 1rem; }
.brand-name > span { color: var(--yellow); }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links > a {
  color: #c1c7d2;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 760;
  transition: color .18s ease;
}
.nav-links > a:hover, .nav-links > a:focus-visible { color: #fff; }
.nav-login {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255, 202, 10, .32);
  border-radius: 9px;
  color: #ffe784 !important;
  background: rgba(255, 202, 10, .065);
}
.login-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(69, 212, 154, .09), 0 0 12px rgba(69, 212, 154, .52);
}
.nav-admin {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255, 105, 0, .28);
  border-radius: 9px;
  color: #ffc066 !important;
  background: linear-gradient(110deg, rgba(255, 202, 10, .06), rgba(255, 105, 0, .08));
}
.nav-admin span { color: var(--yellow); font-size: .6rem; }
.nav-admin:hover { border-color: rgba(255, 202, 10, .58); background: linear-gradient(110deg, rgba(255, 202, 10, .12), rgba(255, 105, 0, .13)); }
.nav-shop {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 11px;
  color: #101116 !important;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 10px 28px rgba(255, 105, 0, .2);
  font-weight: 950 !important;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #fff;
  background: #14171e;
  font-size: 1.25rem;
  cursor: pointer;
}
.webmail-fab {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(255, 202, 10, .52);
  border-radius: 15px;
  color: #fff;
  background: rgba(11, 13, 17, .94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .52), 0 0 30px rgba(255, 105, 0, .1);
  text-decoration: none;
  backdrop-filter: blur(16px);
  transition: transform .18s ease, border-color .18s ease;
}
.webmail-fab:hover { transform: translateY(-3px); border-color: var(--yellow); }
.webmail-fab > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 10px;
  color: #101116;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: .7rem;
  font-weight: 950;
}
.webmail-fab b { font-size: .78rem; }
.webmail-fab i { color: var(--yellow); font-style: normal; }

.hero {
  position: relative;
  display: grid;
  min-height: 900px;
  align-items: center;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("hero-city.webp") center / cover no-repeat;
  content: "";
}
.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 8, .99) 0%, rgba(4, 5, 8, .94) 36%, rgba(4, 5, 8, .5) 68%, rgba(4, 5, 8, .62) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 34%);
  content: "";
}
.hero-glow {
  position: absolute;
  z-index: -1;
  top: 17%;
  left: -15rem;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: rgba(255, 105, 0, .18);
  filter: blur(120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 72px;
  align-items: center;
  padding-top: 105px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 202, 10, .27);
  border-radius: 999px;
  color: #f5e49b;
  background: rgba(255, 202, 10, .07);
  font-size: .74rem;
  font-weight: 880;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(69, 212, 154, .1), 0 0 16px rgba(69, 212, 154, .55);
}
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3.7rem, 7.6vw, 7.15rem);
  line-height: .86;
  letter-spacing: -.075em;
}
.hero-label {
  display: table;
  margin: -11px 0 20px 11px;
  padding: 5px 9px;
  color: #111217;
  background: var(--yellow);
  box-shadow: 5px 5px 0 rgba(255, 105, 0, .72);
  font-size: .63rem;
  font-weight: 950;
  letter-spacing: .11em;
  transform: rotate(-1.5deg);
}
.hero h1 em {
  display: inline-block;
  color: var(--yellow);
  background: linear-gradient(90deg, var(--yellow), #ff7900);
  font-style: normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-copy > p {
  max-width: 610px;
  margin: 30px 0 33px;
  color: #b5bdca;
  font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 920;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.button:focus-visible, .menu-button:focus-visible, .faq-question:focus-visible, a:focus-visible { outline: 3px solid rgba(255, 202, 10, .58); outline-offset: 3px; }
.button-primary {
  color: #101116;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 15px 38px rgba(255, 105, 0, .2);
}
.button-secondary {
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  background: rgba(12, 14, 19, .7);
  backdrop-filter: blur(12px);
}
.button-webmail {
  border-color: rgba(255, 202, 10, .38);
  color: #ffe16d;
  background: rgba(255, 202, 10, .075);
}
.hero-points { display: flex; flex-wrap: wrap; gap: 24px; margin: 34px 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 8px; color: #989fad; font-size: .8rem; font-weight: 680; }
.hero-points li::before { color: var(--yellow); content: "✓"; font-weight: 950; }

.hero-store-card { position: relative; align-self: end; margin-bottom: 78px; }
.corner-stamp {
  position: absolute;
  z-index: 5;
  top: -33px;
  right: -23px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  align-content: center;
  border: 2px solid #111217;
  border-radius: 50%;
  color: #111217;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 202, 10, .15), 0 18px 35px rgba(0, 0, 0, .35);
  line-height: 1;
  transform: rotate(9deg);
}
.corner-stamp b { font-size: .9rem; letter-spacing: -.04em; }
.corner-stamp span { margin-top: 3px; font-size: .58rem; font-weight: 950; letter-spacing: .16em; }
.brand-logo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 10px;
  margin: 0 14px -28px;
}
.brand-logo-card {
  display: grid;
  min-height: 128px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 17px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .38);
  transform: rotate(-2deg);
}
.brand-logo-card:last-child { transform: rotate(2deg) translateY(8px); }
.brand-logo-card img { width: 100%; height: 100%; object-fit: cover; }
.store-panel {
  position: relative;
  z-index: 1;
  padding: 47px 18px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 21px;
  background: rgba(10, 12, 16, .93);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.store-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 2px 3px 14px; }
.store-head strong { font-size: .76rem; letter-spacing: .1em; }
.store-head span { display: inline-flex; align-items: center; gap: 6px; color: #9feac8; font-size: .68rem; font-weight: 850; }
.store-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(69, 212, 154, .6); }
.mini-product {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: inherit;
  text-decoration: none;
  transition: background .18s ease;
}
.mini-product:hover { background: rgba(255, 255, 255, .035); }
.mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 10, .22);
  border-radius: 10px;
  color: var(--yellow);
  background: rgba(255, 202, 10, .07);
  font-size: .67rem;
  font-weight: 950;
}
.mini-icon img { width: 100%; height: 100%; object-fit: cover; }
.mini-product > span:nth-child(2) { display: grid; }
.mini-product strong { font-size: .79rem; }
.mini-product small { color: #7c8595; font-size: .66rem; }
.mini-product b { color: var(--yellow); font-size: .74rem; }

.trust-bar { position: relative; z-index: 3; margin-top: -38px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #11141a;
  box-shadow: var(--shadow);
}
.trust-item { display: grid; gap: 3px; padding: 23px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item span { color: var(--yellow); font-size: .68rem; font-weight: 930; letter-spacing: .1em; }
.trust-item strong { font-size: .9rem; }
.trust-item small { color: #7f8898; font-size: .71rem; }

.marquee-band {
  width: calc(100% + 30px);
  margin: 64px -15px -24px;
  overflow: hidden;
  border-block: 2px solid #111217;
  color: #111217;
  background: linear-gradient(90deg, var(--yellow), #ff9f00 58%, var(--orange));
  box-shadow: 0 15px 45px rgba(255, 105, 0, .1);
  transform: rotate(-1deg);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 27px;
  padding: 13px 0;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track span { font-size: .76rem; font-weight: 950; letter-spacing: .14em; }
.marquee-track i { font-style: normal; font-size: .73rem; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

.section { padding: 112px 0; }
.section-kicker { margin: 0 0 10px; color: var(--yellow); font-size: .74rem; font-weight: 920; letter-spacing: .18em; text-transform: uppercase; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
.section-heading h2, .payment-copy h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: .98;
  letter-spacing: -.058em;
  text-transform: uppercase;
}
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); }
.products-section { position: relative; }
.products-section::before {
  position: absolute;
  z-index: -1;
  top: 100px;
  right: -190px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 202, 10, .09);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 45px rgba(255, 202, 10, .018), 0 0 0 90px rgba(255, 105, 0, .012);
}

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.product-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, #171b23, #0e1015);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .2);
  transition: transform .2s ease, border-color .2s ease;
}
.product-card::before {
  position: absolute;
  top: 20px;
  right: -42px;
  width: 145px;
  height: 12px;
  background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(255, 255, 255, .11) 8px 17px);
  content: "";
  transform: rotate(-45deg);
  pointer-events: none;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--line-bright); }
.product-card::after {
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(255, 105, 0, .12);
  filter: blur(52px);
  content: "";
  pointer-events: none;
}
.yellow-card { box-shadow: inset 0 3px 0 var(--yellow), 0 22px 60px rgba(0, 0, 0, .2); }
.orange-card { border-color: rgba(255, 105, 0, .5); box-shadow: inset 0 3px 0 var(--orange), 0 26px 75px rgba(255, 105, 0, .1); }
.pro-card { box-shadow: inset 0 3px 0 #fff, 0 22px 60px rgba(0, 0, 0, .2); }
.featured-label {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 28px;
  padding: 7px 11px;
  border-radius: 0 0 8px 8px;
  color: #15120a;
  background: var(--yellow);
  font-size: .6rem;
  font-weight: 950;
  letter-spacing: .08em;
}
.product-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.product-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 10, .25);
  border-radius: 16px;
  color: var(--yellow);
  background: rgba(255, 202, 10, .07);
  font-weight: 950;
}
.product-icon img { width: 100%; height: 100%; object-fit: cover; }
.text-icon { letter-spacing: -.04em; }
.badge {
  padding: 6px 9px;
  border: 1px solid rgba(255, 105, 0, .36);
  border-radius: 8px;
  color: #ffc08e;
  background: rgba(255, 105, 0, .09);
  font-size: .61rem;
  font-weight: 920;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.badge-hot { border-color: var(--orange); color: #fff; background: var(--orange); box-shadow: 0 8px 20px rgba(255, 105, 0, .2); }
.product-type { margin-top: 30px; color: var(--yellow); font-size: .64rem; font-weight: 920; letter-spacing: .15em; }
.product-card h3 { min-height: 76px; margin: 8px 0 8px; font-size: 1.58rem; line-height: 1.08; letter-spacing: -.04em; }
.product-subtitle { min-height: 82px; margin: 0 0 20px; color: #939cab; font-size: .86rem; }
.feature-list { display: grid; gap: 12px; margin: 0 0 22px; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 10px; color: #cbd0d9; font-size: .82rem; }
.feature-list li::before {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  color: var(--yellow);
  background: rgba(255, 202, 10, .09);
  content: "✓";
  font-size: .67rem;
  font-weight: 950;
}
.product-note {
  margin: 0 0 20px;
  padding: 10px 11px;
  border-left: 2px solid var(--orange);
  color: #969eac;
  background: rgba(255, 105, 0, .055);
  font-size: .72rem;
}
.product-footer { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .08); }
.price { display: grid; }
.price small { color: #777f8e; font-size: .66rem; text-transform: uppercase; }
.price strong { font-size: 1.45rem; letter-spacing: -.04em; }
.product-footer .button { min-height: 47px; padding: 0 15px; font-size: .78rem; }

.steps-section { position: relative; border-block: 1px solid #1f232c; background: #0c0e13; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: var(--line); }
.step { min-height: 250px; padding: 31px; background: #11141a; }
.step-number {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  margin-bottom: 45px;
  border: 1px solid rgba(255, 202, 10, .3);
  border-radius: 11px;
  color: var(--yellow);
  background: rgba(255, 202, 10, .06);
  font: 900 .78rem ui-monospace, monospace;
}
.step h3 { margin: 0 0 8px; font-size: 1.25rem; }
.step p { margin: 0; color: #9098a7; font-size: .86rem; }

.payment-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; align-items: center; }
.payment-copy > p:last-child { max-width: 520px; margin: 18px 0 0; color: var(--muted); }
.payment-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.payment-methods span {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #11141a;
  font-size: .85rem;
  font-weight: 820;
}
.payment-methods span::after { color: var(--yellow); content: "✓"; }
.payment-methods span:last-child { grid-column: span 2; }

.split-section { display: grid; grid-template-columns: .84fr 1.16fr; gap: 68px; align-items: start; }
.support-card {
  position: sticky;
  top: 30px;
  padding: 34px;
  border: 1px solid rgba(255, 105, 0, .34);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(255, 105, 0, .14), #11141a 55%);
}
.support-card h2 { margin: 0 0 15px; font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.055em; text-transform: uppercase; }
.support-card p:not(.section-kicker) { color: #a1a9b7; }
.support-card .button { width: 100%; margin-top: 10px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #11141a; }
.faq-question {
  display: flex;
  width: 100%;
  min-height: 71px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 21px;
  border: 0;
  color: #f0f2f5;
  background: transparent;
  text-align: left;
  font-size: .94rem;
  font-weight: 820;
  cursor: pointer;
}
.faq-question span:last-child { color: var(--yellow); font-size: 1.3rem; transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { margin: 0; padding: 0 21px 22px; color: #959dac; font-size: .85rem; }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.cta { padding: 0 0 94px; }
.cta-card {
  position: relative;
  display: flex;
  min-height: 285px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 10, .35);
  border-radius: 26px;
  background: linear-gradient(110deg, rgba(255, 202, 10, .14), rgba(255, 105, 0, .14)), #11141a;
}
.cta-card::before {
  position: absolute;
  right: -5rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(255, 202, 10, .16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 36px rgba(255, 202, 10, .025), 0 0 0 72px rgba(255, 202, 10, .018);
}
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { max-width: 700px; margin: 0 0 12px; font-size: clamp(2.3rem, 5vw, 4.6rem); line-height: .94; letter-spacing: -.062em; text-transform: uppercase; }
.cta-copy p:last-child { margin: 0; color: #a0a8b6; }
.cta-card .button { position: relative; z-index: 1; flex: 0 0 auto; }

footer { padding: 38px 0 34px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: start; justify-content: space-between; gap: 45px; }
.footer-grid > div:first-child { display: grid; gap: 22px; }
.footer-grid p { max-width: 570px; margin: 0; color: #747d8d; font-size: .72rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: #9ba3b2; text-decoration: none; font-size: .75rem; }
.footer-links a:hover { color: #fff; }
.copyright { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .06); color: #5e6674; font-size: .69rem; }

.legal-page { min-height: 100vh; background: radial-gradient(circle at 90% 0%, rgba(255, 105, 0, .13), transparent 32%), var(--ink); }
.legal-nav { position: static; padding-top: 20px; }
.legal-hero { padding: 105px 0 48px; border-bottom: 1px solid var(--line); }
.legal-hero .section-kicker { margin-bottom: 13px; }
.legal-hero h1 { max-width: 850px; margin: 0; font-size: clamp(3rem, 7vw, 6rem); line-height: .92; letter-spacing: -.07em; text-transform: uppercase; }
.legal-hero p { max-width: 690px; margin: 24px 0 0; color: var(--muted); }
.legal-content { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 80px; padding: 65px 0 105px; }
.legal-toc { position: sticky; top: 30px; align-self: start; display: grid; gap: 8px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #11141a; }
.legal-toc strong { margin-bottom: 5px; color: var(--yellow); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.legal-toc a { color: #a9b0bd; text-decoration: none; font-size: .78rem; }
.legal-toc a:hover { color: #fff; }
.legal-copy { display: grid; gap: 42px; }
.legal-copy section { scroll-margin-top: 30px; }
.legal-copy h2 { margin: 0 0 13px; font-size: 1.45rem; letter-spacing: -.035em; }
.legal-copy p, .legal-copy li { color: #a5adba; font-size: .92rem; }
.legal-copy p { margin: 0 0 13px; }
.legal-copy ul { display: grid; gap: 8px; margin: 0; padding-left: 20px; }
.legal-note { padding: 17px 18px; border-left: 3px solid var(--yellow); border-radius: 0 12px 12px 0; background: rgba(255, 202, 10, .06); }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

.reveal { opacity: 0; transform: translateY(17px); transition: opacity .58s ease, transform .58s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .nav-links { gap: 16px; }
  .nav-links > a { font-size: .78rem; }
  .nav-admin { width: 38px; padding: 0; justify-content: center; font-size: 0 !important; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 38px; }
  .product-card { padding: 23px; }
  .product-footer { align-items: stretch; flex-direction: column; }
  .product-footer .button { width: 100%; }
}

@media (max-width: 900px) {
  .hero { min-height: 1040px; }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-store-card { width: min(100%, 540px); align-self: auto; margin: 0 0 78px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 0; }
  .product-card h3, .product-subtitle { min-height: auto; }
  .product-footer { align-items: end; flex-direction: row; }
  .product-footer .button { width: auto; }
  .payment-section, .split-section { grid-template-columns: 1fr; gap: 35px; }
  .support-card { position: static; }
  .legal-content { grid-template-columns: 1fr; gap: 34px; }
  .legal-toc { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 26px), 1180px); }
  .nav-wrap, .legal-nav { padding-top: 12px; }
  .nav { min-height: 60px; padding: 0 8px 0 13px; }
  .brand-mark { width: 36px; height: 36px; box-shadow: 4px 4px 0 var(--yellow); }
  .brand-name { font-size: .87rem; }
  .menu-button { display: block; }
  .nav-links {
    position: absolute;
    top: 71px;
    right: 13px;
    left: 13px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(12, 14, 19, .985);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 12px; border-radius: 9px; font-size: .86rem; }
  .nav-login { min-height: 46px; }
  .nav-admin { width: auto; min-height: 46px; justify-content: flex-start; padding: 12px; font-size: .86rem !important; }
  .nav-shop { margin-top: 4px; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero::before { background-position: 62% center; opacity: .7; }
  .hero::after { background: linear-gradient(90deg, rgba(4, 5, 8, .98), rgba(4, 5, 8, .65)), linear-gradient(0deg, var(--ink), transparent 38%); }
  .hero-grid { display: block; padding-top: 20px; }
  .eyebrow { margin-bottom: 20px; font-size: .67rem; }
  .hero h1 { font-size: clamp(3.2rem, 14.7vw, 5rem); }
  .hero-label { margin-left: 6px; }
  .hero-copy > p { margin-top: 24px; font-size: .97rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-points { gap: 12px 19px; }
  .hero-store-card { margin: 72px 0 82px; }
  .corner-stamp { top: -25px; right: -4px; width: 76px; height: 76px; }
  .brand-logo-grid { margin-right: 9px; margin-left: 9px; }
  .brand-logo-card { min-height: 105px; }
  .store-panel { padding-right: 12px; padding-left: 12px; }
  .mini-product { grid-template-columns: 42px 1fr auto; padding-inline: 6px; }
  .mini-product small { max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .trust-bar { margin-top: -24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-right: 0; }
  .section { padding: 82px 0; }
  .marquee-band { margin-top: 50px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 29px; }
  .section-heading h2, .payment-copy h2 { font-size: 2.7rem; }
  .product-card { padding: 23px; }
  .product-footer { align-items: stretch; flex-direction: column; }
  .product-footer .button { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 210px; }
  .step-number { margin-bottom: 34px; }
  .payment-methods { grid-template-columns: 1fr; }
  .payment-methods span:last-child { grid-column: auto; }
  .support-card { padding: 27px 23px; }
  .cta-card { align-items: stretch; flex-direction: column; padding: 34px 24px; }
  .cta-card .button { width: 100%; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .legal-hero { padding: 75px 0 38px; }
  .legal-hero h1 { font-size: 3rem; }
  .legal-content { padding: 42px 0 75px; }
  .webmail-fab { right: 12px; bottom: 12px; min-height: 50px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 3.15rem; }
  .hero-points { display: grid; gap: 9px; }
  .mini-product { grid-template-columns: 38px minmax(0, 1fr) auto; gap: 9px; }
  .mini-icon { width: 38px; height: 38px; }
  .mini-product strong { font-size: .73rem; }
  .mini-product b { font-size: .7rem; }
  .section-heading h2, .payment-copy h2 { font-size: 2.45rem; }
  .product-card h3 { font-size: 1.45rem; }
  .webmail-fab b { font-size: .74rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
