/* ====================================================
   PRIME TECNOLOGIAS — Luxury Medical Marketing
   Pure HTML/CSS port (faithful to the React version)
==================================================== */

:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --bg-3: #111;
  --white: #fff;
  --text: #fff;
  --muted: #a3a3a3;
  --muted-2: #737373;
  --royal: #1568b0;
  --royal-soft: #6fb3eb;
  --royal-deep: #0d3d6b;
  --gold: #c8a96b;
  --gold-soft: #f1dca3;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --gold-glow: rgba(200, 169, 107, 0.4);
  --blue-glow: rgba(21, 104, 176, 0.4);
  --radius: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Satoshi", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--royal), var(--bg-2)); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--gold), var(--royal)); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 12px; position: relative; }
@media (min-width: 480px) { .container { padding: 0 16px; } }
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.container--narrow { max-width: 760px; }
.container--tight { max-width: var(--container); }

/* ---------- Typography ---------- */
.h1 {
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-size: clamp(1.75rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  word-break: break-word;
}
.h2 {
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-size: clamp(1.375rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  text-wrap: balance;
  word-break: break-word;
}
.h3 {
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
.lead {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.9rem, 1.8vw, 1.125rem);
  max-width: 560px;
  margin: 16px 0 0;
  line-height: 1.6;
}
.lead strong { color: #fff; font-weight: 600; }
.section__lead {
  color: rgba(255,255,255,0.6);
  font-size: clamp(0.9rem, 1.8vw, 1.125rem);
  margin: 14px 0 0;
  max-width: 640px;
  line-height: 1.65;
}
.overline {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.gold { color: var(--gold) !important; }
.blue { color: var(--royal-soft) !important; }
.white { color: #fff; }
.muted-italic { color: rgba(255,255,255,0.4); font-style: italic; font-weight: 500; }
.gold-italic {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 60%, #8a703f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s, opacity 0.2s;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 640px) { .btn { padding: 14px 28px; font-size: 0.82rem; gap: 12px; } }
.btn--lg { padding: 13px 22px; }
@media (min-width: 640px) { .btn--lg { padding: 16px 36px; } }
.btn--primary {
  background: var(--royal);
  color: #fff;
  box-shadow: 0 0 60px -10px var(--blue-glow);
}
.btn--primary:hover { background: #1872c1; transform: translateY(-1px); }
.btn--gold {
  background: linear-gradient(90deg, var(--gold), #d8b977, var(--gold));
  color: #0a0a0a;
}
.btn--gold:hover {
  box-shadow: 0 0 40px rgba(200, 169, 107, 0.5);
  transform: translateY(-1px);
}
.btn--full { width: 100%; }
.btn .btn__spin { display: none; animation: spin 0.8s linear infinite; }
.btn.is-loading .btn__label, .btn.is-loading .btn__arrow { display: none; }
.btn.is-loading .btn__spin { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.pill--gold {
  background: rgba(200,169,107,0.04);
  border: 1px solid rgba(200,169,107,0.3);
  color: var(--gold);
  backdrop-filter: blur(20px);
}
.pill--red {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ---------- Glass ---------- */
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.glass-strong {
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

/* ---------- Radial glows ---------- */
.radial { position: absolute; pointer-events: none; z-index: 0; width: 300px; height: 300px; }
@media (min-width: 640px) { .radial { width: 400px; height: 400px; } }
@media (min-width: 768px) { .radial { width: 600px; height: 600px; } }
.radial--blue { background: radial-gradient(ellipse at center, rgba(21,104,176,0.15) 0%, transparent 60%); }
.radial--gold { background: radial-gradient(ellipse at center, rgba(200,169,107,0.12) 0%, transparent 60%); }
.radial--tl { top: -120px; left: -120px; }
.radial--tr { top: 0; right: -80px; }
.radial--br { bottom: -120px; right: -120px; }
.radial--center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; }
@media (min-width: 768px) { .radial--center { width: 800px; height: 800px; } }
.radial--left { top: 50%; left: -100px; transform: translateY(-50%); width: 400px; height: 400px; }
.radial--right { top: 50%; right: -100px; transform: translateY(-50%); width: 400px; height: 400px; }
@media (min-width: 768px) {
  .radial--left { left: 0; width: 500px; height: 500px; }
  .radial--right { right: 0; width: 500px; height: 500px; }
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (min-width: 480px) { .nav__inner { padding: 0 16px; gap: 16px; } }
@media (min-width: 640px) { .nav__inner { padding: 0 24px; gap: 24px; } }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
@media (min-width: 480px) { .logo { font-size: 1rem; gap: 5px; } }
@media (min-width: 640px) { .logo { font-size: 1.4rem; gap: 8px; } }
.logo__a { color: #fff; }
.logo__b { color: rgba(255,255,255,0.7); font-weight: 500; }
.logo__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 4px; transition: transform 0.3s; }
@media (min-width: 640px) { .logo__dot { width: 6px; height: 6px; margin-top: 6px; } }
.logo:hover .logo__dot { transform: scale(1.5); }

.nav__links { display: none; gap: 32px; }
.nav__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--gold); }

.nav__cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--royal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 0 50px -10px var(--blue-glow);
  transition: background 0.3s;
  flex-shrink: 0;
}
.nav__cta:hover { background: #1872c1; }
.nav__cta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-soft); animation: pulse 1.8s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav__toggle { display: inline-flex; padding: 6px; color: #fff; flex-shrink: 0; }
.nav__toggle svg { width: 20px; height: 20px; }
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 8px 12px 0;
  padding: 16px;
  border-radius: 14px;
  background: rgba(10,10,10,0.95);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}
@media (min-width: 480px) { .nav__mobile { margin: 8px 16px 0; padding: 18px; border-radius: 16px; gap: 11px; } }
@media (min-width: 640px) { .nav__mobile { margin: 12px 24px 0; padding: 24px; border-radius: 18px; gap: 14px; } }
.nav__mobile.is-open { display: flex; }
.nav__mobile a { color: rgba(255,255,255,0.85); font-size: 0.85rem; }
@media (min-width: 640px) { .nav__mobile a { font-size: 0.95rem; } }

@media (min-width: 900px) {
  .nav__links { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
  overflow: hidden;
}
@media (min-width: 640px) { .hero { padding: 100px 0 50px; } }
@media (min-width: 1024px) { .hero { padding: 140px 0 80px; } }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7) 50%, var(--bg) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.8), transparent 50%, rgba(0,0,0,0.4));
}
.hero__fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px; z-index: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  z-index: 1;
}
@media (min-width: 640px) { .hero__grid { gap: 32px; } }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.4fr 1fr; gap: 60px; } }
.hero__copy { max-width: 720px; }
.hero__copy .h1 { margin-top: 16px; }
@media (min-width: 640px) { .hero__copy .h1 { margin-top: 24px; } }
.hero__cta { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
@media (min-width: 640px) { .hero__cta { margin-top: 32px; gap: 14px; } }
.hero__trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
@media (min-width: 640px) { .hero__trust { margin-top: 40px; gap: 14px; font-size: 0.75rem; } }
.avatars { display: inline-flex; }
.avatars img {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  margin-left: -6px;
}
@media (min-width: 640px) {
  .avatars img { width: 32px; height: 32px; margin-left: -8px; }
}
.avatars img:first-child { margin-left: 0; }

.hero__metrics {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) { .hero__metrics { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (min-width: 1024px) {
  .hero__metrics {
    height: 520px;
    display: block;
  }
  .hero__metrics .metric {
    position: absolute;
    width: 220px;
  }
  .metric--1 { top: 0; right: 0; }
  .metric--2 { top: 130px; left: -20px; }
  .metric--3 { top: 260px; right: 20px; }
  .metric--4 { bottom: 0; left: 30px; }
}
.metric {
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  backdrop-filter: blur(24px) saturate(160%);
  padding: 14px 16px;
  transition: transform 0.4s ease, border-color 0.4s;
}
@media (min-width: 640px) { .metric { padding: 16px 18px; border-radius: 14px; } }
@media (min-width: 1024px) { .metric { padding: 18px 20px; border-radius: 16px; } }
.metric:hover { transform: translateY(-4px); border-color: rgba(200,169,107,0.4); }
.metric__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
}
.metric__value {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #fff;
}
.metric__sub { font-size: 0.68rem; color: rgba(255,255,255,0.55); margin-top: 3px; }
.bar { margin-top: 10px; height: 3px; border-radius: 999px; background: rgba(255,255,255,0.05); overflow: hidden; }
.bar__fill { display: block; height: 100%; border-radius: inherit; }
.bar__fill--gold { background: var(--gold); }
.bar__fill--blue { background: var(--royal); }

/* ---------- Sections base ---------- */
.section {
  position: relative;
  padding: 40px 0 44px;
  overflow: hidden;
}
@media (min-width: 640px) { .section { padding: 48px 0 56px; } }
@media (min-width: 768px) { .section { padding: 64px 0 72px; } }
@media (min-width: 1024px) { .section { padding: 80px 0; } }

.section__head { max-width: 720px; position: relative; z-index: 1; }
.section__head--center { margin: 0 auto; text-align: center; }
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .grid { gap: 16px; } }
@media (min-width: 768px) { .grid { gap: 20px; } }
.grid--2 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
.social-grid, .solution-grid { margin-top: 28px; position: relative; z-index: 1; }
@media (min-width: 640px) { .social-grid, .solution-grid { margin-top: 36px; } }
@media (min-width: 768px) { .social-grid, .solution-grid { margin-top: 48px; } }
.solution-grid { gap: 14px; }
@media (min-width: 640px) { .solution-grid { gap: 18px; } }
@media (min-width: 768px) { .solution-grid { gap: 24px; } }

/* ---------- Cards ---------- */
.card {
  position: relative;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 16px;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
@media (min-width: 640px) { .card { padding: 20px; border-radius: 14px; } }
@media (min-width: 768px) { .card { padding: 24px; border-radius: 18px; } }
.card:hover { transform: translateY(-4px); border-color: rgba(200,169,107,0.4); }
.card--metric { padding: 16px; }
@media (min-width: 640px) { .card--metric { padding: 20px; } }
@media (min-width: 768px) { .card--metric { padding: 24px; } }
.card__value {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 14px;
  line-height: 1.05;
}
@media (min-width: 640px) { .card__value { margin-top: 18px; } }
@media (min-width: 768px) { .card__value { margin-top: 24px; } }
.card__label { margin-top: 6px; font-weight: 500; color: rgba(255,255,255,0.88); font-size: 0.85rem; }
@media (min-width: 640px) { .card__label { margin-top: 8px; font-size: 0.9rem; } }
.card__sub { margin-top: 3px; font-size: 0.7rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
@media (min-width: 640px) { .card__sub { margin-top: 4px; font-size: 0.74rem; } }
.glow { position: absolute; width: 100px; height: 100px; border-radius: 50%; filter: blur(40px); opacity: 0.3; top: -40px; right: -40px; }
@media (min-width: 768px) { .glow { width: 130px; height: 130px; top: -50px; right: -50px; } }
.glow--gold { background: var(--gold); }
.glow--blue { background: var(--royal); }
.icon { position: relative; z-index: 1; width: 20px; height: 20px; }
@media (min-width: 640px) { .icon { width: 22px; height: 22px; } }
.icon--gold { color: var(--gold); }
.icon--blue { color: var(--royal-soft); }
.spark { width: 100%; height: 36px; margin-top: 12px; opacity: 0.9; }
@media (min-width: 640px) { .spark { height: 42px; margin-top: 14px; } }

.card--solution { padding: 20px; }
@media (min-width: 640px) { .card--solution { padding: 26px; } }
@media (min-width: 768px) { .card--solution { padding: 32px; } }
.card--solution .card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
@media (min-width: 640px) { .card--solution .card__head { margin-bottom: 24px; } }
.icon-box {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) { .icon-box { width: 48px; height: 48px; border-radius: 11px; } }
@media (min-width: 768px) { .icon-box { width: 52px; height: 52px; border-radius: 12px; } }
.icon-box--blue {
  background: linear-gradient(135deg, rgba(21,104,176,0.3), rgba(21,104,176,0.05));
  border: 1px solid rgba(21,104,176,0.3);
}
.card__num {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
}
@media (min-width: 640px) { .card__num { font-size: 1.4rem; } }
.card--solution h3 { margin-top: 0; }
.card--solution p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 10px 0 0; line-height: 1.6; }
@media (min-width: 640px) { .card--solution p { font-size: 0.95rem; margin: 12px 0 0; line-height: 1.65; } }
.card__more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,169,107,0.7);
  transition: color 0.3s;
}
@media (min-width: 640px) { .card__more { margin-top: 28px; gap: 8px; font-size: 0.72rem; } }
.card__more-line { width: 28px; height: 1px; background: rgba(200,169,107,0.5); transition: width 0.4s; }
.card:hover .card__more { color: var(--gold); }
.card:hover .card__more-line { width: 44px; }

.card--ghost {
  background: rgba(255,255,255,0.03);
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 640px) { .card--ghost { padding: 22px 24px; border-radius: 16px; font-size: 0.92rem; } }

/* ---------- Trust bar ---------- */
.trust-bar {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
@media (min-width: 640px) { .trust-bar { margin-top: 36px; gap: 10px 20px; font-size: 0.65rem; letter-spacing: 0.2em; } }
@media (min-width: 768px) { .trust-bar { margin-top: 48px; gap: 16px 36px; font-size: 0.7rem; letter-spacing: 0.22em; } }
.trust-bar__sep { width: 20px; height: 1px; background: rgba(255,255,255,0.1); display: none; }
@media (min-width: 640px) { .trust-bar__sep { display: inline-block; width: 24px; } }
@media (min-width: 768px) { .trust-bar__sep { width: 32px; } }

/* ---------- Problem (split) ---------- */
.section--problem { padding-bottom: 0; }
.split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 640px) { .split { margin-top: 28px; } }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; margin-top: 32px; } }
.split__panel {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
@media (min-width: 640px) { .split__panel { min-height: 360px; } }
@media (min-width: 1024px) { .split__panel { min-height: 520px; } }
.split__panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: filter 0.7s, transform 0.8s;
}
.split__panel--left img { filter: grayscale(1) brightness(0.35); }
.split__panel--left:hover img { filter: grayscale(1) brightness(0.45); }
.split__panel--right img { filter: brightness(0.6); }
.split__panel--right:hover img { filter: brightness(0.75); }
.split__overlay { position: absolute; inset: 0; }
.split__overlay--dark { background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.85)); }
@media (min-width: 1024px) { .split__overlay--dark { background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.6), rgba(0,0,0,0.4)); } }
.split__overlay--gold {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(13,61,107,0.5)),
    radial-gradient(ellipse at center, rgba(200,169,107,0.12) 0%, transparent 60%);
}
@media (min-width: 1024px) {
  .split__overlay--gold {
    background:
      linear-gradient(270deg, rgba(21,104,176,0.4), rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.8)),
      radial-gradient(ellipse at center, rgba(200,169,107,0.12) 0%, transparent 60%);
  }
}
.split__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 640px) { .split__content { padding: 28px; } }
@media (min-width: 1024px) { .split__content { padding: 48px; } }
.split__content .pill { margin-bottom: 14px; }
@media (min-width: 640px) { .split__content .pill { margin-bottom: 16px; } }
.split__content .h3 { margin-bottom: 14px; }
@media (min-width: 640px) { .split__content .h3 { margin-bottom: 18px; } }
.list { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) { .list { gap: 12px; } }
.list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 640px) { .list li { gap: 12px; font-size: 0.95rem; } }
.list--neg li::before {
  content: ""; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(248,113,113,0.7);
  margin-top: 8px;
  flex-shrink: 0;
}
.list--pos li {
  color: #fff;
}
.list--pos li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  margin-top: 0;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.split__divider {
  display: none;
}
@media (min-width: 1024px) {
  .split__divider {
    display: block;
    position: absolute; inset: 0 auto 0 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(200,169,107,0.4), transparent);
  }
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin-top: 32px;
}
@media (min-width: 640px) { .timeline { margin-top: 40px; } }
@media (min-width: 768px) { .timeline { margin-top: 56px; } }
.timeline__line {
  position: absolute;
  top: 10px; bottom: 10px;
  left: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,169,107,0.3), transparent);
}
@media (min-width: 768px) { .timeline__line { left: 50%; transform: translateX(-50%); top: 0; bottom: 0; } }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 640px) { .step { gap: 16px; margin-bottom: 32px; } }
@media (min-width: 768px) {
  .step { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 64px; }
  .step--right .step__head { order: 2; padding-left: 64px; text-align: left; }
  .step--right .step__body { order: 1; padding-right: 64px; text-align: right; }
  .step--left .step__head { padding-right: 64px; text-align: right; }
  .step--left .step__body { padding-left: 64px; }
}
.step__node {
  position: absolute;
  left: 12px;
  top: 6px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px rgba(200,169,107,0.15), 0 0 0 5px var(--bg), 0 0 20px var(--gold-glow);
  z-index: 2;
}
@media (min-width: 768px) { .step__node { left: 50%; width: 12px; height: 12px; top: 12px; box-shadow: 0 0 0 4px rgba(200,169,107,0.15), 0 0 0 7px var(--bg), 0 0 30px var(--gold-glow); } }
.step__head { padding-left: 32px; }
@media (min-width: 768px) { .step__head { padding-left: 0; } }
.step__num {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 60%, #8a703f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
  line-height: 1;
}
.step__head .h3 { margin-top: 2px; }
@media (min-width: 640px) { .step__head .h3 { margin-top: 4px; } }
.step__body { padding-left: 32px; }
@media (min-width: 768px) { .step__body { padding-left: 0; } }
.step__body.card--ghost { padding: 16px 18px; font-size: 0.85rem; }
@media (min-width: 640px) { .step__body.card--ghost { padding: 18px 20px; font-size: 0.88rem; } }
@media (min-width: 768px) { .step__body.card--ghost { padding: 22px 24px; font-size: 0.92rem; } }

/* ---------- Authority ---------- */
.authority { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 640px) { .authority { gap: 40px; } }
@media (min-width: 1024px) { .authority { grid-template-columns: 1fr 1fr; gap: 64px; } }
.authority__left { position: relative; margin-bottom: 16px; }
@media (min-width: 1024px) { .authority__left { margin-bottom: 0; } }
.dash {
  background: var(--bg-2);
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow: 0 0 80px -20px var(--blue-glow);
}
@media (min-width: 640px) { .dash { border-radius: 18px; } }
@media (min-width: 768px) { .dash { border-radius: 24px; } }
@media (max-width: 639px) { .dash { box-shadow: none; } }
.dash__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(13,61,107,0.4), var(--bg-2), var(--bg-2));
  gap: 6px;
  flex-wrap: wrap;
}
@media (min-width: 640px) { .dash__toolbar { padding: 10px 14px; flex-wrap: nowrap; gap: 10px; } }
@media (min-width: 768px) { .dash__toolbar { padding: 12px 18px; } }
.dash__dots { display: inline-flex; gap: 4px; flex-shrink: 0; }
.dash__dots span { width: 7px; height: 7px; border-radius: 50%; }
@media (min-width: 640px) { .dash__dots span { width: 8px; height: 8px; } }
@media (min-width: 768px) { .dash__dots span { width: 9px; height: 9px; } }
.dash__dots span:nth-child(1) { background: rgba(255,95,87,0.8); }
.dash__dots span:nth-child(2) { background: rgba(254,188,46,0.8); }
.dash__dots span:nth-child(3) { background: rgba(40,200,64,0.8); }
.dash__title {
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  flex: 1;
  text-align: left;
  padding-left: 4px;
  display: none;
}
@media (min-width: 640px) { .dash__title { display: inline; font-size: 0.58rem; letter-spacing: 0.18em; padding-left: 10px; } }
@media (min-width: 768px) { .dash__title { font-size: 0.65rem; letter-spacing: 0.22em; padding-left: 14px; } }
.dash__live {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 640px) { .dash__live { font-size: 0.55rem; letter-spacing: 0.15em; } }
@media (min-width: 768px) { .dash__live { font-size: 0.6rem; letter-spacing: 0.18em; } }
.dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; }
@media (min-width: 640px) { .dot { width: 6px; height: 6px; } }
.dot--green { background: #34d399; animation: pulse 1.8s infinite; }
.dot--gray { background: rgba(255,255,255,0.3); }
.dash__kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.dash__kpis > div { padding: 7px 8px; }
@media (min-width: 640px) { .dash__kpis > div { padding: 10px 12px; } }
@media (min-width: 768px) { .dash__kpis > div { padding: 14px 18px; } }
.dash__kpis > div + div { border-left: 1px solid var(--border); }
.kpi__label { font-size: 0.45rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
@media (min-width: 640px) { .kpi__label { font-size: 0.55rem; letter-spacing: 0.15em; } }
@media (min-width: 768px) { .kpi__label { font-size: 0.62rem; letter-spacing: 0.2em; } }
.kpi__value { font-family: "Cabinet Grotesk", sans-serif; font-size: 0.8rem; font-weight: 700; color: #fff; margin-top: 1px; }
@media (min-width: 640px) { .kpi__value { font-size: 1rem; margin-top: 2px; } }
@media (min-width: 768px) { .kpi__value { font-size: 1.4rem; margin-top: 4px; } }
.kpi__sub { font-size: 0.5rem; margin-top: 1px; }
@media (min-width: 640px) { .kpi__sub { font-size: 0.6rem; margin-top: 2px; } }
@media (min-width: 768px) { .kpi__sub { font-size: 0.7rem; margin-top: 3px; } }
.dash__table { padding: 1px; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 0.5rem; }
@media (min-width: 640px) { .dash__table { padding: 4px; font-size: 0.65rem; } }
@media (min-width: 768px) { .dash__table { padding: 8px; font-size: 0.72rem; } }
.dash__th, .dash__row {
  display: grid;
  grid-template-columns: 1.4fr 0.5fr 0.6fr 0.6fr 0.4fr 0.6fr 0.6fr;
  gap: 2px;
  padding: 3px 6px;
  align-items: center;
  font-size: 0.48rem;
  min-width: 480px;
}
@media (min-width: 640px) { .dash__th, .dash__row { grid-template-columns: 1.4fr 0.5fr 0.6fr 0.6fr 0.4fr 0.6fr 0.6fr; gap: 4px; padding: 6px 8px; font-size: 0.65rem; min-width: 560px; } }
@media (min-width: 768px) { .dash__th, .dash__row { grid-template-columns: 1.6fr 0.6fr 0.7fr 0.7fr 0.5fr 0.7fr 0.7fr; gap: 8px; padding: 8px 12px; font-size: 0.72rem; min-width: 620px; } }
.dash__th {
  font-size: 0.44rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  padding: 3px 6px;
}
@media (min-width: 640px) { .dash__th { font-size: 0.52rem; letter-spacing: 0.12em; padding: 6px 8px; } }
@media (min-width: 768px) { .dash__th { font-size: 0.58rem; letter-spacing: 0.16em; padding: 8px 12px; } }
.dash__row {
  border-radius: 6px;
  margin-bottom: 2px;
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  color: rgba(255,255,255,0.85);
}
@media (min-width: 640px) { .dash__row { border-radius: 8px; margin-bottom: 3px; } }
@media (min-width: 768px) { .dash__row { border-radius: 10px; margin-bottom: 4px; } }
.dash__row--hl {
  background: rgba(200,169,107,0.06);
  border-color: rgba(200,169,107,0.3);
}
.camp {
  display: inline-flex; align-items: center; gap: 4px;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 640px) { .camp { flex-direction: row; gap: 6px; } }
.camp em { color: rgba(255,255,255,0.45); font-style: normal; font-size: 0.65rem; }
@media (min-width: 640px) { .camp em { font-size: 0.7rem; } }
.blur-name {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.04em;
  filter: blur(3px);
  color: rgba(255,255,255,0.9);
}
@media (min-width: 640px) { .blur-name { font-size: 0.6rem; } }
@media (min-width: 768px) { .blur-name { font-size: 0.66rem; } }
.status { font-size: 0.48rem; text-transform: uppercase; letter-spacing: 0.08em; }
@media (min-width: 640px) { .status { font-size: 0.5rem; letter-spacing: 0.1em; } }
@media (min-width: 768px) { .status { font-size: 0.55rem; letter-spacing: 0.13em; } }
.status.active { color: #34d399; }
.status.paused { color: rgba(255,255,255,0.35); }
.num { font-family: "Cabinet Grotesk", sans-serif; font-weight: 600; color: #fff; }
.dash__row .gold { font-family: "Cabinet Grotesk", sans-serif; font-weight: 600; }
.dash__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  padding: 6px 8px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.4);
}
@media (min-width: 640px) { .dash__foot { padding: 10px 12px; gap: 12px; } }
@media (min-width: 768px) { .dash__foot { padding: 14px 20px; gap: 16px; } }
.dash__foot > span { display: inline-flex; align-items: center; gap: 3px; font-size: 0.5rem; color: rgba(255,255,255,0.5); }
@media (min-width: 640px) { .dash__foot > span { font-size: 0.62rem; gap: 6px; } }
@media (min-width: 768px) { .dash__foot > span { font-size: 0.72rem; gap: 8px; } }
.dash__chart { width: 60px; height: 20px; flex-shrink: 0; }
@media (min-width: 640px) { .dash__chart { width: 120px; height: 28px; } }
@media (min-width: 768px) { .dash__chart { width: 160px; height: 36px; } }
.floater {
  position: absolute;
  bottom: -16px; left: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(10,10,10,0.92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  font-size: 0.7rem;
}
@media (min-width: 640px) { .floater { bottom: -20px; left: 10px; padding: 10px 14px; border-radius: 12px; font-size: 0.85rem; } }
@media (min-width: 1024px) { .floater { bottom: -32px; left: -32px; padding: 14px 20px; border-radius: 16px; font-size: 1rem; } }
.floater__label { font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1px; }
@media (min-width: 640px) { .floater__label { font-size: 0.5rem; margin-bottom: 2px; } }
.floater__value { font-family: "Cabinet Grotesk", sans-serif; font-size: 0.85rem; font-weight: 700; color: #fff; }
@media (min-width: 640px) { .floater__value { font-size: 1rem; } }
@media (min-width: 1024px) { .floater__value { font-size: 1.4rem; } }
.floater__sub { font-size: 0.48rem; color: rgba(255,255,255,0.5); margin-top: 1px; }
@media (min-width: 640px) { .floater__sub { font-size: 0.58rem; margin-top: 1px; } }
@media (min-width: 768px) { .floater__sub { font-size: 0.64rem; margin-top: 2px; } }

.authority__right { margin-top: 0; }
@media (min-width: 1024px) { .authority__right { margin-top: 0; } }
.authority__right .section__lead { margin-top: 14px; }
@media (min-width: 640px) { .authority__right .section__lead { margin-top: 16px; } }
.pillars { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .pillars { margin-top: 22px; gap: 14px; } }
@media (min-width: 1024px) { .pillars { margin-top: 36px; gap: 20px; } }
.pillar { display: flex; gap: 10px; align-items: flex-start; }
.pillar__icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,107,0.3);
  flex-shrink: 0;
}
@media (min-width: 640px) { .pillar__icon { width: 36px; height: 36px; border-radius: 9px; } }
@media (min-width: 768px) { .pillar__icon { width: 40px; height: 40px; border-radius: 10px; } }
.pillar h4 { font-family: "Cabinet Grotesk", sans-serif; font-size: 0.9rem; margin: 0; color: #fff; font-weight: 600; }
@media (min-width: 640px) { .pillar h4 { font-size: 0.98rem; } }
@media (min-width: 768px) { .pillar h4 { font-size: 1.05rem; } }
.pillar p { color: rgba(255,255,255,0.55); font-size: 0.78rem; margin: 2px 0 0; line-height: 1.5; }
@media (min-width: 640px) { .pillar p { font-size: 0.85rem; margin: 3px 0 0; line-height: 1.55; } }
@media (min-width: 768px) { .pillar p { font-size: 0.88rem; margin: 4px 0 0; line-height: 1.6; } }

/* ---------- FAQ ---------- */
.section--faq .section__head { margin-bottom: 24px; }
@media (min-width: 640px) { .section--faq .section__head { margin-bottom: 28px; } }
.faq { margin-top: 24px; }
@media (min-width: 640px) { .faq { margin-top: 28px; } }
@media (min-width: 768px) { .faq { margin-top: 40px; } }
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 3px 0;
}
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 640px) { .faq__trigger { gap: 16px; padding: 18px 0; } }
@media (min-width: 768px) { .faq__trigger { gap: 24px; padding: 22px 0; } }
.faq__trigger > span:first-child {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.3s;
  line-height: 1.3;
}
.faq__trigger:hover > span:first-child { color: rgba(200,169,107,0.9); }
.faq__item.open .faq__trigger > span:first-child { color: var(--gold); }
.faq__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s;
}
@media (min-width: 640px) { .faq__icon { width: 28px; height: 28px; } }
@media (min-width: 768px) { .faq__icon { width: 36px; height: 36px; } }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1.2px;
  background: rgba(255,255,255,0.6);
  transform: translate(-50%, -50%);
  transition: transform 0.3s, background 0.3s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.open .faq__icon {
  background: rgba(200,169,107,0.1);
  border-color: var(--gold);
}
.faq__item.open .faq__icon::before,
.faq__item.open .faq__icon::after { background: var(--gold); }
.faq__item.open .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__item.open .faq__content { max-height: 500px; }
.faq__content p {
  padding: 0 8px 18px 0;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
  font-size: 0.85rem;
}
@media (min-width: 640px) { .faq__content p { padding: 0 36px 20px 0; font-size: 0.9rem; line-height: 1.65; } }
@media (min-width: 768px) { .faq__content p { padding: 0 48px 22px 0; font-size: 0.95rem; line-height: 1.7; } }

/* ---------- Final CTA + Form ---------- */
.section--cta {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
}
@media (min-width: 640px) { .section--cta { padding: 64px 0 72px; } }
@media (min-width: 768px) { .section--cta { padding: 88px 0 100px; } }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.cta__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg), rgba(5,5,5,0.85), var(--bg)),
    linear-gradient(90deg, rgba(21,104,176,0.2), transparent, rgba(200,169,107,0.1));
}
.cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 640px) { .cta__grid { gap: 28px; } }
@media (min-width: 1024px) { .cta__grid { grid-template-columns: 2fr 3fr; gap: 64px; } }
.cta__copy .h2 { margin-top: 12px; }
@media (min-width: 640px) { .cta__copy .h2 { margin-top: 14px; } }
.cta__benefits {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
@media (min-width: 640px) { .cta__benefits { margin-top: 28px; gap: 12px; } }
@media (min-width: 768px) { .cta__benefits { margin-top: 36px; gap: 14px; } }
.cta__benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
@media (min-width: 640px) { .cta__benefits li { gap: 12px; font-size: 0.9rem; } }
@media (min-width: 768px) { .cta__benefits li { font-size: 0.92rem; } }
.cta__benefits li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Form ---------- */
.form {
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px;
  backdrop-filter: blur(24px) saturate(160%);
}
@media (min-width: 640px) { .form { padding: 24px; border-radius: 18px; } }
@media (min-width: 768px) { .form { padding: 32px; border-radius: 20px; } }
@media (min-width: 1024px) { .form { padding: 40px; border-radius: 24px; } }
.form__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
@media (min-width: 640px) { .form__head { margin-bottom: 20px; gap: 12px; } }
@media (min-width: 768px) { .form__head { margin-bottom: 24px; gap: 16px; } }
.form__overline {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
@media (min-width: 640px) { .form__overline { font-size: 0.6rem; letter-spacing: 0.22em; margin-bottom: 5px; } }
@media (min-width: 768px) { .form__overline { font-size: 0.65rem; letter-spacing: 0.25em; margin-bottom: 6px; } }
.form__title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 640px) { .form__title { font-size: 1.25rem; } }
@media (min-width: 768px) { .form__title { font-size: 1.4rem; } }
.form__badge {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 640px) { .form__badge { display: inline-flex; font-size: 0.6rem; gap: 8px; letter-spacing: 0.18em; } }
.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .form__grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (min-width: 768px) { .form__grid { gap: 16px; } }
.form__grid label { display: flex; flex-direction: column; gap: 6px; }
.form__grid label.full { grid-column: 1 / -1; }
.form__grid label > span {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
@media (min-width: 640px) { .form__grid label > span { font-size: 0.6rem; letter-spacing: 0.16em; } }
@media (min-width: 768px) { .form__grid label > span { font-size: 0.65rem; letter-spacing: 0.18em; } }
.form__grid input,
.form__grid select,
.form__grid textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  color: #fff;
  font-family: inherit;
  font-size: 16px; /* prevents zoom on iOS */
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
@media (min-width: 640px) { .form__grid input, .form__grid select, .form__grid textarea { font-size: 0.9rem; padding: 11px 12px; border-radius: 10px; } }
@media (min-width: 768px) { .form__grid input, .form__grid select, .form__grid textarea { font-size: 0.92rem; padding: 12px 14px; border-radius: 12px; } }
.form__grid input:focus,
.form__grid select:focus,
.form__grid textarea:focus {
  outline: 0;
  border-color: rgba(200,169,107,0.6);
  background: rgba(255,255,255,0.05);
}
.form__grid input::placeholder,
.form__grid textarea::placeholder { color: rgba(255,255,255,0.3); }
.form__grid select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23a3a3a3' stroke-width='1.5'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.form__grid select option { background: var(--bg-2); color: #fff; }
.form__grid textarea { resize: vertical; min-height: 80px; }
@media (min-width: 640px) { .form__grid textarea { min-height: 88px; } }
.form button[type="submit"] { margin-top: 18px; }
@media (min-width: 640px) { .form button[type="submit"] { margin-top: 22px; } }
@media (min-width: 768px) { .form button[type="submit"] { margin-top: 28px; } }
.form__note {
  margin: 10px 0 0;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media (min-width: 640px) { .form__note { margin-top: 12px; font-size: 0.68rem; line-height: 1.5; } }
@media (min-width: 768px) { .form__note { margin-top: 14px; font-size: 0.7rem; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 36px 0 20px; margin-top: 24px; }
@media (min-width: 640px) { .footer { padding: 44px 0 24px; margin-top: 28px; } }
@media (min-width: 768px) { .footer { padding: 64px 0 32px; margin-top: 40px; } }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .footer__inner { gap: 24px; } }
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}
.footer__col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
  font-family: "Cabinet Grotesk", sans-serif;
}
@media (min-width: 640px) { .footer__col h4 { font-size: 0.7rem; letter-spacing: 0.22em; margin-bottom: 18px; } }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) { .footer__col ul { gap: 12px; } }
.footer__col li, .footer__col a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.3s; }
@media (min-width: 640px) { .footer__col li, .footer__col a { font-size: 0.92rem; } }
.footer__col a:hover { color: var(--gold); }
.footer__col--brand p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  max-width: 440px;
  line-height: 1.6;
}
@media (min-width: 640px) { .footer__col--brand p { margin: 16px 0 0; font-size: 0.92rem; line-height: 1.65; } }
.footer__tag {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
}
@media (min-width: 640px) { .footer__tag { margin-top: 18px; gap: 10px; font-size: 0.65rem; letter-spacing: 0.2em; } }
.footer__line { width: 20px; height: 1px; background: rgba(200,169,107,0.4); }
@media (min-width: 640px) { .footer__line { width: 24px; } }
.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 640px) { .footer__bottom { margin-top: 48px; padding-top: 24px; gap: 12px; } }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }
.footer__bottom p { margin: 0; color: rgba(255,255,255,0.35); font-size: 0.68rem; }
@media (min-width: 640px) { .footer__bottom p { font-size: 0.72rem; } }
.footer__crafted {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.6rem !important;
  color: rgba(255,255,255,0.3) !important;
}
@media (min-width: 640px) { .footer__crafted { letter-spacing: 0.22em; font-size: 0.65rem !important; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; top: 20px; left: 50%;
  transform: translate(-50%, -120%);
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(10,10,10,0.95);
  border: 1px solid rgba(200,169,107,0.3);
  color: #fff;
  font-size: 0.85rem;
  z-index: 100;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), opacity 0.3s;
  opacity: 0;
  max-width: 85vw;
  text-align: center;
}
@media (min-width: 640px) { .toast { top: 24px; padding: 14px 22px; border-radius: 12px; font-size: 0.9rem; max-width: 90vw; } }
.toast.is-show { transform: translate(-50%, 0); opacity: 1; }
.toast.is-error { border-color: rgba(248,113,113,0.5); }
.toast.is-success { border-color: rgba(52,211,153,0.5); }

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2,0.8,0.2,1), transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float { animation: float-y 6s ease-in-out infinite; }
.float-delay { animation: float-y 7s ease-in-out infinite; animation-delay: -2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
