:root {
  --bg: #0d1117;
  --bg-soft: #121923;
  --surface: rgba(18, 25, 35, 0.88);
  --surface-strong: rgba(26, 36, 49, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef3f8;
  --muted: #9fb0c1;
  --accent: #57d0b1;
  --accent-strong: #8bf0d4;
  --ink: #091014;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(87, 208, 177, 0.08), transparent 30%),
    linear-gradient(225deg, rgba(59, 130, 246, 0.1), transparent 35%),
    linear-gradient(180deg, #0d1117, #0f1721 40%, #111827);
  line-height: 1.65;
}

a {
  color: inherit;
}

.orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.22;
}

.orb-left {
  top: -120px;
  left: -120px;
  background: #36d399;
}

.orb-right {
  right: -140px;
  bottom: -80px;
  background: #2563eb;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 52px;
}

.inner-shell {
  width: min(920px, calc(100% - 32px));
}

.hero,
.subhero,
.feature-card,
.panel,
.footer {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  min-height: 72vh;
}

.hero-main,
.subhero,
.feature-card,
.panel,
.footer,
.hero-card {
  border-radius: 30px;
}

.hero-main,
.subhero {
  padding: 52px;
}

.hero-card,
.feature-card,
.panel {
  padding: 28px;
}

.hero-card {
  align-self: end;
  background: linear-gradient(180deg, rgba(26, 36, 49, 0.98), rgba(15, 23, 33, 0.94));
  border: 1px solid rgba(139, 240, 212, 0.15);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  line-height: 1.06;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 6.2rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-copy,
.hero-subcopy,
.subhero-copy {
  max-width: 62ch;
}

.hero-copy {
  font-size: 1.08rem;
}

.hero-subcopy,
.subhero-copy {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  min-width: 150px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.card-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.summary-list,
.legal-list {
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 0.88rem;
}

dd {
  margin: 5px 0 18px;
  font-weight: 700;
}

.section {
  margin-top: 32px;
}

.section-title {
  margin-bottom: 18px;
}

.feature-section {
  padding: 10px 0 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: linear-gradient(180deg, var(--surface-strong), rgba(17, 24, 39, 0.88));
}

.two-column {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
}

.statement-panel p:last-child,
.contact-panel p:last-child,
.panel p:last-child {
  margin-bottom: 0;
}

.stack {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.legal-panel {
  background: linear-gradient(180deg, rgba(19, 28, 38, 0.98), rgba(13, 17, 23, 0.92));
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.footer {
  margin-top: 32px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-brand {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .card-grid,
  .two-column,
  .legal-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: calc(100% - 20px);
    padding-top: 14px;
  }

  .hero-main,
  .subhero,
  .hero-card,
  .feature-card,
  .panel,
  .footer {
    padding: 24px;
  }

  .footer {
    display: grid;
  }
}
