@import 'tokens.css';

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Orbs ── */
.orb-container {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  will-change: transform;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: orb1 20s ease-in-out infinite alternate;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--mental) 0%, transparent 70%);
  top: 30%; right: -15%;
  animation: orb2 25s ease-in-out infinite alternate;
}
.orb-3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, var(--career) 0%, transparent 70%);
  bottom: -10%; left: 25%;
  animation: orb3 22s ease-in-out infinite alternate;
}

@keyframes orb1 { to { transform: translate(80px, 60px) scale(1.1); } }
@keyframes orb2 { to { transform: translate(-60px, 80px) scale(1.15); } }
@keyframes orb3 { to { transform: translate(50px, -40px) scale(1.1); } }

section { position: relative; z-index: 1; }

/* ── Page Slider ── */
.page-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 200vw;
}

.page-slider.slide-left {
  transform: translateX(-100vw);
}

.page {
  width: 100vw;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
}

.page-detail {
  background: var(--bg);
}

/* ═══════════════════════════════
   HERO — big, bold, split layout
   ═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 4rem;
  width: 100%;
  text-align: center;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-icon {
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(224, 164, 122, 0.2);
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-headline .word.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero-headline .hl {
  background: linear-gradient(135deg, var(--primary) 0%, #f0c27f 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline .hl.visible {
  animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-because {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-because.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-sub.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-ctas.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 6rem;
  left: 0;
  right: 0;
  text-align: center;
}

.scroll-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  filter: blur(8px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-text.visible {
  opacity: 0.5;
  filter: blur(0);
}

/* ── Four Dimensions ── */
.dimensions {
  padding: 0;
}

.dim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  gap: 0;
}

.dim-item {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: background 0.4s;
}

.dim-item:hover { background: rgba(255,255,255,0.02); }

/* Clean grid borders */
.dim-item:nth-child(1) { border-right: none; border-bottom: none; }
.dim-item:nth-child(2) { border-bottom: none; }
.dim-item:nth-child(3) { border-right: none; }

.dim-icon {
  font-size: 32px;
  color: var(--q);
  display: block;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

.dim-item:hover .dim-icon { transform: scale(1.05); }

.dim-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--q);
  margin-bottom: 1rem;
}

.dim-item p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Ticker ── */
.ticker {
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ticker-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--q);
  padding: 6px 16px;
  border: 1px solid var(--q);
  border-radius: 999px;
  opacity: 0.6;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section headings (shared) ── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* ═══════════════════
   APP SHOWCASE
   ═══════════════════ */
.showcase-app {
  padding: 10rem 2rem;
}

.showcase-app-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}


/* ── Phone 3D scroll-driven reveal ── */
.showcase-app-inner {
  perspective: 1200px;
}

.showcase-app-phone {
  flex-shrink: 0;
  transform-style: preserve-3d;
}

/* Glow reflection underneath the phone */
.showcase-app-phone::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(224, 164, 122, 0.2) 0%, transparent 70%);
  filter: blur(20px);
  opacity: var(--glow, 0);
  pointer-events: none;
}

.showcase-app-phone {
  position: relative;
}

.showcase-app-text {
  flex: 1;
  min-width: 0;
  max-width: 380px;
  transform-origin: left center;
  transform: perspective(400px) rotateY(-18deg);
}

/* ── JS-driven scroll states ── */

/* Initial state: centered, rotated edge-on */
.showcase-app-phone {
  transform: translateX(calc(50vw - 160px - 50%)) scale(0.88);
  opacity: 0.4;
  transition: none;
  will-change: transform, opacity;
}

.showcase-app-text {
  opacity: 0;
  transform: translateX(80px) translateZ(-40px);
  transition: none;
  will-change: transform, opacity;
}


.carousel-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* iPhone frame — realistic */
.iphone-frame {
  width: 320px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #2a2a2c 0%, #1a1a1c 50%, #222224 100%);
  border-radius: 52px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 8px 32px rgba(0, 0, 0, 0.3),
    20px 40px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.3);
  /* Outer bezel highlight */
  border: 1px solid rgba(255,255,255,0.05);
}

/* Side button — power (right side) */
.iphone-frame::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 140px;
  width: 3px;
  height: 50px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c, #3a3a3c);
  border-radius: 0 2px 2px 0;
  box-shadow: 1px 0 2px rgba(0,0,0,0.3);
}

/* Side buttons — volume (left side) */
.iphone-frame::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 120px;
  width: 3px;
  height: 35px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c, #3a3a3c);
  border-radius: 2px 0 0 2px;
  box-shadow:
    -1px 0 2px rgba(0,0,0,0.3),
    0 50px 0 0 #2a2a2c;
}

/* Volume down button via box-shadow on ::after */
.iphone-volume-down {
  position: absolute;
  left: -3px;
  top: 170px;
  width: 3px;
  height: 35px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c, #3a3a3c);
  border-radius: 2px 0 0 2px;
  box-shadow: -1px 0 2px rgba(0,0,0,0.3);
}

/* Silent switch */
.iphone-silent {
  position: absolute;
  left: -3px;
  top: 90px;
  width: 3px;
  height: 18px;
  background: linear-gradient(180deg, #3a3a3c, #2a2a2c, #3a3a3c);
  border-radius: 2px 0 0 2px;
  box-shadow: -1px 0 2px rgba(0,0,0,0.3);
}

.iphone-screen {
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.5;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Dynamic Island */
.dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 34px;
  background: #000;
  border-radius: 20px;
  z-index: 3;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 4px rgba(0,0,0,0.8);
}

/* Camera dot inside dynamic island */
.dynamic-island::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #1a1a2e 0%, #0a0a15 60%, #000 100%);
  box-shadow:
    inset 0 0 2px rgba(80, 80, 120, 0.3),
    0 0 2px rgba(0,0,0,0.5);
}

.carousel-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-img.active {
  opacity: 1;
}

.iphone-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  z-index: 4;
}

/* ═══════════════════
   EXTENSION SHOWCASE
   ═══════════════════ */
.showcase-ext {
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.showcase-ext-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.showcase-browser {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.browser-screen {
  width: 100%;
  display: block;
}

/* ── Learn More CTA ── */
.learn-more-section {
  padding: 4rem 2rem;
  text-align: center;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* ═══════════════════
   DETAIL PAGE
   ═══════════════════ */
.detail-nav {
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--primary);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.back-btn:hover {
  background: rgba(255,255,255,0.04);
}

.back-btn .material-icons-outlined {
  font-size: 20px;
}

.detail-hero {
  padding: 4rem 2rem 5rem;
  text-align: center;
}

.detail-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.detail-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}

.detail-hero p {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
}

.detail-section {
  padding: 5rem 2rem;
}

.detail-section.detail-alt {
  background: var(--bg-card);
}

.detail-inner {
  max-width: 800px;
  margin: 0 auto;
}

.detail-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.detail-inner > p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Detail quadrant grid */
.detail-quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.detail-quad {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.detail-quad h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--q);
  margin: 0.75rem 0 0.5rem;
}

.detail-quad > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.detail-quad ul {
  list-style: none;
}

.detail-quad ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
}

.detail-quad ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--q);
  opacity: 0.4;
}

/* Detail steps */
.detail-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-step {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.detail-step:last-child { border-bottom: none; }

.detail-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.detail-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.detail-step p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
}

/* Detail tags */
.detail-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.detail-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.tag-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-want { background: rgba(224,164,122,0.15); color: var(--primary); }
.tag-love { background: rgba(200,100,100,0.15); color: #c86464; }
.tag-must { background: rgba(74,124,89,0.15); color: var(--career); }
.tag-quit { background: rgba(123,163,189,0.15); color: var(--mental); }

.tag-pts {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.detail-tag p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* ═══════════
   DOWNLOAD
   ═══════════ */
.download {
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.download-inner {
  max-width: 700px;
  margin: 0 auto;
}

.download-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 3rem;
}

.download-group {
  margin-bottom: 2.5rem;
}

.download-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.download-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ext-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 28px 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s;
}

.ext-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(224, 164, 122, 0.12);
}

.ext-icon {
  font-size: 48px;
  color: var(--text-muted);
}

.ext-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ext-btn-small {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1;
}

.ext-btn-name {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ═══════════
   BUTTONS
   ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--primary-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(224, 164, 122, 0.25);
}

/* ═══════════
   FOOTER
   ═══════════ */
.footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--bg);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ═══════════
   RESPONSIVE
   ═══════════ */
@media (max-width: 767px) {
  .hero-inner {
    padding: 5rem 1.5rem 3rem;
  }
  .hero-headline { font-size: 2.2rem; }
  .hero-headline br { display: none; }
  .hero-because { font-size: 1.1rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-brand-name { font-size: 1.8rem; }
  .hero-icon { width: 56px; height: 56px; }
  .scroll-indicator { display: none; }

  .showcase-app-inner { flex-direction: column; text-align: center; gap: 2rem; padding-left: 0; }
  .showcase-app-phone {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
  .showcase-app-phone::after { opacity: 0.5 !important; }
  .showcase-app-text {
    transform: none !important;
    opacity: 1 !important;
  }
  .carousel-desc { max-width: none; margin-left: auto; margin-right: auto; }
  .iphone-frame { width: 240px; border-radius: 40px; padding: 8px; }
  .iphone-screen { border-radius: 32px; }
  .dynamic-island { width: 80px; height: 22px; top: 8px; }
  .showcase-app, .showcase-ext { padding: 4rem 1rem; }

  .dim-grid { grid-template-columns: 1fr; max-width: 100%; }
  .dim-item { border-right: 1px solid var(--border) !important; }
  .dim-item:nth-child(1),
  .dim-item:nth-child(2),
  .dim-item:nth-child(3) { border-bottom: none; }

  .detail-quad-grid { grid-template-columns: 1fr; }
  .detail-tags { grid-template-columns: 1fr; }
  .detail-step { flex-direction: column; gap: 0.5rem; }
  .detail-step-num { font-size: 2rem; width: auto; }

  .download-row { flex-direction: column; align-items: center; }

  /* Hide footer on mobile */
  .footer { display: none; }


  /* Smaller download buttons */
  .ext-btn {
    padding: 16px 24px;
    gap: 12px;
  }
  .ext-icon { font-size: 32px; }
  .ext-btn-name { font-size: 1.1rem; }
  .ext-btn-small { font-size: 0.75rem; }
  .download-heading { font-size: 1.8rem !important; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none !important; }
  .reveal { transition-duration: 0.01s !important; }
  .showcase-app-phone {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
  .showcase-app-text {
    transform: none !important;
    opacity: 1 !important;
  }
}
