/* TAS marketing shell — Option B All-in Package (contact-only pricing) */
:root {
  --navy: #0B1F3A;
  --navy-mid: #143056;
  --navy-soft: #1a3a5c;
  --cream: #F7F4EE;
  --cream-dark: #EDE8DF;
  --cream-deep: #E5DFD4;
  --red: #C41E3A;
  --red-hover: #9E1830;
  --text: #121820;
  --text-muted: #4a5568;
  --white: #ffffff;
  --border: #d8d2c8;
  --border-soft: #e6e0d6;
  --blur: #9aa3b0;
  --max: 1120px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(11, 31, 58, 0.04), 0 4px 16px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 2px 8px rgba(11, 31, 58, 0.06), 0 10px 28px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 8px 24px rgba(11, 31, 58, 0.12), 0 20px 48px rgba(11, 31, 58, 0.1);
  --space-section: clamp(3rem, 5vw, 4.25rem);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: Inter, "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }
ul { list-style: none; }

/* Staging banner — keep on staging */
.staging-banner {
  background: var(--navy);
  color: #e8eef6;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.04);
  width: 100%;
  max-width: 100%;
}

.header-inner {
  max-width: min(var(--max), 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
  flex-shrink: 1;
  min-width: 0;
}
.brand-text {
  min-width: 0;
  overflow-wrap: anywhere;
}
.brand:hover { color: var(--navy); }
.brand img { width: 48px; height: 48px; flex-shrink: 0; }
.brand-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.nav-toggle {
  display: none;
  background: var(--cream);
  border: 1.5px solid var(--border);
  color: var(--navy);
  border-radius: 6px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.nav-toggle:hover { border-color: var(--navy); background: var(--white); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.1rem 1.05rem;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--red);
}
.site-nav .nav-cta {
  background: var(--red);
  color: var(--white) !important;
  border: none !important;
  border-radius: 7px;
  padding: 0.5rem 1rem !important;
  font-weight: 600;
  font-size: 0.86rem;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(196, 30, 58, 0.25);
  transition: background 0.15s, box-shadow 0.15s, transform 0.12s;
}
.site-nav .nav-cta:hover {
  background: var(--red-hover);
  color: var(--white) !important;
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

/* Layout */
main { flex: 1; }
.container {
  max-width: min(var(--max), 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: var(--space-section) 0; }
.section-alt {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section-cream { background: var(--cream); }
.accent-bar {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 0.95rem;
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 0.6rem;
  letter-spacing: -0.022em;
}
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 38rem;
  margin-bottom: 1.85rem;
}
.prose { max-width: 40rem; }
.prose p + p { margin-top: 1.05rem; }
.prose strong { color: var(--navy); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s, transform 0.12s;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red);
  color: var(--white) !important;
  border-color: var(--red);
  box-shadow: 0 1px 2px rgba(196, 30, 58, 0.22);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.28);
}
.btn-secondary {
  background: transparent;
  color: var(--navy) !important;
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white) !important; }
.btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
}
.btn + .btn { margin-left: 0.55rem; }
.btn-ghost-light {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* Hero */
.hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 52%, #0e2748 100%);
  color: var(--white);
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(2.85rem, 5vw, 3.75rem);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 88% 35%, rgba(196,30,58,0.14), transparent),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(247,244,238,0.04), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: min(var(--max), 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-inner > * {
  min-width: 0;
  max-width: 100%;
}
.hero-copy {
  max-width: 100%;
}
.hero-copy h1,
.hero-copy .subhead {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.hero-copy h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.28rem);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.028em;
  margin-bottom: 1rem;
  max-width: 18ch;
}
.hero-copy .subhead {
  font-size: 1.05rem;
  line-height: 1.58;
  color: rgba(247, 244, 238, 0.88);
  max-width: 33rem;
  margin-bottom: 1.65rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.hero .btn-secondary {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.5);
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.75);
}

/* Portal mock (scrubbed — generic Department Policy Portal) */
.portal-mock-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.portal-mock {
  background: var(--cream);
  border-radius: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.12);
  overflow: hidden;
  color: var(--text);
  width: 100%;
  max-width: 100%;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1.5deg);
  transform-origin: center right;
}
.portal-mock-chrome {
  background: linear-gradient(180deg, #122844 0%, var(--navy) 100%);
  color: rgba(247,244,238,0.92);
  padding: 0.55rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.portal-mock-dots { display: flex; gap: 5px; margin-right: 0.25rem; flex-shrink: 0; }
.portal-mock-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.portal-mock-dots span:nth-child(1) { background: #e8a0a8; }
.portal-mock-dots span:nth-child(2) { background: #e8d4a0; }
.portal-mock-dots span:nth-child(3) { background: #a8d4b8; }
.portal-url {
  flex: 1;
  background: rgba(0,0,0,0.22);
  border-radius: 5px;
  padding: 0.28rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(247,244,238,0.7);
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.portal-mock-body {
  padding: 0;
  background: var(--cream);
}
.portal-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}
.portal-mock-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.portal-mock-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}
.portal-user-chip {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  white-space: nowrap;
  filter: blur(2.5px);
  user-select: none;
}
.portal-mock-content { padding: 0.9rem 1rem 1.05rem; }
.portal-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.portal-tile {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.75rem;
  box-shadow: 0 1px 2px rgba(11, 31, 58, 0.03);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}
.portal-tile-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.portal-tile strong {
  display: block;
  font-size: 0.72rem;
  color: var(--navy);
  margin-bottom: 0.12rem;
  font-weight: 600;
}
.portal-tile span {
  font-size: 0.65rem;
  color: var(--text-muted);
}
.portal-go-list {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem 0.45rem;
  box-shadow: 0 1px 2px rgba(11, 31, 58, 0.03);
  position: relative;
  overflow: hidden;
}
.portal-go-list .label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.portal-go-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.42rem 0;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.72rem;
}
.portal-go-row:first-of-type { border-top: none; }
.go-blur {
  filter: blur(4px);
  user-select: none;
  color: var(--blur);
  font-weight: 500;
  letter-spacing: 0.015em;
  max-width: 72%;
  overflow: hidden;
  white-space: nowrap;
}
.go-ack {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--white);
  background: var(--red);
  white-space: nowrap;
  opacity: 0.9;
  padding: 0.22rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.portal-mock-note {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(247,244,238,0.62);
  margin-top: 0.85rem;
  letter-spacing: 0.02em;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  padding: 1.05rem 0;
}
.trust-inner {
  max-width: min(var(--max), 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.trust-inner span {
  display: inline-flex;
  align-items: center;
  padding: 0 0.95rem;
}
.trust-inner span + span {
  border-left: 1px solid var(--border);
}
.trust-inner span + span::before { content: none; }

/* Cards / grids */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.section-alt .card { background: var(--cream); }
.card h3 {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.55; }
.card-icon {
  width: 34px; height: 34px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* Included list */
.include-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.35rem;
}
.include-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.9rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s;
}
.include-item:hover { box-shadow: var(--shadow-md); }
.include-item .check {
  width: 30px; height: 30px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.include-item h3 {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 0.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.include-item p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.55; }

/* Soft pricing placeholder (no dollars) */
.price-soft {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow);
}
.section-alt .price-soft,
.section-cream .price-soft { background: var(--white); }
.section-alt .price-soft { background: var(--cream); }
.price-soft strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.28rem;
  font-weight: 700;
}
.price-soft p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.55;
}

/* Keep current */
.keep-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.75rem;
  align-items: center;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-radius: 14px;
  padding: 2.1rem 2.1rem;
  box-shadow: var(--shadow-md);
}
.keep-panel h2 { color: var(--white); margin-bottom: 0.65rem; }
.keep-panel p {
  color: rgba(247,244,238,0.88);
  margin-bottom: 1.2rem;
  max-width: 36rem;
  line-height: 1.58;
}
.keep-aside {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 1.35rem 1.2rem;
  text-align: center;
}
.keep-aside .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(247,244,238,0.62);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.keep-aside .value {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}
.problem-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.problem-card p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.55; }

/* Portal proof */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.proof-card {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s;
}
.section-alt .proof-card { background: var(--cream); }
.proof-card:hover { box-shadow: var(--shadow-md); }
.proof-card .mock-mini {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  margin-bottom: 0.9rem;
  min-height: 108px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.proof-card h3 {
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.proof-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.proof-note {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.mini-otp {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.mini-otp .otp-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.mini-otp .field {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  padding: 0.4rem 0.55rem;
  margin: 0 0 0.45rem;
  color: var(--blur);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}
.mini-otp .field.masked {
  filter: blur(2.5px);
  user-select: none;
  letter-spacing: 0.12em;
}
.mini-otp .btn-mini {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 5px;
  margin-top: 0.1rem;
}
.mini-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.mini-tiles div {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 0.55rem 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}
.mini-rows .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid var(--cream-dark);
  gap: 0.5rem;
}
.mini-rows .row:last-child { border-bottom: none; }
.mini-rows .row span:first-child {
  filter: blur(3px);
  color: var(--blur);
  font-weight: 500;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}
.mini-rows .row span:last-child {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(196, 30, 58, 0.08);
  padding: 0.18rem 0.4rem;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Steps */
.steps {
  display: grid;
  gap: 0.75rem;
}
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}
.step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.step h3 {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 0.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.step p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.55; }

/* About blurb */
.about-blurb {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.about-blurb img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--navy);
}
.about-blurb h2 { margin-bottom: 0.5rem; }
.about-blurb p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.58; }

/* FAQ */
.faq-list { display: grid; gap: 0.7rem; margin-top: 1.25rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  box-shadow: var(--shadow);
}
.faq-item h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.faq-item p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.55; }

/* CTA band */
.cta-band {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 3.35rem 1.25rem;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-bottom: 0.6rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.25;
}
.cta-band p {
  color: rgba(247,244,238,0.85);
  margin-bottom: 1.35rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.cta-band .contact-line {
  margin-top: 1.15rem;
  font-size: 0.94rem;
  color: rgba(247,244,238,0.78);
}
.cta-band .contact-line a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.4);
}
.cta-band .contact-line a:hover { text-decoration-color: var(--white); }
.cta-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.cta-row .btn + .btn { margin-left: 0; }

.note-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--red);
  padding: 1.1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  box-shadow: var(--shadow);
}
.section-alt .note-box { background: var(--cream); }
.note-box strong { color: var(--navy); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 2.4rem 0 2.15rem;
}
.page-hero h1 {
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.page-hero p {
  color: rgba(247,244,238,0.85);
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.55rem 1.45rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card .contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.contact-card h2 {
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.contact-card p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 0.94rem;
  line-height: 1.5;
}
.contact-card a.contact-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.contact-card a.contact-link:hover {
  color: var(--red);
  border-bottom-color: rgba(196, 30, 58, 0.35);
}
.contact-meta {
  margin-top: 1.05rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(247,244,238,0.8);
  padding: 2.35rem 0 1.55rem;
  margin-top: auto;
}
.footer-inner {
  max-width: min(var(--max), 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand img { width: 42px; height: 42px; }
.footer-brand strong { display: block; color: var(--white); font-size: 0.92rem; }
.footer-brand span { font-size: 0.78rem; color: rgba(247,244,238,0.62); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  align-items: center;
}
.footer-nav a {
  color: rgba(247,244,238,0.78);
  font-size: 0.86rem;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
}
.footer-contact a:hover { color: #f0c8ce; }
.footer-policy {
  font-size: 0.84rem;
  color: rgba(247,244,238,0.62);
  margin-bottom: 0.65rem;
  max-width: 40rem;
  line-height: 1.5;
}
.footer-copy {
  font-size: 0.76rem;
  color: rgba(247,244,238,0.42);
}

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: auto;
  max-width: none;
  box-sizing: border-box;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-soft);
  padding: 0.7rem max(1rem, env(safe-area-inset-right, 0px)) calc(0.7rem + env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  z-index: 90;
  box-shadow: 0 -6px 20px rgba(11,31,58,0.1);
}
.mobile-cta .btn { width: 100%; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.1rem; }
  .portal-mock-wrap { max-width: 460px; margin: 0 auto; width: 100%; }
  .portal-mock {
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .keep-panel { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-blurb { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-copy h1 { max-width: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
    padding: 0.65rem 1.25rem 1.05rem;
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.05rem;
  }
  .site-nav a {
    display: block;
    padding: 0.65rem 0.15rem;
    border-bottom: none;
    font-size: 0.95rem;
  }
  .site-nav a:hover,
  .site-nav a.active {
    border-bottom: none;
    color: var(--red);
  }
  .site-nav .nav-cta {
    text-align: center;
    margin-top: 0.45rem;
    padding: 0.7rem 1rem !important;
  }
  .trust-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
  }
  .trust-inner span { padding: 0; }
  .trust-inner span + span {
    border-left: none;
    padding-top: 0.15rem;
  }
  .mobile-cta { display: block; }
  body { padding-bottom: 4.5rem; }
  .section { padding: 2.6rem 0; }
  .keep-panel { padding: 1.6rem 1.35rem; }
  .brand-text { font-size: 0.82rem; }
  .brand img { width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .portal-tiles { grid-template-columns: 1fr; }
  .hero { padding: 2.15rem 0 2.35rem; }
  .hero-inner { padding: 0 1rem; }
  .header-inner,
  .container,
  .trust-inner,
  .footer-inner { padding-left: 1rem; padding-right: 1rem; }
  .portal-mock { transform: none; }
  .portal-app-bar { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
}

.note-box-spaced { margin-top: 1.5rem; }
.cards-spaced { margin-top: 1rem; }
.about-blurb-top { margin-bottom: 2rem; }
.section .cards { margin-top: 0.25rem; }
.include-follow { margin-top: 2rem; }

/* Mobile overflow hard-contain (Sage ~390px must-fix) */
@media (max-width: 960px) {
  .hero,
  .site-header,
  .section,
  .site-footer,
  .trust-strip {
    overflow-x: hidden;
    max-width: 100%;
  }
  .hero-copy h1,
  .hero-copy .subhead {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    max-width: 100%;
  }
  .portal-mock {
    transform: none !important;
    box-shadow: var(--shadow-md);
  }
  .portal-mock-wrap {
    overflow: hidden;
    max-width: min(100%, 460px);
  }
  .brand { max-width: calc(100% - 5.5rem); }
  .proof-grid,
  .include-grid,
  .cards,
  .portal-tiles {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .header-inner { gap: 0.5rem; }
  .brand-text span { letter-spacing: 0.03em; }
}
