/* MAGENTO DALLAS — eCommerce · Premium Dark */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --accent: #0088ff;
  --accent-light: #0099ff;
  --accent-dark: #0066cc;
  --accent-deep: #0055aa;
  --accent-rgb: 0,136,255;
  --glow: rgba(0,136,255,0.35);
  --glow-soft: rgba(0,136,255,0.12);
  --glow-faint: rgba(0,136,255,0.06);
  --surface: rgba(255,255,255,0.02);
  --surface-hover: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(0,136,255,0.3);
  --text: #fff;
  --text-muted: #888;
  --text-dim: #666;
  --text-faint: #555;
  --text-dark: #444;
  --bg: #000;
  --radius: 12px;
  --radius-sm: 8px;
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: color 0.2s ease;
}

a:visited { color: var(--accent-dark); }
a:hover { color: var(--accent-light); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Background ───────────────────────────────────────────────────────── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(var(--accent-rgb),0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(var(--accent-rgb),0.04), transparent 50%),
    radial-gradient(ellipse 50% 30% at 20% 10%, rgba(100,180,255,0.03), transparent 50%);
  pointer-events: none;
}

/* ─── Layout ───────────────────────────────────────────────────────────── */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page-main { flex: 1; padding-top: 5rem; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(0,0,0,0.6);
  border-bottom: none;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: background 0.4s ease;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.brand:hover { transform: scale(1.02); }

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: filter 0.4s ease, transform 0.3s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 12px rgba(var(--accent-rgb),0.5));
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav a { text-decoration: none !important; }

.nav-link {
  color: var(--text-dim);
  position: relative;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glow-faint), rgba(var(--accent-rgb),0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-link:hover::before,
.nav-link-active::before { opacity: 1; }

.nav-link:hover {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(var(--accent-rgb),0.3);
}

.nav-link-active { color: var(--text); }

.nav-link-active::before {
  opacity: 1;
  background: linear-gradient(135deg, var(--glow-soft), rgba(var(--accent-rgb),0.04));
}

.nav-link.nav-cta {
  padding: 0.6rem 1.4rem;
  margin-left: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(var(--accent-rgb),0.2);
}

.nav-link.nav-cta::before,
.nav-link.nav-cta::after { display: none; }

.nav-link.nav-cta:hover {
  color: #000;
  text-shadow: none;
  background: linear-gradient(135deg, var(--accent-light), #0077dd);
  box-shadow: 0 0 30px rgba(var(--accent-rgb),0.5);
  transform: translateY(-2px);
}

.nav-cta-dot { display: none; }
.nav-cta-short { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.nav-toggle:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb),0.15);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── Marquee ─────────────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  padding: 0.6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
}

.marquee span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.marquee span.accent { color: var(--accent); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Animations ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(var(--accent-rgb),0.3); }
  50% { box-shadow: 0 0 40px rgba(var(--accent-rgb),0.5); }
}

@keyframes drawLine {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

@keyframes drawRect {
  from { stroke-dashoffset: 400; }
  to { stroke-dashoffset: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animate-in .animate-delay-1 { animation: fadeUp 0.7s ease-out both; }
.animate-in .animate-delay-2 { animation: fadeUp 0.7s ease-out 0.15s both; }
.animate-in .animate-delay-3 { animation: fadeUp 0.7s ease-out 0.3s both; }
.animate-in .animate-delay-4 { animation: fadeUp 0.7s ease-out 0.45s both; }
.animate-in .animate-delay-5 { animation: fadeUp 0.7s ease-out 0.6s both; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal .feature-card {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.revealed .feature-card { animation: fadeUp 0.6s ease forwards; }
.reveal.revealed .feature-card:nth-child(1) { animation-delay: 0.1s; }
.reveal.revealed .feature-card:nth-child(2) { animation-delay: 0.2s; }
.reveal.revealed .feature-card:nth-child(3) { animation-delay: 0.3s; }
.reveal.revealed .feature-card:nth-child(4) { animation-delay: 0.4s; }

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 6rem 0 7rem;
}

.hero-grid {
  width: 100%;
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.eyebrow-pill {
  padding: 0.2rem 0.6rem;
  background: rgba(var(--accent-rgb),0.15);
  color: var(--accent);
  border-radius: 4px;
}

/* Hero slider */
.hero-slider {
  position: relative;
  min-height: 4.5em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--text);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-title.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.hero-slider-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dots .dot:hover { background: rgba(255,255,255,0.4); }

.hero-slider-dots .dot.active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(var(--accent-rgb),0.5);
}

.hero-outline {
  display: block;
  color: var(--text);
}

.hero-highlight {
  display: block;
  margin-top: 0.1em;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #00bbff, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-text-wrap {
  position: relative;
  min-height: 6.5em;
  margin-bottom: 2rem;
}

.hero-text-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  max-width: 28rem;
}

.hero-text-slide.active {
  position: relative;
  opacity: 1;
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-badges { display: none; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary,
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:visited {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  border: none;
  box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--glow);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-secondary,
a.btn-secondary,
a.btn-secondary:hover,
a.btn-secondary:visited {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover,
a.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--glow-faint);
  transform: translateY(-2px);
}

/* Legacy btn-primary/btn-secondary for other pages */
.btn-primary:not(.btn) {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:not(.btn):hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--glow);
}

.btn-secondary-dot { display: none; }
.hero-note { display: none; }

/* Hero visual */
.hero-right { position: relative; }

.hero-visual {
  padding: 1.75rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

/* Pipeline */
.hero-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.pipeline-node {
  flex: 1;
  padding: 0.75rem 0.5rem;
  background: var(--glow-faint);
  border: 1px solid rgba(var(--accent-rgb),0.2);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 0.4s ease;
  animation: nodeIn 0.6s ease-out backwards;
}

.pipeline-node:nth-child(1) { animation-delay: 0.3s; }
.pipeline-node:nth-child(3) { animation-delay: 0.5s; }
.pipeline-node:nth-child(5) { animation-delay: 0.7s; }
.pipeline-node:nth-child(7) { animation-delay: 0.9s; }

.pipeline-node:hover {
  background: var(--glow-soft);
  border-color: rgba(var(--accent-rgb),0.4);
  box-shadow: 0 0 20px rgba(var(--accent-rgb),0.15);
}

.pipeline-node-result {
  background: var(--glow-soft);
  border-color: rgba(var(--accent-rgb),0.35);
}

.node-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.node-desc {
  display: block;
  font-size: 0.6rem;
  color: var(--text-faint);
  margin-top: 0.2rem;
}

.pipeline-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),0.3), rgba(var(--accent-rgb),0.6));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.flow-dot {
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: flowThrough 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(var(--accent-rgb),0.8);
}

.pipeline-arrow:nth-child(2) .flow-dot { animation-delay: 0.5s; }
.pipeline-arrow:nth-child(4) .flow-dot { animation-delay: 0.9s; }
.pipeline-arrow:nth-child(6) .flow-dot { animation-delay: 1.3s; }

@keyframes flowThrough {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes nodeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Deployment log */
.hero-log {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.9;
  color: var(--text-faint);
  padding: 1rem 1.1rem;
  background: rgba(0,0,0,0.4);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
}

.log-line {
  opacity: 0;
  animation: logLineIn 0.5s ease-out forwards;
}

.log-line-1 { animation-delay: 1.2s; }
.log-line-2 { animation-delay: 1.6s; }
.log-line-3 { animation-delay: 2s; }
.log-line-4 { animation-delay: 2.4s; }

@keyframes logLineIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.log-prompt { color: var(--accent); margin-right: 0.35rem; }
.log-ok { color: var(--accent); margin-right: 0.5rem; }

.log-status {
  color: var(--accent);
  margin-right: 0.4rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.log-metric { color: var(--accent); font-weight: 600; }

@keyframes flowThroughVertical {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 640px) {
  .hero-pipeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .pipeline-node {
    width: 100%;
    max-width: 200px;
  }
  .pipeline-arrow {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(var(--accent-rgb),0.3), rgba(var(--accent-rgb),0.6));
  }
  .flow-dot {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    animation-name: flowThroughVertical;
  }
}

/* ─── Sections ─────────────────────────────────────────────────────────── */
.section {
  width: 100%;
  padding: 3rem 0 6rem;
}

.section-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 36rem;
}

/* Bento grid */
.bento {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .bento .feature-card:nth-child(1) { grid-column: span 2; }
  .bento .feature-card:nth-child(2) { grid-column: span 1; }
  .bento .feature-card:nth-child(3) { grid-column: span 1; }
}

.bento-item {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.bento-item:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
}

.bento-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.bento-item p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Standard grids */
.grid { display: grid; gap: 1.5rem; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: rgba(var(--accent-rgb),0.15);
  box-shadow: 0 0 40px rgba(var(--accent-rgb),0.04);
}

.feature-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s ease;
  position: relative;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(var(--accent-rgb),0.06);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.feature-meta {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 0.5rem;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(var(--accent-rgb),0.5);
}

.list { padding-left: 1.25rem; }
.list li { margin-bottom: 0.3rem; color: var(--text-dim); font-size: 0.9rem; }
.list-compact li { margin-bottom: 0.2rem; }

/* ─── Form ───────────────────────────────────────────────────────────── */
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-label { font-size: 0.85rem; font-weight: 500; color: var(--text); }

.field-input, .field-textarea {
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.field-input:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(var(--accent-rgb),0.1);
}

.helper-text { font-size: 0.75rem; color: var(--text-faint); }

/* ─── Footer ───────────────────────────────────────────────────────────── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-links { display: flex; gap: 1.5rem; }
.footer-link { color: var(--text-dim); transition: color 0.2s; }
.footer-link:hover { color: var(--accent); }
.footer-location { color: var(--text-faint); }

.accent { color: var(--accent); }
.strong { color: var(--text); font-weight: 600; }
.muted { color: var(--text-muted); }

/* ─── Mobile ───────────────────────────────────────────────────────────── */
@media screen and (max-width: 992px) {
  .container { padding: 0 1rem; }
  .nav-inner {
    padding: 0 1rem;
    flex-wrap: nowrap;
    overflow: hidden;
    max-width: 100%;
  }
  .nav-inner .brand {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }
  .nav { overflow: hidden; }
  body { overflow-x: hidden; }
  .brand-logo { height: 40px; }
  .nav-toggle {
    display: flex !important;
    flex-shrink: 0;
    position: relative;
    z-index: 10001;
  }
  .nav-links { display: none !important; }
  .nav.nav-open {
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    background: #000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }
  .nav.nav-open .nav-inner { overflow: visible; }
  .nav.nav-open .nav-links {
    display: flex !important;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    z-index: 9999;
  }
  .nav-links .nav-link {
    width: 100%;
    max-width: 280px;
    padding: 1.1rem 1.5rem;
    font-size: 1.2rem;
    text-align: center;
    border-radius: var(--radius);
    color: var(--text);
  }
  .nav-links .nav-link:hover,
  .nav-links .nav-link-active {
    color: var(--accent);
    background: rgba(var(--accent-rgb),0.1);
  }
  .nav-links .nav-link.nav-cta {
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #000;
  }
  .nav-links .nav-link.nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-light), #0077dd);
    color: #000;
  }
  .nav-cta-long { display: inline; }
  .nav-cta-short { display: none; }
  .hero { padding: 3rem 0 4rem; }
  .hero-grid {
    gap: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .hero-right { order: -1; }
  .hero-title { font-size: clamp(2.25rem, 10vw, 4rem); }
  .hero-text { font-size: 1.05rem; }
  .hero-text-wrap { min-height: 5.5em; }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-visual { padding: 1.25rem; }
  .section { padding: 2rem 0 4rem; }
  .card { padding: 1.5rem; }
  .feature-card { padding: 1.25rem; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.25rem); }
  .footer-inner { padding: 0 1rem; flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
