/* Theme tokens - Light mode only */
:root {
  --bg: #ffffff;
  --panel: #f5f7fb;
  --text: #0b1020;
  --muted-text: #4a5568;
  --brand: #ff7e20;
  --brand-600: #e66a00;
  --ok: #22c55e;
  --danger: #ef4444;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section.muted { background: var(--panel); }
.section-lead { color: var(--muted-text); margin-top: -6px; }

/* Header */
.site-header { position: sticky; top: 0; backdrop-filter: saturate(180%) blur(12px); background: color-mix(in oklab, var(--bg) 80%, transparent); border-bottom: 1px solid var(--border); z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { 
  font-family: 'Comfortaa', cursive;
  font-weight: 600; 
  font-size: 24px;
  letter-spacing: 0.2px; 
}
.nav-actions { display: flex; gap: 20px; align-items: center; }
.nav-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.nav-toggle { display: none; background: none; border: 0; width: 36px; height: 36px; padding: 0; }
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 7px 0; transition: .2s; }

/* Hero */
.hero { 
  padding-top: 96px; 
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, color-mix(in oklab, var(--brand) 15%, transparent) 0%, color-mix(in oklab, var(--brand) 5%, transparent) 40%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hero h1 { 
  font-size: clamp(28px, 4vw, 44px); 
  line-height: 1.15; 
  margin: 0 0 12px; 
  font-weight: 400;
  animation: slideInUp 0.8s ease-out;
}
.hero p { 
  color: var(--muted-text); 
  margin: 0 0 20px;
  animation: slideInUp 0.8s ease-out 0.2s both;
}
.hero-cta { 
  display: flex; 
  gap: 12px; 
  margin-bottom: 16px;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-bullets { list-style: none; margin: 0; padding: 0; color: var(--muted-text); display: grid; gap: 6px; }

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted-text);
  font-weight: 400;
}
.hero-image { 
  width: 100%; 
  height: auto; 
  border-radius: 14px;
  animation: slideInRight 0.8s ease-out 0.6s both;
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-8px) scale(1.02);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mockup { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; }
.mockup-header { display: flex; gap: 8px; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--muted-text); }
.mockup-header span { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; display: inline-block; }
.mockup-header span:nth-child(2) { background: #f59e0b; }
.mockup-header span:nth-child(3) { background: #22c55e; }
.mockup-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 12px; }
.mockup-body .col { background: color-mix(in oklab, var(--bg) 20%, var(--panel)); border: 1px dashed var(--border); border-radius: 10px; padding: 10px; }
.mockup-body .col h4 { margin: 4px 0 8px; font-size: 14px; color: var(--muted-text); }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; }
.card.done { opacity: .7; text-decoration: line-through; }
.card-lg { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.feature { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.feature .icon { font-size: 20px; }
.feature h3 { margin: 10px 0 6px; font-weight: 400; }
.feature p { color: var(--muted-text); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
blockquote { margin: 0; padding: 18px; background: var(--panel); border: 1px solid var(--border); border-radius: 14px; }
blockquote footer { color: var(--muted-text); margin-top: 8px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.price-card { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 18px; display: grid; gap: 12px; }
.price-card .price { font-size: 28px; font-weight: 700; }
.price-card.highlight { border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 15%, transparent); }

/* CTA / Form */
.form { display: grid; gap: 12px; }
.form-row { display: grid; gap: 6px; }
label { font-weight: 600; font-size: 14px; }
input, select { background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: 10px; padding: 10px 12px; outline: none; }
input:focus, select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 25%, transparent); }
.error { color: var(--danger); font-size: 12px; min-height: 16px; }
.checks { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.checks li::before { content: "✔"; color: var(--ok); margin-right: 8px; }
.fineprint { color: var(--muted-text); font-size: 12px; }

/* Footer */
.site-footer { 
  border-top: 1px solid var(--border); 
  padding: 48px 0 32px; 
  background: linear-gradient(135deg, var(--panel) 0%, color-mix(in oklab, var(--panel) 80%, var(--bg)) 100%);
}
.footer-grid { 
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr; 
  gap: 32px; 
  align-items: start;
}
.footnote { 
  margin-top: 32px; 
  color: var(--muted-text); 
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Footer navigation */
.site-footer nav h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--text);
}

.site-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer nav ul li a {
  color: var(--muted-text);
  font-size: 14px;
  transition: color 0.2s ease;
  padding: 4px 0;
  display: block;
}

.site-footer nav ul li a:hover {
  color: var(--brand);
  transform: translateX(4px);
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: 10px; border: 1px solid transparent; cursor: pointer; transition: background .2s, border-color .2s, transform .02s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: white; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-600); border-color: var(--brand-600); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--text); }
.btn-ghost { background: transparent; color: var(--text); border-color: transparent; }

/* Utilities */
.muted { color: var(--muted-text); }

/* Headings */
h2 { font-weight: 400; }
h3 { font-weight: 400; }
h4 { font-weight: 400; }

/* Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px 20px; }
  .nav-links.open { display: grid; gap: 10px; }
  .nav-toggle { display: inline-block; }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}