/* ============================================
   loopd — Dark Industrial Design System
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --surface: #161616;
  --surface-hover: #1c1c1c;
  --text-primary: #f5f5f5;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --accent: #e8ff3d;
  --accent-dim: rgba(232, 255, 61, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.14);
  --font-display: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 14px;
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
  --pad-x: clamp(20px, 4vw, 64px);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-display);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: none;
}

input,
textarea {
  font-family: inherit;
  outline: none;
}

ul {
  list-style: none;
}

/* ============================================
   Noise Overlay
   ============================================ */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width var(--transition-fast), height var(--transition-fast), background var(--transition-fast);
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 255, 61, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 300ms ease, height 300ms ease, border-color 300ms ease, transform 120ms linear;
}

body:has(a:hover, button:hover, .btn-primary:hover, .btn-ghost:hover, input:hover, textarea:hover) .cursor {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--accent);
  mix-blend-mode: normal;
}

body:has(a:hover, button:hover, .btn-primary:hover, .btn-ghost:hover, input:hover, textarea:hover) .cursor-follower {
  width: 64px;
  height: 64px;
  border-color: rgba(232, 255, 61, 0.12);
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--accent);
  color: #0a0a0a !important;
  border-radius: 100px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 255, 61, 0.25);
  color: #0a0a0a !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 var(--pad-x);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Camera Rig — 4 cameras in a horizontal row */
.camera-rig {
  position: relative;
  width: 480px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rig-rail {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cam {
  width: 64px;
  height: 64px;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(232, 255, 61, 0);
  animation: camPulse 3s ease-in-out infinite;
  position: relative;
}

.cam::before {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  opacity: 0.7;
}

.cam::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: 8px;
  right: 8px;
  animation: camBlink 3s ease-in-out infinite;
}

.cam-1 { animation-delay: 0s; }
.cam-1::after { animation-delay: 0s; }
.cam-2 { animation-delay: 0.15s; }
.cam-2::after { animation-delay: 0.15s; }
.cam-3 { animation-delay: 0.3s; }
.cam-3::after { animation-delay: 0.3s; }
.cam-4 { animation-delay: 0.45s; }
.cam-4::after { animation-delay: 0.45s; }

@keyframes camPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(232, 255, 61, 0);
    border-color: var(--border);
  }
  50% {
    box-shadow: 0 0 20px 2px rgba(232, 255, 61, 0.15);
    border-color: rgba(232, 255, 61, 0.4);
  }
}

@keyframes camBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}



/* Hero Copy */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 255, 61, 0.22);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.btn-wide {
  width: 100%;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================================
   Ticker
   ============================================ */
.ticker {
  background: var(--accent);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 24s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  padding-right: 8px;
}

.ticker-group span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 0 18px;
}

.ticker-dot {
  display: inline-block;
  width: 6px !important;
  height: 6px;
  border-radius: 50%;
  background: #0a0a0a;
  padding: 0 !important;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 120px var(--pad-x);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 56px;
}

/* ============================================
   How it works
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================
   Results
   ============================================ */
.results {
  background: var(--bg-elevated);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-video {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.result-card:hover .result-video {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
}

.video-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(232, 255, 61, 0.18);
}

.result-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

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

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

.request-access {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 40px;
  text-align: center;
}

.request-access a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition-fast);
}

.request-access a:hover {
  opacity: 0.75;
}

/* ============================================
   Services
   ============================================ */
.services {
  background: var(--bg-elevated);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.service:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.service-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(232, 255, 61, 0.18);
}

.service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============================================
   App Section
   ============================================ */
.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.app-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.phone-mockup:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
  position: relative;
}

.phone-qr {
  width: 160px;
  height: 160px;
  background: var(--text-primary);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-pattern {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
}

.qr-square {
  background: var(--bg);
  border-radius: 2px;
  animation: qrFlicker 2.5s ease-in-out infinite;
}

.qr-square:nth-child(odd) {
  animation-delay: 0.2s;
}

.qr-square:nth-child(3n) {
  animation-delay: 0.5s;
}

.qr-square:nth-child(5n) {
  animation-delay: 0.8s;
}

@keyframes qrFlicker {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
  animation: pillSlide 3.5s ease-in-out infinite;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pillDotPulse 1.5s ease-in-out infinite;
}

@keyframes pillSlide {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

@keyframes pillDotPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.app-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 440px;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}

.cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(140px, 18vw, 300px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.cta-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--border-hover);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(232, 255, 61, 0.03);
}

.form-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.form-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px var(--pad-x);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
}

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

.footer-copy,
.footer-credit {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.reveal[data-delay="2"] {
  transition-delay: 200ms;
}

.reveal[data-delay="3"] {
  transition-delay: 300ms;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .camera-rig {
    width: 360px;
    height: 90px;
  }

  .rig-rail {
    gap: 16px;
  }

  .cam {
    width: 52px;
    height: 52px;
  }

  .cam::before {
    width: 20px;
    height: 20px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .app-copy {
    order: 2;
  }

  .app-visual {
    order: 1;
  }

  .app-body {
    margin-left: auto;
    margin-right: auto;
  }

  .app-list {
    align-items: center;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 20px var(--pad-x);
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-burger {
    display: flex;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .camera-rig {
    width: 240px;
    height: 60px;
  }

  .rig-rail {
    gap: 8px;
  }

  .cam {
    width: 38px;
    height: 38px;
  }

  .cam::before {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 420px) {
  .hero-headline {
    font-size: 34px;
  }

  .section-title {
    font-size: 28px;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }
}
