:root {
  --bg: #f4efe5;
  --bg-strong: #efe4d2;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(16, 33, 58, 0.12);
  --text: #10213a;
  --muted: #556276;
  --accent: #d96e38;
  --accent-deep: #b8521e;
  --teal: #177c76;
  --shadow: 0 24px 70px rgba(16, 33, 58, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 110, 56, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(23, 124, 118, 0.18), transparent 30%),
    linear-gradient(180deg, #f8f3ea 0%, #f3ecdf 45%, #f7f4ef 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 33, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 58, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 88%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 44px;
}

.site-header,
.hero,
.section-grid,
.timeline-section,
.company-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(16, 33, 58, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, var(--teal), #0f5f6c 70%),
    var(--teal);
  color: #fff;
  font-size: 0.88rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.brand-text {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
}

.site-nav a {
  font-size: 0.96rem;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: 64px 0 42px;
}

.hero-copy,
.hero-panel,
.feature-card,
.timeline-card,
.company-card,
.legal-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  border-radius: var(--radius-xl);
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville,
    Georgia, serif;
  line-height: 1.03;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.35rem;
}

.lead,
.feature-card p,
.timeline-card p,
.company-copy p,
.panel-note,
.footer-copy,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.74;
  font-size: 1rem;
}

.lead {
  margin: 24px 0 0;
  max-width: 56ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.96rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.button:hover,
.site-nav a:hover,
.footer-links a:hover,
.detail-value a:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 18px 36px rgba(185, 82, 30, 0.28);
}

.button-secondary {
  background: rgba(16, 33, 58, 0.08);
  color: var(--text);
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(16, 33, 58, 0.9) 0%, rgba(24, 58, 81, 0.95) 100%);
  color: #eef5fb;
}

.panel-kicker,
.panel-note {
  margin: 0;
}

.panel-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(238, 245, 251, 0.74);
}

.panel-card {
  margin: 28px 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-title {
  margin: 0 0 16px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
}

.panel-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(238, 245, 251, 0.84);
  line-height: 1.72;
}

.section-grid,
.timeline-section,
.company-section,
.legal-layout {
  margin-top: 22px;
}

.section-heading,
.section-heading.narrow {
  margin-bottom: 26px;
}

.feature-grid,
.timeline {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.timeline-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-index,
.timeline-step,
.detail-label,
.footer-title,
.legal-meta,
.legal-note {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-index,
.timeline-step,
.detail-label,
.legal-meta {
  color: var(--teal);
}

.feature-card h3,
.timeline-card h3 {
  margin-bottom: 14px;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 22px;
  align-items: start;
}

.company-copy {
  padding: 12px 8px 0 0;
}

.company-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}

.company-card > div + div,
.legal-card section + section {
  margin-top: 22px;
}

.detail-value {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 10px;
  color: var(--muted);
}

.footer-title {
  color: var(--text);
}

.footer-copy {
  margin: 0;
  max-width: 40ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 700;
}

.legal-shell {
  padding-top: 32px;
}

.legal-layout {
  display: grid;
  gap: 20px;
}

.legal-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}

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

.legal-card h1 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
}

.legal-note {
  color: var(--accent-deep);
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .company-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer,
  .company-section {
    display: grid;
  }

  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 16px;
  }

  .site-header,
  .hero-copy,
  .hero-panel,
  .feature-card,
  .timeline-card,
  .company-card,
  .legal-card {
    border-radius: 24px;
  }

  .site-header {
    padding: 18px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy,
  .hero-panel,
  .feature-card,
  .timeline-card,
  .company-card,
  .legal-card {
    padding: 22px;
  }

  h1 {
    max-width: 12ch;
  }
}
