/* =================================================================
   AmberTime — Stylesheet
   "Preserved in amber" — editorial, dark, warm, hardware-product-page
   ================================================================= */

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

:root {
  /* warm-tinted blacks, not neutral */
  --bg:           #0A0807;
  --bg-deep:      #050403;
  --bg-warm:      #14110D;
  --bg-card:      #1A1612;
  --bg-card-2:    #221C16;
  --bg-subtle:    #14110D;

  /* amber palette */
  --amber:        #FFBF00;
  --amber-warm:   #FFA722;
  --amber-deep:   #C8801A;
  --amber-bright: #FFD45A;
  --amber-dim:    rgba(255, 191, 0, 0.10);
  --amber-glow:   rgba(255, 175, 60, 0.18);
  --amber-line:   rgba(255, 191, 0, 0.16);

  /* type — warm off-whites */
  --text:           #F2EBDD;
  --text-secondary: #A39684;
  --text-tertiary:  #5C544A;
  --text-muted:     #6F6557;

  --border:       rgba(255, 191, 0, 0.08);
  --border-strong:rgba(255, 191, 0, 0.16);

  --radius:       18px;
  --radius-sm:    12px;
  --radius-lg:    28px;

  --max-width:    1180px;
  --max-narrow:   980px;

  /* type families */
  --serif:  'Instrument Serif', 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:   'Geist', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
  --mono:   'Geist Mono', 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --shadow-amber: 0 0 60px rgba(255, 175, 60, 0.18);
  --shadow-soft:  0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  /* warm radial wash that anchors every page */
  background-image:
    radial-gradient(ellipse 1200px 600px at 50% -200px, rgba(255, 175, 60, 0.10), transparent 70%),
    radial-gradient(ellipse 900px 500px at 80% 30%, rgba(200, 128, 26, 0.06), transparent 65%);
  background-attachment: fixed;
}

a { color: var(--amber); text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .85; }

img { max-width: 100%; height: auto; display: block; }
::selection { background: rgba(255,191,0,.25); color: var(--text); }

/* --- Grain overlay (CSS-only via SVG) --- */
.grain {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none; opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* --- Layout primitives --- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: inline-block;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--amber);
  font-family: var(--serif);
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.6;
}

.section-header { text-align: center; margin: 0 auto 64px; max-width: 760px; }
.section-header .section-desc { margin: 0 auto; }

.mono { font-family: var(--mono); font-feature-settings: "ss01", "ss02"; }
.check { color: var(--amber); font-weight: 600; margin-right: 8px; }
.x { color: #6f6557; font-weight: 600; margin-right: 8px; }
.muted { color: var(--text-tertiary); }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(10, 8, 7, .70);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.nav-brand img { border-radius: 7px; }
.nav-brand span { line-height: 1; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
  color: #1A0F00;
}
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }
.nav-toggle svg { width: 22px; height: 22px; }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  cursor: pointer; border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 9px; }
.btn-lg { padding: 16px 26px; font-size: 15px; border-radius: 12px; }

.btn-primary {
  background: linear-gradient(180deg, #FFD05A 0%, #FFA722 100%);
  color: #1A0F00;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px -10px rgba(255, 167, 34, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-weight: 600;
}
.btn-primary:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -10px rgba(255, 167, 34, 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover {
  opacity: 1;
  background: rgba(255, 191, 0, 0.06);
  border-color: rgba(255, 191, 0, 0.22);
  color: var(--text);
}

/* alias kept for legal-page compatibility */
.btn-secondary { background: var(--bg-subtle); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { opacity: 1; background: var(--bg-card); border-color: var(--border-strong); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: .35; mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 70%); }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none;
}
.hero-glow--a {
  width: 700px; height: 700px;
  top: -250px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 175, 60, 0.30) 0%, transparent 65%);
}
.hero-glow--b {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(255, 100, 30, 0.18) 0%, transparent 70%);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-bright);
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255, 191, 0, 0.06);
  border: 1px solid var(--border-strong);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 26px;
  overflow-wrap: normal;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(180deg, #FFD45A 0%, #FFA722 60%, #C8801A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(255, 167, 34, 0.25);
  font-family: var(--serif);
  position: relative;
}

.hero-lede {
  font-family: var(--sans);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-selling-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--amber);
  margin: -10px 0 30px;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-pills {
  display: flex; gap: 22px; flex-wrap: wrap;
  list-style: none;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}
.hero-pills li { display: flex; align-items: center; gap: 8px; }
.hero-pills li + li::before {
  content: "·";
  color: var(--text-tertiary);
  margin-right: 22px;
  margin-left: -22px;
  font-size: 14px;
  /* hidden — using gap, this is for pure visual */
  display: none;
}
.hero-pills .mono { color: var(--amber-bright); font-weight: 500; }

/* --- Hero visual: phone with USB drive behind --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}
.phone-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.phone-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(255, 175, 60, 0.30) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.usb-drive {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-58%) rotate(-6deg);
  width: 110%;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.phone {
  position: relative;
  z-index: 2;
  border-radius: 38px;
  padding: 8px;
  background: linear-gradient(180deg, #2a2520 0%, #15110D 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 100px -20px rgba(255, 175, 60, 0.30);
  transform: rotate(-2deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  margin: 0 auto;
}
.phone:hover,
.phone-stage:hover .phone,
.speed-visual:hover .phone,
.how-screen:hover .phone,
.pricing-screen:hover .phone {
  transform: translateY(-4px) rotate(0deg);
}
.phone img {
  display: block;
  width: 100%;
  border-radius: 30px;
  background: #000;
}
.phone picture { display: block; }
.phone--tall { max-width: 340px; }
.phone--small { max-width: 280px; }

/* floating chips around phone */
.chip {
  position: absolute;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 100px;
  background: rgba(20, 17, 13, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6);
}
.chip svg { width: 13px; height: 13px; color: var(--amber); }
.chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4CC97C;
  box-shadow: 0 0 8px #4CC97C;
}
.chip--top {
  top: 8%;
  left: -12%;
  transform: rotate(-3deg);
  animation: float 6s ease-in-out infinite;
}
.chip--bottom {
  bottom: 16%;
  right: -8%;
  transform: rotate(2deg);
  animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
}

/* hero marquee strip */
.hero-marquee {
  margin-top: 80px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: rgba(20, 17, 13, 0.4);
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-x 60s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.marquee-track span:not([aria-hidden]) { color: var(--text-secondary); }
.marquee-track [aria-hidden] { color: var(--amber); opacity: .6; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =================================================================
   SPEED / BIG NUMBER MOMENT
   ================================================================= */
.speed-section {
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 700px 400px at 20% 50%, rgba(255, 175, 60, 0.06), transparent 70%),
    var(--bg-warm);
}
.speed-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.speed-title {
  font-family: var(--serif);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 0.95;
}
.speed-title--compact {
  max-width: 620px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.speed-lede {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}
.speed-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  list-style: none;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.speed-stats li { display: flex; flex-direction: column; gap: 4px; }
.speed-stats strong {
  font-size: 28px;
  font-weight: 500;
  color: var(--amber);
}
.speed-stats span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
}
.speed-note {
  margin-top: 18px;
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speed-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 600px;
}
.visual-tag {
  position: absolute;
  z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(20, 17, 13, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.6);
}
.visual-tag .mono {
  font-size: 16px;
  font-weight: 500;
  color: var(--amber-bright);
}
.visual-tag-sub {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}
.visual-tag--top {
  top: 12%;
  right: -12%;
  transform: rotate(2deg);
}
.visual-tag--bottom {
  bottom: 18%;
  left: -10%;
  transform: rotate(-2deg);
}

/* =================================================================
   FEATURES
   ================================================================= */
.features {
  padding: 140px 0 60px;
  position: relative;
}
.feature {
  margin-bottom: 120px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.feature--lead { padding-top: 72px; }
.feature-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.feature-num {
  color: var(--amber);
  font-weight: 600;
}
.feature-tag { color: var(--text-tertiary); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-grid--reverse > .feature-text { order: 2; }
.feature-grid--reverse > .feature-art { order: 1; }

.feature-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 18px;
}
.feature-text > p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 480px;
}
.feature-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.feature-list li em {
  color: var(--amber);
  font-style: italic;
  font-family: var(--serif);
}
.feature-list .mono { color: var(--amber-bright); font-size: 13px; }

.feature-art {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Art: iCloud flow --- */
.feature-art--icloud { padding: 24px; }
.icloud-flow {
  display: flex; flex-direction: column; gap: 20px;
  width: 100%;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}
.icloud-flow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,191,0,0.20), transparent 50%);
  z-index: -1;
}
.icloud-cloud, .icloud-phone, .icloud-drive {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.icloud-cloud svg, .icloud-phone svg, .icloud-drive svg {
  width: 56px; height: auto;
  color: var(--amber);
  flex-shrink: 0;
}
.flow-arrow {
  display: flex; align-items: center; gap: 10px;
  padding-left: 14px;
  font-size: 10px;
  color: var(--amber-deep);
}
.flow-arrow svg {
  width: 60px; height: 16px;
  color: var(--amber);
  opacity: 0.7;
}

/* --- Art: album tree --- */
.feature-art--tree, .feature-art--lenses { padding: 24px; }
.archive-map {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.archive-card {
  position: relative;
  padding: 22px 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 191, 0, 0.035), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -42px rgba(0, 0, 0, 0.75);
}

.archive-card--albums {
  background:
    linear-gradient(180deg, rgba(255, 175, 60, 0.08), transparent 72%),
    var(--bg-card);
  border-color: var(--border-strong);
}

.archive-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.archive-card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.archive-card-label--amber {
  color: var(--amber);
}

.archive-card-path {
  min-width: 0;
  font-size: 10px;
  color: var(--text-tertiary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.archive-tree,
.album-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.archive-row,
.album-row {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  border-bottom: 1px dashed rgba(255, 191, 0, 0.07);
  font-size: 14px;
}

.archive-row:last-child,
.album-row:last-child {
  border-bottom: none;
}

.archive-row--root {
  color: var(--amber);
}

.archive-row--child {
  padding-left: 24px;
  color: var(--text);
}

.archive-icon {
  width: 14px;
  height: 11px;
  flex: 0 0 14px;
  border-radius: 2px 2px 3px 3px;
  background: linear-gradient(180deg, #7f8790, #3d4249);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.archive-icon::before {
  content: "";
  display: block;
  width: 7px;
  height: 3px;
  margin-top: -2px;
  margin-left: 1px;
  border-radius: 2px 2px 0 0;
  background: #6f7780;
}

.archive-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 191, 0, 0.08);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.archive-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  color: var(--amber);
}

.archive-link-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 191, 0, 0.36), transparent);
}

.archive-index {
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(255, 191, 0, 0.07);
  border: 1px solid var(--border-strong);
  font-size: 10px;
  color: var(--amber);
}

.album-section {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.album-section:first-child {
  margin-top: 0;
}

.album-chip {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.9), rgba(255, 167, 34, 0.35));
  border: 1px solid rgba(255, 191, 0, 0.35);
}

.album-chip--smart {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 191, 0, 0.95), rgba(200, 128, 26, 0.35));
}

.album-tree {
  width: 100%;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 13px;
  position: relative;
}
.album-tree::before {
  content: "/Volumes/T5_EVO/";
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 2px 10px;
  background: var(--bg-warm);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--amber);
  text-transform: uppercase;
}
.tree-row {
  display: flex; align-items: center;
  padding: 8px 0;
  color: var(--text-secondary);
  border-bottom: 1px dashed rgba(255, 191, 0, 0.06);
}
.tree-row:last-child { border-bottom: none; }
.tree-row .folder { margin-right: 10px; opacity: .7; }
.tree-row--root { color: var(--amber); padding-bottom: 14px; margin-bottom: 4px; border-bottom-color: rgba(255, 191, 0, 0.16); }
.tree-row--l1 { padding-left: 24px; color: var(--text); }
.tree-row--l2 { padding-left: 56px; color: var(--text-secondary); font-size: 12px; }
.count {
  margin-left: auto;
  color: var(--text-tertiary);
  font-size: 11px;
}

/* --- Art: metadata card --- */
.feature-art--meta { padding: 24px; }
.meta-card {
  width: 100%;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.meta-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,175,60,0.10), transparent 70%);
  pointer-events: none;
}
.meta-thumb {
  width: 90px; height: 120px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #4a3a22 0%, #2a1a0a 50%, #1a0d05 100%),
    radial-gradient(circle at 30% 30%, rgba(255,191,0,0.4), transparent 60%);
  position: relative;
  overflow: hidden;
}
.meta-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 80%, rgba(255,191,0,0.25), transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
}
.meta-thumb::after {
  content: "•LIVE";
  position: absolute;
  top: 8px; left: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--amber);
  background: rgba(0,0,0,0.4);
  padding: 2px 6px;
  border-radius: 3px;
}
.meta-fields { display: flex; flex-direction: column; gap: 8px; }
.meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  border-bottom: 1px dashed rgba(255, 191, 0, 0.08);
  padding-bottom: 6px;
  font-size: 12px;
}
.meta-row:last-child { border-bottom: none; }
.meta-key {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--text-tertiary);
}
.meta-val {
  color: var(--text);
  font-size: 12px;
  text-align: right;
}
.meta-stamp {
  position: absolute;
  bottom: 14px; right: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--amber);
  opacity: 0.7;
  letter-spacing: 0.04em;
  border: 1px solid var(--amber);
  padding: 4px 12px;
  border-radius: 100px;
  transform: rotate(-6deg);
}

/* --- Art: diff card --- */
.feature-art--diff { padding: 24px; }
.diff-card {
  width: 100%;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.diff-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  margin-top: 22px;
}
.diff-head:first-child { margin-top: 0; }
.diff-bar {
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 191, 0, 0.14);
  overflow: hidden;
  position: relative;
}
.diff-bar--was {
  background: linear-gradient(90deg, rgba(255,191,0,0.18), rgba(255,191,0,0.05));
  border: 1px solid rgba(255,191,0,0.18);
}
.diff-bar--was::before {
  content: "23,581 already on drive";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; padding-left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
}
.diff-bar--new {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.diff-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber-bright), var(--amber-warm));
  box-shadow: 0 0 20px rgba(255,167,34,0.5);
}
.diff-delta {
  color: var(--amber-bright) !important;
  font-weight: 500;
}
.diff-foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 191, 0, 0.12);
  font-size: 13px;
  color: var(--text-secondary);
}
.diff-foot .mono { color: var(--amber); margin-right: 6px; }

/* =================================================================
   WHY (compare)
   ================================================================= */
.why {
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 800px 500px at 80% 50%, rgba(255, 167, 34, 0.06), transparent 60%),
    var(--bg-deep);
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.compare-col {
  padding: 44px 40px;
  display: flex; flex-direction: column;
  background: var(--bg-card);
}
.compare-col header { margin-bottom: 28px; }
.compare-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: inline-block;
  margin-bottom: 10px;
}
.compare-tag--amber { color: var(--amber); }
.compare-col header h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-col li {
  display: flex; align-items: baseline;
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,191,0,0.06);
}
.compare-col li:last-child { border-bottom: none; }
.compare-col--cloud {
  background: var(--bg-deep);
  color: var(--text-tertiary);
}
.compare-col--cloud li { color: var(--text-tertiary); }
.compare-col--amber {
  background:
    linear-gradient(180deg, rgba(255, 175, 60, 0.06) 0%, transparent 100%),
    var(--bg-card);
  position: relative;
}
.compare-col--amber::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.compare-col--amber li { color: var(--text); }
.compare-col--amber li .mono { color: var(--amber); font-weight: 500; }

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.how {
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.how-step {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 24px;
}
.how-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--amber);
  background: rgba(255, 191, 0, 0.08);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  margin-bottom: 24px;
}
.how-screen {
  margin-bottom: 28px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5));
}
.how-step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}
.how-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
}

/* =================================================================
   AUDIENCE
   ================================================================= */
.audience {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.persona {
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.persona:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.persona--featured {
  background:
    linear-gradient(180deg, rgba(255, 175, 60, 0.10) 0%, transparent 60%),
    var(--bg-card);
  border-color: var(--border-strong);
}
.persona-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255, 191, 0, 0.10);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--amber);
}
.persona-icon svg { width: 22px; height: 22px; }
.persona h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 12px;
}
.persona p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.persona-tag {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 191, 0, 0.12);
}

/* =================================================================
   BEST FIT / GEO CONTENT
   ================================================================= */
.fit {
  padding: 110px 0;
  background:
    linear-gradient(180deg, rgba(255, 175, 60, 0.035), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.fit-card {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(26, 22, 18, 0.74);
  border: 1px solid var(--border);
}
.fit-card--yes {
  border-color: rgba(255, 191, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 191, 0, 0.08);
}
.fit-card ul {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fit-card li {
  color: var(--text-secondary);
  line-height: 1.58;
  font-size: 15px;
}
.content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.content-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 191, 0, 0.05);
  color: var(--text-secondary);
  font-size: 13px;
}
.content-links a:hover {
  color: var(--text);
  border-color: var(--border-strong);
  opacity: 1;
}

/* =================================================================
   FAQ
   ================================================================= */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.faq-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =================================================================
   PRICING
   ================================================================= */
.pricing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.pricing-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  isolation: isolate;
}
.pricing-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(255, 175, 60, 0.20) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.pricing-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,191,0,0.02) 20px 21px);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: center;
}
.pricing-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 22px;
}
.pricing-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 32px;
}
.price-strike {
  font-size: 16px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  text-decoration-color: var(--amber-deep);
}
.price-badge {
  font-size: 11px;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 4px 8px;
  border-radius: 4px;
}
.price-main {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex; align-items: baseline; gap: 10px;
}
.price-main .mono {
  font-family: var(--mono);
  font-size: 56px;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-main em {
  font-style: italic;
  font-size: 28px;
  color: var(--text-secondary);
}
.pricing-fine {
  list-style: none;
  margin-top: 22px;
  display: flex; flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}
.pricing-screen {
  display: flex; justify-content: center;
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.footer-brand img { border-radius: 6px; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--amber);
  margin-left: 8px;
}
.footer-links {
  display: flex; gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-fine {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}

/* =================================================================
   LEGAL PAGES (privacy, terms, contact, credits)
   ================================================================= */
.legal-page {
  padding-top: 120px;
  padding-bottom: 96px;
  max-width: var(--max-narrow);
}
.legal-page h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--text);
}
.legal-page .legal-updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 48px;
  text-transform: uppercase;
}
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 40px 0 14px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.legal-page p, .legal-page li {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 22px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--text); font-weight: 600; }
.legal-page a { color: var(--amber); }

/* =================================================================
   GEO CONTENT PAGES
   ================================================================= */
.content-page {
  padding-top: 120px;
  padding-bottom: 104px;
}
.content-page__hero {
  max-width: 860px;
  margin-bottom: 48px;
}
.content-page__hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
}
.content-page__lede {
  font-size: 19px;
  line-height: 1.62;
  color: var(--text-secondary);
  max-width: 760px;
}
.content-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.content-page__meta span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 191, 0, 0.04);
}
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 48px;
  align-items: start;
}
.content-main {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.content-section {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(26, 22, 18, 0.62);
  border: 1px solid var(--border);
}
.content-section h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.content-section h3 {
  font-size: 18px;
  margin: 22px 0 8px;
}
.content-section p,
.content-section li,
.content-section td,
.content-section th {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--text-secondary);
}
.content-section p { margin-bottom: 12px; }
.content-section ul,
.content-section ol {
  padding-left: 22px;
  margin: 12px 0 0;
}
.content-section li { margin-bottom: 8px; }
.content-section strong,
.content-section th {
  color: var(--text);
  font-weight: 600;
}
.content-sidebar {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sidebar-card {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(20, 17, 13, 0.9);
  border: 1px solid var(--border);
}
.sidebar-card h2,
.sidebar-card h3 {
  font-size: 13px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}
.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-card li,
.sidebar-card a,
.sidebar-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.fact-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(10, 8, 7, 0.42);
  border: 1px solid var(--border);
}
.fact-card span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.fact-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.comparison-table th,
.comparison-table td {
  text-align: left;
  vertical-align: top;
  padding: 15px 14px;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 191, 0, 0.06);
}
.comparison-table tr:last-child td { border-bottom: none; }
.answer-box {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 191, 0, 0.08);
  border: 1px solid rgba(255, 191, 0, 0.18);
}
.answer-box p {
  color: var(--text);
  font-size: 17px;
}
.step-list {
  counter-reset: guide-step;
  list-style: none;
  padding-left: 0 !important;
}
.step-list li {
  counter-increment: guide-step;
  position: relative;
  padding-left: 54px;
  margin-bottom: 22px;
}
.step-list li::before {
  content: counter(guide-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 7px;
}
.guide-list {
  display: grid;
  gap: 14px;
}
.guide-card {
  display: block;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  background: rgba(10, 8, 7, 0.42);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.guide-card:hover {
  border-color: rgba(255, 191, 0, 0.32);
  background: rgba(255, 191, 0, 0.04);
  transform: translateY(-1px);
}
.guide-card__meta {
  display: flex;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}
.guide-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text);
}
.guide-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.feature-link {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
}
.feature-link a { color: var(--amber); }
.nav-links a[aria-current="page"] {
  color: var(--amber);
}
.faq-more {
  margin-top: 28px;
  text-align: center;
}
.faq-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.faq-more a:hover { text-decoration: underline; }

/* =================================================================
   ENTRANCE ANIMATIONS (CSS-only, scroll-triggered)
   ================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow, .hero-title, .hero-lede, .hero-cta, .hero-pills,
  .hero-visual, .speed-copy, .speed-visual,
  .feature-text, .feature-art,
  .compare-col, .how-step, .persona, .pricing-card {
    animation: rise-in 1s cubic-bezier(.2,.8,.2,1) both;
  }
  .hero-eyebrow { animation-delay: .05s; }
  .hero-title    { animation-delay: .15s; }
  .hero-lede     { animation-delay: .3s; }
  .hero-cta      { animation-delay: .45s; }
  .hero-pills    { animation-delay: .6s; }
  .hero-visual   { animation-delay: .35s; }

  .feature, .compare, .how-steps, .audience-grid, .pricing-card,
  .speed-grid {
    animation: fade-in 1s ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .how-step:nth-child(1) { animation-delay: 0s; }
  .how-step:nth-child(2) { animation-delay: .15s; }
  .how-step:nth-child(3) { animation-delay: .3s; }
  .persona:nth-child(1) { animation-delay: 0s; }
  .persona:nth-child(2) { animation-delay: .12s; }
  .persona:nth-child(3) { animation-delay: .24s; }
}
@keyframes rise-in {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 440px; }
  .speed-grid { grid-template-columns: 1fr; gap: 56px; }
  .speed-visual { min-height: 480px; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid--reverse > .feature-text { order: 2; }
  .feature-grid--reverse > .feature-art { order: 1; }
  .compare { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 56px; }
  .audience-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .pricing-card { padding: 44px 28px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 44px; }
  .section-title { font-size: clamp(34px, 10vw, 48px); }
  .section-desc { font-size: 15px; line-height: 1.55; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(10, 8, 7, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 15px; padding: 14px 28px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .btn-primary {
    margin: 12px 24px;
    padding: 14px 22px;
    text-align: center; justify-content: center;
  }

  .hero { padding: 96px 0 56px; }
  .hero-inner { padding: 0 20px; gap: 34px; }
  .hero-eyebrow {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 6px 10px;
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }
  .hero-title {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 0.96;
    letter-spacing: -0.018em;
    margin-bottom: 20px;
  }
  .hero-lede {
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero-selling-points {
    gap: 8px 12px;
    font-size: 11px;
    margin: 0 0 24px;
  }
  .hero-cta { margin-bottom: 24px; }
  .hero-pills {
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.02em;
  }
  .hero-pills li { align-items: flex-start; }
  .hero-visual {
    min-height: 360px;
    margin-top: 4px;
  }
  .phone-stage { max-width: 300px; }
  .chip {
    padding: 8px 10px;
    font-size: 10px;
  }
  .hero-marquee {
    margin-top: 52px;
    padding: 14px 0;
  }

  .speed-section, .features, .why, .how, .audience, .fit, .faq, .pricing { padding: 72px 0; }
  .speed-grid { gap: 36px; }
  .speed-title--compact { font-size: clamp(32px, 9vw, 46px); }
  .speed-lede {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .speed-visual { min-height: 380px; }
  .speed-stats { gap: 24px; }
  .speed-stats strong { font-size: 24px; }

  .feature { margin-bottom: 64px; padding: 30px 0; }
  .feature-grid { gap: 30px; }
  .feature-meta {
    margin-bottom: 22px;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .feature-title { font-size: clamp(30px, 8.5vw, 38px); }
  .feature-text > p {
    max-width: none;
    font-size: 15.5px;
    line-height: 1.6;
  }
  .feature-list li { font-size: 14px; }
  .feature-art {
    min-height: auto;
    padding: 12px;
  }
  .feature-art--icloud,
  .feature-art--tree,
  .feature-art--lenses,
  .feature-art--meta { padding: 12px; }
  .icloud-flow,
  .album-tree,
  .meta-card,
  .diff-card { padding: 22px; }
  .archive-card { padding: 20px; }
  .archive-map { max-width: none; }

  .compare-col { padding: 30px 24px; }
  .compare-col header h3 { font-size: 25px; }
  .compare-col li { font-size: 14px; }

  .how-steps { gap: 44px; }
  .how-step { padding-top: 0; }
  .how-screen { margin-bottom: 20px; }
  .phone--small { max-width: 230px; }

  .persona { padding: 28px 24px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { padding: 26px 22px; }
  .faq-item { padding: 22px; }

  .pricing-card { padding: 36px 24px; }
  .pricing-title { font-size: clamp(32px, 8vw, 48px); }
  .price-main { font-size: 44px; flex-wrap: wrap; }
  .price-main .mono { font-size: 44px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-fine { flex-direction: column; align-items: flex-start; }

  .legal-page { padding-top: 96px; padding-bottom: 60px; }
  .legal-page h1 { font-size: 36px; }
  .content-layout { grid-template-columns: 1fr; gap: 28px; }
  .content-sidebar { position: static; }
  .fact-grid { grid-template-columns: 1fr; }
  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .content-page { padding-top: 96px; padding-bottom: 68px; }

  .chip--top { left: 4%; top: -2%; }
  .chip--bottom { right: 4%; bottom: -2%; }
  .visual-tag--top { right: 0; top: 4%; }
  .visual-tag--bottom { left: 0; bottom: 8%; }
}

@media (max-width: 640px) {
  .hero-copy {
    width: 100%;
    max-width: 350px;
  }
  .hero-title {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1;
  }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  .hero-visual { min-height: 330px; }
  .phone-stage { max-width: 270px; }
}

@media (max-width: 480px) {
  .container,
  .hero-inner { padding-left: 18px; padding-right: 18px; }
  .nav-inner { padding: 0 18px; }
  .nav-links a { padding-left: 22px; padding-right: 22px; }

  .hero { padding-top: 88px; }
  .hero-title {
    max-width: 100%;
    font-size: clamp(34px, 10.8vw, 42px);
    line-height: 1;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }
  .hero-eyebrow .dot { display: none; }
  .hero-selling-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 10px;
  }
  .hero-visual { min-height: 310px; }
  .phone-stage { max-width: 248px; }
  .phone {
    border-radius: 30px;
    padding: 6px;
  }
  .phone img { border-radius: 24px; }
  .usb-drive { bottom: -12px; width: 104%; }
  .chip--top { left: 0; top: -5%; }
  .chip--bottom { right: 0; bottom: 3%; }

  .speed-visual { min-height: 320px; }
  .phone--tall { max-width: 230px; }
  .visual-tag { padding: 9px 11px; border-radius: 11px; }
  .visual-tag .mono { font-size: 13px; }
  .visual-tag-sub { font-size: 8.5px; }
  .visual-tag--top { display: none; }
  .visual-tag--bottom { left: 2%; bottom: 6%; }
  .speed-stats { flex-direction: column; gap: 16px; }

  .archive-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .archive-row,
  .album-row { font-size: 13px; }
  .archive-row--child { padding-left: 18px; }
  .archive-link { padding: 0 14px; }
  .icloud-cloud svg,
  .icloud-phone svg,
  .icloud-drive svg { width: 44px; }
  .flow-arrow svg { width: 48px; }

  .meta-card { grid-template-columns: 1fr; }
  .meta-thumb { width: 100%; height: 120px; }

  .compare-col { padding: 26px 20px; }
  .how-step h3,
  .persona h3 { font-size: 24px; }
  .pricing-price { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-links { flex-wrap: wrap; gap: 14px 20px; }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .hero-eyebrow, .hero-title, .hero-lede, .hero-cta, .hero-pills,
  .hero-visual, .speed-copy, .speed-visual,
  .feature, .compare, .how-steps, .audience-grid, .pricing-card,
  .speed-grid {
    animation: none;
  }
}
