:root {
  --bg: #060708;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f3f1ec;
  --muted: #aaaeb4;
  --muted-strong: #c8cbd0;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.06), transparent 23%),
    radial-gradient(circle at 78% 16%, rgba(59, 130, 246, 0.08), transparent 18%),
    radial-gradient(circle at 82% 84%, rgba(251, 191, 36, 0.08), transparent 16%),
    linear-gradient(180deg, #050607 0%, #090b0d 52%, #050607 100%);
}

a {
  color: inherit;
}

.shell {
  width: min(1360px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  padding: 18px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-title {
  font-size: 0.98rem;
  font-weight: 650;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 26%;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.brand-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-icon--sm {
  width: 38px;
  height: 38px;
}

.brand-icon--md {
  width: 46px;
  height: 46px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.landing {
  padding-bottom: 34px;
}

.hero {
  padding: 22px 0 22px;
}

.hero-shell,
.legal-card {
  border-radius: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-shell {
  padding: 38px 40px 34px;
}

.hero-main {
  min-width: 0;
}

.hero-main--centered {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker,
.brand-chip-label,
.meta-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
}

h1 {
  margin-top: 8px;
  max-width: 14ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.7rem, 5.4vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-main--centered h1,
.hero-main--centered .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px auto 26px;
  max-width: 820px;
}

.hero-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.hero-divider-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.25) 45%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.16);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta-row--centered {
  justify-content: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #090b0d;
  background: linear-gradient(135deg, #f7f8fb, #dedfe3);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.brand-chip {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.brand-chip {
  padding: 20px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  column-gap: 16px;
  min-height: 100%;
}

.brand-chip-copy {
  display: grid;
  flex: 1;
  min-height: 100%;
  align-content: start;
  gap: 7px;
}

.brand-chip--operator {
  background: rgba(255, 255, 255, 0.045);
}

.brand-chip h2 {
  font-size: 1.18rem;
  line-height: 1;
}

.brand-points {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  justify-items: start;
}

.brand-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.55;
  font-size: 0.94rem;
}

.brand-points li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #97f59d, #4cc86a);
  box-shadow: 0 0 0 4px rgba(103, 224, 132, 0.08);
}

.legal-shell {
  padding: 30px 0 58px;
}

.legal-card {
  padding: 32px;
}

.legal-card h1 {
  max-width: none;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.legal-card h2 {
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.legal-card .intro {
  margin: 14px 0 0;
  color: var(--muted-strong);
  max-width: 760px;
}

.legal-card section + section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-card p,
.legal-card li {
  color: var(--muted-strong);
  line-height: 1.7;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.stack {
  display: grid;
  gap: 8px;
}

.site-footer {
  padding: 10px 0 36px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

@media (max-width: 900px) {
  .brand-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .brand-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav,
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-shell,
  .legal-card {
    padding: 24px;
    border-radius: 24px;
  }
}
