:root {
  --bg: #faf9f7;
  --bg-alt: #f0ede8;
  --slate: #1a1a2e;
  --slate-mid: #2d2d4a;
  --amber: #f5a623;
  --amber-dark: #d4891a;
  --text: #1a1a2e;
  --text-muted: #5c5c7a;
  --green: #2d9e6a;
  --border: rgba(26,26,46,0.1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate);
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
  padding: 80px 32px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.1;
  color: var(--slate);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* CLOCK WIDGET */
.clock-widget {
  background: var(--slate);
  border-radius: 20px;
  padding: 36px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cw-face {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.4);
}
.cw-tick {
  position: absolute;
  font-size: 10px;
  color: rgba(245,166,35,0.6);
  font-weight: 600;
}
.cw-12 { top: 8px; left: 50%; transform: translateX(-50%); }
.cw-3  { right: 8px; top: 50%; transform: translateY(-50%); }
.cw-6  { bottom: 8px; left: 50%; transform: translateX(-50%); }
.cw-9  { left: 8px; top: 50%; transform: translateY(-50%); }
.cw-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 8px; height: 8px; background: var(--amber); border-radius: 50%; }
.cw-hour-hand {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 36px;
  background: white;
  transform-origin: bottom center;
  transform: translate(-50%,-100%) rotate(-30deg);
  border-radius: 4px;
}
.cw-minute-hand {
  position: absolute;
  top: 50%; left: 50%;
  width: 3px; height: 52px;
  background: rgba(255,255,255,0.5);
  transform-origin: bottom center;
  transform: translate(-50%,-100%) rotate(80deg);
  border-radius: 3px;
}
.cw-data {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.cw-stat { text-align: center; }
.cw-value { display: block; font-size: 22px; font-weight: 600; color: white; }
.cw-value.green { color: var(--green); }
.cw-value.amber { color: var(--amber); }
.cw-label { display: block; font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }

/* STATS BAND */
.stats-band {
  background: var(--slate);
  padding: 40px 32px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--amber);
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* FEATURES */
.features {
  padding: 96px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--slate);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.features-header p {
  font-size: 17px;
  color: var(--text-muted);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,26,46,0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--slate);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--slate);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* DASHBOARD SECTION */
.dashboard-section {
  background: var(--slate);
  padding: 96px 32px;
}
.dash-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dash-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 3vw, 44px);
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.dash-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.7;
}
.dash-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.dash-check {
  color: var(--amber);
  font-weight: 600;
  margin-right: 10px;
}
.dash-features li {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

/* MOCKUP WINDOW */
.mockup-window {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.mockup-bar {
  background: #1e1e1e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green  { background: #28ca41; }
.mockup-url {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-left: 12px;
  font-family: monospace;
}
.mockup-body { padding: 20px; }
.mockup-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mockup-title { font-size: 14px; font-weight: 600; color: white; }
.mockup-badge { font-size: 10px; background: #28ca41; color: #000; padding: 2px 8px; border-radius: 20px; font-weight: 600; }
.mockup-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.mock-card { background: #1e1e1e; border-radius: 8px; padding: 12px; }
.mc-label { font-size: 9px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.mc-value { font-size: 20px; font-weight: 600; color: white; }
.mc-value.amber { color: var(--amber); }
.mc-sub { font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.mockup-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.mc-bar { flex: 1; background: var(--amber); border-radius: 3px 3px 0 0; opacity: 0.6; }

/* PRICING */
.pricing {
  padding: 96px 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing-header { margin-bottom: 48px; }
.pricing-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--slate);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.pricing-header p { font-size: 17px; color: var(--text-muted); }
.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--slate);
  border-radius: 24px;
  padding: 48px;
  color: white;
}
.pricing-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 12px;
}
.pricing-price { margin-bottom: 8px; }
.price-num {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: white;
  letter-spacing: -0.02em;
}
.price-period { font-size: 16px; color: rgba(255,255,255,0.5); }
.pricing-desc { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.pricing-features { list-style: none; text-align: left; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pricing-features li { font-size: 14px; color: rgba(255,255,255,0.8); }

/* OBJECTIONS */
.objections {
  padding: 96px 32px;
  background: var(--bg-alt);
}
.obj-header {
  max-width: 1100px;
  margin: 0 auto 64px;
}
.obj-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--slate);
  letter-spacing: -0.02em;
}
.obj-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.obj-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--slate);
  margin-bottom: 12px;
  font-style: italic;
}
.obj-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* CLOSING */
.closing {
  padding: 96px 32px;
  text-align: center;
  background: var(--slate);
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.closing-sub { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* FOOTER */
.footer {
  padding: 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--slate);
}
.footer-copy { font-size: 14px; color: var(--text-muted); }
.footer-copy a { color: var(--amber); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .clock-widget { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-mockup { display: none; }
  .obj-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .pricing-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 40px; }
  .hero-headline { font-size: 36px; }
  .nav-links { display: none; }
}