/* ==========================================================
   QUIEVO Pro デモサイト
   Design concept: ネオン・テックプロダクトのランディングページ
   ========================================================== */

:root {
  --bg: #F6F7FC;
  --panel: #FFFFFF;
  --panel-alt: #EEF0FA;
  --line: rgba(20, 20, 40, 0.09);
  --line-strong: rgba(20, 20, 40, 0.18);
  --text: #16161F;
  --text-muted: #666B80;
  --accent-a: #7C5CFF;
  --accent-b: #1FB6D6;

  --font-display: "Space Grotesk", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --wrap: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; padding: 0; }
ul, dl { list-style: none; margin: 0; padding: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
img, svg, canvas { max-width: 100%; }

/* ---------- Demo banner ---------- */
.demo-banner {
  position: relative;
  z-index: 80;
  margin: 0;
  padding: 10px 20px;
  text-align: center;
  font-size: 12.5px;
  color: #0A0A0F;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
}
.demo-banner a { text-decoration: underline; font-weight: 700; }

/* ---------- Glow particle canvas ---------- */
#glow-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

main, header, footer { position: relative; z-index: 1; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  background: rgba(20, 20, 40, 0.08);
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 50;
  padding: 6px 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.main-nav a {
  position: relative; color: var(--text-muted); padding-bottom: 4px;
  transition: color 0.2s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--accent-b); transform: scaleX(0); transform-origin: right;
  transition: transform 0.25s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta-link {
  border: 1px solid var(--accent-b);
  color: var(--text) !important;
  padding: 7px 16px;
  border-radius: 999px;
}
.nav-cta-link::after { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); }
.mobile-nav {
  display: none; flex-direction: column; padding: 8px 28px 20px;
  background: rgba(255, 255, 255, 0.98);
}
.mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--text-muted); }
.site-header.nav-open .mobile-nav { display: flex; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-b); outline-offset: 3px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 20%, rgba(124, 92, 255, 0.16), transparent 60%), var(--bg);
}
.hero-inner { position: relative; z-index: 2; padding-top: 90px; max-width: 620px; }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  color: var(--accent-b); margin-bottom: 24px; text-transform: uppercase;
}
.hero-title { font-size: clamp(34px, 5.4vw, 64px); line-height: 1.25; margin-bottom: 26px; }
.hero-lead { color: var(--text-muted); font-size: 15.5px; max-width: 48ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-price {
  font-family: var(--font-mono); font-size: 20px; color: var(--text);
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.hero-price-note { font-size: 12px; color: var(--text-muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  padding: 15px 30px; border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-glow {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  color: #05050A;
  box-shadow: 0 0 24px -4px rgba(124, 92, 255, 0.6);
  animation: btnPulse 2.8s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 16px -2px rgba(124, 92, 255, 0.45); }
  50% { box-shadow: 0 0 30px 2px rgba(124, 92, 255, 0.6); }
}
.btn-glow:hover { transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--line-strong); color: var(--text); }
.btn-outline:hover { border-color: var(--accent-b); color: var(--accent-b); }

/* Hero product visual */
.hero-visual {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(46vw, 480px);
  z-index: 1;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 16px)); }
}
.product-svg { width: 100%; height: auto; overflow: visible; }
.product-glow { animation: pulseGlow 3.4s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}
.bud-left { animation: budDrift 4.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.bud-right { animation: budDrift 4.5s ease-in-out infinite 0.4s; transform-box: fill-box; transform-origin: center; }
@keyframes budDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-3deg); }
}
.case-led { animation: ledBlink 2s ease-in-out infinite; }
@keyframes ledBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Reveal-line masks (hero + section headings) */
.reveal-line-wrap, .title-mask { overflow: hidden; }
.reveal-line {
  display: inline-block; transform: translateY(115%);
  transition: transform 0.9s cubic-bezier(0.19,1,0.22,1);
}
.hero-eyebrow .reveal-line { transition-delay: 0.05s; }
.hero-title .title-mask:nth-of-type(1) .reveal-line { transition-delay: 0.2s; }
.hero-title .title-mask:nth-of-type(2) .reveal-line { transition-delay: 0.38s; }
.hero.is-in .reveal-line, .reveal.is-visible .reveal-line { transform: translateY(0); }

.reveal-fade { opacity: 0; transform: translateY(16px); transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s; }
.hero.is-in .reveal-fade { opacity: 1; transform: translateY(0); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.scroll-cue-line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--accent-b), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue-line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--accent-b); animation: scrollDrip 1.8s ease-in-out infinite;
}
@keyframes scrollDrip { 0% { top: -100%; } 100% { top: 100%; } }
.scroll-cue-text { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--text-muted); }

/* ---------- Sections ---------- */
.section { padding: 110px 0; position: relative; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  color: var(--accent-b); margin-bottom: 18px; text-transform: uppercase;
}
.h2-mask { overflow: hidden; font-size: clamp(24px, 3.2vw, 38px); padding-bottom: 4px; }
.section-note { color: var(--text-muted); max-width: 58ch; font-size: 14px; }

.reveal {
  opacity: 0; transform: translateY(26px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.19,1,0.22,1), transform 0.9s cubic-bezier(0.19,1,0.22,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- Features ---------- */
.features-section { background: var(--panel-alt); }
.feature-row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
.feature-row--reverse { direction: rtl; }

/* GSAP-pinned "scene change" mode (desktop only, added via JS when
   GSAP + ScrollTrigger are available and motion is not reduced) */
.feature-stage-hint { display: none; }

.features-section.is-pin-mode .feature-stage-hint { display: block; }

.features-section.is-pin-mode .feature-stage-inner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.features-section.is-pin-mode .feature-row {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  padding: 0 28px;
  border-top: none;
  will-change: transform, opacity;
}

/* Giant background numeral behind the active feature */
.feature-bignum {
  display: none;
}

.feature-bg {
  display: none;
}

.features-section.is-pin-mode .feature-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.feature-bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.feature-bg-layer--0 {
  background: radial-gradient(circle at 30% 30%, rgba(124, 92, 255, 0.28), transparent 62%), var(--bg);
}
.feature-bg-layer--1 {
  background: radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.26), transparent 62%), var(--bg);
}
.feature-bg-layer--2 {
  background: radial-gradient(circle at 30% 70%, rgba(255, 184, 107, 0.24), transparent 62%), var(--bg);
}
.feature-bg-layer--3 {
  background: radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.28), transparent 62%), var(--bg);
}

.features-section.is-pin-mode .feature-bignum {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: min(46vw, 520px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 20, 40, 0.1);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.features-section.is-pin-mode .feature-row {
  z-index: 1;
}

/* Scroll progress dots (only meaningful in pin mode) */
.feature-progress {
  display: none;
}

.features-section.is-pin-mode .feature-progress {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.feature-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background 0.3s ease, transform 0.3s ease;
}

.feature-progress-dot.is-active {
  background: var(--accent-b);
  transform: scale(1.5);
  box-shadow: 0 0 10px 1px var(--accent-b);
}
.feature-row--reverse > * { direction: ltr; }

.feature-visual { aspect-ratio: 1/1; max-width: 320px; position: relative; }

.feature-icon-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Rotating conic-gradient halo behind the icon */
.feature-icon-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent-a), var(--accent-b), #FF5DA8, var(--accent-a));
  animation: ringSpin 5s linear infinite;
  filter: blur(1px);
}

@keyframes ringSpin { to { transform: rotate(360deg); } }

/* Soft pulsing glow behind everything */
.feature-icon-glow {
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.35), transparent 70%);
  animation: iconGlowPulse 2.6s ease-in-out infinite;
  z-index: -1;
}

@keyframes iconGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.feature-icon {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, rgba(124, 92, 255, 0.22), transparent 60%),
              radial-gradient(circle at 65% 70%, rgba(31, 182, 214, 0.18), transparent 60%),
              var(--panel);
  box-shadow: 0 12px 30px -10px rgba(124, 92, 255, 0.35);
  overflow: hidden;
}

.feature-icon::before {
  content: "";
  position: absolute; inset: 14%;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  animation: spinSlow 18s linear infinite reverse;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.feature-icon-glyph {
  width: 46%;
  height: 46%;
  position: relative;
  z-index: 1;
  color: var(--accent-a);
  filter: drop-shadow(0 2px 6px rgba(124, 92, 255, 0.4));
}

.feature-icon--spatial .feature-icon-glyph,
.feature-icon--water .feature-icon-glyph {
  color: var(--accent-b);
}

.feature-num {
  font-family: var(--font-mono); color: var(--accent-b); font-size: 13px;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 12px;
  display: inline-block; margin-bottom: 16px;
}
.feature-copy h3 { font-size: 22px; margin-bottom: 0.5em; }
.feature-copy p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Specs / counters ---------- */
.specs-section { background: var(--bg); }
.counter-grid {
  margin: 40px 0 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.counter-card {
  border: 1px solid var(--line); border-radius: 8px; padding: 30px 20px; text-align: center;
  background: rgba(20, 20, 40, 0.03);
}
.counter-num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.counter-card p { margin: 8px 0 0; font-size: 13px; color: var(--text-muted); }

.compare-table {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.compare-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 12px;
  padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 14px;
}
.compare-row:last-child { border-bottom: none; }
.compare-row--head {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em;
  color: var(--text-muted); text-transform: uppercase; background: rgba(20, 20, 40, 0.03);
}
.compare-row .check { color: var(--accent-b); font-weight: 700; }
.compare-row .cross { color: var(--text-muted); }

/* ---------- Colors ---------- */
.colors-section { background: var(--panel-alt); }
.color-swatches { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.swatch {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 10px 18px 10px 10px; cursor: pointer; font-size: 13.5px; color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.swatch-dot { width: 26px; height: 26px; border-radius: 50%; display: block; flex-shrink: 0; }
.swatch:hover, .swatch.is-active { border-color: var(--accent-b); color: var(--text); }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--bg); }
.reviews-list { margin-top: 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  border: 1px solid var(--line); border-radius: 8px; padding: 26px 22px;
  background: rgba(20, 20, 40, 0.03);
}
.review-stars { color: var(--accent-b); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.review-card p { font-size: 13.5px; }
.review-name { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin: 0; }

/* ---------- Preorder form ---------- */
.preorder-section { background: var(--panel-alt); }
.preorder-form { margin-top: 36px; max-width: 720px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px; }
.form-row { margin-bottom: 20px; }
.form-row--wide { grid-column: 1 / -1; }
.form-row label {
  display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500;
  color: var(--text); margin-bottom: 8px;
}
.form-row .req {
  font-family: var(--font-mono); font-weight: 700; font-size: 10.5px; color: #FF6B9E;
  background: rgba(255,107,158,0.12); border: 1px solid rgba(255,107,158,0.4);
  border-radius: 3px; padding: 2px 7px;
}
.form-row input, .form-row select {
  width: 100%; font-family: var(--font-body); font-size: 14px; color: var(--text);
  background: rgba(20, 20, 40, 0.03); border: 1px solid var(--line-strong);
  border-radius: 6px; padding: 12px 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-b) 50%), linear-gradient(135deg, var(--accent-b) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.form-row select option { color: #14141A; background: #F2F3F7; }
.form-row input:focus, .form-row select:focus {
  outline: none; border-color: var(--accent-b);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.15);
}
#preorder-submit { cursor: pointer; border: none; }
.form-status { margin: 16px 0 0; font-size: 13.5px; min-height: 1.2em; }
.form-status.is-success { color: #6FE0A8; }
.form-status.is-error { color: #FF6B6B; }

/* ---------- Confirm modal ---------- */
.confirm-overlay {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(4,4,8,0.75); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s ease;
}
.confirm-overlay[hidden] { display: none; }
.confirm-overlay.is-open { opacity: 1; }
.confirm-modal {
  position: relative; width: 100%; max-width: 520px; max-height: 86vh; overflow-y: auto;
  background: #FFFFFF; border: 1px solid var(--line-strong); border-radius: 12px; padding: 36px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  transform: translateY(16px) scale(0.98); transition: transform 0.3s ease;
}
.confirm-overlay.is-open .confirm-modal { transform: translateY(0) scale(1); }
.confirm-close {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-strong); color: var(--text-muted); font-size: 14px; cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.confirm-close:hover { color: var(--accent-b); border-color: var(--accent-b); }
.confirm-modal h3 { font-size: 20px; margin-bottom: 20px; }
.confirm-list { border-top: 1px solid var(--line); margin-bottom: 26px; }
.confirm-list > div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.confirm-list dt {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent-b);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px;
}
.confirm-list dd { margin: 0; font-size: 14px; }
.confirm-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.confirm-actions .btn { flex: 1; text-align: center; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 46px 0; text-align: center; }
.footer-note { color: var(--text-muted); font-size: 12.5px; margin-top: 14px; }
.footer-note a { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-visual { display: none; }
  .hero-inner { max-width: 100%; }
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-visual { max-width: 220px; margin: 0 auto; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-list { grid-template-columns: 1fr; }
}

/* Safety net: below 900px, the pinned "scene change" must never render,
   even if a timing/JS issue caused is-pin-mode to be added. These elements
   only make sense as an overlay for the fixed/pinned desktop stage. */
/* Mobile layout for the pinned "scene change" — same crossfade/slide
   mechanism as desktop, but rows stack (icon above text) and the
   giant numeral / progress dots shrink to fit narrow screens. */
@media (max-width: 899px) {
  .features-section.is-pin-mode .feature-row,
  .features-section.is-pin-mode .feature-row--reverse {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    text-align: center;
    gap: 18px;
    padding: 20px 24px;
    direction: ltr;
  }

  .features-section.is-pin-mode .feature-visual {
    width: 140px;
    height: 140px;
    max-width: 140px;
    margin: 0 auto;
  }

  .features-section.is-pin-mode .feature-bignum {
    font-size: min(60vw, 260px);
  }

  .features-section.is-pin-mode .feature-progress {
    right: 16px;
    gap: 10px;
  }

  .features-section.is-pin-mode .feature-progress-dot {
    width: 6px;
    height: 6px;
  }

  .features-section.is-pin-mode .feature-copy h3 {
    font-size: 18px;
  }

  .features-section.is-pin-mode .feature-copy p {
    font-size: 13px;
  }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .wrap { padding: 0 20px; }
  .section { padding: 76px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.2fr 1fr 1fr; font-size: 12.5px; padding: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-visual, .product-glow, .bud-left, .bud-right, .case-led, .btn-glow,
  .scroll-cue-line::after, .feature-icon::before, .feature-icon-ring, .feature-icon-glow {
    animation: none !important;
  }
  .reveal-line, .reveal, .reveal-fade { opacity: 1 !important; transform: none !important; }
  #glow-canvas { display: none; }
  .confirm-overlay, .confirm-modal { transition: none !important; }
}
