/* ==========================================================================
   Attraxis — immersive rooms & interactive attractions
   A Playdia Interactive sub-brand. Same palette and type system as the
   Playdia family, run on a dark ground: the product is a dark room with
   light in it, so the site should feel like one.
   ========================================================================== */

/* ------------------------------------------------------------------ tokens */
:root {
  --ink:        #16162B;
  --ink-deep:   #0B0B16;
  --ink-raise:  #1E1E38;
  --magenta:    #FF3D82;
  --cyan:       #29E6C9;
  --gold:       #FFC53D;
  --cloud:      #FAF7FF;

  --text:       #EDEAF6;
  --text-dim:   #B6B2D0;
  /* Was #7E7A9B, which landed at 4.79:1 on the ink ground — under AA for the
     10px utility type it's used on, and the main reason the page read murky. */
  --text-faint: #A8A4C6;

  --line:       rgba(255, 255, 255, 0.10);
  --line-soft:  rgba(255, 255, 255, 0.06);
  --surface:    rgba(255, 255, 255, 0.035);
  --surface-2:  rgba(255, 255, 255, 0.055);

  --display: 'Baloo 2', system-ui, sans-serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;
  --mono:    'Space Mono', ui-monospace, monospace;

  --wrap: 1200px;
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px -24px rgba(0, 0, 0, 0.75);
  --ease:      cubic-bezier(0.22, 0.68, 0.32, 1);
}

/* -------------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ink-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* A single fixed wash of colour behind everything, so scrolling feels like
   moving through one lit space rather than past a stack of panels. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 700px at 12% -8%, rgba(255, 61, 130, 0.16), transparent 62%),
    radial-gradient(900px 640px at 92% 6%, rgba(41, 230, 201, 0.13), transparent 60%),
    radial-gradient(1000px 800px at 50% 108%, rgba(107, 76, 255, 0.14), transparent 66%),
    var(--ink-deep);
}

img { max-width: 100%; display: block; }

a { color: var(--cyan); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--magenta); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  color: #fff;
}

p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.muted { color: var(--text-faint); }

.ico { flex: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--magenta); color: #fff; padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------------- logo */
.logo-lockup { display: inline-flex; align-items: center; gap: .62rem; color: var(--text); }
.portal-mark { flex: none; }
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--display); font-weight: 800; font-size: 1.34rem;
  letter-spacing: -0.02em; color: #fff;
}
.logo-dot { color: var(--gold); }
/* Endorsement lockup. The parent brand is set in Playdia's own display face at
   near-white so it reads as a wordmark rather than a caption — at the previous
   10px/faint-mono it disappeared into the dark ground. "by" stays small and
   quiet so Attraxis still leads. */
.logo-sub {
  display: inline-flex; align-items: baseline; gap: .32rem;
  font-family: var(--mono); font-size: .58rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-faint); margin-top: .3rem;
}
.logo-sub b {
  font-family: var(--display); font-weight: 800; font-size: .9rem;
  letter-spacing: -0.01em; text-transform: none; color: var(--cloud);
}

/* ----------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 22, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(11, 11, 22, 0.9);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1rem; }
.brand { display: inline-flex; }

.primary-nav { display: flex; align-items: center; gap: 1.9rem; }
.primary-nav > a {
  color: var(--text-dim); font-weight: 500; font-size: .95rem;
  position: relative; padding: .25rem 0;
}
.primary-nav > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--magenta); transition: width .22s var(--ease); border-radius: 2px;
}
.primary-nav > a:not(.btn):hover { color: #fff; }
.primary-nav > a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: none; border: 1px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: var(--text);
  border-radius: 2px; transition: transform .22s var(--ease), opacity .22s var(--ease);
}

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--body); font-weight: 600; font-size: .95rem;
  padding: .74rem 1.3rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn-lg { padding: .92rem 1.7rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--magenta); color: #fff;
  box-shadow: 0 12px 30px -12px rgba(255, 61, 130, 0.85);
}
.btn-primary:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 18px 38px -12px rgba(255, 61, 130, 0.95);
}

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { color: #fff; border-color: var(--cyan); background: var(--surface); transform: translateY(-2px); }

.btn-call { background: var(--surface-2); color: var(--text); border-color: var(--line); }
.btn-call:hover { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }

/* --------------------------------------------------------------- sections */
.section { padding: 96px 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--cyan); margin: 0 0 1rem;
}
.eyebrow .ico { color: var(--cyan); }

.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-lede { color: var(--text-dim); font-size: 1.06rem; margin: 0; }

.grad-text {
  background: linear-gradient(96deg, var(--magenta) 8%, #A25CFF 48%, var(--cyan) 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.fineprint { margin-top: 2rem; font-size: .85rem; color: var(--text-faint); }

/* ------------------------------------------------------------------- hero */
.hero { position: relative; padding: 72px 0 92px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -240px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 700px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 61, 130, 0.22), transparent 72%);
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 3.4rem; align-items: center;
}
.hero-title { font-size: clamp(2.5rem, 6vw, 4.15rem); margin-bottom: 1.1rem; }
.hero-sub { color: var(--text-dim); font-size: 1.1rem; max-width: 56ch; margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.6rem; }

.hero-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  padding-top: 1.7rem; border-top: 1px solid var(--line);
}
.hero-trust div { display: flex; flex-direction: column; gap: .2rem; }
.hero-trust strong { font-family: var(--display); font-size: 1.06rem; color: #fff; font-weight: 700; }
.hero-trust span { font-size: .84rem; color: var(--text-faint); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(11, 11, 22, 0.55), transparent 45%);
}

.hero-badge {
  position: absolute; left: -18px; bottom: 34px; z-index: 2;
  background: rgba(22, 22, 43, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: .8rem 1.1rem;
  display: flex; flex-direction: column; gap: .1rem;
  box-shadow: var(--shadow);
}
.hero-badge-num { font-family: var(--display); font-weight: 800; font-size: 1.12rem; color: #fff; }
.hero-badge-label { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }

/* --------------------------------------------------------------- flagship */
.flagship { padding-top: 40px; }
.flagship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: center; }
.flagship-copy h2 { font-size: clamp(2.1rem, 4.6vw, 3rem); margin-bottom: .35rem; }
.flagship-tagline {
  font-family: var(--display); font-weight: 600; font-size: 1.15rem;
  color: var(--cyan); margin-bottom: 1.1rem;
}
.flagship-blurb { color: var(--text-dim); margin-bottom: 1.8rem; }

.spec-table {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 1.9rem;
  background: var(--surface);
}
.spec-table div {
  display: flex; flex-direction: column; gap: .18rem;
  padding: .85rem 1.05rem;
  border-bottom: 1px solid var(--line-soft);
}
.spec-table div:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.spec-table div:nth-last-child(-n+2) { border-bottom: none; }
.spec-table span {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-faint);
}
.spec-table b { font-size: .93rem; font-weight: 600; color: var(--text); }

.flagship-media { display: grid; gap: 1rem; }
.flagship-media figure {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.flagship-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 7; }

/* ------------------------------------------------------------------ rooms */
.category-head {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-size: 1.28rem; font-weight: 700;
  color: #fff; margin: 3.2rem 0 1.4rem;
  padding-bottom: .7rem; border-bottom: 1px solid var(--line);
}
.category-head .ico { color: var(--magenta); }
.category-head:first-of-type { margin-top: 0; }

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.room-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.room-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 230, 201, 0.42);
  box-shadow: var(--shadow);
}

.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.room-card:hover .card-media img { transform: scale(1.045); }
.card-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(11, 11, 22, 0.6), transparent 55%);
}
/* When a room has footage, the media slot holds a <video> instead of a still.
   The scrim is dropped so it can't sit over the native controls. */
.card-media video, .figure-video video {
  width: 100%; height: 100%; object-fit: cover; background: #000; display: block;
}
.card-media-video::after { content: none; }
.figure-video { aspect-ratio: 16 / 7; }

.card-code {
  position: absolute; top: .7rem; right: .7rem; z-index: 2; pointer-events: none;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .1em;
  color: var(--text-dim);
  background: rgba(11, 11, 22, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px; padding: .22rem .6rem;
}

.card-body { display: flex; flex-direction: column; flex: 1; padding: 1.3rem 1.35rem 1.45rem; }
.card-body h4 { font-size: 1.32rem; margin-bottom: .3rem; }
.card-tagline { color: var(--cyan); font-size: .92rem; font-weight: 500; margin-bottom: .7rem; }
.card-desc { color: var(--text-dim); font-size: .92rem; margin-bottom: 1.1rem; }

.spec-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.spec-chip {
  display: inline-flex; align-items: baseline; gap: .34rem;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-faint);
  background: var(--surface-2); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: .3rem .66rem;
}
.spec-chip b { font-family: var(--body); font-size: .76rem; letter-spacing: 0; text-transform: none; color: var(--text); font-weight: 600; }

.card-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .92rem; color: var(--magenta);
}
.card-link:hover { color: var(--cyan); }
.card-link .ico { transition: transform .18s var(--ease); }
.card-link:hover .ico { transform: translateX(3px); }

/* ---------------------------------------------------------------- systems */
.systems-section { background: rgba(22, 22, 43, 0.5); border-block: 1px solid var(--line); }

.systems-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem;
}
.system {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.4rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.system:hover { border-color: rgba(255, 61, 130, 0.4); transform: translateY(-3px); }
.system-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: .9rem;
  background: linear-gradient(140deg, rgba(255, 61, 130, 0.2), rgba(41, 230, 201, 0.16));
  border: 1px solid var(--line); color: var(--cyan);
}
.system h4 { font-size: 1.16rem; margin-bottom: .45rem; }
.system p { color: var(--text-dim); font-size: .9rem; margin: 0; }

.howto { margin-top: 3.6rem; padding-top: 2.6rem; border-top: 1px solid var(--line); }
.howto h3 { font-size: 1.5rem; margin-bottom: 1.6rem; }
.howto-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.3rem;
}
.howto-steps li { position: relative; padding-top: .3rem; }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; margin-bottom: .7rem;
  font-family: var(--display); font-weight: 800; font-size: .95rem;
  color: var(--ink); background: var(--cyan);
}
.howto-steps b { display: block; font-family: var(--display); font-size: 1.02rem; color: #fff; margin-bottom: .25rem; }
.howto-steps p { color: var(--text-dim); font-size: .87rem; margin: 0; }

/* ------------------------------------------------------------------ build */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem;
}
.value {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.45rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.value:hover { border-color: rgba(41, 230, 201, 0.42); transform: translateY(-3px); }
.value-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 1rem;
  background: linear-gradient(140deg, rgba(41, 230, 201, 0.18), rgba(107, 76, 255, 0.2));
  border: 1px solid var(--line); color: var(--cyan);
}
.value h4 { font-size: 1.2rem; margin-bottom: .45rem; }
.value p { color: var(--text-dim); font-size: .92rem; margin: 0; }

.fits { margin-top: 3.4rem; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.fits h3 { font-size: 1.35rem; margin-bottom: 1.2rem; }
.fits-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.fits-list li {
  font-size: .88rem; color: var(--text-dim);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; padding: .45rem 1rem;
}

/* -------------------------------------------------------------------- CTA */
.cta-band { position: relative; padding: 88px 0; overflow: hidden; border-top: 1px solid var(--line); }
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 380px at 18% 50%, rgba(255, 61, 130, 0.2), transparent 68%),
    radial-gradient(620px 340px at 84% 44%, rgba(41, 230, 201, 0.17), transparent 66%);
}
.cta-inner {
  position: relative; display: grid; grid-template-columns: 1.5fr auto;
  gap: 2.6rem; align-items: center;
}
.cta-inner h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); }
.cta-sub { color: var(--text-dim); max-width: 60ch; margin: 0; }
.cta-bulbs { display: flex; gap: .45rem; margin-bottom: 1.1rem; }
.cta-bulbs span {
  width: 10px; height: 10px; border-radius: 50%; background: var(--magenta);
  animation: bulb 1.9s var(--ease) infinite;
}
.cta-bulbs span:nth-child(2) { background: var(--cyan);    animation-delay: .18s; }
.cta-bulbs span:nth-child(3) { background: var(--gold);    animation-delay: .36s; }
.cta-bulbs span:nth-child(4) { background: var(--cyan);    animation-delay: .54s; }
.cta-bulbs span:nth-child(5) { background: var(--magenta); animation-delay: .72s; }
@keyframes bulb { 0%, 100% { opacity: .28; } 45% { opacity: 1; } }

.cta-actions { display: flex; flex-direction: column; gap: .7rem; }

/* -------------------------------------------------------------- page hero */
.page-hero { position: relative; padding: 76px 0 44px; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.page-lede { color: var(--text-dim); font-size: 1.08rem; max-width: 64ch; margin: 0; }

/* ---------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.6rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: .9rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  color: var(--text);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-card:hover { color: var(--text); border-color: var(--cyan); transform: translateY(-2px); }
.contact-card-call { border-color: rgba(255, 61, 130, 0.4); }
.cc-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 13px; flex: none;
  background: linear-gradient(140deg, rgba(255, 61, 130, 0.2), rgba(41, 230, 201, 0.16));
  border: 1px solid var(--line); color: var(--cyan);
}
.cc-body { display: flex; flex-direction: column; }
.cc-label { font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.cc-body strong { font-family: var(--display); font-size: 1.1rem; color: #fff; }

.contact-meta { margin-top: .6rem; display: flex; flex-direction: column; gap: .55rem; }
.contact-meta p { display: flex; align-items: flex-start; gap: .55rem; margin: 0; font-size: .9rem; color: var(--text-dim); }
.contact-meta .ico { color: var(--cyan); margin-top: 3px; }

.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.9rem;
}
.contact-form-wrap h2 { font-size: 1.55rem; margin-bottom: 1.3rem; }

.enquiry-form { display: flex; flex-direction: column; gap: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .38rem; }
.field > span {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-faint);
}
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: .96rem; color: var(--text);
  background: rgba(11, 11, 22, 0.55);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .74rem .9rem; width: 100%;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: rgba(11, 11, 22, 0.8);
}
.field select option { background: var(--ink); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }

.form-status { font-size: .9rem; margin: 0; min-height: 1.2em; }
.form-status.ok { color: var(--cyan); }
.form-status.err { color: var(--magenta); }

/* ----------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(11, 11, 22, 0.6);
  padding: 62px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr .8fr .8fr 1.2fr;
  gap: 2.4rem; padding-bottom: 2.6rem;
}
.footer-tag { font-family: var(--display); font-weight: 700; color: var(--cyan); margin: 1rem 0 .5rem; }
.footer-statement { color: var(--text-faint); font-size: .89rem; max-width: 42ch; }

.social-row { display: flex; gap: .7rem; margin-top: 1.1rem; }
.social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  border: 1px solid var(--line); color: var(--text-dim);
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.social-row a:hover { color: var(--cyan); border-color: var(--cyan); }

.footer-col h4 {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-faint); font-weight: 400; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: var(--text-dim); font-size: .92rem; }
.footer-col a:hover { color: var(--cyan); }

.footer-contact .contact-line {
  display: flex; align-items: center; gap: .55rem;
  color: var(--text-dim); font-size: .92rem; margin-bottom: .6rem;
}
.footer-contact .contact-line .ico { color: var(--cyan); }
.footer-contact a.contact-line:hover { color: #fff; }
.footer-cta { margin-top: .9rem; }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
}
.footer-bottom p { margin: 0; font-size: .84rem; color: var(--text-faint); }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero-frame { aspect-ratio: 16 / 11; }
  .hero-badge { left: 16px; bottom: 16px; }
  .flagship-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }

  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; inset: 76px 0 auto; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11, 11, 22, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: .6rem 24px 1.4rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  body.nav-open .primary-nav { transform: none; opacity: 1; pointer-events: auto; }
  .primary-nav > a { padding: .85rem 0; border-bottom: 1px solid var(--line-soft); }
  .header-call { margin-top: 1rem; justify-content: center; }

  .hero-trust { grid-template-columns: 1fr; gap: .9rem; }
  .spec-table { grid-template-columns: 1fr; }
  .spec-table div:nth-child(odd) { border-right: none; }
  .spec-table div:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid var(--line-soft); }
  .field-row { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-wrap { padding: 1.5rem 1.3rem; }
  .hero-badge { position: static; margin-top: 1rem; flex-direction: row; align-items: baseline; gap: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
