:root {
  --bg: #f3f3f1;
  --surface: #ffffff;
  --ink: #17181c;
  --muted: #646872;
  --line: #d9ddd6;
  --orange: #ff6c37;
  --orange-soft: #f8e7e1;
  --green: #1f8b53;
  --green-soft: #ddece4;
  --neutral-soft: #ececf0;
  --dark: #111317;
  --shadow: 0 14px 40px rgba(17, 19, 23, 0.08);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(243, 243, 241, 0.88);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.nav {
  display: flex;
  gap: 1.5rem;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover { color: var(--ink); }
.hero {
  background: linear-gradient(180deg, var(--dark) 0%, #171a21 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  border-top: 6px solid var(--orange);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffb198;
  margin: 0 0 1rem;
}
.eyebrow.orange { color: var(--orange); }
.hero h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  max-width: 11ch;
}
.hero-copy {
  margin: 1.25rem 0 0;
  max-width: 38rem;
  font-size: 1.18rem;
  color: #c9ccd2;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 180ms ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.card-kicker {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b4b9c4;
  font-weight: 700;
  font-size: 0.85rem;
}
.price-line { display: flex; align-items: flex-end; gap: .35rem; }
.price {
  font-size: clamp(4rem, 6vw, 5.4rem);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.per {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.subline {
  font-size: 1.05rem;
  color: #d4d8de;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.hero-list li {
  padding-left: 1rem;
  position: relative;
  color: #e8eaed;
}
.hero-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: .65rem;
}
.section { padding: 5rem 0; }
.warning-band { padding: 2.5rem 0 0; }
.warning-box {
  background: #f8ece9;
  border: 1px solid #ffb19a;
  border-left: 8px solid var(--orange);
  border-radius: var(--radius);
  padding: 2rem;
}
.warning-box h2,
.feature-item h3,
.panel h3,
.plan-name,
.comparison-title { margin-top: 0; }
.warning-box p,
.feature-item p,
.panel p,
.plan-note,
.plan-meta,
.contact-card p,
.comparison-col li,
.pricing-table td,
.pricing-table th { color: var(--muted); }
.section-heading {
  margin-bottom: 2rem;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}
.feature-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.panel {
  padding: 1.75rem;
  min-height: 245px;
  border: 1px solid var(--line);
}
.panel-warm { background: var(--orange-soft); }
.panel-green { background: var(--green-soft); }
.panel-neutral { background: var(--neutral-soft); }
.panel h3 { font-size: 1.75rem; letter-spacing: -0.04em; }
.panel-warm h3 { color: #c74d1f; }
.panel-green h3 { color: #239353; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
}
.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: .45rem;
  position: relative;
  padding-left: 1rem;
}
.feature-item h3::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: .45rem;
}
.contrast-section {
  background: #15171d;
  color: #fff;
}
.contrast-section .eyebrow { color: #ffab8e; }
.contrast-section .section-heading h2 { max-width: 12ch; }
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.comparison-col {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.comparison-title {
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 800;
}
.comparison-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255,255,255,0.03);
}
.comparison-col li {
  padding: 1rem 1.25rem;
  color: #d1d5db;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bad .comparison-title { background: #f5e4e0; color: #932f14; }
.good .comparison-title { background: #dcece2; color: #1c804d; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem;
}
.pricing-card.featured {
  background: linear-gradient(180deg, #edf8f1 0%, #e1f0e6 100%);
  border-color: #b9dcc7;
}
.plan-name {
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.plan-price {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  margin: .5rem 0;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.plan-price span { font-size: .48em; color: var(--muted); }
.plan-note {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.pricing-card.featured .plan-note,
.pricing-card.featured .plan-price { color: #1c6a41; }
.pricing-table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.pricing-table th,
.pricing-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.pricing-table th {
  color: var(--ink);
  font-size: 1rem;
  background: #f7f8f6;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.contact-card {
  background: linear-gradient(135deg, #191c22 0%, #121317 60%);
  color: #fff;
  border-radius: 28px;
  padding: 2.25rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}
.contact-card p { color: #d6dae0; }
.contact-caption {
  margin: .35rem 0 0;
  font-size: .95rem;
  color: #aeb5bf;
}
.site-footer {
  background: #101217;
  color: #b5bcc8;
  padding: 1.2rem 0;
  border-top: 4px solid var(--orange);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.site-footer a { color: #fff; font-weight: 600; }

@media (max-width: 980px) {
  .hero-grid,
  .feature-panels,
  .feature-grid,
  .comparison-grid,
  .pricing-grid,
  .contact-card {
    grid-template-columns: 1fr;
    display: grid;
  }
  .contact-card { align-items: start; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .hero { padding-top: 4rem; }
  .hero-list { grid-template-columns: 1fr; }
  .price { font-size: 3.6rem; }
  .warning-box,
  .hero-card,
  .pricing-card,
  .contact-card { padding: 1.4rem; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
