:root {
  --primary: #03A2CB;
  --primary-glow: #FF9C2A;
  --accent: #FF9C2A;
  --background: #f6fafb;
  --foreground: #0c1f26;
  --muted: #5a707a;
  --card: rgba(255, 255, 255, 0.7);
  --border: rgba(12, 31, 38, 0.1);
  --radius: 1rem;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  --shadow-glow: 0 8px 30px rgba(3, 162, 203, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; color: var(--muted); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(12, 31, 38, 0.06);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(246, 250, 251, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.brand img { height: 2rem; width: auto; }

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--foreground); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(3, 162, 203, 0.35); }

.btn-secondary {
  background: white;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-secondary:hover { transform: translateY(-2px); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.35;
}

.hero::before {
  width: 26rem;
  height: 26rem;
  background: var(--primary);
  top: -8rem;
  left: -6rem;
}

.hero::after {
  width: 22rem;
  height: 22rem;
  background: var(--accent);
  bottom: -6rem;
  right: -4rem;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(3, 162, 203, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-size: 3.2rem;
  letter-spacing: -0.02em;
}

.hero p.lead {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  max-width: 34rem;
  line-height: 1.6;
}

.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-proof {
  margin-top: 1.75rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
}

/* Mock dashboard */
.mock-dashboard { padding: 1.25rem; }

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mock-dot { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--border); }
.mock-url {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(12,31,38,0.05);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}

.mock-stat-tile {
  background: var(--gradient-primary);
  color: white;
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.mock-stat-tile .big { font-size: 1.6rem; font-weight: 700; font-family: "Space Grotesk", sans-serif; }
.mock-stat-tile .small { font-size: 0.85rem; opacity: 0.9; margin-top: 0.2rem; }

.mock-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }

.mock-stat-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.9rem;
}

.mock-stat-box .label { font-size: 0.75rem; color: var(--muted); }
.mock-stat-box .value { font-size: 1.3rem; font-weight: 700; font-family: "Space Grotesk", sans-serif; }

.mock-agenda-title { font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 0.6rem; }

.mock-agenda-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* Sections */
section { padding: 5rem 0; }

.section-head { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }

.eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.section-head h2 { font-size: 2.25rem; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(12,31,38,0.1); }

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.feature-card-body { padding: 1.25rem 1.4rem 1.5rem; }
.feature-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card-body p { font-size: 0.92rem; }

/* Roles */
.roles-panel { padding: 3rem; }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.role-card { padding: 1.5rem; border-radius: 1rem; background: white; border: 1px solid var(--border); }

.role-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 1rem;
}

.role-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.role-card p { font-size: 0.88rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.price-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
}

.price-card .plan-name { font-weight: 700; font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; }
.price-card .plan-price { font-size: 2.1rem; font-weight: 700; font-family: "Space Grotesk", sans-serif; margin: 0.75rem 0 0.25rem; }
.price-card .plan-price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.price-card .plan-desc { font-size: 0.9rem; margin-bottom: 1.5rem; }

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.price-card li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--foreground); }
.price-card li::before { content: "✓"; color: var(--primary); font-weight: 700; }

.price-card .btn { margin-top: auto; justify-content: center; width: 100%; }

/* Final CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.25) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
}

.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { font-size: 2.1rem; }
.cta-panel p { color: rgba(255,255,255,0.9); margin-top: 0.75rem; font-size: 1.05rem; }
.cta-panel .btn { margin-top: 2rem; background: white; color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 3rem 0; }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links { display: flex; gap: 1.5rem; font-size: 0.9rem; color: var(--muted); }
.footer-links a:hover { color: var(--foreground); }
.copyright { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .features-grid, .roles-grid, .pricing-grid { grid-template-columns: 1fr; }
  .roles-panel { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
