/* ============================================
   FUELPOINT — DESIGN SYSTEM
   Noir profond / Blanc / Orange Performance / Gris métal
   ============================================ */

:root {
  --black: #0B0B0D;
  --black-soft: #141416;
  --surface: #1A1A1D;
  --surface-border: #2A2A2E;
  --white: #FFFFFF;
  --orange: #FF6A00;
  --orange-light: #FF8A3D;
  --gray: #B8B8B8;
  --gray-dim: #7A7A80;

  --font-display: 'Archivo', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--orange-light); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  max-width: 720px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p { color: var(--gray); line-height: 1.6; }

/* grain overlay for premium texture */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(255,106,0,0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,106,0,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-large { padding: 20px 44px; font-size: 16px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(11,11,13,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 28px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: rgba(255,255,255,0.08);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--orange); border-color: var(--orange); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(11,11,13,0.97);
  backdrop-filter: blur(16px);
  padding: 16px 32px 28px;
  gap: 18px;
}
.nav-mobile a { font-size: 16px; font-weight: 500; color: var(--white); padding: 6px 0; }
.nav-mobile-cta {
  margin-top: 8px;
  background: var(--orange);
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
}
.nav.menu-open .nav-mobile { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 160px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(255,106,0,0.16) 0%, rgba(255,106,0,0) 65%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  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: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 0 24px;
}

.hero-content .eyebrow { display: flex; justify-content: center; }

.hero-title {
  display: block;
  font-size: clamp(40px, 7.5vw, 96px);
  margin-bottom: 28px;
}
.reveal-line { display: block; overflow: hidden; }
.reveal-accent { color: var(--orange); }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 580px;
  margin: 0 auto 40px;
  color: var(--gray);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-machine-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-top: 50px;
  z-index: 1;
}
.hero-machine-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255,106,0,0.3) 0%, transparent 70%);
  filter: blur(20px);
}
.hero-machine-img {
  width: 100%;
  position: relative;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6));
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  padding-bottom: 60px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--gray-dim);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  z-index: 2;
}
.hero-scroll-cue span {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 100px;
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 20% { opacity: 1; top: 6px; }
  80%, 100% { opacity: 0; top: 18px; }
}

/* ============ PRODUCT REVEAL (sticky scroll storytelling) ============ */
.product-reveal {
  position: relative;
  background: var(--black);
  height: 400vh;
}
.product-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
.product-stage-col {
  flex: 0 0 auto;
  width: 320px;
  display: flex;
  justify-content: center;
}
.product-machine-stage {
  position: relative;
  width: 100%;
}
.product-machine-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,0.18) 0%, transparent 70%);
}
.product-machine-img {
  width: 100%;
  position: relative;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6));
  will-change: transform;
}

.product-text-col {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 460px;
}
.product-panels {
  position: relative;
  height: 180px;
}
.product-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}
.product-panel h3 { font-size: clamp(24px, 3vw, 34px); }
.product-panel p { font-size: 16px; max-width: 380px; }

/* ============ CLUB BENEFITS (remplace l'ancien catalogue) ============ */
.club-benefits {
  padding: 140px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head h2 { text-align: center; }
.club-benefits-sub {
  font-size: 16px;
  max-width: 600px;
  margin-top: 8px;
}

.club-benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.club-benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 40px;
  background: var(--black-soft);
  transition: background 0.4s ease;
}
.club-benefit-row:hover { background: rgba(255,106,0,0.05); }
.club-benefit-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  margin-top: 2px;
}
.club-benefit-icon svg { width: 100%; height: 100%; }
.club-benefit-content h3 {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 8px;
}
.club-benefit-content p {
  font-size: 15px;
  max-width: 640px;
}

/* ============ BENEFITS ============ */
.benefits {
  padding: 100px 32px 140px;
  max-width: var(--container);
  margin: 0 auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 36px 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.benefit-icon { width: 44px; height: 44px; margin-bottom: 24px; }
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-card h3 { font-size: 19px; }
.benefit-card p { font-size: 14.5px; }

/* ============ JOURNEY TIMELINE ============ */
.journey {
  padding: 140px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.journey-line {
  position: absolute;
  top: -28px;
  left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
}
.journey-line-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  transition: width 1.6s var(--ease);
}
.journey-step { position: relative; }
.journey-num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.journey-step h3 { font-size: 18px; }
.journey-step p { font-size: 14.5px; }

/* ============ TECHNOLOGY ============ */
.technology {
  position: relative;
  background: var(--black-soft);
  padding: 140px 32px;
  overflow: hidden;
}
.tech-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at top, rgba(255,106,0,0.14), transparent 70%);
  pointer-events: none;
}
.technology .section-head { position: relative; max-width: var(--container); margin: 0 auto 64px; }

.tech-showcase {
  position: relative;
  max-width: var(--container);
  margin: 0 auto 64px;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255,106,0,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
}
.tech-showcase-media {
  position: relative;
  flex: 0 0 auto;
  width: 240px;
  display: flex;
  justify-content: center;
}
.tech-showcase-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,106,0,0.25) 0%, transparent 70%);
}
.tech-showcase-media img {
  width: 100%;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}
.tech-showcase-text { flex: 1 1 auto; }
.tech-showcase-text .eyebrow { margin-bottom: 12px; }
.tech-showcase-text h3 { font-size: clamp(20px, 2.4vw, 28px); color: var(--white); margin-bottom: 14px; }
.tech-showcase-text p:not(.eyebrow) { font-size: 15.5px; max-width: 460px; }

.tech-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.tech-item {
  background: var(--black-soft);
  padding: 32px 24px;
  transition: background 0.4s ease;
}
.tech-item:hover { background: rgba(255,106,0,0.06); }
.tech-num {
  display: block;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 20px;
}
.tech-item h3 { font-size: 18px; color: var(--white); }
.tech-item p { font-size: 14.5px; }

/* ============ LAUNCH (remplace témoignages + chiffres fictifs) ============ */
.launch {
  padding: 140px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.launch-sub {
  font-size: 16px;
  max-width: 620px;
  margin-top: 8px;
}
.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.launch-card {
  padding: 40px 28px;
  background: var(--black-soft);
  text-align: center;
  transition: background 0.4s ease;
}
.launch-card:hover { background: rgba(255,106,0,0.06); }
.launch-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}
.launch-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.launch-card p {
  font-size: 14px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 24px;
}
.final-cta-machine {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  opacity: 0.35;
  filter: blur(1px) brightness(0.5);
}
.final-cta-img { width: 100%; }
.final-cta-content { position: relative; z-index: 2; }
.final-cta-content h2 {
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}
.final-cta h2 {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 600px;
}

/* ============ CONTACT ============ */
.contact {
  padding: 140px 32px 160px;
  max-width: var(--container);
  margin: 0 auto;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}
.contact-intro h2 { text-align: left; margin-bottom: 20px; }
.contact-sub { font-size: 16px; max-width: 420px; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-dim);
}
.contact-detail a {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.25s ease;
}
.contact-detail a:hover { color: var(--orange); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
.contact-honeypot { display: none; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}
.form-row label .optional { color: var(--gray-dim); font-weight: 400; }
.form-row input,
.form-row textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--white);
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: vertical;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--gray-dim); }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,106,0,0.05);
}
.form-submit {
  margin-top: 8px;
  border: none;
  cursor: pointer;
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status {
  font-size: 14px;
  min-height: 20px;
  text-align: center;
}
.form-status.success { color: #4FD17A; }
.form-status.error { color: #FF6A6A; }

/* ============ FOOTER ============ */
.footer {
  background: var(--black-soft);
  padding: 80px 32px 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--gray-dim); }
.footer-nav h4, .footer-social h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-dim);
  margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; }
.footer-nav a {
  font-size: 14.5px;
  color: var(--gray);
  margin-bottom: 12px;
  transition: color 0.25s ease;
}
.footer-nav a:hover { color: var(--white); }
.footer-social-icons { display: flex; gap: 14px; }
.footer-social-icons a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--gray);
  transition: all 0.25s ease;
}
.footer-social-icons a:hover { color: var(--white); border-color: var(--orange); background: rgba(255,106,0,0.1); }
.footer-social-icons svg { width: 16px; height: 16px; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--gray-dim); }

/* ============ REVEAL ANIMATIONS (base state, JS adds .is-visible) ============ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children inside grids */
.club-benefits-grid .club-benefit-row,
.benefits-grid .benefit-card,
.launch-grid .launch-card,
.journey-timeline .journey-step {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.club-benefits-grid .club-benefit-row.is-visible,
.benefits-grid .benefit-card.is-visible,
.launch-grid .launch-card.is-visible,
.journey-timeline .journey-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-showcase { gap: 40px; padding: 36px; }
  .tech-showcase-media { width: 180px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-intro h2, .contact-sub { text-align: left; }
  .launch-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .journey-line { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 40px; }

  .product-reveal { height: 300vh; }
  .product-sticky {
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
    justify-content: center;
  }
  .product-stage-col { width: 200px; }
  .product-text-col { max-width: 90%; text-align: center; }
  .product-panels { height: 220px; }
  .product-panel { align-items: center; }
  .product-panel p { margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { padding-top: 130px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 26px; }

  .club-benefits { padding: 90px 20px; }
  .club-benefit-row { flex-direction: column; gap: 16px; padding: 28px 24px; }
  .benefits { padding: 60px 20px 90px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .journey { padding: 90px 20px; }
  .journey-timeline { grid-template-columns: 1fr; row-gap: 36px; }
  .technology { padding: 90px 20px; }
  .tech-showcase {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 32px 24px;
  }
  .tech-showcase-media { width: 160px; }
  .tech-showcase-text p:not(.eyebrow) { margin: 0 auto; }
  .tech-grid { grid-template-columns: 1fr; }
  .launch { padding: 90px 20px; }
  .launch-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .final-cta-machine { width: 320px; }
  .contact { padding: 90px 20px 110px; }
  .contact-form { padding: 28px 22px; }
}
