/* ==========================================================================
   ORICK LUXURY DESIGN SYSTEM — LIGHT STUDIO EDITION (APPLE & GOOGLE STANDARD)
   Aesthetic: Pure Porcelain & Alabaster (#FFFFFF / #FAFAFC / #F5F5F7), Specular Titanium, Blood Red Laser Glows
   Typography: Fraunces Editorial + Space Grotesk + Plus Jakarta Sans + JetBrains Mono
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..800;1,9..144,300..800&family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Crisp Porcelain & White Studio Palette (Apple & Google Pro Standard) */
  --bg-canvas: #FAFAFC;
  --bg-page: #FFFFFF;
  --bg-subtle-section: #F5F5F7; /* Apple signature soft grey */
  --surface-base: #FFFFFF;
  --surface-card: #FFFFFF;
  --surface-card-hover: #FFFFFF;
  --surface-elevated: #F3F4F6;
  --surface-glass: rgba(255, 255, 255, 0.86);

  /* Precision Hairline Borders & Dividers */
  --border-hairline: rgba(0, 0, 0, 0.04);
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.16);
  --border-crimson-subtle: rgba(233, 0, 0, 0.22);
  --border-crimson-laser: #E90000;
  --border-playstore: rgba(15, 157, 88, 0.30);

  /* Signature Crimson Accents */
  --crimson: #E90000;
  --crimson-hot: #FF2644;
  --crimson-deep: #C70000;
  --crimson-subtle-bg: rgba(233, 0, 0, 0.06);
  --crimson-gradient-master: linear-gradient(135deg, #FF2E4C 0%, #E90000 60%, #C40000 100%);
  --crimson-glow-box: 0 14px 35px -6px rgba(233, 0, 0, 0.35);

  /* Google & Play Store Identity Tokens */
  --playstore-green: #0F9D58;
  --playstore-green-dark: #0B8043;
  --google-blue: #1A73E8;
  --google-blue-bg: rgba(26, 115, 232, 0.08);

  /* Apple & Google Typography (Deep Charcoal / Maximum Legibility) */
  --text-pure: #0B0C0E;
  --text-primary: #1D1D1F;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-dim: #9CA3AF;

  /* Typography Font Stacks */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);
  --font-editorial: 'Fraunces', serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Physics Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-quick: 0.18s;
  --duration-smooth: 0.35s;

  /* Dynamic Mouse Spotlight */
  --mouse-x: 50%;
  --mouse-y: 20%;
}

/* ==========================================================================
   RESET & SYSTEM DEFAULTS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(233, 0, 0, 0.045) 0%, transparent 45%),
    radial-gradient(circle at 50% -10%, rgba(233, 0, 0, 0.06) 0%, transparent 55%),
    radial-gradient(circle at 85% 35%, rgba(26, 115, 232, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 15% 75%, rgba(15, 157, 88, 0.03) 0%, transparent 35%);
  background-attachment: fixed;
}

/* Film Grain subtle texture */
.film-grain-layer {
  position: fixed;
  inset: 0;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

/* Architectural Fine Grid */
.architectural-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, black 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 35%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   FLAGSHIP TOP NAVIGATION BAR (APPLE & GOOGLE STANDARD)
   ========================================================================== */
.site-dock-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--duration-smooth) var(--ease-out-expo), 
              border-color var(--duration-smooth) var(--ease-out-expo), 
              box-shadow var(--duration-smooth) var(--ease-out-expo);
}

.site-dock-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.10);
  box-shadow: 
    0 10px 30px -5px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.02);
}

.navbar-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 12px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand Anchor on Top-Left Corner */
.brand-anchor-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 4px 2px;
  transition: transform var(--duration-smooth) var(--ease-elastic), opacity var(--duration-quick);
}

.brand-anchor-nav:hover {
  transform: scale(1.05);
}

.brand-anchor-nav:active {
  transform: scale(0.97);
}

.brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(233, 0, 0, 0.20));
  transition: filter var(--duration-smooth);
}

.brand-anchor-nav:hover .brand-logo-img {
  filter: drop-shadow(0 4px 14px rgba(233, 0, 0, 0.40));
}

/* Nav Links Centered */
.dock-nav-wrapper {
  display: flex;
  align-items: center;
}

.dock-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.dock-nav-link {
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--duration-quick);
  position: relative;
  padding: 6px 0;
}

.dock-nav-link:hover {
  color: var(--text-pure);
}

.dock-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
  transition: width var(--duration-smooth) var(--ease-out-expo);
}

.dock-nav-link:hover::after {
  width: 100%;
}

/* Flagship Elevated Get Orick CTA Button */
.nav-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dock-download-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF1E38 0%, #E90000 55%, #C70000 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 9px 20px 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 
    0 4px 14px -1px rgba(233, 0, 0, 0.38),
    0 1px 2px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
  transition: all var(--duration-smooth) var(--ease-elastic);
  overflow: hidden;
  cursor: pointer;
}

.dock-download-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-22deg);
  transition: left 0.65s var(--ease-out-expo);
  pointer-events: none;
}

.dock-download-cta:hover::before {
  left: 140%;
}

.dock-download-cta:hover {
  transform: translateY(-1.5px) scale(1.02);
  box-shadow: 
    0 8px 25px -2px rgba(233, 0, 0, 0.52),
    0 2px 6px rgba(0, 0, 0, 0.12),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
}

.dock-download-cta:active {
  transform: translateY(0.5px) scale(0.97);
  box-shadow: 
    0 2px 8px rgba(233, 0, 0, 0.35),
    inset 0 2px 3px rgba(0, 0, 0, 0.15);
}

.cta-download-icon {
  flex-shrink: 0;
  transition: transform var(--duration-smooth) var(--ease-elastic);
}

.dock-download-cta:hover .cta-download-icon {
  transform: translateY(1.5px);
}

.cta-label {
  display: inline-block;
  white-space: nowrap;
}

/* ==========================================================================
   HERO STAGE (EDITORIAL PRECISION)
   ========================================================================== */
.hero-stage-section {
  padding: 64px 0 60px;
  position: relative;
}

.hero-editorial-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 52px;
}

.announcement-halo-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all var(--duration-smooth);
}

.announcement-halo-pill:hover {
  border-color: var(--border-crimson-subtle);
  color: var(--crimson);
  transform: translateY(-1px);
}

.status-beacon-orb {
  width: 8px;
  height: 8px;
  background: var(--crimson);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(233, 0, 0, 0.6);
  animation: beaconPulse 2.2s infinite;
}

@keyframes beaconPulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(233, 0, 0, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(233, 0, 0, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(233, 0, 0, 0); }
}

.hero-main-title {
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin-bottom: 24px;
  color: var(--text-pure);
}

.hero-main-title .editorial-italic {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  background: var(--crimson-gradient-master);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 6px;
}

.hero-tagline {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.55;
}

/* ==========================================================================
   THE DUAL DOWNLOAD COMMAND DECK (FLAGSHIP HUMAN-CRAFTED SUITE)
   ========================================================================== */
.download-command-deck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto 40px;
  align-items: stretch;
}

.titanium-command-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 36px 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 16px 36px -8px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.titanium-command-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 
    0 24px 50px -12px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Elevated Recommended Google Play Card */
.card-featured-recommended {
  border-color: rgba(15, 157, 88, 0.32);
  box-shadow: 
    0 20px 45px -10px rgba(15, 157, 88, 0.10),
    0 2px 5px rgba(0, 0, 0, 0.03);
}

.card-featured-recommended:hover {
  border-color: rgba(15, 157, 88, 0.50);
  box-shadow: 
    0 28px 60px -12px rgba(15, 157, 88, 0.18),
    0 3px 8px rgba(0, 0, 0, 0.04);
}

.card-recommended-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.10) 0%, rgba(26, 115, 232, 0.07) 100%);
  border: 1px solid rgba(15, 157, 88, 0.22);
  color: #0B8043;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.card-recommended-ribbon .ribbon-star {
  color: #0F9D58;
  font-size: 11px;
}

/* Card Top Identity */
.card-top-identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-emblem-orb {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.emblem-apk {
  background: rgba(233, 0, 0, 0.07);
  border: 1px solid rgba(233, 0, 0, 0.18);
  color: var(--crimson);
}

.emblem-play {
  background: #F8F9FA;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.card-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.badge-instant {
  background: rgba(233, 0, 0, 0.06);
  color: var(--crimson);
  border: 1px solid rgba(233, 0, 0, 0.18);
}

.badge-play {
  background: #F8F9FA;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.badge-recommended-play {
  background: rgba(15, 157, 88, 0.08);
  color: #0B8043;
  border: 1px solid rgba(15, 157, 88, 0.22);
  font-weight: 700;
}

.status-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-crimson {
  background: var(--crimson);
  box-shadow: 0 0 0 2px rgba(233, 0, 0, 0.2);
}

.dot-play {
  background: #1A73E8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.dot-emerald {
  background: #0F9D58;
  box-shadow: 0 0 0 2px rgba(15, 157, 88, 0.25);
}

.card-hero-block {
  margin-bottom: 20px;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.card-title-row .card-heading {
  margin-bottom: 0;
}

.recommended-badge-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #0F9D58 0%, #0B8043 100%);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(15, 157, 88, 0.30);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.card-heading {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.card-description {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  min-height: 42px;
}

/* Highlight Perks Bar (Faster Updates & Easy 1-Tap Use) */
.play-value-props-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: linear-gradient(135deg, #F8FAF8 0%, #F3F8F4 100%);
  border: 1px solid rgba(15, 157, 88, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 20px;
}

.value-prop-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.value-prop-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(15, 157, 88, 0.12);
  color: #0F9D58;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.value-prop-icon.icon-ease {
  background: rgba(26, 115, 232, 0.10);
  color: #1A73E8;
}

.value-prop-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.value-prop-headline {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.value-prop-detail {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* ==========================================================================
   SPEC MATRIX GRID (CARD 1 TECHNICAL CREDIBILITY)
   ========================================================================== */
.spec-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #FAFAFC;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 22px;
}

.spec-matrix-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.spec-key {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.spec-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-pure);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spec-pill {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  background: rgba(233, 0, 0, 0.08);
  color: var(--crimson);
  padding: 1px 5px;
  border-radius: 4px;
}

/* Card CTA Stack */
.card-cta-stack {
  margin-bottom: 8px;
}

/* Master Hardware Button */
.btn-crimson-master {
  width: 100%;
  background: linear-gradient(135deg, #FF1E38 0%, #E90000 55%, #C70000 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 4px 14px -1px rgba(233, 0, 0, 0.35),
    0 1px 2px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-crimson-master:hover {
  transform: translateY(-1.5px);
  box-shadow: 
    0 8px 24px -2px rgba(233, 0, 0, 0.50),
    0 2px 6px rgba(0, 0, 0, 0.12),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
}

.btn-crimson-master:active {
  transform: translateY(0.5px) scale(0.99);
}

.btn-left-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-meta-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.22);
  color: #FFFFFF;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* Secondary Action Row */
.card-secondary-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 4px;
}

.btn-sub-link {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}

.btn-sub-link:hover {
  color: var(--crimson);
}

.btn-sub-link .arrow-glyph {
  transition: transform 0.2s;
}

.btn-sub-link:hover .arrow-glyph {
  transform: translateX(3px);
}

/* ==========================================================================
   FLUID STEPPER TIMELINE (CARD 2 GOOGLE PLAY CLOSED TESTING)
   ========================================================================== */
.fluid-stepper-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  flex: 1;
}

.stepper-rail-line {
  position: absolute;
  top: 18px;
  bottom: 24px;
  left: 14px;
  width: 2px;
  background: rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.timeline-step-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 2;
  padding: 4px 0;
  transition: all 0.2s;
}

.step-node-col {
  flex-shrink: 0;
}

.step-circle-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step-row.completed .step-circle-badge {
  background: #0F9D58;
  border-color: #0F9D58;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(15, 157, 88, 0.35);
}

.step-content-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
}

.step-main-meta {
  flex: 1;
}

.step-title-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-pure);
  display: block;
  margin-bottom: 2px;
}

.step-sub-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 4px;
}

.group-email-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--google-blue);
  background: rgba(26, 115, 232, 0.06);
  border: 1px solid rgba(26, 115, 232, 0.18);
  padding: 2px 7px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.18s;
}

.group-email-pill:hover {
  background: rgba(26, 115, 232, 0.12);
  border-color: rgba(26, 115, 232, 0.3);
}

/* Timeline Action Buttons */
.step-action-col {
  flex-shrink: 0;
}

.btn-timeline-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-theme-blue {
  background: #1A73E8;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(26, 115, 232, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-theme-blue:hover {
  background: #1557B0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.38);
}

.btn-theme-subtle {
  background: #F1F3F5;
  color: var(--text-pure);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-theme-subtle:hover {
  background: #E5E7EB;
  transform: translateY(-1px);
}

.btn-theme-green {
  background: #0F9D58;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(15, 157, 88, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-theme-green:hover {
  background: #0B8043;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 157, 88, 0.38);
}

/* Card Bottom Metadata */
.card-bottom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 12px;
  color: var(--text-muted);
}

.meta-spec-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.shield-glyph {
  color: var(--crimson);
}

.shield-glyph-green {
  color: #0F9D58;
}

.meta-trust-note {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.link-stepper-trigger {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--duration-quick);
}

.link-stepper-trigger:hover {
  color: var(--google-blue);
}

/* ==========================================================================
   DESKTOP QR CODE DRAWER STRIP
   ========================================================================== */
.qr-drawer-strip {
  max-width: 620px;
  margin: 0 auto 70px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-full);
  padding: 8px 14px 8px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all var(--duration-smooth);
}

.qr-drawer-strip:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.qr-strip-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

.btn-modal-qr {
  background: #F1F3F5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-pure);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--duration-quick);
}

.btn-modal-qr:hover {
  background: #E5E7EB;
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.2);
}


.section-editorial-heading {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 40px;
}

.kicker-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--crimson);
  margin-bottom: 12px;
  display: block;
}

.section-master-title {
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-pure);
}


/* ==========================================================================
   BENTO GRID ARCHITECTURE (LINEAR / APPLE QUALITY)
   ========================================================================== */
.bento-showcase-section {
  padding: 90px 0;
}

.bento-master-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.bento-card-unit {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px -5px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all var(--duration-smooth) var(--ease-out-expo);
}

.bento-card-unit:hover {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 
    0 25px 50px -10px rgba(0, 0, 0, 0.10),
    0 2px 6px rgba(0, 0, 0, 0.03);
  transform: translateY(-4px);
}

.bento-span-8 { grid-column: span 8; }
.bento-span-4 { grid-column: span 4; }

.bento-icon-halo {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(233, 0, 0, 0.07);
  border: 1px solid rgba(233, 0, 0, 0.18);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.bento-title {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--text-pure);
}

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

/* ==========================================================================
   INSTALLATION VISUALIZER
   ========================================================================== */
.guide-deck-section {
  padding: 80px 0;
  background: var(--bg-subtle-section);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.guide-deck-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 1060px;
  margin: 0 auto;
  box-shadow: 
    0 15px 35px -5px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.02);
}

.stepper-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.stepper-pod {
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.pod-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--crimson-gradient-master);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(233, 0, 0, 0.35);
}

.pod-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-pure);
}

.pod-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.simulated-android-dialog {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  padding: 16px;
  margin-top: auto;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.simulated-prompt-title {
  font-size: 12px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.simulated-prompt-body {
  font-size: 11px;
  color: #6B7280;
  margin-bottom: 12px;
  line-height: 1.45;
}

.simulated-button-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.simulated-action-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  cursor: default;
  transition: transform var(--duration-quick);
}

.simulated-cancel {
  background: transparent;
  color: #6B7280;
}

.simulated-confirm {
  background: var(--crimson);
  color: #FFFFFF;
}

/* ==========================================================================
   FAQ ACCORDION SECTION (CLOSED TESTING & APK CLARITY)
   ========================================================================== */
.faq-section {
  padding: 80px 0 90px;
}

.faq-card-deck {
  max-width: 980px;
  margin: 0 auto;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all var(--duration-smooth) var(--ease-out-expo);
}

.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
  border-color: var(--border-crimson-subtle);
  box-shadow: 0 12px 28px rgba(233, 0, 0, 0.06);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-icon-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--duration-smooth) var(--ease-out-expo);
  color: var(--text-secondary);
}

.faq-item.active .faq-icon-chevron {
  transform: rotate(180deg);
  background: rgba(233, 0, 0, 0.1);
  color: var(--crimson);
}

.faq-answer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out-expo), padding 0.35s var(--ease-out-expo);
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.active .faq-answer-body {
  max-height: 280px;
  padding: 0 28px 24px;
}

.faq-answer-body strong {
  color: var(--text-pure);
}

.faq-answer-body a {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer-body a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   TELEMETRY TABLE
   ========================================================================== */
.telemetry-section {
  padding: 60px 0 100px;
  background: var(--bg-subtle-section);
  border-top: 1px solid var(--border-subtle);
}

.telemetry-card {
  max-width: 980px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.telemetry-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.telemetry-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.telemetry-table tr:last-child {
  border-bottom: none;
}

.telemetry-table td {
  padding: 18px 14px;
}

.telemetry-col-label {
  color: var(--text-muted);
  width: 28%;
  font-weight: 600;
}

.telemetry-col-data {
  color: var(--text-primary);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copy-hash-btn {
  background: #F4F4F6;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-quick);
}

.copy-hash-btn:hover {
  background: #E5E7EB;
  color: var(--text-pure);
}

/* ==========================================================================
   STUDIO FOOTER (APPLE MINIMALIST STANDARD)
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #F5F5F7;
  padding: 64px 0 38px;
}

.footer-inner-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.studio-co-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-logo-badge {
  background: #0A0A0C;
  border-radius: 6px;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-logo-sq {
  height: 22px;
  width: auto;
  border-radius: 5px;
}

.footer-nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color var(--duration-quick);
}

.footer-nav-list a:hover {
  color: var(--crimson);
}

.footer-legal-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* ==========================================================================
   MODALS (CLOSED TESTING GALLERY & QR CODE)
   ========================================================================== */
.modal-overlay-scaffold {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay-scaffold.active {
  display: flex;
}

.testing-gallery-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-xl);
  padding: 42px;
  max-width: 820px;
  width: 100%;
  position: relative;
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.25);
  animation: popScale 0.26s var(--ease-out-expo);
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes popScale {
  0% { transform: scale(0.94); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-dismiss-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F3F4F6;
  border: none;
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--duration-quick);
}

.modal-dismiss-btn:hover {
  background: #E5E7EB;
  color: var(--text-pure);
}

.step-screenshot-block {
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 22px;
}

.step-screenshot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.screenshot-aspect-frame {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.screenshot-aspect-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Modal 2: QR Scanner */
.modal-qr-compact-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 38px;
  max-width: 430px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.25);
  animation: popScale 0.24s var(--ease-out-expo);
}

.qr-frame-white {
  background: #FFFFFF;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  margin: 24px auto;
  width: fit-content;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   TACTILE TOAST
   ========================================================================== */
.tactile-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1D1D1F;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  z-index: 10000;
  transition: transform 0.35s var(--ease-elastic);
  pointer-events: none;
}

.tactile-toast.visible {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   ADVANCED MOBILE & RESPONSIVE COMPACT ARCHITECTURE
   ========================================================================== */

/* Tablet & Medium Breakpoint (<= 960px) */
@media (max-width: 960px) {
  .download-command-deck {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .bento-span-8, .bento-span-4 {
    grid-column: span 12;
  }
  .stepper-trio-grid {
    grid-template-columns: 1fr;
  }
  .satellite-pos-left, .satellite-pos-right {
    display: none;
  }
}

/* Small Tablet & Mobile Breakpoint (<= 860px) */
@media (max-width: 860px) {
  .dock-nav-wrapper {
    display: none;
  }
  .navbar-container {
    padding: 10px 20px;
  }
  .container {
    padding: 0 20px;
  }
  .hero-stage-section {
    padding: 50px 0 36px;
  }
  .titanium-command-card {
    padding: 30px 24px 22px;
  }
  .guide-deck-card {
    padding: 32px 24px;
  }
  .telemetry-card {
    padding: 24px 18px;
  }
  .telemetry-table td {
    padding: 14px 8px;
    font-size: 11.5px;
  }
}

/* Pure Mobile Viewport Standard (<= 640px) */
@media (max-width: 640px) {
  /* Layout & Container Compression */
  .container {
    padding: 0 16px;
  }

  /* Sticky Top Bar (Ultra-Compact) */
  .site-dock-header {
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }
  .navbar-container {
    padding: 8px 14px;
    gap: 12px;
  }
  .brand-logo-img {
    height: 32px;
  }
  .dock-download-cta {
    padding: 7px 14px;
    font-size: 12px;
    gap: 6px;
  }
  .dock-download-cta svg {
    width: 13px;
    height: 13px;
  }

  /* Hero Section (Tight & Editorial) */
  .hero-stage-section {
    padding: 36px 0 28px;
  }
  .hero-editorial-center {
    margin-bottom: 32px;
  }
  .announcement-halo-pill {
    padding: 5px 12px;
    font-size: 11px;
    gap: 8px;
    margin-bottom: 20px;
    max-width: 100%;
    line-height: 1.35;
  }
  .hero-main-title {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .hero-tagline {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 4px;
  }

  /* Dual Download Command Deck */
  .download-command-deck {
    gap: 20px;
    margin-bottom: 24px;
  }
  .titanium-command-card {
    padding: 24px 18px 20px;
    border-radius: 20px;
  }
  .card-top-identity {
    margin-bottom: 14px;
  }
  .card-emblem-orb {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .card-emblem-orb svg {
    width: 20px;
    height: 20px;
  }
  .card-status-badge {
    font-size: 10.5px;
    padding: 4px 10px;
  }
  .card-hero-block {
    margin-bottom: 16px;
  }
  .card-heading {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .card-description {
    font-size: 13px;
    line-height: 1.48;
    min-height: unset;
    margin-bottom: 16px;
  }

  .card-recommended-ribbon {
    font-size: 9px;
    padding: 3px 9px;
    margin-bottom: 12px;
  }
  .card-title-row {
    margin-bottom: 6px;
  }
  .recommended-badge-pill {
    font-size: 10px;
    padding: 2px 8px;
  }
  .play-value-props-bar {
    gap: 8px;
    padding: 9px 10px;
    margin-bottom: 16px;
    border-radius: 12px;
  }
  .value-prop-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }
  .value-prop-icon svg {
    width: 12px;
    height: 12px;
  }
  .value-prop-headline {
    font-size: 11px;
  }
  .value-prop-detail {
    font-size: 9.5px;
    line-height: 1.3;
  }

  /* Card 1: Spec Matrix Grid */
  .spec-matrix-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
    border-radius: 14px;
    margin-bottom: 16px;
  }
  .spec-matrix-item {
    padding: 6px 8px;
    border-radius: 8px;
  }
  .spec-key {
    font-size: 8.5px;
  }
  .spec-val {
    font-size: 11px;
  }
  .spec-pill {
    font-size: 8.5px;
    padding: 1px 4px;
  }

  /* Primary Button */
  .btn-crimson-master {
    padding: 13px 16px;
    font-size: 13px;
    border-radius: 12px;
  }
  .btn-left-content {
    gap: 8px;
  }
  .btn-left-content svg {
    width: 17px;
    height: 17px;
  }
  .btn-meta-pill {
    font-size: 10px;
    padding: 2px 7px;
  }

  /* Secondary Actions */
  .card-secondary-actions {
    margin-top: 10px;
    padding: 0 2px;
  }
  .btn-sub-link {
    font-size: 11.5px;
  }

  /* Card 2: Google Play Stepper Mobile Optimization */
  .fluid-stepper-timeline {
    gap: 12px;
    margin-bottom: 16px;
  }
  .stepper-rail-line {
    left: 13px;
    top: 14px;
    bottom: 24px;
  }
  .timeline-step-row {
    gap: 10px;
    padding: 2px 0;
  }
  .step-circle-badge {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .step-content-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 1px;
  }
  .step-title-text {
    font-size: 13px;
  }
  .step-sub-desc {
    font-size: 11.5px;
    line-height: 1.35;
    margin-bottom: 4px;
  }
  .group-email-pill {
    font-size: 10.5px;
    padding: 2px 6px;
  }
  .step-action-col {
    width: 100%;
  }
  .btn-timeline-action {
    width: 100%;
    justify-content: center;
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Card Footer */
  .card-bottom-footer {
    padding-top: 14px;
    font-size: 11px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Hide Desktop QR Transfer Strip on Mobile (Already on Phone!) */
  .qr-drawer-strip {
    display: none;
  }

  /* Section Headings */
  .section-editorial-heading {
    margin-bottom: 28px;
  }
  .kicker-tag {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .section-master-title {
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.15;
  }

  /* Bento Grid Section */
  .bento-showcase-section {
    padding: 44px 0;
  }
  .bento-master-grid {
    gap: 14px;
  }
  .bento-card-unit {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .bento-icon-halo {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 10px;
  }
  .bento-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .bento-text {
    font-size: 13px;
    line-height: 1.55;
  }

  /* Installation Visualizer Section */
  .guide-deck-section {
    padding: 44px 0;
  }
  .guide-deck-card {
    padding: 22px 16px;
    border-radius: 18px;
  }
  .stepper-trio-grid {
    gap: 14px;
    margin-top: 24px;
  }
  .stepper-pod {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .pod-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .pod-title {
    font-size: 16px;
  }
  .pod-desc {
    font-size: 12.5px;
    margin-bottom: 14px;
  }
  .simulated-device-dialog {
    padding: 14px 12px;
    border-radius: 12px;
  }
  .dialog-title-line {
    font-size: 12px;
  }
  .dialog-body-text {
    font-size: 10.5px;
  }
  .simulated-action-btn {
    font-size: 10.5px;
    padding: 5px 10px;
  }

  /* FAQ Accordion */
  .faq-section {
    padding: 44px 0 54px;
  }
  .faq-accordion-list {
    gap: 10px;
  }
  .faq-item {
    border-radius: 14px;
  }
  .faq-question-btn {
    padding: 16px 16px;
    font-size: 14px;
    gap: 12px;
  }
  .faq-icon-chevron {
    width: 20px;
    height: 20px;
  }
  .faq-answer-body {
    padding: 0 16px;
    font-size: 13px;
  }
  .faq-item.active .faq-answer-body {
    padding: 0 16px 16px;
  }

  /* Telemetry Section */
  .telemetry-section {
    padding: 36px 0 60px;
  }
  .telemetry-card {
    padding: 18px 12px;
    border-radius: 18px;
  }
  .telemetry-table td {
    padding: 10px 4px;
    font-size: 10.5px;
  }
  .telemetry-col-label {
    width: 32%;
  }
  .telemetry-col-data {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    word-break: break-all;
  }
  .copy-hash-btn {
    padding: 4px 10px;
    font-size: 10px;
  }

  /* Studio Footer */
  .site-footer {
    padding: 36px 0 24px;
  }
  .footer-inner-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }
  .footer-nav-list {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .footer-legal-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
  }

  /* Modals */
  .modal-overlay-scaffold {
    padding: 12px;
  }
  .testing-gallery-card {
    padding: 24px 16px;
    border-radius: 18px;
    max-height: 92vh;
  }
  .modal-dismiss-btn {
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .step-screenshot-block {
    padding: 14px 12px;
    border-radius: 12px;
  }
  .step-screenshot-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .modal-qr-compact-card {
    padding: 24px 16px;
    border-radius: 18px;
  }
  .qr-frame-white {
    padding: 10px;
    margin: 16px auto;
  }
}

/* Micro Mobile Breakpoint (<= 380px) */
@media (max-width: 380px) {
  .container {
    padding: 0 10px;
  }
  .navbar-container {
    padding: 6px 10px;
  }
  .brand-logo-img {
    height: 28px;
  }
  .dock-download-cta {
    padding: 6px 10px;
    font-size: 11.5px;
  }
  .hero-main-title {
    font-size: 30px;
  }
  .titanium-command-card {
    padding: 20px 14px 16px;
  }
  .card-title-row {
    flex-wrap: wrap;
    gap: 6px;
  }
  .play-value-props-bar {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .spec-matrix-grid {
    grid-template-columns: 1fr;
  }
  .btn-crimson-master {
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
  }
  .btn-left-content {
    justify-content: center;
  }
}
