/* ─────────────────────────────────────────────────────────────────────────
   preinscription.css — Le Chalet Studio · Bêta Privée
   ───────────────────────────────────────────────────────────────────────── */

/* ── Variables ── */
:root {
  --red:       #ff2d2d;
  --red-mid:   #d42020;
  --violet:    #6c4cff;
  --cyan:      #2ad4ff;
  --white:     #ffffff;
  --off-white: #e8e4de;
  --gray:      #a09898;
  --bg:        #0a0808;
  --bg-2:      #100d0d;
  --bg-card:   rgba(255 255 255 / 0.04);
  --border:    rgba(255 255 255 / 0.08);
  --shadow-pop: 0 0 0 1px rgba(255 45 45 / 0.45),
                0 8px 40px rgba(255 45 45 / 0.22),
                0 2px 8px rgba(0 0 0 / 0.5);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Aurora blobs ── */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
  mix-blend-mode: screen;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}
.aurora__blob--a {
  width: 650px; height: 650px;
  background: radial-gradient(circle, #ff2d2d 0%, transparent 70%);
  top: -200px; left: -150px;
  animation-duration: 20s;
}
.aurora__blob--b {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  top: 40%; right: -100px;
  animation-duration: 14s;
  animation-delay: -7s;
}
.aurora__blob--c {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  bottom: 10%; left: 30%;
  animation-duration: 16s;
  animation-delay: -4s;
}
@keyframes aurora-drift {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-60px) scale(1.12); }
}

/* ── Grid overlay ── */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255 255 255 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255 255 255 / 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.035;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 64px;
  background: rgba(10 8 8 / 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.header-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 3px;
}
.header-bracket { color: var(--red); }
.header-name    { color: var(--white); }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}
.site-nav a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--white); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 2px;
  font-size: 12px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--red-mid) !important; transform: translateY(-1px); }
.nav-cta__arrow { opacity: 0.7; }

/* ── Scroll-reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── Buttons ── */
.b-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.b-btn-primary:hover {
  background: var(--red-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255 45 45 / 0.35);
}
.b-btn-arrow { font-size: 18px; }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.b-hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 120px clamp(20px, 6vw, 80px) 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

/* Eyebrow */
.b-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gray);
  margin-bottom: 28px;
}
.b-eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Title */
.b-hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(68px, 9vw, 130px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.b-line { display: block; color: var(--white); }
.b-line--accent {
  background: linear-gradient(90deg, var(--red) 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.b-hero__sub {
  max-width: 520px;
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Offer pill */
.b-offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255 45 45 / 0.08);
  border: 1px solid rgba(255 45 45 / 0.28);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 13px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.b-offer-pill__label {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: rgba(255 45 45 / 0.15);
  padding: 2px 8px;
  border-radius: 20px;
}
.b-offer-pill__value { color: var(--white); font-weight: 700; }
.b-offer-pill__value small { font-size: 10px; color: var(--gray); }
.b-offer-pill__sep   { color: rgba(255 255 255 / 0.25); }
.b-offer-pill__total { color: var(--red); font-weight: 700; letter-spacing: 0.06em; }

/* Down arrow button */
.b-btn-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255 255 255 / 0.15);
  border-radius: 50%;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  animation: bounce-down 2s ease-in-out infinite;
}
.b-btn-down:hover {
  border-color: var(--red);
  background: rgba(255 45 45 / 0.1);
  transform: translateY(4px);
}
.b-btn-down__arrow { font-size: 18px; color: var(--gray); }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Console décoration */
.b-console {
  background: rgba(255 255 255 / 0.04);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255 255 255 / 0.1);
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 11px;
}
.b-console__top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(0 0 0 / 0.25);
  border-bottom: 1px solid rgba(255 255 255 / 0.06);
}
.b-console__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.b-console__dot--red    { background: #ff5f57; }
.b-console__dot--yellow { background: #ffbd2e; }
.b-console__dot--green  { background: #28c840; }
.b-console__title {
  margin-left: 6px;
  color: rgba(255 255 255 / 0.35);
  letter-spacing: 0.12em;
  font-size: 10px;
}
.b-console__body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.b-console__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.b-console__key  { color: rgba(255 255 255 / 0.4); letter-spacing: 0.08em; }
.b-console__val  { color: var(--off-white); text-align: right; }
.b-console__val--active {
  color: #28c840;
  display: flex;
  align-items: center;
  gap: 6px;
}
.b-console__val--accent { color: var(--red); }
.b-console__divider {
  height: 1px;
  background: rgba(255 255 255 / 0.07);
  margin: 4px 0;
}
.b-console__bar-wrap { margin-top: 6px; display: flex; flex-direction: column; gap: 5px; }
.b-console__bar-label { color: rgba(255 255 255 / 0.4); letter-spacing: 0.08em; }
.b-console__bar {
  height: 6px;
  background: rgba(255 255 255 / 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.b-console__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff8c42);
  border-radius: 3px;
  width: 0%;
  transition: width 2s var(--ease-out);
}
.b-console__bar-pct {
  color: var(--red);
  font-size: 10px;
  text-align: right;
}

/* Pulsing dot */
.b-pulse {
  display: inline-block;
  width: 6px; height: 6px;
  background: #28c840;
  border-radius: 50%;
  animation: pulse-ring 1.8s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(40 200 64 / 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(40 200 64 / 0); }
  100% { box-shadow: 0 0 0 0 rgba(40 200 64 / 0); }
}

/* ════════════════════════════════════════════
   STRIP
   ════════════════════════════════════════════ */
.b-strip {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255 255 255 / 0.06);
  border-bottom: 1px solid rgba(255 255 255 / 0.06);
}
.b-strip > div {
  flex: 1;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  border-right: 1px solid rgba(255 255 255 / 0.06);
  text-transform: uppercase;
}
.b-strip > div:last-child { border-right: none; }
.b-strip > div span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--red);
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════ */
.b-section {
  position: relative;
  z-index: 2;
  padding: 100px clamp(20px, 6vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
}

.b-section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.b-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 16px;
}
.b-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}
.b-section__head h2 span {
  background: linear-gradient(90deg, var(--red), #ff8c42);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.b-section__lead {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Features grid ── */
.b-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.b-feat {
  position: relative;
  padding: 36px 28px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
  --mx: 50%; --my: 50%;
}
.b-feat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255 45 45 / 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.b-feat:hover { border-color: rgba(255 45 45 / 0.25); transform: translateY(-4px); }
.b-feat:hover::before { opacity: 1; }

.b-feat__icon {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
  opacity: 0.8;
}
.b-feat h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}
.b-feat p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 20px;
}
.b-feat__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255 255 255 / 0.35);
  padding: 4px 10px;
  border: 1px solid rgba(255 255 255 / 0.12);
  border-radius: 2px;
}

/* ════════════════════════════════════════════
   FORM SECTION
   ════════════════════════════════════════════ */
.b-form-section {
  padding-top: 60px;
}
.b-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Badge exclusivité */
.b-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255 45 45 / 0.1);
  border: 1px solid rgba(255 45 45 / 0.3);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--red);
}
.b-form-badge__glyph { font-size: 14px; opacity: 0.7; }

/* Card principale */
.b-form-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: rgba(255 255 255 / 0.035);
  backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255 255 255 / 0.1);
  border-radius: 8px;
  padding: 48px 44px;
  overflow: hidden;
}
.b-form-card__glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 420px; height: 240px;
  background: radial-gradient(ellipse, rgba(255 45 45 / 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}
.b-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(255 45 45 / 0.2);
  pointer-events: none;
  box-shadow: var(--shadow-pop);
  opacity: 0;
  transition: opacity 0.4s;
}
.b-form-card:hover::before { opacity: 1; }

.b-form-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 14px;
}
.b-form-card__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 14px;
}
.b-form-card__title span {
  background: linear-gradient(90deg, var(--red), #ff8c42);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.b-form-card__sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* Offre résumé */
.b-form-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255 45 45 / 0.06);
  border: 1px solid rgba(255 45 45 / 0.2);
  border-radius: 6px;
  margin-bottom: 36px;
}
.b-form-offer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.b-form-offer__item strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.b-form-offer__item span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--gray);
}
.b-form-offer__item--total strong {
  background: linear-gradient(90deg, var(--red), #ff8c42);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 44px;
}
.b-form-offer__item--total span { color: var(--red); }
.b-form-offer__sep {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: rgba(255 255 255 / 0.2);
  margin-bottom: 12px;
}

/* Formulaire */
.b-form { display: flex; flex-direction: column; gap: 20px; }
.b-form__field { display: flex; flex-direction: column; gap: 8px; }
.b-form__field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255 255 255 / 0.55);
}
.b-form__optional { color: rgba(255 255 255 / 0.25); }
.b-form__required { color: var(--red); }
.b-form__field input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255 255 255 / 0.05);
  border: 1px solid rgba(255 255 255 / 0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.b-form__field input::placeholder { color: rgba(255 255 255 / 0.2); }
.b-form__field input:focus {
  border-color: rgba(255 45 45 / 0.5);
  background: rgba(255 45 45 / 0.05);
  box-shadow: 0 0 0 3px rgba(255 45 45 / 0.12);
}
.b-form__error {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #ff6b6b;
  min-height: 16px;
}

/* Submit */
.b-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%;
  margin-top: 4px;
}
.b-form__submit:hover {
  background: var(--red-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255 45 45 / 0.35);
}
.b-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.b-form__submit-arrow { font-size: 18px; }

.b-form__legal {
  font-size: 12px;
  color: rgba(255 255 255 / 0.3);
  text-align: center;
  line-height: 1.5;
}

/* Succès */
.b-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 20px 0;
  animation: success-pop 0.5s var(--ease-out);
}
@keyframes success-pop {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.b-form-success__icon {
  width: 56px; height: 56px;
  background: rgba(40 200 64 / 0.15);
  border: 1px solid rgba(40 200 64 / 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #28c840;
}
.b-form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
}
.b-form-success p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}
.b-form-success__recap {
  padding: 10px 20px;
  background: rgba(40 200 64 / 0.08);
  border: 1px solid rgba(40 200 64 / 0.2);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #28c840;
  letter-spacing: 0.1em;
}

/* Points de confiance */
.b-form-trust {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255 255 255 / 0.3);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  justify-content: center;
}

/* ════════════════════════════════════════════
   FINAL CTA BAND
   ════════════════════════════════════════════ */
.b-cta-band {
  position: relative;
  z-index: 2;
  padding: 80px clamp(20px, 6vw, 80px);
  margin-top: 60px;
  border-top: 1px solid rgba(255 255 255 / 0.06);
  background: rgba(255 45 45 / 0.04);
}
.b-cta-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.b-cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.b-cta-band__title span {
  background: linear-gradient(90deg, var(--red), #ff8c42);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.b-cta-band__sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.b-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 80px);
  border-top: 1px solid rgba(255 255 255 / 0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255 255 255 / 0.3);
  letter-spacing: 0.1em;
}
.b-footer a:hover { color: var(--white); }

/* ════════════════════════════════════════════
   MAGNETIC BUTTON
   ════════════════════════════════════════════ */
.magnetic { transition: transform 0.2s var(--ease-out), background 0.2s, box-shadow 0.2s; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 960px) {
  .b-hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    min-height: auto;
  }
  .b-console { display: none; }
  .b-feat-grid { grid-template-columns: 1fr; gap: 16px; }
  .b-strip > div { padding: 14px 16px; }
  .b-cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .b-form-card { padding: 32px 24px; }
  .b-form-offer { gap: 12px; }
  .b-form-offer__item--total strong { font-size: 36px; }
  .b-footer { flex-direction: column; gap: 8px; text-align: center; }
  .b-strip { flex-direction: column; }
  .b-strip > div { border-right: none; border-bottom: 1px solid rgba(255 255 255 / 0.06); }
  .b-strip > div:last-child { border-bottom: none; }
  .b-form-trust { flex-direction: column; align-items: center; gap: 8px; }
}
