/* ==========================================================================
   LOKAL — design tokens
   Thesis: inside the perimeter is in focus. Outside it never resolves.
   ========================================================================== */
:root {
  --white:      #FFFFFF;
  --paper:      #F6F8F8;
  --ink:        #0B1117;
  --ink-2:      #45535E;
  --ink-3:      #7C8A95;
  --line:       #E3E9EB;
  --line-soft:  #EEF2F3;

  --teal:       #0B6E6E;
  --teal-deep:  #06504F;
  --teal-wash:  rgba(11, 110, 110, 0.07);

  --glow-jade:  #62D8C2;
  --glow-teal:  #23A79E;
  --glow-peri:  #97A9F2;
  --glow-lilac: #C3A4EE;
  --glow-cop:   #F5C79E;

  --font-d: 'Archivo', system-ui, sans-serif;
  --font-b: 'Instrument Sans', system-ui, sans-serif;
  --font-m: 'Martian Mono', ui-monospace, monospace;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;

  --shadow: 0 1px 2px rgba(11,17,23,.04), 0 16px 44px -20px rgba(11,17,23,.16);
  --gutter: 24px;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.h-display {
  font-family: var(--font-d);
  font-variation-settings: 'wdth' 108;
  font-weight: 700;
  letter-spacing: -0.024em;
  line-height: 1.06;
}

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

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

/* ============ AMBIENT BLUR FIELD ============
   Anchored to the top of the document, not fixed — it's an opening
   chord, not wallpaper. Weight sits top-right, behind the figure,
   so the headline on the left keeps full contrast. The mask dissolves
   the whole thing into white before the integrations strip. */
.field {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 980px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 46%, rgba(0,0,0,.55) 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 46%, rgba(0,0,0,.55) 72%, transparent 100%);
}
.blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(110px);
}
/* jade — the anchor, top right behind the perimeter figure */
.blob-a { width: 700px; height: 640px; top: -180px; right: -140px; background: var(--glow-jade); opacity: .78; }
/* deep teal — saturation core, keeps the field from going pastel */
.blob-b { width: 380px; height: 380px; top: 60px;   right: 120px;  background: var(--glow-teal); opacity: .5; }
/* periwinkle — cool counterweight on the left */
.blob-c { width: 560px; height: 560px; top: 150px;  left: -240px;  background: var(--glow-peri); opacity: .5; }
/* lilac — bridges cool to warm across the middle */
.blob-d { width: 520px; height: 480px; top: 380px;  right: 180px;  background: var(--glow-lilac); opacity: .44; }
/* copper — the one warm note, low and left, for temperature contrast */
.blob-e { width: 460px; height: 420px; top: 520px;  left: 120px;   background: var(--glow-cop); opacity: .4; }

.mark-piece {
  position: absolute;
  top: 40px;
  right: 2%;
  z-index: 0;
  width: 380px;
  height: auto;
  opacity: .5;
  transform: rotate(14deg);
  pointer-events: none;
  user-select: none;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-in {
  width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 var(--gutter);
  height: 68px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--teal); }
.brand-mark { width: 20px; height: 20px; flex: none; object-fit: contain; display: block; }
.brand-name {
  font-family: var(--font-d);
  font-variation-settings: 'wdth' 112;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .1em;
  color: var(--ink);
}
.nav-links { display: flex; gap: 26px; margin-left: 12px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-act { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.lang {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-opt {
  font-family: var(--font-m);
  font-size: 10.5px; font-weight: 500; letter-spacing: .04em;
  padding: 4px 9px; border-radius: 999px;
  color: var(--ink-3);
  transition: background .18s ease, color .18s ease;
}
.lang-opt.is-on { background: var(--white); color: var(--ink); box-shadow: 0 1px 2px rgba(11,17,23,.08); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-b);
  font-size: 14.5px; font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .16s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-quiet {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: var(--line);
  color: var(--ink);
}
.btn-quiet:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
.btn-lg { font-size: 15.5px; padding: 13px 24px; }
.btn-block { width: 100%; }

/* ============ SHARED SECTION SHELL ============ */
.sec { padding: 108px 0; position: relative; }
.sec-tight { padding: 0 0 40px; }
.sec-paper { background: var(--paper); }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .h-display { font-size: clamp(30px, 4vw, 44px); }
.sec-sub { margin-top: 18px; color: var(--ink-2); font-size: 17.5px; }

.kicker {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

/* ============ HERO ============ */
.hero { padding: 88px 0 96px; position: relative; }
.hero-in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-m);
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px 6px 11px;
  margin-bottom: 26px;
}
.pip { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex: none; }
.pip-on { box-shadow: 0 0 0 3px var(--teal-wash); }

.hero h1 { font-size: clamp(38px, 5.6vw, 63px); }
.hero .line { display: block; }
.hero .line.accent { color: var(--teal); }

.lede {
  margin-top: 24px;
  max-width: 540px;
  font-size: 18.5px;
  color: var(--ink-2);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* ---- SIGNATURE: focus vs. blur ---- */
.figure { position: relative; min-height: 430px; }

.outside { position: absolute; inset: -30px -10px -10px -30px; }
.tag-out {
  position: absolute; top: 4px; right: 6px;
  font-family: var(--font-m);
  font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
  filter: blur(1.2px);
  opacity: .8;
}
.ghost {
  position: absolute;
  font-family: var(--font-b);
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(227,233,235,.9);
  border-radius: var(--r-sm);
  padding: 9px 15px;
  filter: blur(3.4px);
  opacity: .78;
  animation: drift 22s ease-in-out infinite;
}
.ghost:hover { filter: blur(3.4px); } /* deliberately never resolves */
.g1 { top: 8px;    left: 0;    animation-delay: 0s; }
.g2 { top: 96px;   right: 8px; animation-delay: -7s; }
.g3 { bottom: 78px; left: 12px; animation-delay: -13s; }
.g4 { bottom: 4px; right: 30px; animation-delay: -18s; }

@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(6px,-10px,0); }
}

.inside {
  position: relative;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow), 0 0 0 1px rgba(11,110,110,.1);
  border-radius: var(--r-lg);
  padding: 22px;
  margin: 54px 20px;
}
.inside-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-soft);
}
.inside-label {
  font-family: var(--font-m);
  font-size: 10px; letter-spacing: .16em; color: var(--ink);
}
.inside-state {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-m); font-size: 9.5px; letter-spacing: .08em;
  color: var(--teal); text-transform: uppercase;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 0; }
.chip {
  font-size: 13.5px; font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 8px 13px;
}
.chip-core {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.inside-foot {
  display: flex; justify-content: space-between;
  padding-top: 15px; border-top: 1px solid var(--line-soft);
}
.mono { font-family: var(--font-m); font-size: 9.5px; letter-spacing: .06em; color: var(--ink-3); }

/* ============ INTEGRATIONS STRIP ============ */
.strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.strip-in {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px;
  padding-top: 22px; padding-bottom: 22px;
}
.strip-label {
  font-family: var(--font-m);
  font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3);
}
.strip-items { display: flex; flex-wrap: wrap; gap: 12px 30px; }
.strip-items li { font-size: 15px; font-weight: 500; color: var(--ink-2); }

/* ============ CARDS ============ */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.grid-cap { gap: 20px; }

.card {
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}
.card p { color: var(--ink-2); font-size: 16.5px; }
.card-tag {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 9.5px; letter-spacing: .11em; text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-wash);
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: 18px;
}
.card-path h3, .card-cap h3 {
  font-family: var(--font-d);
  font-variation-settings: 'wdth' 106;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.014em;
  margin-bottom: 12px;
}
.ticks { margin: 20px 0 24px; display: grid; gap: 9px; }
.ticks li {
  position: relative; padding-left: 20px;
  font-size: 15px; color: var(--ink-2);
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid var(--teal);
}

/* ============ SPEC SHEET ============ */
.spec {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
.spec-cell { padding: 28px 26px; border-right: 1px solid var(--line-soft); }
.spec-cell:last-child { border-right: none; }
.spec-n {
  display: block;
  font-family: var(--font-d);
  font-variation-settings: 'wdth' 100;
  font-weight: 700; font-size: 34px; letter-spacing: -0.03em;
  color: var(--ink);
}
.spec-l { display: block; margin-top: 6px; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }
.spec-note { margin-top: 16px; font-size: 14px; color: var(--ink-3); max-width: 640px; }

/* ============ PROCESS ============ */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px 22px;
  display: flex; flex-direction: column;
}
.step-i {
  font-family: var(--font-m);
  font-size: 11px; letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-d);
  font-variation-settings: 'wdth' 106;
  font-weight: 600; font-size: 19px; letter-spacing: -0.012em;
  margin-bottom: 10px;
}
.step p { font-size: 15.5px; color: var(--ink-2); }
.step-out {
  margin-top: auto; padding-top: 18px;
  font-family: var(--font-m);
  font-size: 9.5px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ============ SECURITY (single dark passage) ============ */
.sec-dark {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  overflow: hidden;
}
.sec-dark::before {
  content: ""; position: absolute;
  width: 620px; height: 620px; border-radius: 50%;
  background: var(--teal); filter: blur(160px); opacity: .34;
  top: -260px; right: -160px; pointer-events: none;
}
.sec-dark .wrap { position: relative; }
.sec-dark .h-display { color: #FFFFFF; }
.sec-dark .kicker { color: var(--glow-jade); }
.sec-dark .sec-sub { color: rgba(255,255,255,.7); }

.flow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 44px;
}
.flow-n {
  font-size: 14.5px; font-weight: 500;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  padding: 11px 16px;
}
.flow-gate {
  background: rgba(111,217,198,.14);
  border-color: rgba(111,217,198,.5);
  color: #FFFFFF;
}
.flow-a { width: 22px; height: 1px; background: rgba(255,255,255,.28); }

.sec-points { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
.pt { border-top: 1px solid rgba(255,255,255,.16); padding-top: 18px; }
.pt strong {
  display: block;
  font-family: var(--font-d);
  font-variation-settings: 'wdth' 104;
  font-weight: 600; font-size: 16px; color: #FFFFFF;
  margin-bottom: 8px;
}
.pt span { font-size: 15px; color: rgba(255,255,255,.66); }

/* ============ CONTACT ============ */
/* Photographic ground: a lattice enclosure, veiled almost to texture.
   Two stacked layers — the image, then a gradient that melts the top edge
   out of the dark security section and the bottom edge into the footer. */
.sec-contact {
  position: relative;
  padding-top: 132px;
  padding-bottom: 132px;
  isolation: isolate;
  overflow: hidden;
}
.sec-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: image-set(url("bg-dome.webp") type("image/webp"), url("bg-dome.jpg") type("image/jpeg"));
  background-image: url("bg-dome.jpg"); /* fallback for browsers without image-set */
  background-image: -webkit-image-set(url("bg-dome.webp") type("image/webp"), url("bg-dome.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center 35%;
  filter: saturate(.55) contrast(.92) blur(1px);
  transform: scale(1.04); /* hides the soft edge the blur leaves */
}
.sec-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      var(--ink) 0%,
      rgba(11,17,23,.55) 8%,
      rgba(255,255,255,.72) 26%,
      rgba(255,255,255,.86) 55%,
      rgba(255,255,255,.96) 88%,
      var(--white) 100%
    ),
    radial-gradient(120% 80% at 50% 45%, rgba(11,110,110,.1) 0%, transparent 70%);
}
.sec-contact .kicker { color: var(--teal-deep); }
.form {
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid; gap: 18px;
}
.row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.fld { display: grid; gap: 7px; }
.fld label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.fld input, .fld textarea {
  font-family: var(--font-b);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.fld textarea { resize: vertical; min-height: 108px; }
.fld input:focus, .fld textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-wash);
}
.fld input::placeholder, .fld textarea::placeholder { color: var(--ink-3); }
.form-note { text-align: center; font-size: 14px; color: var(--ink-3); }
.form-note a { color: var(--teal); font-weight: 600; }
.form-error {
  font-size: 14.5px;
  color: #A32E2E;
  background: rgba(163,46,46,.07);
  border: 1px solid rgba(163,46,46,.22);
  border-radius: var(--r-sm);
  padding: 11px 14px;
}
.form-done {
  text-align: center;
  font-family: var(--font-d);
  font-variation-settings: 'wdth' 106;
  font-weight: 600; font-size: 19px; color: var(--teal);
  padding: 26px 0;
}
.hidden-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ============ FOOTER ============ */
.foot { border-top: 1px solid var(--line-soft); padding: 64px 0 40px; background: var(--white); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
}
.foot-col-brand { max-width: 320px; }
.foot-col-brand .brand { margin-bottom: 16px; }
.foot-tag { font-size: 15.5px; color: var(--ink-2); }
.foot-loc { margin-top: 8px; font-size: 13.5px; color: var(--ink-3); }

.foot-h {
  font-family: var(--font-m);
  font-size: 10px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.foot-list { display: grid; gap: 11px; }
.foot-list a {
  font-size: 15px; color: var(--ink-2);
  transition: color .18s ease;
}
.foot-list a:hover { color: var(--teal); }

.foot-legal {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px; color: var(--ink-3);
}
.foot-legal p { margin: 0; }
.foot-legal a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.foot-legal a:hover { color: var(--teal); }
.foot-made { margin-left: auto; }

/* floating WhatsApp */
.wa {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 70;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 20px -6px rgba(11,17,23,.4);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa svg { width: 27px; height: 27px; }
.wa:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -8px rgba(11,17,23,.5); }

/* ============ REVEAL ============ */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hero-in { grid-template-columns: 1fr; gap: 48px; }
  .figure { min-height: 380px; }
  .spec { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .spec-cell:nth-child(2) { border-right: none; }
  .spec-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sec-points { grid-template-columns: 1fr; gap: 20px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-col-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .sec { padding: 76px 0; }
  .sec-tight { padding: 0 0 30px; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .card, .form { padding: 24px; }
  .hero { padding: 56px 0 72px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .inside { margin: 40px 0; }
  .outside { inset: -14px 0 0 0; }
  .g1 { left: 0; }
  .g3 { left: 0; }
  .g4 { right: 0; }
  .field { height: 720px; }
  .blob { filter: blur(80px); }
  .blob-a { width: 460px; height: 420px; top: -120px; right: -140px; opacity: .72; }
  .blob-b { width: 260px; height: 260px; top: 40px;  right: 20px;   opacity: .42; }
  .blob-c { width: 380px; height: 380px; top: 220px; left: -180px;  opacity: .42; }
  .blob-d { width: 340px; height: 320px; top: 380px; right: -60px;  opacity: .36; }
  .blob-e { width: 300px; height: 280px; top: 470px; left: -40px;   opacity: .32; }
  .mark-piece { width: 160px; top: 8px; right: -20px; opacity: .35; }
  .foot { padding-top: 48px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-legal { gap: 10px; }
  .foot-made { margin-left: 0; }
  .wa { left: 16px; bottom: 16px; width: 48px; height: 48px; }
  .wa svg { width: 25px; height: 25px; }
}

@media (max-width: 380px) {
  .strip-items { gap: 8px 18px; }
  .spec { grid-template-columns: 1fr; }
  .spec-cell { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .spec-cell:last-child { border-bottom: none; }
}

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

/* ============ LEGAL PAGES ============ */
.legal { padding-top: 8px; }
.legal-h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.legal-updated {
  font-family: var(--font-m);
  font-size: 11px; letter-spacing: .06em;
  color: var(--ink-3);
  margin-bottom: 40px;
}
.legal h2 {
  font-family: var(--font-d);
  font-variation-settings: 'wdth' 106;
  font-weight: 600; font-size: 20px; letter-spacing: -0.012em;
  margin: 40px 0 12px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.legal h3 {
  font-family: var(--font-d);
  font-variation-settings: 'wdth' 104;
  font-weight: 600; font-size: 16px;
  margin: 24px 0 8px;
}
.legal p { color: var(--ink-2); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; display: grid; gap: 8px; }
.legal li {
  position: relative; padding-left: 20px;
  color: var(--ink-2);
}
.legal li::before {
  content: ""; position: absolute; left: 2px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
}
.legal a { color: var(--teal); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.req {
  font-family: var(--font-m);
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-wash);
  border-radius: 999px;
  padding: 4px 9px;
  margin-left: 8px;
  vertical-align: middle;
}
