/* ==========================================================================
   SobyAI — Landing Page Stylesheet
   Apple-Grade Minimalism · Pure Obsidian (#000000) & Electric Orange (#ff5500)
   Typography: Inter / SF Pro Stack · Precision Hairlines · Zero AI Slop
   ========================================================================== */

:root {
  /* Canvas & Backgrounds */
  --bg-base: #000000;
  --bg-surface: #09090b;
  --bg-card: #0d0d10;
  --bg-card-hover: #131317;
  --bg-subtle: rgba(255, 255, 255, 0.03);
  --bg-overlay: rgba(0, 0, 0, 0.88);

  /* Brand Accents */
  --accent-primary: #ff5500;
  --accent-hover: #ff6e1a;
  --accent-glow: rgba(255, 85, 0, 0.35);
  --accent-glow-subtle: rgba(255, 85, 0, 0.08);
  --accent-warning: #f59e0b;
  --accent-danger: #ff4757;

  /* AI Engines */
  --engine-chatgpt: #10a37f;
  --engine-claude: #d97757;
  --engine-gemini: #38bdf8;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-inverse: #000000;

  /* Apple-Caliber Hairlines & Inset Highlights */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-focus: rgba(255, 85, 0, 0.5);
  --border-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.06);

  /* Apple & Clean Typography Stack */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Radii */
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.85);
}

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

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

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.text-center { text-align: center; }
.text-orange { color: var(--accent-primary); }
.text-muted { color: var(--text-muted); }

/* Ambient Subtle Radial Glow */
.ambient-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.06) 0%, rgba(255, 85, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Engine SVGs */
.engine-svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.svg-chatgpt { color: #10a37f; }
.svg-claude { color: #d97757; }
.svg-gemini { color: #38bdf8; }

/* ==========================================================================
   NAVIGATION (APPLE TRANSLUCENT FROSTED GLASS)
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 0;
  transition: all 0.2s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}
.nav-link:hover {
  color: #fff;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-nav-signin {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 500;
  color: #a1a1aa;
  padding: 0.48rem 0.95rem;
  border-radius: var(--radius-pill);
  transition: all 0.15s ease;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-nav-signin:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.48rem 1.15rem;
  border-radius: var(--radius-pill);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.12);
  cursor: pointer;
  border: none;
}
.btn-nav-cta:hover {
  background: #f0f0f4;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.22);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (BALANCED 2-COLUMN APPLE-GRADE GRID)
   ========================================================================== */
.hero {
  position: relative;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 0.32rem 0.85rem;
  margin-bottom: 1.6rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1.35rem;
  color: #ffffff;
}

/* Rotating Keyword with Electric Orange Accent */
.blur-word {
  color: var(--accent-primary);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 28px rgba(255, 85, 0, 0.45);
  font-weight: 800;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 530px;
  letter-spacing: -0.01em;
}
.hero-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

/* SCAN SEARCH BAR (PRIMARY CTA WITH LEAN PLACEHOLDER & ELEVATED LANGUAGE SELECTOR) */
.scan-box-wrap {
  margin-bottom: 1.25rem;
}

.scan-input-box {
  display: flex;
  align-items: center;
  background: #0a0a0d;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.45rem 0.35rem 0.75rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75), var(--border-highlight);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 560px;
  position: relative;
}
.scan-input-box:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85), 0 0 0 2px rgba(255, 85, 0, 0.25);
}

/* Elevated Language / Market Selector Capsule */
.market-select-pill-wrap {
  display: flex;
  align-items: center;
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.scan-market-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.38rem 0.65rem;
  padding-right: 1.45rem;
  outline: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 256 256'%3E%3Cpath fill='%23ffffff' d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.45rem center;
}
.scan-market-select:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}
.scan-market-select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.25);
}
.scan-market-select option {
  background: #0d0d10;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.scan-input-box i.search-icon {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-right: 0.4rem;
  flex-shrink: 0;
}

.scan-input-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #fff;
  min-width: 0;
  padding: 0 0.4rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.scan-input-box input::placeholder {
  color: var(--text-muted);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.btn-scan-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.68rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.btn-scan-submit:hover {
  background: #f0f0f4;
  transform: scale(1.02);
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.28);
}

.hero-micro-copy {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
}
.hero-micro-copy span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-micro-copy i {
  color: var(--accent-primary);
  font-size: 0.88rem;
}

/* HERO RIGHT: SYMMETRICAL RECTANGULAR MACOS PREVIEW */
.hero-mockup-wrap {
  position: relative;
}

.mock-macos-window {
  background: #09090b;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg), var(--border-highlight);
  border-radius: 16px;
  overflow: hidden;
  height: 410px;
  display: flex;
  flex-direction: column;
}

.macos-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.macos-dots {
  display: flex;
  gap: 6px;
}
.macos-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.macos-dot-red { background: #ff5f56; }
.macos-dot-yellow { background: #ffbd2e; }
.macos-dot-green { background: #27c93f; }

.macos-window-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.macos-feed {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.feed-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.feed-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
}
.feed-item.highlight-rec {
  border-color: rgba(255, 85, 0, 0.35);
  background: rgba(255, 85, 0, 0.035);
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
.feed-engine-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
}
.feed-engine-badge.chatgpt { color: var(--engine-chatgpt); }
.feed-engine-badge.claude { color: var(--engine-claude); }
.feed-engine-badge.gemini { color: var(--engine-gemini); }

.feed-rank-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
}
.tag-top1 {
  background: rgba(255, 85, 0, 0.12);
  color: var(--accent-primary);
  border: 1px solid rgba(255, 85, 0, 0.35);
}
.tag-comp {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-warning);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.tag-citation {
  background: rgba(56, 189, 248, 0.12);
  color: var(--engine-gemini);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.feed-query {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  font-family: var(--font-mono);
}
.feed-response {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.feed-response strong {
  color: #fff;
  background: rgba(255, 85, 0, 0.12);
  padding: 0.08rem 0.3rem;
  border-radius: 4px;
}

.feed-sources-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}
.source-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #a1a1aa;
  font-size: 0.68rem;
  font-family: var(--font-mono);
}

/* ==========================================================================
   SOCIAL PROOF QUOTE STRIP (REAL NAMES + PHOTOS + SOBYAI USER)
   ========================================================================== */
.quote-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3.5rem 0;
  background: rgba(255, 255, 255, 0.01);
}
.quote-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 500;
  color: #f5f5f7;
  letter-spacing: -0.02em;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}
.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}
.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
}
.quote-avatar-initials {
  background: linear-gradient(135deg, #22222a 0%, #111116 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  user-select: none;
}
.author-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.quote-user-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}
.user-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 6px var(--accent-primary);
}

/* ==========================================================================
   PROCESS SECTION (HOW IT WORKS — STRICTLY LEFT-ALIGNED AS BEFORE)
   ========================================================================== */
.process-section {
  padding: 6.5rem 0;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.65rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: #fff;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 620px;
  letter-spacing: -0.01em;
  margin-bottom: 3.5rem;
}

.how-it-works-timeline {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  position: relative;
}

.timeline-step {
  display: grid;
  grid-template-columns: 44px 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}

.timeline-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
}

.timeline-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--bg-base);
  z-index: 2;
  margin-bottom: 0.75rem;
}

.timeline-connector {
  position: absolute;
  top: 2rem;
  bottom: -6rem;
  width: 1px;
  background: rgba(255, 85, 0, 0.5);
}
.timeline-step:last-child .timeline-connector {
  display: none;
}

.timeline-content h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: #fff;
  line-height: 1.18;
}
.timeline-content p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
}

.timeline-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Graphic Step 1 */
.graphic-step-1 {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}
.floating-search-pill {
  display: flex;
  align-items: center;
  background: #ffffff;
  color: #000000;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  gap: 0.6rem;
  min-width: 250px;
}
.floating-search-pill .blinking-cursor {
  width: 2px;
  height: 1.1rem;
  background: #000;
  animation: blink-caret 1s infinite;
}
@keyframes blink-caret { 50% { opacity: 0; } }

.floating-engine-chips {
  display: flex;
  gap: 0.45rem;
}
.engine-chip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.74rem;
  font-family: var(--font-mono);
  color: #fff;
}

/* Graphic Step 2: Dotted Radar Orbit with Real Engine SVGs */
.radar-orbit-wrap {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.radar-orbit-wrap::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 85, 0, 0.28);
}
.radar-center-mag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0a0a0d;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.orbit-node {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #0d0d10;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.orbit-node:hover {
  transform: scale(1.1);
}
.orbit-node .engine-svg {
  width: 16px;
  height: 16px;
}
.node-chatgpt { top: 4px; right: 28px; }
.node-claude { bottom: 8px; left: 16px; }
.node-gemini { bottom: 20px; right: 18px; }

/* Graphic Step 3 */
.action-pills-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 260px;
}
.action-pill-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
}
.action-pill-item i {
  font-size: 0.95rem;
}

/* ==========================================================================
   CALLOUT SECTION (CTA — CENTERED)
   ========================================================================== */
.dark-callout-section {
  padding: 6.5rem 0;
  background: #000000;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-primary);
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.25);
  padding: 0.32rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}

.callout-title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: #fff;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.callout-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.callout-scan-box {
  margin: 0 auto 1.5rem;
  max-width: 560px;
}

.callout-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.callout-secondary-cta:hover {
  color: #fff;
}
.callout-secondary-cta i {
  color: var(--accent-primary);
}

/* ==========================================================================
   USE CASES / BENTO GRID (STRICTLY LEFT-ALIGNED AS BEFORE)
   ========================================================================== */
.use-cases-section {
  padding: 6.5rem 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.use-case-card {
  background: #09090c;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow-sm), var(--border-highlight);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.use-case-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.category-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-primary);
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.use-case-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
  color: #fff;
  line-height: 1.25;
}
.use-case-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   LIGHTENED PRICING SECTION
   ========================================================================== */
.pricing-section {
  padding: 6.5rem 0;
  border-top: 1px solid var(--border-subtle);
}

.pricing-header-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.pricing-header-wrap .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}
.billing-label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  transition: color 0.15s ease;
}
.billing-label.active {
  color: #fff;
  font-weight: 600;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}
.toggle-switch.annual {
  background: var(--accent-primary);
}
.toggle-thumb {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.toggle-switch.annual .toggle-thumb {
  transform: translateX(20px);
}

.annual-discount-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-primary);
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.25);
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}

.pricing-card {
  background: #09090c;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-sm), var(--border-highlight);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--border-medium);
}
.pricing-card.is-popular {
  border-color: rgba(255, 85, 0, 0.45);
  background: #0d0c10;
  box-shadow: 0 0 35px var(--accent-glow-subtle), var(--border-highlight);
}

.popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 10px var(--accent-glow);
  white-space: nowrap;
}

.plan-top {
  margin-bottom: 1.25rem;
}
.plan-tier-name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.is-popular .plan-tier-name { color: var(--accent-primary); }

.plan-price-display {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin: 0.65rem 0 0.75rem;
}
.plan-price-currency {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.plan-price-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.plan-price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
}
.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.plan-features-list li strong {
  color: #fff;
  font-weight: 600;
}
.plan-features-list li i {
  color: var(--accent-primary);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.btn-pricing-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-medium);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.btn-pricing-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}
.pricing-card.is-popular .btn-pricing-cta {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.18);
}
.pricing-card.is-popular .btn-pricing-cta:hover {
  background: #f0f0f4;
  transform: translateY(-1px);
}

.pricing-guarantee-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2.25rem;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 6.5rem 0;
  border-top: 1px solid var(--border-subtle);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  margin-top: 1.5rem;
}

.faq-intro-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: #09090c;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item:hover {
  border-color: var(--border-medium);
}
.faq-item.active {
  border-color: rgba(255, 85, 0, 0.35);
  background: rgba(255, 85, 0, 0.02);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.35rem;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
}
.faq-question-btn i {
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.faq-item.active .faq-question-btn i {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.faq-answer-content {
  display: none;
  padding: 0 1.35rem 1.25rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-item.active .faq-answer-content {
  display: block;
}

/* ==========================================================================
   FINAL CTA SECTION (CTA — CENTERED)
   ========================================================================== */
.final-cta-section {
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}

.final-cta-scan-box {
  margin: 2.25rem auto 1rem;
  max-width: 560px;
}

/* ==========================================================================
   FOOTER (APPLE MINIMALIST)
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #000000;
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.footer-brand-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 260px;
}
.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-family: var(--font-mono);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}
.footer-col a:hover {
  color: #fff;
}

/* Big Outlined Typography Watermark */
.footer-giant-watermark {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: center;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  user-select: none;
  pointer-events: none;
  margin-bottom: 2.5rem;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   REDESIGNED AUTH MODAL (APPLE CALIBER)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0d0d10;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg), var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  max-width: 440px;
  width: 90vw;
  position: relative;
  animation: modal-zoom 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modal-zoom {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.close-modal {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.close-modal:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Segmented Control Tabs (Sign In / Sign Up) */
.auth-modal-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 3px;
  margin-bottom: 1.5rem;
  gap: 3px;
}
.auth-tab-btn {
  flex: 1;
  padding: 0.48rem 0;
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-tab-btn:hover {
  color: #fff;
}
.auth-tab-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.modal-header {
  margin-bottom: 1.35rem;
}
.modal-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.modal-header p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  padding: 0.72rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 1.25rem;
}
.google-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.google-icon-svg {
  flex-shrink: 0;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-family: var(--font-mono);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-subtle);
}
.divider span {
  padding: 0 0.75rem;
}

.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}
.form-group input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  color: #fff;
  outline: none;
  font-family: var(--font-body);
  transition: all 0.15s ease;
}
.form-group input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-glow);
}

.password-input-wrapper {
  position: relative;
}
.password-input-wrapper input {
  padding-right: 2.5rem;
}
.btn-toggle-pw {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
}

.btn-auth-submit {
  width: 100%;
  padding: 0.8rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}
.btn-auth-submit:hover {
  background: #f0f0f4;
}

.auth-legal-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  line-height: 1.5;
}
.auth-legal-disclaimer a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   STANDALONE AUTH PAGE (LOGIN.HTML)
   ========================================================================== */
.auth-standalone-body {
  background-color: #000000;
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.auth-standalone-wrap {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
}
.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: var(--font-mono);
  margin-bottom: 0.85rem;
  transition: all 0.15s ease;
}
.auth-back-link:hover {
  color: #fff;
  transform: translateX(-2px);
}
.auth-card-standalone {
  background: #0d0d10;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--border-highlight);
  padding: 1.85rem 1.75rem;
}
.auth-card-brand {
  margin-bottom: 1rem;
}
.auth-card-standalone .modal-header {
  margin-bottom: 1.15rem;
}
.auth-card-standalone .modal-header h3 {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}
.auth-card-standalone .divider {
  margin: 0.95rem 0;
}
.auth-card-standalone .form-group {
  margin-bottom: 0.85rem;
}
.auth-card-standalone .btn-auth-submit {
  margin-top: 0.25rem;
}
.forgot-password-row {
  text-align: right;
  margin-top: -0.35rem;
  margin-bottom: 0.45rem;
}
.forgot-password-row a {
  font-size: 0.78rem;
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}
.forgot-password-row a:hover {
  text-decoration: underline;
}
.auth-switch-prompt {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-top: 0.85rem;
}
.auth-switch-prompt a {
  color: var(--accent-primary);
  font-weight: 600;
  margin-left: 0.25rem;
}
.auth-switch-prompt a:hover {
  text-decoration: underline;
}
.auth-card-standalone .auth-legal-disclaimer {
  margin-top: 0.85rem;
}

/* ==========================================================================
   LEGAL PAGES (TERMS.HTML & PRIVACY.HTML)
   ========================================================================== */
.legal-page-body {
  background-color: #000000;
  color: var(--text-primary);
}
.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.75rem 6rem;
}
.legal-header {
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 0.6rem;
}
.legal-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.legal-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
.legal-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 0.85rem;
}
.legal-section p {
  font-size: 0.94rem;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.legal-section p code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: #fff;
}
.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.6rem;
  margin-bottom: 0.85rem;
}
.legal-section ul li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: #a1a1aa;
  line-height: 1.65;
}
.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: 0.25rem;
  color: var(--accent-primary);
  font-size: 1.1rem;
  line-height: 1;
}
.legal-section ul li strong {
  color: #fff;
}
.legal-callout {
  background: #09090c;
  border: 1px solid rgba(255, 85, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin-top: 1rem;
}
.legal-callout p {
  margin-bottom: 0.35rem;
  color: #e4e4e7;
}
.legal-callout p:last-child {
  margin-bottom: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.legal-callout a {
  color: var(--accent-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .timeline-step {
    grid-template-columns: 36px 1fr;
    gap: 1.75rem;
  }
  .timeline-graphic {
    grid-column: 2;
  }
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .timeline-step {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .timeline-rail {
    display: none;
  }
  .timeline-graphic {
    grid-column: 1;
    margin-top: 1rem;
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  .scan-input-box {
    padding: 0.5rem 0.65rem;
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    gap: 0.5rem;
  }
  .market-select-pill-wrap {
    width: 100%;
    margin-right: 0;
    justify-content: flex-start;
  }
  .scan-market-select {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.45rem 0.75rem;
    padding-right: 1.5rem;
  }
  .scan-input-box input {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.25rem 0;
  }
  .btn-scan-submit {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  .hero-micro-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}
