/* ==========================================================================
   TECH SLIDER — design tokens
   Concept: a mixing console. The company name is taken literally — every
   section reads like a channel strip on a hardware mixer, with faders,
   meters, and channel numbers standing in for services and process steps.
   ========================================================================== */

:root {
  /* color */
  --ink:        #0E1013;   /* page background */
  --panel:      #15181C;   /* raised panel background */
  --panel-2:    #1B1F24;   /* deeper inset panel */
  --line:       #2B2F35;   /* hairline dividers */
  --line-soft:  #22262B;
  --text:       #ECEEF1;   /* primary text */
  --text-muted: #8B929C;   /* secondary text */
  --text-faint: #565C64;   /* tertiary / labels */
  --signal:     #6EF2B0;   /* mint signal-green — primary accent */
  --signal-dim: #3E8A6B;
  --amber:      #FFB454;   /* secondary accent — warm signal */
  --red-peak:   #FF6B6B;   /* peak / alert accent, used sparingly */

  /* type */
  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  /* layout */
  --max: 1180px;
  --edge: clamp(20px, 5vw, 64px);
  --radius: 10px;
  --radius-sm: 6px;
}

@media (prefers-reduced-motion: no-preference) {
  :root { --transition-base: 220ms cubic-bezier(.4,0,.2,1); }
}
@media (prefers-reduced-motion: reduce) {
  :root { --transition-base: 0ms; }
}

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

body {
  margin: 0;
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(110,242,176,0.06), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(255,180,84,0.05), transparent 55%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--signal); color: #06110C; }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px 1px var(--signal);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0;
  color: var(--text);
}

p { margin: 0; color: var(--text-muted); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); max-width: 620px; }
.section-head .desc { max-width: 380px; font-size: 15px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color var(--transition-base), transform var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}
.btn-primary {
  background: var(--signal);
  color: #06120C;
  border-color: var(--signal);
  font-weight: 600;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(110,242,176,0.5); }
.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-faint); background: var(--panel); }
.btn-ghost .arrow, .btn-primary .arrow { transition: transform var(--transition-base); }
.btn:hover .arrow { transform: translateX(3px); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,16,19,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.logo .mark {
  width: 22px;
  height: 22px;
  position: relative;
}
.logo .mark span {
  position: absolute;
  bottom: 0;
  width: 4px;
  background: var(--signal);
  border-radius: 1px;
}
.logo .mark span:nth-child(1) { left: 0;  height: 60%; }
.logo .mark span:nth-child(2) { left: 9px; height: 100%; background: var(--amber); }
.logo .mark span:nth-child(3) { left: 18px; height: 40%; }
.logo .dim { color: var(--text-faint); font-weight: 500; }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: var(--text-muted);
}
.nav-links a { transition: color var(--transition-base); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -26px;
  height: 2px;
  background: var(--signal);
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 40px; height: 40px;
  color: var(--text);
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   HERO / CONSOLE
   ========================================================================== */
.hero {
  padding: 76px 0 60px;
  border-bottom: 1px solid var(--line-soft);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 { font-size: clamp(34px, 5vw, 56px); margin-top: 18px; }
.hero-copy h1 .accent { color: var(--signal); }
.hero-copy .lede {
  margin-top: 20px;
  font-size: 17px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* console panel */
.console {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 20px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.03);
}
.console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.console-head .rec { display: flex; align-items: center; gap: 6px; color: var(--red-peak); }
.console-head .rec::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-peak);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.channel {
  background: var(--panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 14px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.channel .ch-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}
.channel .ch-name {
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  color: var(--text-muted);
  min-height: 28px;
  letter-spacing: 0.02em;
}
.fader-track {
  position: relative;
  height: 150px;
  width: 34px;
  display: flex;
  justify-content: center;
}
.fader-track input[type="range"] {
  -webkit-appearance: slider-vertical;
  appearance: slider-vertical;
  writing-mode: vertical-lr;
  direction: rtl;
  width: 28px;
  height: 150px;
  background: transparent;
  cursor: ns-resize;
}
/* track */
.fader-track input[type="range"] {
  --tint: var(--signal);
}
.fader-track input[type="range"]::-webkit-slider-runnable-track {
  width: 4px;
  background: var(--line);
  border-radius: 3px;
}
.fader-track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 14px;
  border-radius: 3px;
  background: var(--tint);
  border: 1px solid rgba(0,0,0,0.3);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  margin-left: -11px;
  cursor: ns-resize;
}
.fader-track input[type="range"]::-moz-range-track {
  width: 4px;
  background: var(--line);
  border-radius: 3px;
}
.fader-track input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 14px;
  border-radius: 3px;
  background: var(--tint);
  border: 1px solid rgba(0,0,0,0.3);
  cursor: ns-resize;
}
.channel:nth-child(2) .fader-track input[type="range"] { --tint: var(--amber); }

.ch-readout {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  background: var(--ink);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 3px 8px;
  min-width: 44px;
  text-align: center;
}

.master {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.master-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.master-row .val {
  font-size: 18px;
  color: var(--signal);
  letter-spacing: 0;
}
.meter {
  height: 8px;
  border-radius: 4px;
  background: var(--panel-2);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--signal-dim), var(--signal));
  transition: width 160ms linear;
  width: 55%;
}
.master-caption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-faint);
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .console { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ==========================================================================
   LOGO / TRUST STRIP
   ========================================================================== */
.strip {
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}
.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  align-items: center;
  justify-content: space-between;
}
.strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.strip-items {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}
.strip-items span { white-space: nowrap; }

/* ==========================================================================
   SERVICES — channel strips
   ========================================================================== */
.services { padding: 96px 0; border-bottom: 1px solid var(--line-soft); }

.strip-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-soft); }
.svc {
  display: grid;
  grid-template-columns: 90px 1.3fr 1.6fr 130px;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--transition-base);
}
.svc:hover { background: rgba(255,255,255,0.015); }
.svc-num { font-family: var(--font-mono); font-size: 13px; color: var(--text-faint); }
.svc-main h3 { font-size: 22px; margin-bottom: 8px; }
.svc-main .tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.svc-main .tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--panel);
  border: 1px solid var(--line-soft);
  padding: 4px 9px;
  border-radius: 4px;
}
.svc-desc { font-size: 14.5px; }
.svc-meter { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.svc-meter .meter { width: 100%; }
.svc-meter .m-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .svc { grid-template-columns: 1fr; gap: 12px; }
  .svc-meter { align-items: flex-start; }
}

/* ==========================================================================
   PROCESS — legit numbered sequence
   ========================================================================== */
.process { padding: 96px 0; border-bottom: 1px solid var(--line-soft); background: var(--panel); }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  background: var(--ink);
  padding: 28px 20px 24px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step .step-num {
  font-family: var(--font-mono);
  font-size: 26px;
  color: var(--line);
  font-weight: 600;
}
.step h4 { font-size: 16px; margin-top: 20px; }
.step p { font-size: 13px; margin-top: 8px; }
.step.is-current .step-num { color: var(--signal); }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; }
}

/* ==========================================================================
   FOUNDER / ABOUT
   ========================================================================== */
.founder { padding: 96px 0; border-bottom: 1px solid var(--line-soft); }
.founder .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.founder-copy h2 { font-size: clamp(26px, 3.4vw, 34px); margin-top: 16px; }
.founder-copy p.lede { font-size: 16px; margin-top: 18px; color: var(--text-muted); }
.founder-copy .quote {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 2px solid var(--signal);
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.founder-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.founder-card .grid-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.stat-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.stat-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--panel-2);
  border: 1px solid var(--line-soft);
  padding: 3px 8px;
  border-radius: 4px;
}
.founder-card hr { border: none; border-top: 1px solid var(--line-soft); margin: 22px 0; }

@media (max-width: 860px) {
  .founder .wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-band { padding: 90px 0; }
.cta-panel {
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 240px at 90% -10%, rgba(110,242,176,0.14), transparent 60%);
  pointer-events: none;
}
.cta-panel h2 { font-size: clamp(24px, 3.4vw, 34px); max-width: 520px; position: relative; }
.cta-panel .actions { display: flex; gap: 14px; position: relative; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { padding: 56px 0 34px; }
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
.foot-brand p { margin-top: 14px; font-size: 13.5px; max-width: 260px; }
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
  font-weight: 600;
}
.foot-col a, .foot-col p {
  display: block;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition-base);
}
.foot-col a:hover { color: var(--signal); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
}

@media (max-width: 780px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .foot-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.page-hero { padding: 64px 0 48px; border-bottom: 1px solid var(--line-soft); }
.page-hero h1 { font-size: clamp(32px, 5vw, 48px); margin-top: 16px; max-width: 640px; }
.page-hero p.lede { font-size: 16px; margin-top: 16px; max-width: 520px; }

.contact-grid {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.info-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  height: fit-content;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-row:first-child { padding-top: 0; }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon {
  width: 38px; height: 38px;
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--signal);
  background: var(--panel-2);
}
.info-icon svg { width: 17px; height: 17px; }
.info-text .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.info-text .value { font-size: 14.5px; color: var(--text); }
.info-text .value a:hover { color: var(--signal); }
.info-text .sub { font-size: 12.5px; color: var(--text-faint); margin-top: 3px; }

.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition-base), border-color var(--transition-base);
}
.social-row a:hover { color: var(--signal); border-color: var(--signal-dim); }
.social-row svg { width: 16px; height: 16px; }

/* form */
.form-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.form-panel .console-head { margin-bottom: 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color var(--transition-base);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%238B929C'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--signal);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: 11.5px; color: var(--text-faint); margin-top: 7px; }

.chip-select { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--panel-2);
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip.is-active, .chip:has(input:checked) {
  border-color: var(--signal);
  color: var(--signal);
  background: rgba(110,242,176,0.08);
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
}
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--signal-dim);
  background: rgba(110,242,176,0.07);
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--signal);
}
.form-success.show { display: flex; }
.form-success svg { width: 18px; height: 18px; flex: none; }

/* hours + map-style panel */
.side-panels { display: grid; gap: 20px; margin-top: 20px; }
.mini-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 13.5px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-muted);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text); }
.hours-row.today .day { color: var(--signal); }

.locale-panel {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
}
.locale-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}
.locale-pin {
  position: absolute;
  top: 40%; left: 46%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(110,242,176,0.18), 0 0 0 10px rgba(110,242,176,0.08);
}
.locale-panel .info-text { position: relative; z-index: 1; }

/* FAQ mini */
.faq-band { padding: 0 0 96px; }
.faq-list { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16.5px;
  text-align: left;
  cursor: pointer;
}
.faq-q .plus {
  font-family: var(--font-mono);
  color: var(--text-faint);
  font-size: 18px;
  transition: transform var(--transition-base);
  flex: none;
  margin-left: 20px;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--signal); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { font-size: 14.5px; padding-bottom: 22px; max-width: 640px; }
