:root {
  --bg: #0d1117;
  --bg-alt: #161b22;
  --fg: #c9d1d9;
  --fg-bright: #f0f6fc;
  --accent: #58a6ff;
  --accent-dim: #1f6feb;
  --muted: #8b949e;
  --border: #30363d;
  --border-light: #3d444d;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* Brand row */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 0 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-bright);
  letter-spacing: 0.01em;
}

.brand-desc {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  padding: 3rem 0 2rem;
}

.hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg-bright);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.hero .subhead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Sections */
section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg-bright);
  margin-bottom: 1.25rem;
}

/* Trigger list (bring me in when) */
.triggers ul {
  list-style: none;
  padding: 0;
}

.triggers li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.triggers li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Offers */
.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offer-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.offer-card.specialty {
  border-left: 3px solid var(--accent);
}

.offer-card .offer-name {
  font-weight: 600;
  color: var(--fg-bright);
  margin-bottom: 0.35rem;
}

.offer-card .offer-desc {
  font-size: 0.92rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.offer-card .offer-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.offer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.offer-label:first-child {
  margin-top: 0;
}

/* Case studies */
.case-study {
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
}

.case-study .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.case-study .problem {
  font-weight: 600;
  color: var(--fg-bright);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.case-study .result {
  color: var(--fg);
  font-size: 0.9rem;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--fg-bright);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.step-content .step-title {
  font-weight: 600;
  color: var(--fg-bright);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.step-content .step-desc {
  font-size: 0.9rem;
  color: var(--fg);
}

/* About */
.about p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA */
.cta-box {
  background: var(--bg-alt);
  border: 1px solid var(--accent-dim);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.cta-box a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.cta-box a:hover {
  text-decoration: underline;
}

.cta-box .cta-detail {
  color: var(--fg);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.cta-box .cta-filter {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.4rem; }
  .hero .subhead { font-size: 1rem; }
  .offer-card { padding: 1rem 1.15rem; }
  .cta-box { padding: 1.5rem; }
}
