/* ============================================
   FormaDraw — Landing Page
   Aesthetic: Editorial Minimalism
   Fonts: Instrument Serif (display) + DM Sans (body)
   ============================================ */

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Design Tokens --- */
:root {
  --bg: #FAF9F6;
  --bg-card: #FFFFFF;
  --bg-dark: #141414;
  --bg-warm: #F0ECE2;

  --ink: #141414;
  --ink-secondary: #4A4A48;
  --ink-muted: #8E8E8A;
  --ink-faint: #C4C4BF;
  --ink-on-dark: #FAF9F6;
  --ink-on-dark-muted: #9E9E9A;

  --border: #E2E0DB;
  --border-dark: #2A2A2A;
  --accent: #E85D26;
  --accent-glow: rgba(232, 93, 38, 0.12);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --max-width: 1120px;
  --nav-height: 68px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.section-header em,
.download h2 em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* --- Grain Overlay --- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0.4;
  background-image: url("assets/grain.png");
  background-repeat: repeat;
  background-size: 128px;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
}

.btn-arrow {
  transition: transform 0.25s var(--ease-out);
  display: inline-block;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--ink);
  color: var(--ink-on-dark);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--ink);
}

.btn-primary-inverted {
  background: var(--ink-on-dark);
  color: var(--ink);
  border-color: var(--ink-on-dark);
}
.btn-primary-inverted:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-on-dark);
  border-color: rgba(250,249,246,0.2);
}
.btn-ghost:hover {
  border-color: rgba(250,249,246,0.5);
}

/* Focus styles */
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; }

/* --- Section Shared --- */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header h2 {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-header h2 em {
  font-size: 44px;
}
.section-header > p:not(.section-label) {
  font-size: 18px;
  color: var(--ink-muted);
  margin-top: 12px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(250, 249, 246, 0.8);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.03);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: var(--ink-on-dark);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--ink);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-mobile-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav.menu-open .nav-mobile-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav.menu-open .nav-mobile-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.menu-open .nav-mobile-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 148px 0 80px;
  text-align: center;
  position: relative;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-body);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-line {
  display: inline;
}

.hero-line-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 78px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--ink-secondary);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 72px;
}

/* Screenshot frame */
.hero-screenshot {
  max-width: 920px;
  margin: 0 auto;
}

.screenshot-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 16px rgba(0,0,0,0.04),
    0 12px 48px rgba(0,0,0,0.06);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.screenshot-frame:hover {
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.06),
    0 20px 64px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.screenshot-titlebar {
  height: 40px;
  background: #F6F4F0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
}
.screenshot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.screenshot-canvas {
  aspect-ratio: 16 / 9;
  background: var(--bg);
  position: relative;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
@media (pointer: fine) {
  *, *::before, *::after {
    cursor: none !important;
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), border-color 0.2s;
}
.custom-cursor.hover .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: rgba(255,255,255,0.8);
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.social-proof-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.social-proof-badge-main {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
}
.social-proof-label {
  font-size: 14px;
  color: var(--ink-muted);
}
.social-proof-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-secondary);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 120px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Bento-style asymmetric layout */
.feature-card:nth-child(1) {
  grid-column: span 2;
}
.feature-card:nth-child(3) {
  grid-row: span 2;
}

.feature-card {
  padding: 36px 32px;
  background: var(--bg-card);
  transition: background 0.3s;
  position: relative;
}
.feature-card:hover {
  background: var(--bg);
}

.feature-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--ink-faint);
  margin-bottom: 20px;
  line-height: 1;
  transition: color 0.3s;
}
.feature-card:hover .feature-number {
  color: var(--accent);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-grid-single {
  grid-template-columns: 1fr;
  max-width: 420px;
}

.pricing-card {
  position: relative;
  padding: 44px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.pricing-card-pro {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.pricing-card-pro:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 24px;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-amount {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-unit {
  font-size: 16px;
  color: var(--ink-muted);
  font-weight: 400;
  margin-left: 2px;
}
.pricing-card-pro .pricing-unit {
  color: var(--ink-on-dark-muted);
}

.pricing-period {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 0;
}
.pricing-card-pro .pricing-period {
  color: var(--ink-on-dark-muted);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.pricing-card-pro .pricing-divider {
  background: var(--border-dark);
}

.pricing-features {
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px;
  padding: 7px 0;
  color: var(--ink-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-glow);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5.5L4 7.5L8 3' stroke='%23E85D26' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pricing-card-pro .pricing-features li {
  color: var(--ink-on-dark-muted);
}
.pricing-card-pro .pricing-features li::before {
  background-color: rgba(250,249,246,0.08);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5.5L4 7.5L8 3' stroke='%23FAF9F6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing-trial-note {
  font-size: 12px;
  color: var(--ink-on-dark-muted);
  text-align: center;
  margin-top: 12px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--ink-muted);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download {
  padding: 120px 0 100px;
  background: var(--bg-dark);
  text-align: center;
  color: var(--ink-on-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.download::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232,93,38,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.download-content {
  position: relative;
}

.download h2 {
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.download h2 em {
  font-size: 48px;
}

.download-content > p {
  color: var(--ink-on-dark-muted);
  font-size: 17px;
  margin-bottom: 40px;
}

.download-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}

.download-note {
  font-size: 13px;
  color: var(--ink-on-dark-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 64px 0 32px;
  color: var(--ink-on-dark-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-on-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 14px;
}

.footer-col h3 {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-on-dark-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-on-dark-muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--ink-on-dark);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}
.footer-bottom p {
  font-size: 13px;
}

/* --- Docs & Legal Pages --- */
.legal-page {
  padding: 160px 0 80px;
  min-height: 70vh;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
}
.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.legal-page p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}
.legal-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.docs-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.docs-card h3 {
  margin-bottom: 8px;
}
.docs-card code, .docs-card kbd {
  background: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 56px; }
  .hero-line-serif { font-size: 62px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(1) { grid-column: span 2; }
  .feature-card:nth-child(3) { grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav .btn-sm { display: none; }
  .nav-mobile-toggle { display: flex; }

  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    gap: 12px;
  }
  .nav.menu-open .nav-links a {
    font-size: 16px;
    padding: 8px 0;
  }
  .nav.menu-open .btn-sm {
    display: inline-flex;
    margin-top: 8px;
  }

  .hero { padding: 128px 0 60px; }
  .hero h1 { font-size: 40px; }
  .hero-line-serif { font-size: 44px; }
  .hero-subtitle { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: center; }

  .section-header h2 { font-size: 32px; }
  .section-header h2 em { font-size: 34px; }

  .social-proof-divider { display: none; }
  .social-proof-inner { gap: 16px; }

  .features { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(1) { grid-column: span 1; }

  .faq { padding: 80px 0; }

  .pricing { padding: 80px 0; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .download { padding: 80px 0; }
  .download h2 { font-size: 32px; }
  .download h2 em { font-size: 36px; }
  .download-actions { flex-direction: column; align-items: center; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-line-serif { font-size: 36px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Progressive Enhancement: no-js fallback --- */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* --- Accessibility: reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sketch-path, .sketch-circle, .sketch-rect {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
  }
  .hero-label-dot { animation: none; }
  .btn, .feature-card, .pricing-card, .screenshot-frame {
    transition: none;
  }
}
