/* ============================================================
   EZE Traders — ezetraders.com
   Brand palette lifted from the official logo artwork:
     #72ffff  cyan light     #00d7ff  cyan
     #0096ff  blue           #5800ff  violet
     #590696  purple         #231f20  ink
   ============================================================ */

:root {
  --cyan-lt: #72ffff;
  --cyan: #00d7ff;
  --blue: #0096ff;
  --violet: #5800ff;
  --purple: #590696;

  --ink: #231f20;
  --ink-950: #08060f;
  --ink-900: #0e0b1c;
  --ink-800: #17142a;
  --ink-700: #241f3d;

  --slate-700: #3d3a4d;
  --slate-600: #56546a;
  --slate-500: #6f6d84;
  --slate-400: #8f8da3;
  --line: #e7e6f0;
  --line-soft: #f0eff7;
  --bg: #ffffff;
  --bg-soft: #f7f7fc;

  --grad: linear-gradient(115deg, #00d7ff 0%, #0096ff 42%, #5800ff 100%);
  --grad-soft: linear-gradient(115deg, rgba(0,215,255,.14), rgba(88,0,255,.14));
  --grad-text: linear-gradient(100deg, #00d7ff 0%, #0096ff 38%, #7b3cff 78%);

  --maxw: 1180px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;

  --sh-sm: 0 1px 2px rgba(13, 11, 28, .05), 0 4px 14px rgba(13, 11, 28, .05);
  --sh: 0 8px 24px rgba(13, 11, 28, .07), 0 2px 6px rgba(13, 11, 28, .04);
  --sh-lg: 0 24px 60px rgba(13, 11, 28, .13), 0 6px 18px rgba(13, 11, 28, .07);
  --sh-glow: 0 18px 48px rgba(0, 150, 255, .28);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink-900);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.028em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.18rem; letter-spacing: -.015em; }
h4 { font-size: 1rem; }

p { margin: 0 0 1.15em; }
a { color: var(--blue); text-decoration: none; transition: color .16s ease; }
a:hover { color: var(--violet); }
img, svg { max-width: 100%; }
img { height: auto; display: block; }
strong { color: var(--ink-900); font-weight: 700; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 800px; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---------- Type helpers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 1em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.eyebrow.plain::before { display: none; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede { font-size: 1.14rem; line-height: 1.62; color: var(--slate-500); }

.section-head { max-width: 62ch; margin-bottom: 52px; }

section { padding: 92px 0; position: relative; }
section.tight { padding: 60px 0; }
section.soft { background: var(--bg-soft); }

/* ---------- Badges ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: var(--grad-soft);
  color: var(--violet);
  border: 1px solid rgba(88, 0, 255, .14);
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad);
}
.badge-lite {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #dff6ff;
  backdrop-filter: blur(6px);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.005em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s ease,
              background .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--grad);
  background-size: 160% 160%;
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn-primary:hover { color: #fff; background-position: 100% 0; box-shadow: 0 22px 54px rgba(88,0,255,.34); }

.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { color: #fff; background: var(--ink-700); }

.btn-ghost { background: #fff; color: var(--ink-900); border-color: var(--line); box-shadow: var(--sh-sm); }
.btn-ghost:hover { border-color: rgba(0,150,255,.42); color: var(--blue); }

.btn-glass {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.24);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,.16); color: #fff; }

.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(13,11,28,.05);
}

.nav { display: flex; align-items: center; gap: 30px; min-height: 82px; }

.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: color .16s ease, background .16s ease;
}
.nav-links > a:not(.btn):hover { color: var(--ink-900); background: var(--bg-soft); }
.nav-links > a.active:not(.btn) { color: var(--violet); background: rgba(88,0,255,.07); }
.nav-links .btn { margin-left: 12px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--ink-900);
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Aurora backdrop (hero + dark bands) ---------- */

.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  will-change: transform;
}
.aurora .a1 { width: 46vw; height: 46vw; left: -8vw;  top: -14vw;  background: radial-gradient(circle, #00d7ff, transparent 66%); animation: drift1 22s ease-in-out infinite; }
.aurora .a2 { width: 40vw; height: 40vw; right: -6vw; top: 6vw;    background: radial-gradient(circle, #5800ff, transparent 66%); animation: drift2 26s ease-in-out infinite; }
.aurora .a3 { width: 34vw; height: 34vw; left: 32vw;  bottom: -16vw; background: radial-gradient(circle, #0096ff, transparent 66%); animation: drift3 30s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6vw, 4vw) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-5vw, 6vw) scale(1.08); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vw, -5vw) scale(1.15); } }

.grid-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 78%);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink-950);
  color: rgba(255,255,255,.76);
  padding: 118px 0 104px;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 16ch; margin-bottom: .35em; }
.hero .lede { color: rgba(255,255,255,.72); max-width: 56ch; font-size: 1.22rem; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 72px;
  padding-top: 42px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stats strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  background: linear-gradient(100deg, #72ffff, #0096ff 60%, #a97bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats span {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ---------- Interior page banner ---------- */

.banner {
  position: relative;
  background: var(--ink-950);
  color: rgba(255,255,255,.74);
  padding: 86px 0 78px;
  overflow: hidden;
}
.banner .wrap { position: relative; z-index: 2; }
.banner h1 { color: #fff; margin-bottom: .3em; font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.banner .lede { color: rgba(255,255,255,.7); max-width: 62ch; margin: 0; }
.banner .aurora span { opacity: .4; }

.crumbs { font-size: .84rem; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.crumbs a { color: rgba(255,255,255,.7); }
.crumbs a:hover { color: #72ffff; }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: .95rem;
  font-weight: 700;
  color: var(--slate-400);
  white-space: nowrap;
  letter-spacing: -.01em;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--sh-sm);
  transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.card h3 { margin-bottom: .45em; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card .lede { font-size: 1rem; }

a.card { display: block; color: inherit; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(0,150,255,.3); }
a.card:hover .arrow { gap: 12px; color: var(--violet); }

.arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--blue);
  transition: gap .2s ease, color .2s ease;
}
.arrow svg { width: 15px; height: 15px; }

/* Feature card with gradient top edge */
.card-feature { overflow: hidden; padding-top: 34px; }
.card-feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .22s ease;
}
.card-feature:hover::before { opacity: 1; }

.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft);
  color: var(--violet);
  margin-bottom: 20px;
}
.icon-tile svg { width: 25px; height: 25px; }
.icon-tile.solid { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(0,150,255,.28); }

/* Dark glass card */
.card-glass {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 30px;
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.72);
}
.card-glass h3 { color: #fff; }
.card-glass .icon-tile { background: rgba(255,255,255,.09); color: var(--cyan-lt); }

/* ---------- Dark band ---------- */

.band-dark {
  position: relative;
  background: var(--ink-950);
  color: rgba(255,255,255,.72);
  overflow: hidden;
}
.band-dark .wrap { position: relative; z-index: 2; }
.band-dark h2, .band-dark h3, .band-dark h4 { color: #fff; }
.band-dark .lede { color: rgba(255,255,255,.66); }
.band-dark .eyebrow { color: var(--cyan-lt); }
.band-dark a { color: var(--cyan-lt); }
.band-dark strong { color: #fff; }
.band-dark .aurora span { opacity: .38; }

/* ---------- Lists ---------- */

.ticklist { list-style: none; padding: 0; margin: 0; }
.ticklist li { position: relative; padding-left: 32px; margin-bottom: 13px; }
.ticklist li:last-child { margin-bottom: 0; }
.ticklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad-soft);
}
.ticklist li::after {
  content: "";
  position: absolute;
  left: 5.5px; top: .72em;
  width: 7px; height: 4px;
  border-left: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: rotate(-45deg);
}
.band-dark .ticklist li::before { background: rgba(114,255,255,.14); }
.band-dark .ticklist li::after { border-color: var(--cyan-lt); }

.plainlist { list-style: none; padding: 0; margin: 0; }
.plainlist li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.plainlist li:last-child { border-bottom: none; }
.band-dark .plainlist li { border-bottom-color: rgba(255,255,255,.1); }

/* ---------- Steps ---------- */

.steps { counter-reset: s; list-style: none; padding: 0; margin: 0; }
.steps li { counter-increment: s; position: relative; padding-left: 68px; padding-bottom: 34px; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: -2px;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-size: .92rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,150,255,.25);
}
.steps li::after {
  content: "";
  position: absolute; left: 22px; top: 52px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0,150,255,.3), transparent);
}
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: .3em; }
.steps p { margin-bottom: 0; color: var(--slate-500); }

/* ---------- Table ---------- */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--sh-sm);
}
table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 620px; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
tbody tr:last-child td { border-bottom: none; }
th {
  background: var(--bg-soft);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-500);
}
tbody tr { transition: background .15s ease; }
tbody tr:hover { background: var(--line-soft); }

/* ---------- Stock page: stat row, chips, filters ---------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-soft), #fff);
  box-shadow: var(--sh-sm);
}
.stat-big { text-align: center; }
.stat-big strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-big span {
  display: block;
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.stat-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: .82rem;
}
.stat-chip strong { color: var(--violet); font-weight: 800; }
.stat-chip span { color: var(--slate-500); }

.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--sh-sm);
  margin-bottom: 18px;
}

.result-count {
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate-500);
  margin: 0 0 16px;
}
.empty-msg {
  margin-top: 22px;
  padding: 26px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--r);
  color: var(--slate-500);
}

td.qty { font-weight: 800; color: var(--ink-900); }
td.colors { color: var(--slate-500); font-size: .88rem; max-width: 22ch; }

.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: var(--bg-soft);
  color: var(--slate-600);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.pill.st-new    { background: rgba(0,150,255,.1);  color: #0069b8; border-color: rgba(0,150,255,.22); }
.pill.st-sealed { background: rgba(88,0,255,.09);  color: #4a06cc; border-color: rgba(88,0,255,.2); }
.pill.st-used   { background: rgba(120,116,140,.12); color: var(--slate-600); }
.pill.st-refurb { background: rgba(0,190,140,.12); color: #0a7a5c; border-color: rgba(0,190,140,.24); }
.pill.st-open   { background: rgba(255,170,0,.14); color: #8a5c00; border-color: rgba(255,170,0,.28); }

/* ---------- Callout ---------- */

.callout {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 26px 22px 30px;
  font-size: .95rem;
  color: var(--slate-600);
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--grad);
}
.callout p:last-child { margin-bottom: 0; }
.band-dark .callout {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
}

/* ---------- Split panel ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.wide-left { grid-template-columns: 1.15fr .85fr; }
.split.wide-right { grid-template-columns: .85fr 1.15fr; }
.split.top { align-items: start; }

/* ---------- CTA ---------- */

.cta {
  position: relative;
  background: var(--ink-950);
  color: rgba(255,255,255,.74);
  padding: 88px 0;
  overflow: hidden;
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { color: #fff; max-width: 18ch; }
.cta p { color: rgba(255,255,255,.68); max-width: 56ch; font-size: 1.08rem; }
.cta .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 700; color: var(--ink-900); }
.field .hint { display: block; font-size: .8rem; font-weight: 500; color: var(--slate-400); margin-top: 3px; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: .95rem;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  color: var(--ink-900);
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,150,255,.13);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f6d84' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ---------- Form: honeypot, busy state, error, success ---------- */

/* Honeypot — off-screen rather than display:none, which some bots skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#submit-btn { position: relative; }
#submit-btn:disabled { cursor: wait; opacity: .85; transform: none; }
#submit-btn .spinner { display: none; }
#submit-btn.is-busy .btn-arrow { display: none; }
#submit-btn.is-busy .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-error {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: #fff2f2;
  border: 1px solid #ffd4d4;
  color: #9b1c1c;
  font-size: .9rem;
  line-height: 1.55;
}
.form-error a { color: #9b1c1c; font-weight: 700; text-decoration: underline; }

.form-success { text-align: center; }
.success-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--sh-glow);
  animation: pop .45s cubic-bezier(.2, 1.3, .4, 1) both;
}
.success-mark svg { width: 28px; height: 28px; }
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Payment method chips ---------- */

.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pay {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pay:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.pay .icon-tile { width: 44px; height: 44px; border-radius: 12px; margin: 0; flex: none; }
.pay .icon-tile svg { width: 21px; height: 21px; }
.pay h4 { margin-bottom: .2em; }
.pay p { margin: 0; font-size: .89rem; color: var(--slate-500); line-height: 1.55; }
.pay .tag {
  display: inline-block;
  margin-top: 8px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--violet);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink-950);
  color: rgba(255,255,255,.56);
  padding: 76px 0 30px;
  font-size: .93rem;
}
.site-footer h4 {
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--cyan-lt); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 11px; }
.footer-grid { display: grid; grid-template-columns: 2.1fr 1fr 1fr 1.5fr; gap: 46px; }
.footer-logo { height: 32px; width: auto; margin-bottom: 20px; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.42);
}

/* ---------- Scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(22px); }
.revealed { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.8,.3,1), transform .7s cubic-bezier(.2,.8,.3,1); }

/* ---------- TBD placeholder marker ---------- */

.tbd {
  background: linear-gradient(0deg, rgba(255,214,0,.28), rgba(255,214,0,.28));
  box-shadow: inset 0 -1px 0 rgba(180,140,0,.55);
  border-radius: 3px;
  padding: 0 4px;
  color: #6b5200;
  font-style: normal;
}
.band-dark .tbd, .cta .tbd, .banner .tbd, .hero .tbd, .site-footer .tbd {
  background: rgba(255,214,0,.16);
  color: #ffdf8a;
  box-shadow: inset 0 -1px 0 rgba(255,214,0,.4);
}

/* ---------- Motion / accessibility ---------- */

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ink-900);
  color: #fff;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; top: 0; color: #fff; }

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

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .filters { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }

  .nav { min-height: 70px; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 0 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 13px 14px; border-radius: 12px; }
  .nav-links .btn { margin: 10px 0 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .grid-2, .grid-4, .pay-grid, .form-grid, .filters { grid-template-columns: 1fr; }
  .stat-row { padding: 26px; }
  .stat-big strong { font-size: 2.1rem; }
  .hero { padding: 80px 0 68px; }
  .hero-stats { margin-top: 52px; padding-top: 34px; }
  .hero-stats strong { font-size: 1.75rem; }
  .card, .card-glass { padding: 26px; }
  .form-card { padding: 26px; border-radius: var(--r); }
  .aurora span { filter: blur(50px); }
  .steps li { padding-left: 58px; }
  .steps li::before { width: 40px; height: 40px; }
  .steps li::after { left: 19px; top: 46px; }
}
