:root {
  --bg: #050816;
  --bg-alt: #0e1220;
  --accent: #22c55e;
  --accent-soft: rgba(34,197,94,0.12);
  --text: #f9fafb;
  --muted: #9ca3af;
  --border: #1f2933;
  --danger: #f97373;
  --shadow-soft: 0 18px 35px rgba(15,23,42,0.65);
  --radius-lg: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 18px 64px;
  width: 100%;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #4ade80 0, #16a34a 40%, #0f766e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #022c22;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(34,197,94,0.7);
}

.brand-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 0.8rem;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.hero {
  padding: 24px 22px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15,23,42,0.96), #020617 70%);
  border: 1px solid rgba(148,163,184,0.23);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -120px;
  opacity: 0.15;
  background:
    radial-gradient(circle at 10% 20%, rgba(52,211,153,0.4) 0, transparent 55%),
    radial-gradient(circle at 80% 0, rgba(59,130,246,0.35) 0, transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(55,65,81,0.7);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.25);
}

h1 {
  font-size: clamp(1.9rem, 3vw + 1rem, 2.5rem);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

h1 span {
  background: linear-gradient(120deg, #4ade80, #22c55e, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 18px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(55,65,81,0.8);
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.btn-primary {
  border-radius: 999px;
  padding: 9px 18px;
  border: none;
  background: linear-gradient(130deg, #22c55e, #16a34a);
  color: #022c22;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 12px 25px rgba(16,185,129,0.5);
}

.btn-primary span.icon {
  font-size: 1rem;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-footnote {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

.hero-footnote strong { color: #e5e7eb; }

.panel {
  padding: 18px 16px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(55,65,81,0.9);
  background: linear-gradient(150deg, rgba(15,23,42,0.96), #020617 80%);
}

.panel h2 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.panel p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.metric {
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(55,65,81,0.8);
  background: radial-gradient(circle at top, rgba(34,197,94,0.04) 0, transparent 70%);
}

.metric-title {
  font-size: 0.8rem;
  color: var(--muted);
}

.metric-value {
  font-size: 1rem;
  font-weight: 600;
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(55,65,81,0.9);
  background: linear-gradient(150deg, #020617 0, #020617 45%, #020617 100%);
  padding: 16px 16px 18px;
}

.card h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #bbf7d0;
  border: 1px solid rgba(34,197,94,0.4);
  margin-bottom: 8px;
}

.badge span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.card p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.card li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}

.tick {
  margin-top: 3px;
  font-size: 0.85rem;
  color: #4ade80;
}

.pricing-note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--muted);
}

footer {
  margin-top: auto;
  border-top: 1px solid rgba(31,41,55,0.9);
  padding: 16px 18px 22px;
  font-size: 0.78rem;
  color: var(--muted);
}

footer a { color: var(--muted); }
footer a:hover { color: #e5e7eb; }

/* extracted / new utility classes */

.panel-note {
  margin-top: 10px;
}

.section-spacer {
  margin-top: 34px;
}

.contact-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-intro {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 720px;
}

.contact-groups {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-group {
  margin-top: 6px;
}

.contact-heading {
  font-weight: 600;
  font-size: 0.88rem;
  color: #e5e7eb;
}

.contact-text {
  margin-top: 2px;
}

.contact-separator {
  margin: 0 4px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  height: 100px;
  width: auto;
}

.logo-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.logo-image {
  height: 150px;
  width: auto;
  border-radius: 8px;
}
