/* ==========================================================================
   dotonezero -- marketing site styles
   Editorial, paper-toned. No framework, no build step.
   ========================================================================== */

:root {
  --paper: #f1ece1;
  --paper-card: #faf7f0;
  --paper-deep: #e7e0d0;

  --ink: #221d16;
  --ink-soft: #6e6656;
  --ink-faint: #9a9280;

  --line: rgba(34, 29, 22, 0.15);
  --line-strong: rgba(34, 29, 22, 0.32);

  --navy: #1e3a52;
  --navy-soft: rgba(30, 58, 82, 0.1);
  --clay: #a9652e;
  --clay-soft: rgba(169, 101, 46, 0.12);

  --black: #0b0b0a;
  --black-soft: #17160f;
  --cream: #f7f3e6;
  --cream-dim: rgba(247, 243, 230, 0.62);
  --cream-faint: rgba(247, 243, 230, 0.36);
  --yellow: #f7d000;
  --yellow-dim: rgba(247, 208, 0, 0.14);

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --container: 1180px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Fraunces", Georgia, "Iowan Old Style", serif;
  --font-cinema: "Unbounded", "Archivo", -apple-system, sans-serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  color: var(--ink);
  line-height: 1.14;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}

.eyebrow .idx {
  color: var(--clay);
}

.eyebrow::after {
  content: "";
  flex: 1;
  max-width: 64px;
  height: 1px;
  background: var(--line-strong);
}

.section {
  position: relative;
  padding: 108px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-head.center {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::after {
  display: none;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 58ch;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(34, 29, 22, 0.04);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 15px;
  height: 15px;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

/* ---------- cursor: a single dot ---------- */
.locator-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--navy);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s var(--ease);
}

.locator-cursor.is-active {
  width: 16px;
  height: 16px;
  background: var(--clay);
}

@media (hover: none), (pointer: coarse) {
  .locator-cursor { display: none; }
  body { cursor: auto; }
}

/* ---------- nav: a fixed black strip, framing the page top to bottom ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--black);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), height 0.3s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: rgba(247, 243, 230, 0.1);
  height: 64px;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 20px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions .btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.nav-actions .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247, 243, 230, 0.28);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--cream);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span::before { position: absolute; top: -5px; }
.nav-toggle span::after { position: absolute; top: 5px; }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg) translate(0); top: 0; }
.nav-toggle.is-open span::after { transform: rotate(-45deg) translate(0); top: 0; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-cinema);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
}

/* ---------- hero: a black title card, not a product screenshot ---------- */
.hero-cinema {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  background: var(--black);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 90px;
  overflow: hidden;
}

#webgl-hero {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 56% 52% at 50% 52%,
    rgba(11, 11, 10, 0.82) 0%,
    rgba(11, 11, 10, 0.4) 45%,
    rgba(11, 11, 10, 0) 100%
  );
}

.hero-lockup {
  width: min(86vw, 600px);
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.hero-lockup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-lines {
  font-family: var(--font-cinema);
  font-weight: 500;
  font-size: clamp(21px, 3.4vw, 38px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.hero-lines .line {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero-lines .line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-lines .line.accent {
  color: var(--yellow);
}

.hero-sub {
  margin-top: 30px;
  color: var(--cream-dim);
  font-size: 15.5px;
  max-width: 40ch;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.9s var(--ease) 0.3s, transform 0.9s var(--ease) 0.3s;
}

.hero-sub.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-cinema-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.9s var(--ease) 0.45s, transform 0.9s var(--ease) 0.45s;
}

.hero-cinema-ctas.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-cinema-ctas .btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.hero-cinema-ctas .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.hero-cinema-ctas .btn-ghost {
  color: var(--cream);
  border-color: rgba(247, 243, 230, 0.3);
}

.hero-cinema-ctas .btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(247, 243, 230, 0.06);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--cream-faint), transparent);
  animation: scrollcue 2.2s var(--ease) infinite;
}

@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  65% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---------- map section: the venue model, on the paper theme below ---------- */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.map-copy .lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 18px 0 30px;
}

.map-personas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.map-personas .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 2px;
}

.persona-pill {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--paper-card);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.persona-pill:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.map-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--paper-card);
  overflow: hidden;
}

.map-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.map-visual-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--paper);
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  width: fit-content;
}

.map-visual-caption .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
  flex-shrink: 0;
}

.map-visual-legend {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.map-visual-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.map-visual-legend i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
}

/* ---------- solutions (tabbed use cases) ---------- */
.solutions {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-card);
}

.solutions-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.solutions-tab {
  display: flex;
  align-items: baseline;
  gap: 14px;
  text-align: left;
  padding: 22px 24px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.solutions-tab:last-child {
  border-bottom: none;
}

.tab-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  font-weight: 500;
  flex-shrink: 0;
}

.tab-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tab-label {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

.tab-sub {
  font-size: 12.5px;
  color: var(--ink-faint);
}

.solutions-tab:hover {
  background: rgba(34, 29, 22, 0.03);
}

.solutions-tab.is-active {
  background: var(--navy-soft);
}

.solutions-tab.is-active .tab-label {
  color: var(--navy);
}

.solutions-tab.is-active .tab-index {
  color: var(--clay);
}

.solutions-panels {
  position: relative;
}

.solutions-panel {
  display: none;
  padding: 46px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.solutions-panel.is-active {
  display: block;
}

.solutions-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.panel-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}

.solutions-panel h3 {
  font-size: 25px;
  margin-bottom: 16px;
  max-width: 20ch;
}

.solutions-panel > p {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 58ch;
  margin-bottom: 28px;
}

.panel-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 24px;
}

.panel-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}

.panel-features li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--navy);
}

/* mobile tab strip */
.solutions-tabs-mobile {
  display: none;
}

/* ---------- steps ---------- */
.steps {
  position: relative;
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.step:first-child {
  border-top: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-faint);
  transition: color 0.4s var(--ease);
}

.step.is-visible .step-num {
  color: var(--clay);
}

.step-body h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.step-body p {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 62ch;
}

.step-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}

/* ---------- platform grid ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.platform-card {
  background: var(--paper-card);
  padding: 32px 26px;
  transition: background 0.3s var(--ease);
}

.platform-card:hover {
  background: var(--paper);
}

.platform-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.platform-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
}

.platform-card h3 {
  font-size: 16.5px;
  margin-bottom: 10px;
}

.platform-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---------- why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-card {
  background: var(--paper);
  padding: 30px 30px 4px 0;
}

.why-card:not(:first-child) {
  padding-left: 30px;
}

.why-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--clay);
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 18.5px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* ---------- team ---------- */
.team-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 42px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--paper-card);
}

.team-mark {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.team-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-copy h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.team-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 58ch;
}

.team-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  white-space: nowrap;
}

.team-links a {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
}

.team-links a:hover {
  border-color: var(--navy);
}

/* ---------- contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--paper-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  color: var(--ink);
  font-size: 14.5px;
  font-family: var(--font-body);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--paper);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-faint);
  min-height: 18px;
}

.contact-info {
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--paper-card);
  height: fit-content;
}

.contact-info h3 {
  font-size: 16.5px;
  margin-bottom: 22px;
}

.contact-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-row svg {
  width: 17px;
  height: 17px;
  stroke: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-row .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.contact-row .value {
  font-size: 14.5px;
  color: var(--ink);
}

.contact-row a.value:hover {
  color: var(--navy);
}

/* ---------- footer: the second black bookend ---------- */
.footer {
  border-top: 1px solid rgba(247, 243, 230, 0.1);
  padding: 64px 0 30px;
  background: var(--black);
  color: var(--cream);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 19px;
  width: auto;
}

.footer-tagline {
  color: var(--cream-dim);
  font-size: 14px;
  max-width: 30ch;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-faint);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  color: var(--cream-dim);
  font-size: 14.5px;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 243, 230, 0.1);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cream-faint);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: var(--cream-faint);
}

.footer-bottom a:hover {
  color: var(--yellow);
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-card, .why-card:not(:first-child) { padding-left: 0; border-top: 1px solid var(--line); padding-top: 26px; }
  .why-card:first-child { border-top: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .solutions { grid-template-columns: 260px 1fr; }
  .panel-features { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .map-grid { grid-template-columns: 1fr; }
  .map-visual { width: 100%; max-width: 460px; margin: 0 auto; aspect-ratio: 4 / 3.4; }
  .contact-layout { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; text-align: left; }
  .team-links { flex-direction: row; flex-wrap: wrap; }

  .solutions { grid-template-columns: 1fr; }
  .solutions-tabs { display: none; }
  .solutions-tabs-mobile {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    -webkit-overflow-scrolling: touch;
  }
  .solutions-tabs-mobile .pill-tab {
    flex-shrink: 0;
    padding: 9px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
  }
  .solutions-tabs-mobile .pill-tab.is-active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .solutions-panel { padding: 26px 20px; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .platform-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-cinema-ctas .btn,
  .hero-cinema-ctas { width: 100%; }
  .hero-cinema-ctas { flex-direction: column; align-items: stretch; }
  .solutions-panel h3 { font-size: 21px; }
}

@media (max-width: 480px) {
  .hero-cinema { padding: calc(var(--nav-h) + 20px) 20px 70px; }
  .hero-lockup { margin-bottom: 40px; }
  .hero-lines { font-size: clamp(19px, 6vw, 26px); }
}
