/* Custom Font Imports - Editorial & Luxury Typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Syne:wght@400;500;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600&family=Space+Mono&display=swap');

/* Strict Design System: Luxury Editorial Style */
:root {
  --color-bg: #0A0A0A;          /* Pure obsidian base */
  --color-card: #121212;        /* Dark structural element */
  --color-border: rgba(234, 220, 201, 0.12); /* Ultra-thin warm sand guidelines */
  --color-border-hover: rgba(234, 220, 201, 0.3);
  
  /* Palette: Warm Sand, Ink, and Coral Vermilion */
  --color-sand: #EADCC9;        /* Primary text & accents */
  --color-sand-muted: #A39686;  /* Secondary text */
  --color-sand-dark: #474037;   /* Technical grids / guides */
  --color-coral: #FF483C;       /* Focus accent */
  --color-white: #FFFFFF;
  
  --font-display: 'Syne', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  --transition-rigid: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-elastic: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg);
}

body {
  color: var(--color-sand);
  font-family: var(--font-body);
  line-height: 1.5;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
}

/* Subtle Film Grain Texture Overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Typography Rules */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
}

p {
  font-weight: 300;
  color: var(--color-sand-muted);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-sand-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-coral);
}

/* Container Structure */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Structural Guidelines System */
.grid-lines {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1340px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: -1;
  padding: 0 3rem;
}
.grid-line {
  width: 1px;
  height: 100%;
  background: rgba(234, 220, 201, 0.03);
}

/* Navigation */
header {
  border-bottom: 1px solid var(--color-border);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.logo span {
  color: var(--color-coral);
}

.nav-links {
  display: flex;
  gap: 3.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-sand-muted);
  transition: var(--transition-rigid);
}
.nav-links a:hover {
  color: var(--color-coral);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-rigid);
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-sand);
}
.btn-primary {
  background: var(--color-sand);
  color: var(--color-bg);
  border-color: var(--color-sand);
}
.btn-primary:hover {
  background: var(--color-coral);
  border-color: var(--color-coral);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-secondary:hover {
  border-color: var(--color-sand);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  display: block;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--color-sand);
}
.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Layout Cards (Non-templated, clean border framing) */
.editorial-card {
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: var(--transition-elastic);
  position: relative;
}
.editorial-card:hover {
  border-color: var(--color-border-hover);
}

/* Interactive Director Deck (Editor Simulator) */
.editor-section {
  padding: 6rem 0 8rem;
}
.editor-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr 340px;
  border: 1px solid var(--color-border);
  background: #090909;
}

.deck-panel {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-border);
}
.deck-panel.right {
  border-right: none;
  border-left: 1px solid var(--color-border);
}

.panel-header {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-sand-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Controls inside deck */
.deck-control-group {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.deck-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-sand-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.selector-strip {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.selector-item {
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-rigid);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.selector-item:hover {
  border-color: var(--color-sand);
}
.selector-item.active {
  background: var(--color-sand);
  color: var(--color-bg);
  border-color: var(--color-sand);
}
.selector-item::after {
  content: '→';
  opacity: 0.3;
}
.selector-item.active::after {
  content: '✓';
  opacity: 1;
}

.monitor-viewport {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #050505;
  position: relative;
}

/* Upgraded HUD & VU Meter Layouts */
.vu-meter-rack {
  display: flex;
  flex-direction: column-reverse;
  gap: 3px;
  height: 380px;
  width: 5px;
  opacity: 0.6;
}
.vu-seg {
  width: 100%;
  flex: 1;
  background: rgba(234, 220, 201, 0.04);
  transition: background 0.08s ease;
}
.vu-seg.active {
  background: var(--color-sand);
}
.vu-seg.active-coral {
  background: var(--color-coral);
}

.monitor-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/16;
  border: 1px solid var(--color-sand-dark);
  position: relative;
  overflow: hidden;
  background: #020202;
  transition: var(--transition-elastic);
}

.monitor-hud {
  position: absolute;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--color-sand-muted);
  z-index: 10;
  pointer-events: none;
  text-transform: uppercase;
}
.hud-top {
  top: 15px;
}
.hud-bottom {
  bottom: 15px;
}
.hud-rec {
  color: var(--color-coral);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}
.rec-dot {
  width: 6px;
  height: 6px;
  background: var(--color-coral);
  border-radius: 50%;
  display: inline-block;
  animation: rec-blink 1s infinite alternate;
}
@keyframes rec-blink {
  0% { opacity: 0.1; }
  100% { opacity: 1; }
}

.tracker-metrics {
  position: absolute;
  bottom: -40px;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--color-coral);
  line-height: 1.4;
  white-space: nowrap;
  pointer-events: none;
  background: rgba(10,10,10,0.85);
  padding: 2px 5px;
  border: 1px solid rgba(255, 72, 60, 0.2);
}
.monitor-canvas {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: 
    linear-gradient(rgba(234, 220, 201, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 220, 201, 0.01) 1px, transparent 1px);
  background-size: 20px 20px;
}
.monitor-canvas::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-sand-muted);
  border-left: 1px solid var(--color-sand-muted);
}
.monitor-canvas::after {
  content: '';
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--color-sand-muted);
  border-right: 1px solid var(--color-sand-muted);
}

.monitor-target {
  position: absolute;
  border: 1px dashed var(--color-coral);
  width: 130px;
  height: 130px;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.monitor-target::before {
  content: 'CV_TRACK';
  position: absolute;
  top: -16px;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--color-coral);
  letter-spacing: 0.1em;
}

.monitor-subtitles {
  position: absolute;
  bottom: 15%;
  left: 10%;
  right: 10%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-white);
  pointer-events: none;
}
.monitor-subtitles span.highlight {
  color: var(--color-bg);
  background: var(--color-sand);
  padding: 0 4px;
}
.monitor-subtitles span.highlight-yellow {
  color: var(--color-bg);
  background: var(--color-coral);
  padding: 0 4px;
}

.deck-play-btn {
  margin-top: 2rem;
  background: transparent;
  border: 1px solid var(--color-sand);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sand);
  cursor: pointer;
  transition: var(--transition-rigid);
}
.deck-play-btn:hover {
  background: var(--color-sand);
  color: var(--color-bg);
  transform: scale(1.05);
}

/* Transcripts Panel */
.transcript-flow {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.transcript-row {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-sand-muted);
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(234, 220, 201, 0.05);
  transition: var(--transition-rigid);
}
.transcript-row:hover {
  color: var(--color-white);
}
.transcript-row.active {
  color: var(--color-coral);
  border-bottom-color: var(--color-coral);
}

/* Editorial Waveform Timeline */
.deck-timeline {
  grid-column: span 3;
  border-top: 1px solid var(--color-border);
  padding: 2.5rem;
  background: #070707;
}
.timeline-header-strip {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-sand-dark);
  margin-bottom: 1rem;
}
.timeline-track-rail {
  height: 48px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  background: #020202;
}
.timeline-waveform-path {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
.timeline-exclusion-block {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgba(255, 72, 60, 0.08);
  border-left: 1px dotted var(--color-coral);
  border-right: 1px dotted var(--color-coral);
}
.timeline-exclusion-block::before {
  content: '// CUT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--color-coral);
  letter-spacing: 0.1em;
}
.timeline-playhead-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--color-coral);
  box-shadow: 0 0 8px var(--color-coral);
  z-index: 10;
  left: 0;
}

/* Feature Grid (Editorial Layout) */
.features-section {
  padding: 8rem 0;
  border-top: 1px solid var(--color-border);
}
.section-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 4rem;
  letter-spacing: -0.03em;
}
.section-headline em {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--color-sand-muted);
}

.grid-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.cell-editorial {
  padding: 4rem 3rem;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cell-editorial:last-child {
  border-right: none;
}
.cell-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-coral);
}
.cell-editorial h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.cell-editorial p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Minimalist Architecture Schema */
.arch-blueprint {
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arch-svg {
  width: 100%;
  max-width: 800px;
}
.blueprint-node {
  fill: #000;
  stroke: var(--color-sand-dark);
}
.blueprint-node-active {
  stroke: var(--color-sand);
}
.flow-line {
  stroke-dasharray: 6;
  animation: line-flow 15s linear infinite;
}
@keyframes line-flow {
  to { stroke-dashoffset: -120; }
}

/* Developer Console Playground */
.api-section {
  padding: 8rem 0;
  border-top: 1px solid var(--color-border);
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.api-desc h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 2rem;
}
.api-desc p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.meta-specs {
  display: flex;
  gap: 4rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.spec-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-sand-dark);
  text-transform: uppercase;
}
.spec-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sand);
}

.terminal-mockup {
  border: 1px solid var(--color-border);
  background: #050505;
}
.terminal-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
}
.terminal-tab {
  padding: 1rem 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-sand-dark);
  cursor: pointer;
  border-right: 1px solid var(--color-border);
  transition: var(--transition-rigid);
}
.terminal-tab.active {
  background: var(--color-bg);
  color: var(--color-sand);
  border-bottom: 1px solid var(--color-coral);
}
.terminal-body {
  padding: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  min-height: 250px;
  line-height: 1.7;
}
.t-keyword { color: var(--color-coral); }
.t-string { color: var(--color-sand-muted); }
.t-fn { color: var(--color-white); }

.terminal-action {
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
}

.terminal-result-panel {
  margin-top: 1.5rem;
  border-top: 1px dashed var(--color-border);
  padding-top: 1.5rem;
  display: none;
}

/* Dotted Map Section */
.map-frame-editorial {
  border: 1px solid var(--color-border);
  position: relative;
  width: 100%;
  aspect-ratio: 2.2/1;
  background: #020202;
  margin-top: 4rem;
  overflow: hidden;
}
.map-node-editorial {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  cursor: pointer;
}
.map-node-editorial::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid var(--color-coral);
  animation: map-pulse 2s infinite ease-out;
}
@keyframes map-pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.map-node-editorial-1 { top: 35%; left: 22%; }
.map-node-editorial-2 { top: 28%; left: 50%; }
.map-node-editorial-3 { top: 40%; left: 80%; }

.map-tooltip-editorial {
  position: absolute;
  background: var(--color-bg);
  border: 1px solid var(--color-sand);
  padding: 1rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-rigid);
  z-index: 10;
}

/* Impact & Counts section */
.impact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 8rem 0;
  border-top: 1px solid var(--color-border);
}
.large-stat-card {
  display: flex;
  flex-direction: column;
}
.giant-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--color-white);
}
.stat-description {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  max-width: 420px;
}

.editorial-chart {
  border: 1px solid var(--color-border);
  padding: 3rem;
}

/* Editorial Pricing Section */
.pricing-section {
  padding: 8rem 0;
  border-top: 1px solid var(--color-border);
}
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
}
.pricing-toggle-wrap label {
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition-rigid);
}
.pricing-toggle-wrap label.active {
  opacity: 1;
  color: var(--color-coral);
}
.switch-slider {
  width: 44px;
  height: 20px;
  border: 1px solid var(--color-sand);
  position: relative;
  cursor: pointer;
}
.switch-slider::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-sand);
  top: 3px;
  left: 3px;
  transition: var(--transition-rigid);
}
.switch-slider.active::after {
  left: 27px;
  background: var(--color-coral);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
}
.pricing-card {
  padding: 4rem 3rem;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.pricing-card:last-child {
  border-right: none;
}
.pricing-card.highlighted {
  background: rgba(234, 220, 201, 0.02);
}
.card-tier {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-sand-muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-white);
}
.pricing-amount span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-sand-muted);
}
.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.pricing-features-list li {
  font-size: 0.95rem;
  color: var(--color-sand-muted);
}
.pricing-features-list li::before {
  content: '— ';
  color: var(--color-coral);
}

/* Technical FAQ Accordion Section */
.faq-section {
  padding: 8rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-row {
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
}
.faq-row:last-child {
  border-bottom: none;
}
.faq-trigger {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
}
.faq-trigger span:last-child {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  transition: var(--transition-rigid);
}
.faq-row.active .faq-trigger span:last-child {
  transform: rotate(45deg);
  color: var(--color-coral);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-right: 4rem;
  color: var(--color-sand-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-row.active .faq-content {
  margin-top: 1.5rem;
}

/* Editorial Footer */
footer {
  padding: 8rem 0 4rem;
  background: var(--color-bg);
}
.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
}
.footer-desc {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-sand-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links-list a {
  font-size: 0.9rem;
  color: var(--color-sand-muted);
  transition: var(--transition-rigid);
}
.footer-links-list a:hover {
  color: var(--color-white);
}
.footer-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-sand-dark);
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
  .editor-wrapper {
    grid-template-columns: 1fr;
  }
  .deck-panel {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .deck-panel.right {
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
  .grid-editorial {
    grid-template-columns: 1fr;
  }
  .cell-editorial {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .cell-editorial:last-child {
    border-bottom: none;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .impact-row {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .pricing-card:last-child {
    border-bottom: none;
  }
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .container {
    padding: 0 2rem;
  }
  .grid-lines {
    padding: 0 2rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
}
