:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #f2f4fa;
  --text: #172033;
  --text-muted: #5e6678;
  --line: #dde2ee;
  --brand: #0e7c86;
  --brand-strong: #0b5f66;
  --accent: #f7a53a;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 12px 34px rgba(19, 34, 68, 0.08);
  --shadow-lg: 0 26px 64px rgba(14, 47, 79, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 9%, rgba(14, 124, 134, 0.14), transparent 40%),
    radial-gradient(circle at 8% 24%, rgba(247, 165, 58, 0.13), transparent 34%),
    linear-gradient(180deg, #f9fbff 0%, #f4f6fb 70%, #f2f4f8 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid rgba(221, 226, 238, 0.8);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
}

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

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), #39b2bd);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: 150ms ease;
}

.site-nav a:hover {
  background: rgba(14, 124, 134, 0.08);
  color: var(--text);
}

.site-nav a.active {
  border-color: rgba(14, 124, 134, 0.34);
  background: rgba(14, 124, 134, 0.13);
  color: #0d4a51;
}

.main-content {
  padding: 28px 0 72px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0b2433 0%, #123a4a 55%, #1e5b67 100%);
  border-radius: var(--radius-lg);
  color: #f1f7ff;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-lg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -24% -65% auto;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 165, 58, 0.32), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #96e6ef;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3.45rem);
  max-width: 17ch;
}

.hero p {
  margin: 14px 0 0;
  color: rgba(230, 242, 252, 0.94);
  max-width: 62ch;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 21, 30, 0.38);
  border-radius: var(--radius-md);
  padding: 16px;
}

.hero-panel h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.hero-panel p {
  margin: 0;
  font-size: 0.93rem;
  color: rgba(222, 237, 249, 0.95);
}

.hero-stat-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.section {
  margin-top: 36px;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.section-intro {
  margin: 8px 0 0;
  color: var(--text-muted);
  max-width: 70ch;
}

.feature-grid {
  margin-top: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.highlight-panel {
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.meta-list li {
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
}

.meta-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 4px;
  top: 10px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(18px, 2.8vw, 30px);
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.last-updated {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.content-section {
  margin-top: 18px;
}

.content-section h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.content-section p {
  margin: 0;
  color: var(--text-muted);
}

.support-layout {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-item {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.support-item h3 {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.support-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid rgba(221, 226, 238, 0.95);
  background: rgba(255, 255, 255, 0.68);
}

.site-footer-inner {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.86rem;
}

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

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-strong);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .support-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1120px, calc(100% - 30px));
  }

  .topbar-inner {
    justify-content: flex-start;
    min-height: 42px;
  }

  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 0;
  }
}
