/* ============================================================
   BLINKEN — PRECISION GRID
   Concept: Swiss / Bauhaus minimalism · 8pt grid · Topcon yellow
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --line: #1F1F1F;
  --line-strong: #2A2A2A;
  --text: #FFFFFF;
  --text-dim: #A5A5A5;
  --text-faint: #6B6B6B;
  --accent: #FFD500;
  --accent-hover: #FFE13A;

  --max: 1440px;
  --gutter: 24px;
  --col-gap: 24px;

  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --t-fast: 180ms;
  --t-med: 320ms;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button { background: none; border: 0; color: inherit; cursor: pointer; font: inherit; }

ul, ol { list-style: none; }

::selection { background: var(--accent); color: #0A0A0A; }

/* ----- Layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.muted { color: var(--text-dim); }
.accent { color: var(--accent); }

/* ----- Grid overlay (12-col faint guides) ----- */
.grid-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  pointer-events: none;
  z-index: 1;
  opacity: .6;
}
.grid-overlay > div {
  border-right: 1px solid rgba(255,255,255,.025);
}
.grid-overlay > div:first-child { border-left: 1px solid rgba(255,255,255,.025); }
@media (max-width: 768px) { .grid-overlay { display: none; } }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 12px;
  position: relative;
  z-index: 5;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-meta { display: flex; gap: 12px; align-items: center; color: var(--text-faint); }
.topbar-meta .sep { color: var(--line-strong); }
.topbar-links { display: flex; gap: 12px; align-items: center; color: var(--text-dim); }
.topbar-links a { color: var(--text-dim); transition: color var(--t-fast) var(--ease); }
.topbar-links a:hover { color: var(--accent); }
.topbar-links .sep { color: var(--line-strong); }

@media (max-width: 480px) {
  .topbar-meta .sep, .topbar-meta span:nth-child(3) { display: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.logo-mark { color: var(--text); display: inline-flex; }
.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .12em;
}
.logo-tld { color: var(--accent); font-size: 10px; }

.nav-primary {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.nav-primary a {
  position: relative;
  color: var(--text);
  padding: 6px 0;
  transition: color var(--t-fast) var(--ease);
}
.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t-med) var(--ease);
}
.nav-primary a:hover { color: var(--accent); }
.nav-primary a:hover::after { width: 100%; }

.search-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.search-btn:hover { border-color: var(--accent); color: var(--accent); }

.hamburger { display: none; width: 36px; height: 36px; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; height: 1.5px; background: var(--text); width: 100%; transition: all var(--t-med) var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-nav a {
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.mobile-nav.open { display: flex; }

@media (max-width: 920px) {
  .nav-primary { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 0 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line-strong);
}
.hero-meta-row {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero-meta-row .dot {
  width: 6px; height: 6px; background: var(--accent);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 120px);
  line-height: .92;
  letter-spacing: -.035em;
  margin-bottom: 40px;
  grid-column: 2;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding: 4px 0;
}
.hero-title .line > span {
  display: inline-block;
  will-change: transform;
}
.hero-title .line.accent > span { color: var(--accent); font-style: italic; }

.hero-lede {
  grid-column: 2;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 48px;
}

.hero-ctas {
  grid-column: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border: 1px solid transparent;
  position: relative;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  will-change: transform;
}
.btn-primary {
  background: var(--accent);
  color: #0A0A0A;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* KPI row */
.kpi-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  margin-top: 48px;
}
.kpi-row li {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kpi-row li:last-child { border-right: 0; }
.kpi-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -.03em;
  line-height: 1;
}
.kpi-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

@media (max-width: 768px) {
  .hero { padding-top: 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-meta { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .hero-title { grid-column: 1; }
  .hero-lede { grid-column: 1; }
  .hero-ctas { grid-column: 1; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .kpi-row li { padding: 20px 16px; border-bottom: 1px solid var(--line); }
  .kpi-row li:nth-child(2) { border-right: 0; }
}

/* Hero deco SVG */
.hero-deco {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: .5;
  pointer-events: none;
}
.hero-deco line {
  stroke: var(--line-strong);
  stroke-width: 1;
  fill: none;
}
.hero-deco line.accent { stroke: var(--accent); stroke-width: 1; }
.hero-deco circle.draw-dot { fill: var(--accent); }
.deco-text {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--text-faint);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* DrawSVG-style: animate via stroke-dashoffset */
.draw {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

/* Brand strip */
.brand-strip {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.brand-strip-label {
  color: var(--text-faint);
  flex-shrink: 0;
}
.brand-list {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.brand-tag {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .15em;
  font-size: 14px;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color var(--t-fast);
  position: relative;
  padding: 6px 0;
}
.brand-tag::before {
  content: "";
  position: absolute;
  left: -16px; top: 50%;
  width: 4px; height: 4px;
  background: var(--accent);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.brand-tag:hover { color: var(--text); }
.brand-tag:hover::before { opacity: 1; }

/* ============================================================
   SECTIONS — common
   ============================================================ */
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.section-head {
  margin-bottom: 64px;
  max-width: 800px;
}
.section-head.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: none;
  align-items: end;
}
.section-num {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.025em;
}
.section-title.big {
  font-size: clamp(40px, 6vw, 88px);
  line-height: .98;
}
.section-lede {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 560px;
}
.section-lede.right { margin-top: 0; margin-left: auto; text-align: left; }

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head.split { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.product-card {
  padding: 32px 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  transition: background var(--t-med) var(--ease);
  cursor: pointer;
}
.product-card:hover {
  background: #141414;
}
.product-card:hover .card-link { color: var(--accent); }
.product-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--t-med) var(--ease);
}
.product-card:hover::after { width: 100%; }
.product-card.highlight {
  background: linear-gradient(180deg, rgba(255,213,0,.06), transparent);
}
.product-card.highlight::before {
  content: "TOPNET LIVE";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 6px;
}
.card-num {
  color: var(--text-faint);
  margin-bottom: 24px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.product-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  flex-grow: 1;
}
.card-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  transition: color var(--t-fast);
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESELLERS
   ============================================================ */
.reseller-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.reseller-strip li {
  padding: 40px 16px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .15em;
  font-size: 14px;
  color: var(--text-dim);
  border-right: 1px solid var(--line);
  transition: color var(--t-fast), background var(--t-fast);
}
.reseller-strip li:last-child { border-right: 0; }
.reseller-strip li:hover { color: var(--text); background: #121212; }

.inline-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.inline-link:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 768px) {
  .reseller-strip { grid-template-columns: repeat(2, 1fr); }
  .reseller-strip li { padding: 24px 8px; border-bottom: 1px solid var(--line); }
  .reseller-strip li:nth-child(odd) { border-right: 1px solid var(--line); }
  .reseller-strip li:nth-child(even) { border-right: 0; }
}

/* ============================================================
   SERVICE + SUPPORT — two-col
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.col-card {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
}
.col-card:last-child { border-right: 0; }
.col-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 16px 0 24px;
}
.col-card p {
  color: var(--text-dim);
  margin-bottom: 24px;
}
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.bullet-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.bullet-list .check {
  color: var(--accent);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .col-card { padding: 32px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .col-card:last-child { border-bottom: 0; }
}

/* ============================================================
   TOPCON PARTNERSHIP
   ============================================================ */
.topcon-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.topcon-text p {
  color: var(--text-dim);
  margin-bottom: 24px;
  max-width: 520px;
}
.topcon-text .btn { margin-top: 16px; }

.topcon-spec {
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
}
.spec-head {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text-faint);
}
.spec-list {
  padding: 8px 20px 16px;
}
.spec-list > div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.spec-list > div:last-child { border-bottom: 0; }
.spec-list dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 2px;
}
.spec-list dd {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 900px) {
  .topcon-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   NEWS GRID
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.news-card {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background var(--t-med);
  cursor: pointer;
}
.news-card:hover { background: #141414; }
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.news-date { color: var(--accent); font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; }
.news-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .15em;
  color: var(--text-faint);
  border: 1px solid var(--line-strong);
  padding: 3px 8px;
}
.news-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -.015em;
  line-height: 1.15;
}
.news-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  flex-grow: 1;
}
.news-place {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--text-faint);
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.values-grid li {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--t-med);
}
.values-grid li:hover { background: #141414; }
.value-num { color: var(--accent); }
.values-grid h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.015em;
}
.values-grid p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.section-cta { background: var(--bg-2); }
.cta-banner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 32px 0;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 16px 0 16px;
}
.cta-text p { color: var(--text-dim); max-width: 480px; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.cta-actions .btn { justify-content: center; padding: 20px 24px; }

@media (max-width: 900px) {
  .cta-banner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060606;
  padding: 80px 0 24px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr .8fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin: 24px 0;
  color: var(--text-dim);
  max-width: 220px;
  line-height: 1.3;
}
.footer-logo .logo-word { font-size: 18px; }
.social {
  display: flex;
  gap: 8px;
}
.social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-offices article {
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
}
.office-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.office-tag { color: var(--accent); }
.footer-offices h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.005em;
}
.footer-offices p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-offices p:last-child { margin-bottom: 0; }
.footer-offices a { color: var(--text-dim); transition: color var(--t-fast); }
.footer-offices a:hover { color: var(--accent); }

.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-h5 { color: var(--text-faint); margin-bottom: 8px; }
.footer-nav a {
  font-size: 14px;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-offices { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   ANIMATIONS — initial states
   ============================================================ */
[data-stagger] { opacity: 0; transform: translateY(24px); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-stagger] { opacity: 1; transform: none; }
  .draw { stroke-dashoffset: 0; }
  .hero-title .line > span { transform: none !important; }
}
