:root {
  --sky-blue: #2F6B9F;
  --evening-navy: #07111F;
  --horizon-orange: #E8A06B;
  --peach-glow: #F6D2A9;
  --cloud-white: #F7F8FA;
  --text-slate: #2E3640;
  --brand-900: #07111F;
  --brand-800: #0F1F36;
  --brand-700: #2F6B9F;
  --brand-600: #3D82BE;
  --brand-accent: #E8A06B;
  --brand-accent-soft: #F6D2A9;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --font-base: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 16px 32px rgba(7, 17, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body.site-body {
  font-family: var(--font-base);
  color: var(--text-slate);
  background:
    radial-gradient(circle at top right, rgba(246, 210, 169, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(47, 107, 159, 0.08) 0%, rgba(248, 250, 252, 0.96) 22%, #f8fafc 100%);
}

a {
  color: var(--brand-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

abbr[title],
.term-help[title] {
  cursor: help;
  text-decoration: underline dotted rgba(47, 107, 159, 0.55);
  text-underline-offset: 0.14em;
}

button,
.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  min-height: 44px;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

button:hover,
.site-button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.site-button-primary {
  background: var(--sky-blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.site-button-primary:hover {
  background: #255A86;
}

.site-button-accent {
  background: var(--horizon-orange);
  color: var(--brand-900);
  box-shadow: var(--shadow-sm);
}

.site-button-accent:hover {
  background: #d9905b;
}

.site-button-secondary {
  background: #fff;
  color: var(--slate-700);
  border-color: var(--slate-300);
}

.site-input,
.site-select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-slate);
  font: inherit;
}

.site-input:focus,
.site-select:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(61, 130, 190, 0.16);
}

.site-shell {
  min-height: 100vh;
}

.site-topbar {
  background: linear-gradient(180deg, #2F6B9F 0%, #07111F 48%, #E8A06B 100%);
  color: var(--cloud-white);
  box-shadow: var(--shadow-md);
}

.site-topbar-inner {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-brand-name {
  color: var(--cloud-white);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-brand-link {
  color: inherit;
  text-decoration: none;
}

.site-brand-link:hover {
  text-decoration: none;
}

.site-brand-tag {
  color: rgba(247, 248, 250, 0.85);
  font-size: 14px;
}

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

.site-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  color: rgba(247, 248, 250, 0.92);
  border: 1px solid rgba(247, 248, 250, 0.16);
}

.site-nav-link:hover,
.site-nav-link.active {
  background: rgba(247, 248, 250, 0.12);
  text-decoration: none;
}

.site-main {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  margin-top: -24px;
}

.hero-card,
.site-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-card {
  padding: 28px;
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(232, 160, 107, 0.14);
  color: var(--brand-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.site-card h1,
.site-card h2,
.site-card h3 {
  margin: 0;
  color: var(--brand-900);
  letter-spacing: -0.04em;
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.hero-copy {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate-700);
}

.hero-actions,
.stack-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

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

.page-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.info-card {
  padding: 22px;
}

.feature-card p,
.info-card p,
.site-card p {
  color: var(--slate-700);
  line-height: 1.7;
}

.metric-list,
.check-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--slate-700);
  line-height: 1.7;
}

.cta-panel {
  padding: 24px;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.site-form {
  display: grid;
  gap: 14px;
}

.site-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-900);
}

.site-form-note,
.site-muted {
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.6;
}

.site-status {
  min-height: 24px;
  font-size: 14px;
  font-weight: 600;
}

.site-status.success {
  color: #166534;
}

.site-status.error {
  color: #b91c1c;
}

.site-status.info {
  color: var(--brand-700);
}

.planner-entry-card {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.planner-entry-card .badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.site-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
}

.site-badge.free {
  background: rgba(47, 107, 159, 0.1);
  color: var(--brand-700);
}

.site-badge.members {
  background: rgba(232, 160, 107, 0.18);
  color: var(--brand-900);
}

.route-notice {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(47, 107, 159, 0.08);
  color: var(--slate-700);
  border: 1px solid rgba(47, 107, 159, 0.16);
}

.site-footer {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 40px;
  color: var(--slate-500);
  font-size: 14px;
}

.site-footer-shell {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

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

.site-footer-links a {
  color: var(--slate-700);
  font-weight: 600;
}

.site-footer-disclaimer {
  max-width: 900px;
  line-height: 1.6;
}

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

.page-hero-card {
  padding: 28px;
}

.page-hero-card h1 {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.page-hero-copy {
  max-width: 900px;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--slate-700);
}

.quote-strip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(232, 160, 107, 0.15);
  color: var(--brand-900);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.section-card {
  padding: 24px;
}

.section-card h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.section-card h3 {
  font-size: 20px;
}

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

.support-list,
.support-columns {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--slate-700);
  line-height: 1.7;
}

.support-columns {
  columns: 2;
  column-gap: 32px;
}

.support-columns li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.callout-panel {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(47, 107, 159, 0.08), rgba(246, 210, 169, 0.18));
  border: 1px solid rgba(47, 107, 159, 0.12);
  color: var(--slate-700);
}

.callout-panel strong {
  color: var(--brand-900);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--brand-900);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(203, 213, 225, 0.8);
}

.faq-item-body {
  padding: 16px 20px 20px;
  color: var(--slate-700);
  line-height: 1.7;
}

.kicker-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

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

.trust-card {
  padding: 22px;
}

.trust-card h3 {
  margin-bottom: 10px;
}

.micro-disclaimer {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--slate-500);
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero,
  .split-panel,
  .feature-grid,
  .page-grid,
  .page-grid.two-up,
  .support-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-topbar-inner,
  .site-main,
  .site-footer {
    width: min(100vw - 24px, 1200px);
  }

  .hero-card,
  .feature-card,
  .info-card,
  .cta-panel,
  .planner-entry-card {
    padding: 18px;
  }

  .site-nav {
    width: 100%;
  }

  .support-columns {
    columns: 1;
  }
}
