/* ===================== TOKENS ===================== */
:root {
  --ink: #1e1633;
  --ink-2: #3a3350;
  --muted: #5b5470;
  --muted-2: #8b84a0;
  --purple: #5b21b6;
  --purple-deep: #4c1d95;
  --purple-600: #6d28d9;
  --purple-700: #7c3aed;
  --violet: #a78bfa;
  --violet-2: #c4b5fd;
  --yellow: #facc15;
  --dark: #160a2c;
  --dark-2: #120822;
  --border: #ece6f8;
  --border-2: #e7e1f5;
  --chip: #ede9fe;
  --lilac: #f5f3ff;
  --lilac-2: #faf8ff;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --nav-h: 72px;
  --maxw: 1240px;
  --pad: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.nowrap { white-space: nowrap; }

@keyframes obFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ===================== ROUTES ===================== */
.route { display: none; }
.route.is-active { display: block; animation: obFade .4s ease both; }

/* ===================== TYPOGRAPHY ===================== */
.h2 { font-family: var(--font-display); font-size: clamp(28px, 4.6vw, 40px); line-height: 1.08; letter-spacing: -0.025em; font-weight: 700; margin: 0 0 24px; color: var(--ink); }
.h2--light { color: #fff; margin-bottom: 22px; }
.h3 { font-family: var(--font-display); font-size: clamp(25px, 4vw, 34px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 700; margin: 0 0 28px; color: var(--ink); }
.h4 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin: 0 0 20px; color: var(--ink); }
.body-lg { font-size: 17px; line-height: 1.62; color: var(--muted); margin: 0 0 18px; }
.body-lg--light { color: #d6cfe8; margin-bottom: 30px; }
.muted { font-size: 16px; line-height: 1.55; color: var(--muted); }
.prose p { font-size: 18px; line-height: 1.62; color: var(--ink-2); margin: 0 0 18px; }
.footnote { font-size: 13px; color: var(--muted-2); margin: 16px 0 0; }

.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.eyebrow--yellow { color: var(--yellow); }
.eyebrow--purple { color: var(--purple-600); }

.link-purple { display: inline-flex; align-items: center; gap: 8px; font-size: 15.5px; font-weight: 600; color: var(--purple); }
.link-yellow { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--yellow); }
.link-purple:hover, .link-yellow:hover { opacity: .82; }

/* ===================== NAV ===================== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(20,11,38,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav__inner { position: relative; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; }

.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo__row { display: flex; align-items: center; gap: 11px; }
.logo__word { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: 0.01em; color: #fff; }
.logo__wave { display: block; flex-shrink: 0; }
.logo__sub { display: block; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: 0.135em; color: #fff; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a[data-nav] { font-size: 14px; font-weight: 500; color: #cfc7e0; transition: color .15s; }
.nav__links a[data-nav]:hover { color: #fff; }
.nav__links a[data-nav].is-active { color: var(--yellow); }
.pill-contact { display: inline-flex; align-items: center; padding: 9px 20px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-weight: 600; font-size: 14px; transition: background .15s; }
.pill-contact:hover { background: #fcd535; }

.nav__toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer; padding: 0; }
.nav__bars { display: inline-flex; flex-direction: column; gap: 5px; }
.nav__bars span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav__toggle[aria-expanded="true"] .nav__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15.5px; border-radius: 12px; padding: 16px 28px; transition: transform .12s, background .15s, border-color .15s; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { background: #fcd535; transform: translateY(-1px); }
.btn--outline { border: 1px solid rgba(255,255,255,0.28); color: #fff; font-weight: 600; }
.btn--outline:hover { border-color: rgba(255,255,255,0.6); }

/* ===================== HERO ===================== */
.hero { position: relative; background: var(--dark); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 61%; opacity: 0.72; }
.hero__overlay-solid { position: absolute; inset: 0; background: var(--dark); opacity: 0.42; }
.hero__overlay-grad { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(22,10,44,0.92) 0%, rgba(22,10,44,0.66) 46%, rgba(22,10,44,0.28) 100%); }
.hero__inner { position: relative; padding: 132px var(--pad) 64px; }
.hero__title { font-family: var(--font-display); font-size: clamp(36px, 7.6vw, 76px); line-height: 0.98; letter-spacing: -0.035em; font-weight: 700; margin: 0 0 28px; color: #fff; max-width: 960px; }
.hero__title .accent { color: var(--yellow); }
.hero__sub { font-size: clamp(16px, 2.4vw, 19px); line-height: 1.55; color: #d6cfe8; margin: 0 0 40px; max-width: 620px; }
.hero__cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__stats-wrap { position: relative; }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.14); }
.stat { padding: 26px 28px 30px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.stat__num--yellow { color: var(--yellow); }
.stat__label { font-size: 13px; color: #a99fc4; margin-top: 4px; }

/* ===================== WELCOME ===================== */
.welcome { padding: 104px var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.welcome__media { position: relative; }
.welcome__frame { position: relative; width: 100%; height: 480px; border-radius: 20px; overflow: hidden; }
.welcome__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.welcome__grad-1 { position: absolute; inset: 0; background: linear-gradient(155deg, rgba(91,33,182,0.46) 0%, rgba(22,10,44,0.18) 42%, rgba(22,10,44,0.72) 100%); mix-blend-mode: multiply; }
.welcome__grad-2 { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22,10,44,0.55) 0%, rgba(22,10,44,0) 38%); }
.welcome__chip { position: absolute; left: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px; border-radius: 999px; background: rgba(20,11,38,0.82); backdrop-filter: blur(6px); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); font-weight: 500; }

/* ===================== STRENGTHS BAND ===================== */
.band-lilac { background: var(--lilac); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band-lilac__inner { padding: 96px var(--pad); }
.band-head { max-width: 640px; margin-bottom: 56px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.feature-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--chip); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.feature-card__title { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin: 0 0 10px; color: var(--ink); }
.feature-card__body { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }
.band-foot { margin-top: 40px; }

/* ===================== ENVIRONMENT BAND ===================== */
.band-dark { background: var(--dark); position: relative; overflow: hidden; }
.band-dark__glow { position: absolute; right: -80px; top: -60px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.4), transparent 70%); }
.band-env { padding: 96px var(--pad); position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.iso-stack { display: flex; flex-direction: column; gap: 16px; }
.iso-card { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px 22px; }
.iso-card__code { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--yellow); }
.iso-card__label { font-size: 14px; color: var(--violet-2); }

/* ===================== PAGE HERO ===================== */
.page-hero { background: var(--dark); padding: 96px var(--pad) 84px; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(32px, 6.2vw, 58px); line-height: 1.0; letter-spacing: -0.03em; font-weight: 700; margin: 0; color: #fff; max-width: 880px; }
.page-hero__sub { font-size: clamp(16px, 2.3vw, 18px); line-height: 1.55; color: #d6cfe8; margin: 0; max-width: 600px; }

/* ===================== ABOUT ===================== */
.about-body { padding: 56px var(--pad) 96px; display: grid; grid-template-columns: 248px 1fr; gap: 56px; align-items: start; }
.about-nav { position: sticky; top: 104px; }
.about-nav__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); padding: 0 16px 12px; }
.about-nav__list { display: flex; flex-direction: column; gap: 4px; }
.about-tab { display: block; width: 100%; text-align: left; -webkit-appearance: none; appearance: none; background: transparent; border: 0; border-left: 3px solid transparent; color: var(--muted); font-family: var(--font-body); font-size: 15px; font-weight: 600; padding: 12px 16px; margin: 0; cursor: pointer; border-radius: 0 8px 8px 0; transition: background .15s, color .15s, border-color .15s; }
.about-tab:hover { background: #faf7ff; color: var(--purple); }
.about-tab.is-active { background: var(--lilac); color: var(--purple); border-left-color: var(--purple); }
.about-content { min-width: 0; }
.about-panel { display: none; }
.about-panel.is-active { display: block; animation: obFade .35s ease both; }
.prose { max-width: 740px; }

.numbered { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--border-2); max-width: 740px; }
.numbered__row { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border-2); }
.numbered__n { font-family: var(--font-mono); font-size: 13px; color: var(--violet); padding-top: 2px; }
.numbered__t { font-size: 16.5px; color: var(--ink); font-weight: 500; }

.checklist { max-width: 760px; }
.checklist__row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.checklist__row span { font-size: 16.5px; line-height: 1.5; color: var(--ink); }
.check { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

.tagpills { display: flex; gap: 12px; flex-wrap: wrap; }
.tagpill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: var(--lilac); border: 1px solid var(--border-2); font-size: 14px; font-weight: 600; color: var(--purple); }

/* ===================== TIMELINE ===================== */
.timeline { padding-top: 8px; }
.tl-year { display: grid; grid-template-columns: 96px 1fr; gap: 28px; align-items: start; }
.tl-year__y { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--purple); letter-spacing: -0.02em; position: sticky; top: 104px; }
.tl-year__rail { border-left: 2px solid var(--border); padding: 0 0 44px 32px; margin-left: 6px; display: flex; flex-direction: column; gap: 14px; }
.tl-year__rail--last { padding-bottom: 8px; }
.tl-item { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px; }
.tl-dot { position: absolute; left: -40px; top: 24px; width: 11px; height: 11px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px #fff; }
.tl-dot--purple { background: var(--purple); }
.tl-date { display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--purple-700); margin-bottom: 7px; }
.tl-text { font-size: 16.5px; line-height: 1.5; color: var(--ink); font-weight: 500; }
.tl-text strong { font-weight: 700; }

/* ===================== FLEET ===================== */
.fleet-specs { padding: 88px var(--pad) 0; }
.section-head { margin-bottom: 36px; }
.spec-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 16px; }
.spec-tile { background: var(--dark); border-radius: 16px; padding: 24px 26px; }
.spec-tile__num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #fff; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.spec-tile__num span { font-size: 18px; color: var(--violet-2); }
.spec-tile__num--yellow { color: var(--yellow); }
.spec-tile__label { font-size: 13px; color: #a99fc4; margin-top: 4px; }

.spec-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.spec-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px 28px; }
.spec-card--full { grid-column: 1 / -1; background: var(--lilac-2); }
.spec-card__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-600); margin-bottom: 12px; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.spec-row span:first-child { font-size: 14.5px; color: var(--muted); }
.spec-val { font-size: 14.5px; color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.spec-row--last { border-bottom: 0; }
.spec-block { padding: 14px 0 0; }
.spec-block--border { padding: 0 0 14px; border-bottom: 1px solid var(--border); }
.spec-block__k { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.spec-block__v { font-size: 15px; color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.spec-class { font-size: 15px; line-height: 1.6; color: var(--ink); font-weight: 500; }

/* Two-design spec lists */
.designs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; }
.design-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px; display: flex; flex-direction: column; }
.design-card__title { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.design-card__hulls { font-family: var(--font-mono); font-size: 11.5px; color: var(--purple-600); letter-spacing: 0.03em; }
.design-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 4px; }
.design-figs .spec-tile { padding: 18px 20px; }
.design-figs .spec-tile__num { font-size: 27px; }
.spec-group { margin-top: 22px; }
.design-dl { display: flex; align-items: center; gap: 10px; margin-top: auto; padding: 14px 18px; border-radius: 12px; background: var(--purple); color: #fff; font-weight: 600; font-size: 15px; transition: background .15s, transform .12s; }
.spec-group:last-of-type { margin-bottom: 26px; }
.design-dl:hover { background: var(--purple-deep); transform: translateY(-1px); }
.design-dl__meta { margin-left: auto; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; opacity: 0.78; }

.fleet-pockets { padding: 88px var(--pad) 0; }
.pockets-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.pockets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pocket-card { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--border-2); border-radius: 16px; padding: 24px 26px; box-shadow: 0 14px 40px -32px rgba(46,16,101,0.5); transition: border-color .15s, box-shadow .15s, transform .12s; }
.pocket-card:hover { border-color: var(--purple); box-shadow: 0 18px 44px -28px rgba(46,16,101,0.6); transform: translateY(-2px); }
.pocket-card__icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; background: var(--chip); display: flex; align-items: center; justify-content: center; }
.pocket-card__body { flex: 1; min-width: 0; }
.pocket-card__title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ink); }
.pocket-card__meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--purple-600); margin-top: 5px; letter-spacing: 0.03em; }
.pocket-card__type { font-size: 12.5px; color: var(--muted-2); margin-top: 8px; }
.pocket-card__btn { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 10px; background: var(--purple); color: #fff; font-weight: 600; font-size: 14px; }

.fleet-list { padding: 80px var(--pad) 96px; }
.table-wrap { border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fleet-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; min-width: 720px; }
.fleet-table thead tr { background: #2a1656; }
.fleet-table th { text-align: left; padding: 16px 20px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet-2); font-weight: 500; }
.fleet-table tbody tr { background: #fff; border-bottom: 1px solid var(--border); }
.fleet-table tbody tr.t-alt { background: var(--lilac-2); }
.fleet-table tbody tr:last-child { border-bottom: 0; }
.fleet-table td { padding: 18px 20px; font-size: 15px; color: var(--ink-2); }
.t-mute { color: var(--muted-2) !important; }
.t-strong { color: var(--ink) !important; font-size: 15.5px !important; font-weight: 600; }
.t-pill { display: inline-flex; padding: 5px 12px; border-radius: 999px; background: var(--chip); color: var(--purple-600); font-size: 12.5px; font-weight: 600; }

/* ===================== CONTACT ===================== */
.contact-grid { padding: 88px var(--pad); display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-addr { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-addr svg { flex-shrink: 0; margin-top: 2px; }
.contact-addr p { font-size: 16.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.contact-map-wrap { border-top: 1px solid var(--border-2); padding-top: 24px; }
.contact-map { position: relative; display: block; border-radius: 14px; overflow: hidden; border: 1px solid var(--border-2); line-height: 0; }
.contact-map img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform .35s ease; }
.contact-map:hover img { transform: scale(1.03); }
.contact-map .map-pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); line-height: 0; filter: drop-shadow(0 2px 4px rgba(20,11,38,0.4)); pointer-events: none; }
.contact-map .map-cta { position: absolute; right: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 8px; background: rgba(20,11,38,0.86); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); color: #fff; font-size: 12.5px; font-weight: 600; font-family: var(--font-mono); letter-spacing: 0.02em; line-height: 1; }
.contact-map:hover .map-cta { background: var(--purple); }
.contact-formcard { background: var(--lilac-2); border: 1px solid var(--border); border-radius: 18px; padding: 40px; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.form-2 .field { margin-bottom: 0; }
.field label { display: block; font-size: 13px; font-weight: 600; color: #4a4360; margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid #d6cce8; border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--ink); background: #fff; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--violet); outline-offset: 1px; border-color: var(--purple); }
.field textarea { resize: vertical; }
.btn-send { width: 100%; padding: 15px; border: 0; border-radius: 11px; background: var(--purple); color: #fff; font-weight: 600; font-size: 15.5px; cursor: pointer; font-family: inherit; transition: background .15s; margin-top: 8px; }
.btn-send:hover { background: var(--purple-deep); }
.thanks { text-align: center; padding: 48px 0; }
.thanks__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--chip); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.thanks__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.thanks__body { font-size: 15.5px; color: var(--muted); margin: 0; }

/* ===================== FOOTER ===================== */
.footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.07); }
.footer__inner { padding: 64px var(--pad) 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.logo--footer { margin-bottom: 18px; }
.logo--footer .logo__word, .logo--footer .logo__sub { font-size: 22px; }
.footer__tag { font-size: 14.5px; line-height: 1.6; color: #a99fc4; margin: 0; max-width: 320px; }
.footer__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #6f6593; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14.5px; color: #d6cfe8; }
.footer__links a:hover { color: #fff; }
.footer__addr { font-size: 14.5px; line-height: 1.6; color: #a99fc4; margin: 0 0 18px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; }
.footer__bottom span { font-size: 13px; color: #6f6593; }
.footer__iso { font-family: var(--font-mono); letter-spacing: 0.04em; font-size: 12.5px !important; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .band-env { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-body { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .about-nav { position: static; top: auto; min-width: 0; }
  .about-nav__label { padding-left: 0; }
  .about-nav__list { flex-direction: row; flex-wrap: nowrap; gap: 8px; overflow-x: auto; padding-bottom: 8px; min-width: 0; -webkit-overflow-scrolling: touch; }
  .about-tab { width: auto; white-space: nowrap; border-left: 0; border-bottom: 3px solid transparent; border-radius: 8px; background: var(--lilac-2); }
  .about-tab.is-active { border-left: 0; border-bottom-color: var(--purple); }
}

@media (max-width: 860px) {
  :root { --pad: 22px; }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; top: calc(var(--nav-h) + 1px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(20,11,38,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0 14px; box-shadow: 0 24px 40px -24px rgba(0,0,0,0.7);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s, transform .18s;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a[data-nav] { padding: 14px 22px; font-size: 16px; }
  .nav__links a[data-nav]:hover { background: rgba(255,255,255,0.05); }
  .pill-contact { margin: 10px 22px 0; justify-content: center; padding: 13px 20px; }
  .hero__inner { padding: 92px var(--pad) 52px; }
  .welcome { grid-template-columns: 1fr; gap: 36px; padding: 72px var(--pad); }
  .welcome__frame { height: 360px; }
  .cards-3 { grid-template-columns: 1fr; gap: 16px; }
  .cards-2 { grid-template-columns: 1fr; }
  .spec-cards { grid-template-columns: 1fr; }
  .designs { grid-template-columns: 1fr; }
  .pockets-grid { grid-template-columns: 1fr; }
  .band-lilac__inner { padding: 72px var(--pad); }
  .band-env { padding: 72px var(--pad); }
  .section-pad { padding: 64px var(--pad); }
  .fleet-specs, .fleet-pockets { padding-top: 64px; }
  .fleet-list { padding: 64px var(--pad) 80px; }
  .page-hero { padding: 80px var(--pad) 64px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
}

@media (max-width: 620px) {
  :root { --pad: 18px; }
  .hero__inner { padding: 76px var(--pad) 44px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 18px 22px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .spec-tiles { grid-template-columns: repeat(2, 1fr); }
  .pocket-card { flex-wrap: wrap; gap: 14px; }
  .pocket-card__btn { width: 100%; justify-content: center; }
  .pockets-head { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .contact-formcard { padding: 28px 24px; }
}

@media (max-width: 420px) {
  .form-2 { grid-template-columns: 1fr; gap: 0; }
  .form-2 .field { margin-bottom: 16px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .route.is-active, .about-panel.is-active { animation: none; }
  .btn, .pocket-card { transition: none; }
}
