/* ═══════════════════════════════════════════════════════
   CREASOFT — Design System
   Style: Partiful — white canvas, black CTAs, soft gradient
   washes, rounded shadowed cards, bold tight-tracked type
   ═══════════════════════════════════════════════════════ */

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

/* ── DESIGN TOKENS ── */
:root {
  --ink:      #000000;
  --canvas:   #ffffff;
  --graphite: #333333;
  --slate:    #666666;
  --ash:      #999999;
  --fog:      #b3b3b3;
  --silver:   #cccccc;
  --sand:     #d9c58b;

  /* Brand-tinted wash (Creasoft blue, very soft — replaces periwinkle) */
  --wash-blue: linear-gradient(180deg, rgba(41,41,204,0.07) 0%, rgba(255,255,255,0) 100%);
  --wash-cyan: linear-gradient(180deg, rgba(0,191,255,0.08) 0%, rgba(255,255,255,0) 100%);

  --brand-blue: #2929cc;
  --brand-cyan: #00bfff;

  --font-display: 'Space Grotesk', 'Cabinet Grotesk', sans-serif;
  --font-sans:    'Inter', ui-sans-serif, system-ui, sans-serif;

  --sp-4:4px; --sp-6:6px; --sp-8:8px; --sp-10:10px; --sp-12:12px;
  --sp-16:16px; --sp-20:20px; --sp-24:24px; --sp-30:30px; --sp-40:40px;
  --sp-60:60px; --sp-80:80px; --sp-100:100px; --sp-120:120px; --sp-160:160px;

  --r-md: 4px; --r-lg: 8px; --r-xl: 12px; --r-2xl: 16px; --r-full: 960px;

  --shadow-sm: rgba(0,0,0,0.10) 0px 0px 6px 0px;
  --shadow-lg: rgba(0,0,0,0.10) 0px 0px 20px 0px;
  --shadow-card: rgba(0,0,0,0.05) 0px 0.8px 2.4px -0.6px,
                 rgba(0,0,0,0.05) 0px 2.4px 7.2px -1.25px,
                 rgba(0,0,0,0.05) 0px 6.4px 19.1px -1.875px,
                 rgba(0,0,0,0.06) 0px 20px 60px -2.5px;

  --nav-h: 76px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-40); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--silver);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-40);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-24);
}

.nav-logo { display: flex; align-items: center; gap: var(--sp-8); text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 55px; width: auto; object-fit: contain; }
.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-links { display: flex; gap: var(--sp-24); list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-sans);
  font-weight: 550;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  padding: var(--sp-8) var(--sp-4);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--slate); }
.nav-links a.active { color: var(--ink); border-color: var(--sand); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-12); flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 550;
  font-size: 14px;
  letter-spacing: -0.02em;
  border-radius: var(--r-md);
  padding: var(--sp-10) var(--sp-24);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); }

.btn-filled {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--canvas);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.04em;
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-24);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-filled:hover { opacity: 0.82; }

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--silver);
  padding: var(--sp-16) var(--sp-24) var(--sp-24);
  z-index: 899;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-drawer.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: var(--font-sans);
  font-weight: 550;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  padding: var(--sp-16) 0;
  border-bottom: 1px solid #eee;
}
.nav-drawer a:last-child { border: none; }
.nav-drawer .drawer-cta { margin-top: var(--sp-12); }

/* ═══════════════════════════════════════
   PILL BADGE / TAG
═══════════════════════════════════════ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-6);
  background: rgba(0,0,0,0.05);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.02em;
  border-radius: var(--r-full);
  padding: var(--sp-6) var(--sp-12);
}
.pill.pill-new { background: var(--ink); color: var(--canvas); }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); flex-shrink: 0; }

/* ═══════════════════════════════════════
   SECTION / TYPOGRAPHY
═══════════════════════════════════════ */
.section { padding: var(--sp-100) var(--sp-40); position: relative; }
.section-wash { background: var(--wash-blue); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: var(--sp-16);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.body-copy {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--slate);
  max-width: 480px;
  text-align: left;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-60);
  align-items: center;
}

/* ═══════════════════════════════════════
   STANDARD CONTENT CARD
═══════════════════════════════════════ */
.card {
  background: var(--canvas);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-16) var(--sp-16) var(--sp-16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ═══════════════════════════════════════
   PRODUCT CARD (grid)
═══════════════════════════════════════ */
.product-card {
  background: var(--canvas);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-24);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: var(--sp-16);
  background: rgba(41,41,204,0.07);
}
.product-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-8);
}
.product-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--slate);
}
.product-arrow {
  position: absolute;
  top: var(--sp-24); right: var(--sp-24);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink);
  transition: background 0.2s;
}
.product-card:hover .product-arrow { background: var(--ink); color: var(--canvas); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-16);
}
.product-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-16); }

/* ═══════════════════════════════════════
   TILTED SHOWCASE TILES (hero decoration)
═══════════════════════════════════════ */
.tile-stack {
  position: relative;
  height: 380px;
}
.tile {
  position: absolute;
  width: 210px;
  background: var(--canvas);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  padding: var(--sp-20);
  transition: transform 0.35s ease;
}
.tile:hover { transform: translateY(-6px) rotate(0deg) !important; }
.tile-1 { top: 0; left: 10%; transform: rotate(-8deg); z-index: 1; }
.tile-2 { top: 60px; left: 42%; transform: rotate(4deg); z-index: 2; }
.tile-3 { top: 150px; left: 8%; transform: rotate(9deg); z-index: 3; }

.tile-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: var(--sp-12);
}
.tile-title { font-family: var(--font-sans); font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: var(--sp-4); }
.tile-sub { font-family: var(--font-sans); font-weight: 400; font-size: 12px; color: var(--ash); }

/* ═══════════════════════════════════════
   STAT NUMERAL BAND
═══════════════════════════════════════ */
.stat-band { display: flex; gap: var(--sp-60); flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-numeral em { font-style: normal; color: var(--brand-blue); }
.stat-caption {
  margin-top: var(--sp-12);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ═══════════════════════════════════════
   TECH PILL LIST
═══════════════════════════════════════ */
.tag-cloud { display: flex; flex-wrap: wrap; gap: var(--sp-10); }
.tag-cloud .pill { background: var(--canvas); box-shadow: var(--shadow-sm); }

/* ═══════════════════════════════════════
   MODULE / SUB-COMPONENT LIST
═══════════════════════════════════════ */
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-16); }
.module-card {
  background: var(--canvas);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-20);
}
.module-name { font-family: var(--font-sans); font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: var(--sp-6); letter-spacing: -0.02em; }
.module-desc { font-family: var(--font-sans); font-size: 13px; color: var(--slate); line-height: 1.5; margin-bottom: var(--sp-10); }
.module-caps { display: flex; flex-direction: column; gap: var(--sp-6); }
.module-cap { display: flex; align-items: flex-start; gap: var(--sp-8); font-size: 12px; color: var(--slate); line-height: 1.5; }
.module-cap::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--brand-blue); flex-shrink: 0; margin-top: 6px; }
.module-card.no-caps .module-desc { margin-bottom: 0; }

/* ═══════════════════════════════════════
   FEATURED / FLAGSHIP CARD
═══════════════════════════════════════ */
.flagship-card {
  background: var(--canvas);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-card);
  padding: var(--sp-40);
  text-decoration: none;
  color: inherit;
  display: block;
}
.flagship-inner { display: grid; grid-template-columns: 1fr auto; gap: var(--sp-40); align-items: start; }
.flagship-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -0.02em; color: var(--ink); margin-bottom: var(--sp-16); }
.flagship-desc { font-family: var(--font-sans); font-size: 15px; color: var(--slate); line-height: 1.6; max-width: 500px; margin-bottom: var(--sp-24); }
.flagship-features { display: flex; flex-direction: column; gap: var(--sp-10); }
.flagship-feature { display: flex; align-items: center; gap: var(--sp-10); font-family: var(--font-sans); font-size: 13px; font-weight: 550; color: var(--graphite); }
.flagship-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--canvas);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.flagship-icon {
  width: 96px; height: 96px;
  border-radius: var(--r-xl);
  background: rgba(41,41,204,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CATEGORY FILTER TABS
═══════════════════════════════════════ */
.cat-tabs {
  display: inline-flex;
  gap: var(--sp-4);
  background: rgba(0,0,0,0.05);
  border-radius: var(--r-full);
  padding: var(--sp-4);
  flex-wrap: wrap;
}
.cat-tab {
  font-family: var(--font-sans);
  font-weight: 550;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: var(--slate);
  background: transparent;
  border: none;
  border-radius: var(--r-full);
  padding: var(--sp-8) var(--sp-16);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-tab.active { background: var(--canvas); color: var(--ink); box-shadow: var(--shadow-sm); }

/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.contact-form-card {
  background: var(--canvas);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-card);
  padding: var(--sp-40);
}
.form-title { font-family: var(--font-sans); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: var(--sp-24); }
.form-group { margin-bottom: var(--sp-20); }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: var(--sp-8);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f7f7f8;
  border: 1px solid var(--silver);
  border-radius: var(--r-lg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: var(--sp-12) var(--sp-16);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ash); }
.form-group select { color: var(--slate); cursor: pointer; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--ink); background: var(--canvas);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--canvas); color: var(--ink); }

.btn-submit {
  width: 100%;
  background: var(--ink);
  color: var(--canvas);
  border: none;
  border-radius: var(--r-lg);
  padding: var(--sp-16);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.85; }

/* ═══════════════════════════════════════
   CONTACT INFO LIST
═══════════════════════════════════════ */
.info-row {
  display: flex;
  gap: var(--sp-16);
  padding: var(--sp-20) 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}
.info-row:first-child { border-top: 1px solid #eee; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-lg);
  background: rgba(0,0,0,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.info-label { font-family: var(--font-sans); font-weight: 700; font-size: 11px; letter-spacing: -0.02em; text-transform: uppercase; color: var(--ash); margin-bottom: var(--sp-4); }
.info-val { font-family: var(--font-sans); font-size: 14px; color: var(--ink); line-height: 1.5; }
.info-val a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--silver); }
.info-val a:hover { text-decoration-color: var(--ink); }

.next-steps { margin-top: var(--sp-40); }
.next-step {
  display: flex; gap: var(--sp-16); align-items: baseline;
  margin-bottom: var(--sp-16);
  font-family: var(--font-sans); font-size: 14px; color: var(--slate); line-height: 1.55;
}
.step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--canvas);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: var(--wash-blue);
  border-radius: var(--r-2xl);
  padding: var(--sp-60) var(--sp-40);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-24);
  flex-wrap: wrap;
}
.cta-banner h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.02em; color: var(--ink); margin-bottom: var(--sp-10); }
.cta-banner p { font-family: var(--font-sans); font-size: 14px; color: var(--slate); max-width: 420px; line-height: 1.55; }
.cta-actions { display: flex; gap: var(--sp-12); flex-shrink: 0; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--canvas); border-top: 1px solid var(--silver); padding: var(--sp-60) var(--sp-40) var(--sp-24); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-40); padding-bottom: var(--sp-40); }
.footer-logo { height: 26px; width: auto; margin-bottom: var(--sp-12); }
.footer-brand p { font-family: var(--font-sans); font-size: 14px; color: var(--slate); line-height: 1.6; max-width: 260px; }
.footer-tagline { margin-top: var(--sp-12); font-family: var(--font-sans); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); }
.footer-col h4 { font-family: var(--font-sans); font-weight: 700; font-size: 11px; letter-spacing: -0.02em; text-transform: uppercase; color: var(--fog); margin-bottom: var(--sp-16); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--sp-12); }
.footer-col a { font-family: var(--font-sans); font-size: 14px; color: var(--graphite); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--sp-24); border-top: 1px solid var(--silver); flex-wrap: wrap; gap: var(--sp-12); }
.footer-bottom p { font-family: var(--font-sans); font-size: 12px; color: var(--fog); }

/* ═══════════════════════════════════════
   FADE-UP + TOAST
═══════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--ink); color: var(--canvas);
  padding: var(--sp-12) var(--sp-24);
  border-radius: var(--r-full);
  font-family: var(--font-sans); font-weight: 550; font-size: 13px;
  z-index: 9000; opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1080px
═══════════════════════════════════════ */
@media (max-width: 1080px) {
  .nav-inner { padding: 0 var(--sp-24); }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .container { padding: 0 var(--sp-24); }
  .section { padding: var(--sp-80) var(--sp-24); }
  .two-col { grid-template-columns: 1fr; gap: var(--sp-40); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .product-grid-2 { grid-template-columns: 1fr; }
  .flagship-inner { grid-template-columns: 1fr; gap: var(--sp-24); }
  .flagship-icon { width: 72px; height: 72px; font-size: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-32); }
  .tile-stack { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 640px
═══════════════════════════════════════ */
@media (max-width: 640px) {
  .nav-inner { padding: 0 var(--sp-16); }
  .nav-logo span { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .container { padding: 0 var(--sp-16); }
  .section { padding: var(--sp-60) var(--sp-16); }
  .product-grid, .module-grid { grid-template-columns: 1fr; }
  .stat-band { gap: var(--sp-32); }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-24); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: var(--sp-32) var(--sp-24); }
  .cta-actions { width: 100%; }
  .cta-actions .btn-filled, .cta-actions .btn-ghost { flex: 1; justify-content: center; }
  .contact-form-card { padding: var(--sp-24); }
  .flagship-card { padding: var(--sp-24); }
  .info-row { flex-direction: row; }
}
