:root {
  --navy: #0b1a2e;
  --navy-mid: #0e2a45;
  --cyan: #00c3f5;
  --cyan-dark: #0084c7;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --surface: #f8fafc;
}

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; }

a { color: var(--cyan-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.site-logo-wrap img {
  height: 56px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover { color: var(--navy); }

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.35rem;
  border-radius: 0.625rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: #fff;
}

.site-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 168, 224, 0.35);
  text-decoration: none;
}

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #073a52 100%);
  color: #fff;
  padding: 4.5rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 195, 245, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 195, 245, 0.12);
  border: 1px solid rgba(0, 195, 245, 0.35);
  color: #4dd8ff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  color: #b6c8d9;
  font-size: 1.1rem;
  max-width: 640px;
}

.page-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.page-main.wide {
  max-width: 1120px;
}

.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  margin-bottom: 1.5rem;
}

.content-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--navy);
}

.content-card h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.content-card p,
.content-card li {
  color: #334155;
}

.content-card ul,
.content-card ol {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.content-card li + li { margin-top: 0.35rem; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.25rem;
}

.value-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--navy);
}

.value-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.support-card {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.support-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 195, 245, 0.12);
  color: var(--cyan-dark);
  font-size: 1.35rem;
}

.support-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.support-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--navy);
}

.faq-item p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 4rem 1.5rem 2rem;
}

.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.site-footer-logo {
  background: #fff;
  display: inline-block;
  border-radius: 10px;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
}

.site-footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.site-footer-tagline {
  color: #8aa3b8;
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0;
}

.site-footer h4 {
  font-weight: 700;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64809a;
}

.site-footer a {
  display: block;
  color: #b6c8d9;
  margin-bottom: 0.6rem;
  text-decoration: none;
}

.site-footer a:hover { color: #fff; text-decoration: none; }

.site-footer-bottom {
  border-top: 1px solid #1e3a5f;
  padding-top: 1.75rem;
  text-align: center;
  color: #64809a;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .value-grid,
  .support-grid,
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .value-grid,
  .support-grid,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
  .content-card { padding: 1.25rem; }
}
