/* Pastenator landing — brand purple / glass / menu-bar vibe */

:root {
  --bg: #f4f2ff;
  --bg-raised: rgba(255, 255, 255, 0.72);
  --bg-header: rgba(244, 242, 255, 0.78);
  --text: #1a1630;
  --text-soft: #5c5678;
  --accent: #6c5ce7;
  --accent-soft: #a29bfe;
  --accent-tint: rgba(108, 92, 231, 0.12);
  --ring: rgba(26, 22, 48, 0.08);
  --shadow: 0 20px 50px -24px rgba(70, 50, 160, 0.45);
  --panel: #1c1a28;
  --panel-row: rgba(255, 255, 255, 0.06);
  --radius: 18px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dark {
  --bg: #0e0c18;
  --bg-raised: rgba(30, 26, 48, 0.72);
  --bg-header: rgba(14, 12, 24, 0.75);
  --text: #f0eef8;
  --text-soft: #a8a3c0;
  --accent: #8b7cf8;
  --accent-soft: #b4adff;
  --accent-tint: rgba(139, 124, 248, 0.16);
  --ring: rgba(240, 238, 248, 0.1);
  --shadow: 0 22px 56px -20px rgba(0, 0, 0, 0.7);
  --panel: #161422;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background-color 0.35s ease, color 0.35s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1120px, 100% - 40px); margin-inline: auto; }
.muted { color: var(--text-soft); }
.small { font-size: 0.875rem; }

.show-when-light { display: inline; }
.show-when-dark { display: none; }
.dark .show-when-light { display: none; }
.dark .show-when-dark { display: inline; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

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

/* Ambient orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: orb-drift 18s ease-in-out infinite;
}
.orb-a {
  width: 420px; height: 420px;
  background: var(--accent);
  top: -80px; left: -60px;
  opacity: 0.28;
}
.orb-b {
  width: 360px; height: 360px;
  background: var(--accent-soft);
  top: 40%; right: -80px;
  animation-delay: -6s;
  opacity: 0.22;
}
.orb-c {
  width: 280px; height: 280px;
  background: #74b9ff;
  bottom: 10%; left: 30%;
  animation-delay: -11s;
  opacity: 0.12;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .hero-icon-float, .kbd-float, .mock-row { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  background: var(--bg-header);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-color: var(--ring);
  box-shadow: 0 8px 30px -20px rgba(0,0,0,0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}
.brand-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.35);
}
.brand-name { letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  gap: 1.25rem;
  margin-left: 1.5rem;
  flex: 1;
}
.nav-links a {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text); }

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

.chip {
  border: 1px solid var(--ring);
  background: var(--bg-raised);
  color: var(--text);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.chip:hover { border-color: var(--accent-soft); }

.menu-btn { display: none; }
.menu-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}
.menu-bars span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 20px 1.25rem;
  border-top: 1px solid var(--ring);
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 10px 28px -10px rgba(108, 92, 231, 0.7);
}
.btn-primary:hover { box-shadow: 0 14px 34px -10px rgba(108, 92, 231, 0.85); }
.btn-ghost {
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--ring);
}
.btn-small { padding: 0.4rem 0.9rem; font-size: 0.85rem; }
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1.05rem; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-tint); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 1rem;
}
.gradient-text {
  background: linear-gradient(120deg, var(--accent), var(--accent-soft) 50%, #74b9ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hero-meta { margin-bottom: 0.35rem; }
.hero-install a { font-weight: 600; }

/* Mock panel */
.float-stage {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-panel {
  width: min(100%, 440px);
  background: linear-gradient(160deg, #221f32, var(--panel));
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow), 0 0 0 1px rgba(108, 92, 231, 0.15);
  overflow: hidden;
  color: #f0eef8;
  transform: perspective(900px) rotateY(-6deg) rotateX(4deg);
  transition: transform 0.4s ease;
}
.float-stage:hover .mock-panel {
  transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}

.mock-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  font-weight: 700;
}
.mock-search {
  background: rgba(255,255,255,0.08);
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  letter-spacing: 0.04em;
}
.mock-pill {
  color: var(--accent-soft);
  opacity: 0.9;
}
.mock-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 220px;
}
.mock-list {
  padding: 0.55rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mock-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.45rem;
  align-items: center;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
  background: transparent;
  animation: row-in 0.6s ease both;
}
.mock-row:nth-child(1) { animation-delay: 0.15s; }
.mock-row:nth-child(2) { animation-delay: 0.3s; }
.mock-row:nth-child(3) { animation-delay: 0.45s; }
.mock-row:nth-child(4) { animation-delay: 0.6s; }
@keyframes row-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: none; }
}
.mock-row.active {
  background: rgba(108, 92, 231, 0.28);
  box-shadow: inset 0 0 0 1px rgba(162, 155, 254, 0.35);
}
.mock-ico {
  opacity: 0.75;
  font-size: 0.7rem;
  width: 1.1rem;
  text-align: center;
}
.mock-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  background: rgba(2, 107, 199, 0.35);
  color: #9fd0ff;
}
.mock-tag.email { background: rgba(59, 130, 246, 0.25); color: #93c5fd; }
.mock-tag.ocr { background: rgba(99, 102, 241, 0.3); color: #c7d2fe; }
.mock-tag.hex { background: rgba(236, 72, 153, 0.25); color: #f9a8d4; }
.mock-tag.md { background: rgba(108, 92, 231, 0.35); color: #d4cfff; }

.mock-preview {
  padding: 0.65rem 0.75rem 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  line-height: 1.5;
  background: rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.mock-preview-bar {
  display: flex;
  gap: 0.3rem;
}
.mock-seg {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: rgba(240,238,248,0.55);
  font-family: var(--font);
}
.mock-seg.on {
  background: rgba(108, 92, 231, 0.35);
  color: #e8e4ff;
}
.mock-md {
  flex: 1;
  font-family: var(--font);
  font-size: 0.78rem;
  line-height: 1.45;
}
.mock-md strong { color: #f0eef8; font-size: 0.9rem; }
.c-muted { color: rgba(240, 238, 248, 0.55); }
.mock-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font);
  font-size: 0.65rem;
}
.mock-emde {
  font-weight: 700;
  color: #f5a86a;
  background: rgba(245, 168, 106, 0.15);
  border: 1px solid rgba(245, 168, 106, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}
.c-kw { color: #c792ea; }
.c-fn { color: #82aaff; }
.c-str { color: #c3e88d; }

.hero-icon-float {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow: 0 18px 40px -12px rgba(108, 92, 231, 0.7);
  animation: float-y 5s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.kbd-float {
  position: absolute;
  left: 4%;
  top: 12%;
  display: flex;
  gap: 0.35rem;
  animation: float-y 6s ease-in-out infinite reverse;
}
.kbd-float kbd {
  background: var(--bg-raised);
  border: 1px solid var(--ring);
  color: var(--text);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.35);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0.5rem 0 3rem;
}
.stat {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: 16px;
  background: var(--bg-raised);
  border: 1px solid var(--ring);
  backdrop-filter: blur(10px);
}
.stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* Sections */
.section { padding: 4rem 0; }
.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  background: var(--bg-raised);
  border: 1px solid var(--ring);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 92, 231, 0.35);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-tint);
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.feature-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* Compact emde cross-promo (inside features) */
.emde-tile {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr minmax(200px, 42%);
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(226, 102, 42, 0.08), transparent 55%),
    var(--bg-raised);
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
}
.dark .emde-tile {
  background:
    linear-gradient(135deg, rgba(226, 102, 42, 0.12), transparent 50%),
    var(--bg-raised);
}
.emde-tile-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c45c26;
  margin-bottom: 0.35rem;
}
.dark .emde-tile-kicker { color: #f0a06a; }
.emde-tile-copy h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.emde-tile-copy p.muted {
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  max-width: 36rem;
}
.emde-tile-shot {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ring);
  background: #1a1628;
  box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 160px;
  max-height: 200px;
}
.emde-tile-shot img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: right bottom;
  display: block;
}
@media (max-width: 720px) {
  .emde-tile {
    grid-template-columns: 1fr;
  }
  .emde-tile-shot {
    order: -1;
    max-width: 360px;
    margin-inline: 0 auto; /* keep shot to the right on narrow layouts when possible */
    min-height: 140px;
    max-height: 160px;
  }
  .emde-tile-shot img {
    max-height: 160px;
    object-position: right bottom;
  }
}

/* How */
.how {
  background: linear-gradient(180deg, transparent, var(--accent-tint), transparent);
}
.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: var(--bg-raised);
  border: 1px solid var(--ring);
}
.step-num {
  flex: 0 0 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}
.step h3 { margin-bottom: 0.25rem; }

/* Gallery — 3 proof cards only (no settings parade) */
.shot-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-raised);
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(70, 50, 160, 0.5);
}
.shot-frame {
  background: #14121f;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.shot-frame--menubar {
  background: linear-gradient(160deg, #3d2f9e, #1a1440);
  min-height: 160px;
}
.shot-frame--onboard {
  background: linear-gradient(160deg, #b8a9f8, #7c6cf0);
  min-height: 180px;
}
.shot-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}
.shot-frame--menubar img {
  max-height: 140px;
  width: auto;
  max-width: 100%;
}
.shot-card figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  max-width: 980px;
  margin-inline: auto;
}
@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .shot-card img {
    max-height: 200px;
  }
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.why-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .why-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: var(--bg-raised);
  border: 1px solid var(--ring);
}
.why-card h3 { margin-bottom: 0.4rem; }
.why-card p { color: var(--text-soft); font-size: 0.95rem; }

/* Download */
.download { padding-bottom: 2rem; }
.download-card {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(108, 92, 231, 0.28), transparent 60%),
    var(--bg-raised);
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
}
.download-icon {
  width: 88px; height: 88px;
  margin: 0 auto 1rem;
  border-radius: 22px;
  box-shadow: 0 16px 36px -12px rgba(108, 92, 231, 0.65);
}
.download-card h2 {
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.download-card .muted { margin-bottom: 1.25rem; }
.download-card .btn { margin-bottom: 0.85rem; }

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}
.faq-list details {
  border-radius: 14px;
  background: var(--bg-raised);
  border: 1px solid var(--ring);
  padding: 0.9rem 1.1rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { margin-bottom: 0.55rem; color: var(--accent); }
.faq-list p, .faq-list li {
  color: var(--text-soft);
  font-size: 0.95rem;
}
.install-steps {
  margin: 0.4rem 0 0.6rem 1.1rem;
  display: grid;
  gap: 0.3rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--ring);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
}
.footer-brand img { border-radius: 7px; width: 28px; height: 28px; }
.footer-links { display: flex; gap: 1rem; font-weight: 600; font-size: 0.9rem; }

/* Privacy toast */
.privacy-note {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 420px;
  margin-inline: auto;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--bg-raised);
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.privacy-note[hidden] { display: none !important; }
.privacy-note p { font-size: 0.8rem; color: var(--text-soft); flex: 1; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .hero-visual { order: -1; }
  .mock-panel { transform: none; }
  .float-stage:hover .mock-panel { transform: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .why-grid, .why-grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links, .hide-mobile { display: none; }
  .menu-btn { display: inline-flex; }
}

@media (max-width: 560px) {
  .feature-grid, .why-grid, .why-grid-4 { grid-template-columns: 1fr; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-preview { display: none; }
  .hero-icon-float { width: 64px; height: 64px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
