:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-dark: #0f1f34;
  --line: #e5e5e5;
  --text: #1a1a1a;
  --muted: #666666;
  --primary: #173453;
  --primary-light: #f8f9fa;
  --accent: #c89a54;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-xl: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

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

/* Keep appointment centering local so other sections retain their layout. */
.appointment-section.container {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.surface-card {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(245, 236, 223, 0.82));
  border: 1px solid rgba(110, 89, 57, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero {
  padding: 80px 0;
  background: var(--surface);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark-image {
  width: 60px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(23, 52, 83, 0.18));
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #153150;
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6a39;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.topbar-links a:hover,
.topbar-links a:focus-visible {
  background: rgba(23, 52, 83, 0.08);
  color: var(--accent);
  outline: none;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hero-profile {
  max-width: 400px;
}

.hero-copy {
  max-width: 700px;
}

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

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.headshot-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.profile-role {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 4px 0;
}

.profile-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 8px 0 0 0;
  line-height: 1.5;
}

.profile-signals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

.profile-signal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.profile-signal strong {
  font-size: 0.9rem;
  color: var(--primary);
}

.profile-signal span {
  font-size: 0.8rem;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 24px 0;
  line-height: 1.1;
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-subheadline {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  margin-bottom: 24px;
}

.hero-action-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.updates-callout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 8px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(0, 255, 102, 0.28);
  box-shadow: 0 0 18px rgba(0, 255, 102, 0.12), 0 8px 24px rgba(0, 0, 0, 0.28);
}

.updates-text {
  flex: 1;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #00ff66;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(0, 255, 102, 0.6);
}

.updates-arrow {
  color: #00ff66;
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-right: 8px;
  animation: flash 1s infinite alternate;
}

@keyframes flash {
  0% { opacity: 0.3; transform: translateX(0); }
  100% { opacity: 1; transform: translateX(6px); }
}

.updates-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00ee66, #00aa44);
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(0, 255, 102, 0.4);
  cursor: pointer;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  box-shadow:
    0 0 0 3px rgba(0, 255, 102, 0.15),
    0 0 22px rgba(0, 255, 102, 0.55),
    0 6px 20px rgba(0, 170, 68, 0.4);
  animation: signUpPulse 2s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.updates-cta:hover,
.updates-cta:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 0 4px rgba(0, 255, 102, 0.25),
    0 0 36px rgba(0, 255, 102, 0.75),
    0 12px 28px rgba(0, 170, 68, 0.5);
  animation: none;
  outline: none;
}

@keyframes signUpPulse {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(0, 255, 102, 0.15),
      0 0 18px rgba(0, 255, 102, 0.45),
      0 6px 18px rgba(0, 170, 68, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(0, 255, 102, 0.25),
      0 0 32px rgba(0, 255, 102, 0.75),
      0 8px 24px rgba(0, 170, 68, 0.5);
    transform: scale(1.04);
  }
}

.hero h1,
.section-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #11233b;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.96;
}

.hero-tagline {
  margin: 12px 0 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-headline {
  margin: 18px 0 14px;
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #16304b;
  text-shadow: 0 3px 18px rgba(255, 249, 239, 0.7);
}

.hero-subheadline,
.section-intro,
.story-card p,
.lead-copy p,
.recommendation-copy,
.cta-copy p,
.video-followup p,
.muted {
  color: var(--muted);
}

.hero-trust,
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-trust li {
  display: flex;
  gap: 12px;
}

.hero-trust li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(145deg, var(--primary), #ead7ad);
  box-shadow: 0 0 0 5px rgba(200, 154, 84, 0.16);
}

.hero-actions,
.tool-actions,
.scenario-row,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats,
.stories-grid,
.results-grid,
.comparison-grid {
  display: grid;
  gap: 12px;
}

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

.hero-assurance {
  position: relative;
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 249, 239, 0.9), rgba(240, 230, 214, 0.84));
  border: 1px solid rgba(110, 89, 57, 0.12);
  box-shadow: 0 14px 30px rgba(18, 31, 51, 0.08);
}

.hero-assurance::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(200, 154, 84, 0.9), rgba(255, 238, 201, 0.28), rgba(131, 96, 43, 0.72));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero-assurance-intro {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.hero-assurance-kicker {
  color: #7a5a2d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-assurance-intro p {
  margin: 0;
  color: #544133;
  font-size: 0.95rem;
}

.hero-assurance-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-assurance-point {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(110, 89, 57, 0.08);
}

.hero-assurance-point strong {
  display: block;
  margin-bottom: 6px;
  color: #173453;
  font-size: 0.92rem;
}

.hero-assurance-point span {
  color: #65584c;
  font-size: 0.86rem;
  line-height: 1.45;
}

.stat-card,
.tool-status,
.tool-sidebar,
.tool-results,
.result-card,
.results-panel,
.comparison-item,
.cta-proof-item,
.video-followup {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(110, 89, 57, 0.1);
}

.stat-card {
  padding: 16px 14px;
  border-radius: 18px;
}

.stat-value,
.result-value {
  display: block;
  font-weight: 800;
  color: #13243a;
}

.stat-value {
  font-size: 1.35rem;
}

.stat-label,
.result-label,
.tool-status-label,
.comparison-item span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.profile-card {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.headshot-img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 24px;
  border: 4px solid rgba(255, 246, 238, 0.95);
  box-shadow: 0 18px 36px rgba(110, 66, 33, 0.18);
}

.profile-card p {
  margin: 0;
}

.profile-name {
  font-size: 1.28rem;
  font-weight: 800;
  color: #11233b;
}

.profile-role {
  color: var(--muted);
}

.profile-note {
  margin-top: 8px;
  color: #544133;
}

.profile-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.profile-signal {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(110, 89, 57, 0.08);
}

.profile-signal strong {
  color: #173453;
  font-size: 0.88rem;
}

.profile-signal span {
  color: #675d57;
  font-size: 0.8rem;
  line-height: 1.35;
}

.profile-focus {
  margin-top: 12px;
  color: #3f3124;
  font-weight: 700;
  line-height: 1.5;
}

.video-followup,
.tool-status,
.tool-sidebar,
.tool-results,
.result-card,
.results-panel,
.comparison-item,
.cta-proof-item {
  border-radius: 18px;
}

.video-followup {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.9), rgba(243, 236, 225, 0.84));
  border: 1px solid rgba(110, 89, 57, 0.12);
}

.video-followup h3,
.mini-title {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-followup-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(23, 52, 83, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-followup-copy {
  margin: 0 0 16px;
  color: var(--muted);
}

.video-steps,
.checklist {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.video-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(110, 89, 57, 0.08);
}

.video-step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.video-step strong {
  display: block;
  margin-bottom: 4px;
  color: #173453;
  font-size: 0.96rem;
}

.video-step p {
  margin: 0;
  color: #675d57;
  font-size: 0.9rem;
  line-height: 1.45;
}

.video-highlight {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(200, 154, 84, 0.16), rgba(255, 246, 226, 0.92));
  border: 1px solid rgba(200, 154, 84, 0.18);
}

.video-highlight strong {
  color: #7a5a2d;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-highlight span {
  color: #3c3128;
  font-weight: 700;
  line-height: 1.45;
}

.video-followup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.video-followup-placeholder {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(247, 238, 222, 0.96), rgba(236, 224, 201, 0.92));
  border: 1px dashed rgba(131, 96, 43, 0.36);
  box-shadow: 0 10px 20px rgba(131, 96, 43, 0.08);
}

.video-followup-placeholder strong {
  color: #6f552f;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-followup-placeholder span {
  color: #3f3124;
  font-weight: 700;
  line-height: 1.45;
}

.checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.checklist li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

section {
  padding: 30px 0;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.02;
}

.lead-shell,
.calculator-shell {
  padding: 24px;
}

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

.lead-shell {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

.lead-shell,
.connections-shell,
.team-shell {
  align-items: stretch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
}

.stories-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.story-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(110, 89, 57, 0.12);
  box-shadow: 0 16px 38px rgba(18, 31, 51, 0.08);
}

.story-card h3,
.results-panel h3,
.chart-shell h3,
.lead-form-card h3 {
  margin: 0 0 10px;
}

.story-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-card li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(200, 154, 84, 0.16);
  color: #4c3d2d;
  font-size: 0.92rem;
  font-weight: 700;
}

.story-card {
  display: grid;
  gap: 14px;
}

.story-photo {
  height: 210px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #f3e6d0 0%, #d8c2a0 100%);
  border: 1px solid rgba(110, 89, 57, 0.12);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-copy,
.cta-copy,
.connections-copy,
.team-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(110, 89, 57, 0.12);
  background:
    radial-gradient(circle at bottom right, rgba(200, 154, 84, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(245, 238, 228, 0.9));
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 30px rgba(18, 31, 51, 0.05);
}

.cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  align-self: stretch;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(110, 89, 57, 0.12);
  background:
    radial-gradient(circle at bottom right, rgba(200, 154, 84, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(245, 238, 228, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 30px rgba(18, 31, 51, 0.05);
}

.lead-copy .section-kicker,
.lead-copy .section-title,
.lead-copy > p,
.cta-copy .section-kicker,
.cta-copy .section-title,
.cta-copy > p,
.connections-copy > *,
.team-copy .section-kicker,
.team-copy .section-title,
.team-copy > p > * {
  margin: 0;
}

.lead-copy .section-title {
  max-width: 18ch;
}

.lead-copy > p,
.cta-copy > p,
.connections-copy p,
.team-copy > p {
  max-width: 58ch;
  line-height: 1.65;
}

.lead-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
  min-height: 240px;
  padding: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(200, 154, 84, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(23, 52, 83, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 235, 221, 0.86));
  border: 1px solid rgba(110, 89, 57, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 28px rgba(18, 31, 51, 0.07);
}

.lead-visual-header {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
}

.lead-visual-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6737;
}

.lead-visual-header strong {
  color: #173453;
  font-size: 1rem;
  line-height: 1.35;
}

.lead-visual-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lead-visual-card {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(110, 89, 57, 0.08);
  box-shadow: 0 10px 18px rgba(18, 31, 51, 0.04);
}

.lead-visual-card span {
  color: #b8823e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lead-visual-card strong {
  color: #173453;
  font-size: 0.96rem;
}

.lead-visual-card p {
  margin: 0;
  color: #675d57;
  font-size: 0.92rem;
  line-height: 1.55;
}

.lead-social-panel {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(23, 52, 83, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 235, 221, 0.88));
  border: 1px solid rgba(110, 89, 57, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 28px rgba(18, 31, 51, 0.05);
}

.lead-social-header {
  display: grid;
  gap: 6px;
}

.lead-social-header > * {
  margin: 0;
}

.lead-social-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6737;
}

.lead-social-header strong {
  color: #173453;
  font-size: 1rem;
  line-height: 1.35;
}

.lead-social-header p {
  color: #675d57;
  line-height: 1.6;
}

.lead-social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cta-proof,
.team-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cta-proof {
  align-content: start;
}

.team-points {
  margin-top: 4px;
  align-content: start;
}

.cta-proof-item,
.team-point {
  padding: 14px 16px;
  font-weight: 700;
  color: #4a382d;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 239, 228, 0.84));
  border: 1px solid rgba(110, 89, 57, 0.08);
}

.cta-proof-item:nth-child(3),
.team-point:nth-child(3):nth-child(3) {
  grid-column: 1 / -1;
}

.lead-form-content {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 31, 52, 0.98), rgba(23, 52, 83, 0.96));
  color: #fff9f1;
  box-shadow:
    0 18px 38px rgba(15, 31, 52, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-form-content h3 {
  font-size: 1.45rem;
}

.lead-form-content > p,
.privacy-note {
  color: #fff9f1;
}

.form-confidence-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
}

.form-confidence-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(200, 154, 84, 0.3);
  color: #1c2534;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.lead-form,
.calculator-inputs {
  display: grid;
  gap: 12px;
}

.lead-form {
  margin-top: 18px;
}

.lead-popup-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  min-height: 56px;
  margin-top: 18px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #255884 55%, var(--primary));
  box-shadow: 0 16px 28px rgba(23, 52, 83, 0.24);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lead-popup-trigger:hover,
.lead-popup-trigger:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(18, 31, 51, 0.18);
  outline: none;
}

.finsights-modal-open {
  overflow: hidden;
}

.finsights-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.finsights-modal[aria-hidden="true"] {
  display: none;
}

.finsights-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(6px);
  animation: finsightsOverlayIn 180ms ease both;
}

.finsights-modal__dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: min(760px, calc(100vh - 36px));
  overflow-y: auto;
  border-radius: 24px;
  background: #fffaf2;
  box-shadow: 0 30px 80px rgba(8, 17, 31, 0.36);
  animation: finsightsModalIn 220ms ease both;
}

.finsights-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 31, 51, 0.12);
  border-radius: 999px;
  color: #1c2534;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.finsights-modal__close:hover,
.finsights-modal__close:focus-visible {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 31, 51, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.finsights-conversation-form {
  display: grid;
  gap: 18px;
  padding: 26px 20px 20px;
}

.finsights-progress {
  display: grid;
  gap: 12px;
  padding-right: 52px;
}

.finsights-progress__text {
  color: #5f6b7a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.finsights-progress__dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.finsights-progress__dots span {
  height: 8px;
  border-radius: 999px;
  background: rgba(23, 52, 83, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}

.finsights-progress__dots span.is-active,
.finsights-progress__dots span.is-complete {
  background: linear-gradient(90deg, #c89a54, #255884);
}

.finsights-progress__dots span.is-active {
  transform: scaleY(1.25);
}

.finsights-steps {
  min-height: 330px;
}

.finsights-step {
  display: grid;
  gap: 12px;
  color: #1c2534;
}

.finsights-step[hidden] {
  display: none;
}

.finsights-step.is-active {
  animation: finsightsStepForward 220ms ease both;
}

.finsights-step.is-backward {
  animation-name: finsightsStepBackward;
}

.finsights-step h3 {
  margin: 0 0 8px;
  padding-right: 6px;
  color: var(--primary);
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.finsights-step .field-label {
  color: #4a5568;
}

.finsights-step input {
  width: 100%;
  min-height: 56px;
  padding: 15px 16px;
  border: 1px solid rgba(123, 87, 61, 0.18);
  border-radius: 16px;
  color: var(--text);
  background: #ffffff;
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(15, 31, 52, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.finsights-step input:focus {
  border-color: rgba(200, 154, 84, 0.68);
  box-shadow: 0 0 0 4px rgba(200, 154, 84, 0.16), 0 14px 28px rgba(11, 22, 38, 0.08);
  transform: translateY(-1px);
}

.finsights-step input[aria-invalid="true"] {
  border-color: rgba(223, 122, 122, 0.92);
  box-shadow: 0 0 0 4px rgba(223, 122, 122, 0.14);
}

.finsights-step .field-feedback {
  min-height: 20px;
  margin: -2px 0 0;
  color: #4a5568;
  font-size: 0.86rem;
}

.finsights-step .field-feedback.error {
  color: #a43d3d;
}

.finsights-step .field-feedback.success {
  color: #21734c;
}

.finsights-reassurance {
  margin: 0;
  color: #4a5568;
  font-size: 0.96rem;
  line-height: 1.55;
}

.finsights-turnstile-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.finsights-turnstile-wrap .cf-turnstile {
  max-width: 100%;
}

.finsights-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.finsights-actions button {
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.finsights-next,
.finsights-submit {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #255884 55%, var(--primary));
  box-shadow: 0 16px 28px rgba(23, 52, 83, 0.24);
}

.finsights-back,
.finsights-skip {
  color: #1c2534;
  background: #ffffff;
  border: 1px solid rgba(18, 31, 51, 0.14);
}

.finsights-actions button:hover,
.finsights-actions button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(18, 31, 51, 0.16);
  outline: none;
}

.finsights-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
}

@keyframes finsightsOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes finsightsModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes finsightsStepForward {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes finsightsStepBackward {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 560px) {
  .finsights-conversation-form {
    padding: 34px 32px 28px;
  }

  .finsights-actions {
    grid-template-columns: auto auto 1fr;
    align-items: center;
  }

  .finsights-next,
  .finsights-submit {
    justify-self: end;
    min-width: 150px;
  }
}

.conversational-lead-form {
  gap: 18px;
}

.conversation-progress {
  display: grid;
  gap: 9px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.conversation-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff9f1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.conversation-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.conversation-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f7d999, #c89a54);
  box-shadow: 0 0 18px rgba(247, 217, 153, 0.36);
  transition: width 0.28s ease;
}

.conversation-step {
  display: grid;
  gap: 10px;
  min-height: 265px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(200, 154, 84, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.94));
  color: #1c2534;
  box-shadow: 0 16px 30px rgba(10, 20, 35, 0.16);
}

.conversation-step[hidden] {
  display: none;
}

.conversation-step.is-active {
  animation: conversationStepIn 260ms ease both;
}

.conversation-step legend {
  padding: 0;
  color: var(--primary);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.conversation-note {
  margin: 0 0 4px;
  color: #4a5568;
  font-size: 0.94rem;
  line-height: 1.55;
}

.conversation-confirmation {
  background:
    radial-gradient(circle at top right, rgba(200, 154, 84, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.94));
}

.conversation-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.lead-form .lead-back-btn {
  color: #1c2534;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 154, 84, 0.34);
  box-shadow: 0 10px 20px rgba(15, 31, 52, 0.1);
}

#leadLastNameFeedback,
#leadFocusFeedback {
  display: none;
}

@keyframes conversationStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.field-stack {
  display: grid;
  gap: 8px;
}

.calculator-inputs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group-full {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(23, 52, 83, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: help;
  vertical-align: middle;
}

.info-tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  width: 220px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 31, 52, 0.96);
  color: #fff8ef;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: normal;
  box-shadow: 0 12px 24px rgba(15, 31, 52, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 20;
}

.info-tip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(15, 31, 52, 0.96) transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease;
  z-index: 20;
}

.info-tip:hover::after,
.info-tip:hover::before,
.info-tip:focus-visible::after,
.info-tip:focus-visible::before {
  opacity: 1;
  visibility: visible;
}

.info-tip:focus-visible {
  outline: 2px solid rgba(200, 154, 84, 0.55);
  outline-offset: 2px;
}

.field-help,
.save-note,
.form-note,
.result-detail {
  font-size: 0.9rem;
}

.form-expectation {
  margin: 10px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(200, 154, 84, 0.3);
  color: #1c2534;
  font-size: 0.88rem;
  line-height: 1.55;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-trust-rail {
  display: grid;
  gap: 10px;
  margin: 14px 0 4px;
}

.form-trust-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(200, 154, 84, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-trust-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(200, 154, 84, 0.25);
  color: #1c2534;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.form-trust-step strong {
  display: block;
  color: #1c2534;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.form-trust-step p {
  margin: 4px 0 0;
  color: #4a5568;
  font-size: 0.84rem;
  line-height: 1.45;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form input,
.lead-form select,
.calculator-inputs input,
.calculator-inputs select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(123, 87, 61, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 242, 0.96));
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 2px rgba(15, 31, 52, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.conversation-step .field-label,
.conversation-step .field-feedback,
.conversation-step .field-help-inline {
  color: #1c2534;
}

.conversation-step .field-feedback.error {
  color: #a43d3d;
}

.conversation-step .field-feedback.success {
  color: #21734c;
}

.lead-form input:focus,
.lead-form select:focus,
.calculator-inputs input:focus,
.calculator-inputs select:focus {
  border-color: rgba(200, 154, 84, 0.6);
  box-shadow: 0 0 0 4px rgba(200, 154, 84, 0.16), 0 14px 28px rgba(11, 22, 38, 0.08);
  transform: translateY(-1px);
}

.lead-form input::placeholder,
.team-form input::placeholder,
.team-form textarea::placeholder {
  color: rgba(77, 68, 60, 0.52);
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.team-form input[aria-invalid="true"],
.team-form select[aria-invalid="true"],
.team-form textarea[aria-invalid="true"] {
  border-color: rgba(223, 122, 122, 0.92);
  box-shadow: 0 0 0 4px rgba(223, 122, 122, 0.14);
}

.lead-form input[aria-invalid="false"],
.lead-form select[aria-invalid="false"],
.team-form input[aria-invalid="false"],
.team-form select[aria-invalid="false"],
.team-form textarea[aria-invalid="false"] {
  border-color: rgba(96, 180, 136, 0.68);
}

.field-feedback {
  min-height: 18px;
  margin: -4px 0 0;
  color: #fff9f1;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.field-feedback.error {
  color: #ffd1d1;
}

.field-feedback.success {
  color: #c5f2da;
}

.form-success-card {
  display: none;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(209, 244, 224, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(197, 242, 218, 0.18), rgba(92, 164, 130, 0.12));
  border: 1px solid rgba(197, 242, 218, 0.26);
  color: #eefcf4;
  box-shadow: 0 16px 28px rgba(17, 46, 38, 0.14);
}

.form-success-card.is-visible {
  display: block;
  animation: formSuccessReveal 320ms ease;
}

.form-success-card strong {
  display: block;
  margin-bottom: 6px;
  color: #f5fff9;
}

.form-success-card p {
  margin: 0;
  color: rgba(245, 255, 249, 0.84);
  line-height: 1.55;
}

@keyframes formCardFloatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formSuccessReveal {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-cta,
.secondary-cta,
.cta-button,
.tool-button,
.tool-button-secondary,
.scenario-chip,
.lead-form button,
.hero-pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-cta,
.cta-button,
.tool-button,
.lead-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #255884 55%, var(--primary));
  box-shadow: 0 16px 28px rgba(23, 52, 83, 0.24);
  position: relative;
  overflow: hidden;
}

.hero-pdf-btn {
  color: #fff;
  background: linear-gradient(135deg, #c89a54, #a87a38);
  box-shadow: 0 16px 28px rgba(200, 154, 84, 0.28);
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  width: 100%;
}

.hero-pdf-btn:hover,
.hero-pdf-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(200, 154, 84, 0.36);
  outline: none;
}

.hero-pdf-btn .btn-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-pdf-btn .btn-label {
  flex: 1;
  text-align: center;
}

.secondary-cta,
.tool-button-secondary,
.scenario-chip {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(110, 89, 57, 0.16);
}

.secondary-cta-download {
  background: rgba(244, 236, 223, 0.92);
}

.secondary-cta-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f552f;
  background: linear-gradient(145deg, rgba(247, 238, 222, 0.96), rgba(236, 224, 201, 0.92));
  border: 1px dashed rgba(131, 96, 43, 0.36);
  box-shadow: 0 10px 20px rgba(131, 96, 43, 0.08);
  cursor: default;
  opacity: 1;
  white-space: nowrap;
}

.hero-cta:hover,
.secondary-cta:hover,
.cta-button:hover,
.tool-button:hover,
.tool-button-secondary:hover,
.scenario-chip:hover,
.lead-form button:hover,
.hero-cta:focus-visible,
.secondary-cta:focus-visible,
.cta-button:focus-visible,
.tool-button:focus-visible,
.tool-button-secondary:focus-visible,
.scenario-chip:focus-visible,
.lead-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(18, 31, 51, 0.18);
  outline: none;
}

.calculator-shell {
  padding: 24px;
}

.tool-intro {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.tool-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tool-capability {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(23, 52, 83, 0.08);
  border: 1px solid rgba(23, 52, 83, 0.08);
  color: #173453;
  font-size: 0.8rem;
  font-weight: 800;
}

.tool-status {
  min-width: 230px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.9), rgba(244, 236, 224, 0.84));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.tool-status strong,
.comparison-item strong {
  display: block;
  margin-top: 6px;
  color: #39291e;
}

.tool-layout {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 14px;
}

.tool-sidebar,
.tool-results,
.result-card,
.results-panel {
  padding: 16px;
}

.tool-sidebar {
  background:
    linear-gradient(180deg, rgba(18, 42, 67, 0.98), rgba(19, 52, 83, 0.94));
  color: #fff7ef;
  box-shadow: 0 22px 40px rgba(15, 31, 52, 0.22);
  position: sticky;
  top: 18px;
  align-self: start;
}

.tool-sidebar .mini-title,
.tool-sidebar .field-label,
.tool-sidebar .tool-sidebar-copy,
.tool-sidebar .field-help,
.tool-sidebar .save-note {
  color: #f7eee3;
}

.tool-sidebar .field-help,
.tool-sidebar .tool-sidebar-copy,
.tool-sidebar .save-note {
  color: rgba(247, 238, 227, 0.72);
}

.tool-sidebar-header {
  margin-bottom: 14px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-sidebar-copy {
  margin: 5px 0 0;
  font-size: 0.88rem;
}

.sidebar-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.sidebar-snapshot-item {
  padding: 10px 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-snapshot-item span {
  display: block;
  color: rgba(247, 238, 227, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-snapshot-item strong {
  display: block;
  margin-top: 5px;
  color: #fff9f1;
  font-size: 0.92rem;
}

.tool-sidebar .scenario-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff8ef;
}

.tool-sidebar .scenario-chip:hover,
.tool-sidebar .scenario-chip:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.tool-sidebar .calculator-inputs input,
.tool-sidebar .calculator-inputs select {
  background: rgba(255, 251, 245, 0.98);
  border-color: rgba(200, 154, 84, 0.2);
}

.tool-sidebar .tool-button {
  min-width: 100%;
}

.tool-results {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.84), rgba(247, 241, 232, 0.8));
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.tool-results-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-bottom: 14px;
}

.tool-results-copy {
  margin: 7px 0 0;
  color: #5f564e;
  font-size: 0.94rem;
}

.secondary-cta-download {
  min-width: 220px;
  font-weight: 900;
  background: linear-gradient(135deg, #f4ecd8, #e4cfaa);
  border: 1px solid rgba(122, 90, 45, 0.2);
  box-shadow: 0 14px 24px rgba(122, 90, 45, 0.12);
}

.confidence-panel {
  min-width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(200, 154, 84, 0.14), rgba(255, 247, 233, 0.92));
  border: 1px solid rgba(200, 154, 84, 0.18);
}

.confidence-label {
  display: block;
  margin-bottom: 6px;
  color: #7a633c;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.confidence-panel strong {
  color: #16304b;
  font-size: 1rem;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.quick-strip-item {
  padding: 11px 12px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(123, 87, 61, 0.08);
}

.quick-strip-item span {
  display: block;
  color: #7b6650;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-strip-item strong {
  display: block;
  margin-top: 6px;
  color: #173453;
  font-size: 0.98rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.signal-card {
  padding: 13px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 244, 235, 0.82));
  border: 1px solid rgba(123, 87, 61, 0.09);
}

.signal-label {
  display: block;
  color: #7b6650;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-card strong {
  display: block;
  margin-top: 6px;
  color: #173453;
  font-size: 1.04rem;
}

.signal-card p {
  margin: 7px 0 0;
  color: #655a51;
  font-size: 0.86rem;
  line-height: 1.45;
}

.utilization-panel,
.action-card {
  border-radius: 18px;
  border: 1px solid rgba(123, 87, 61, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 242, 234, 0.82));
}

.utilization-panel {
  margin-bottom: 14px;
  padding: 15px 16px;
}

.utilization-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.utilization-panel-header strong {
  display: block;
  margin-top: 6px;
  color: #173453;
  font-size: 1.16rem;
}

.utilization-meter-zone {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(23, 52, 83, 0.08);
  color: #173453;
  font-size: 0.78rem;
  font-weight: 800;
}

.utilization-meter-track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(56, 143, 89, 0.24) 0%,
      rgba(56, 143, 89, 0.24) 20%,
      rgba(200, 154, 84, 0.24) 20%,
      rgba(200, 154, 84, 0.24) 60%,
      rgba(171, 74, 52, 0.24) 60%,
      rgba(171, 74, 52, 0.24) 100%);
}

.utilization-meter-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #173453, #c89a54);
  box-shadow: 0 6px 18px rgba(23, 52, 83, 0.22);
  transition: width 0.24s ease;
}

.utilization-meter-scale {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  color: #7b6650;
  font-size: 0.76rem;
  font-weight: 700;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.action-card {
  padding: 13px 14px;
}

.action-card strong {
  display: block;
  margin-top: 6px;
  color: #173453;
  font-size: 1.04rem;
}

.action-card p {
  margin: 7px 0 0;
  color: #655a51;
  font-size: 0.86rem;
  line-height: 1.45;
}

.results-panel-compact {
  padding: 14px 16px;
}

.results-panel-feature {
  background: linear-gradient(145deg, rgba(23, 52, 83, 0.07), rgba(200, 154, 84, 0.14));
}

.results-panel-span {
  grid-column: 1 / -1;
}

.results-grid,
.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

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

.comparison-grid-compact {
  gap: 8px;
}

.result-card-highlight {
  background: linear-gradient(145deg, rgba(200, 154, 84, 0.18), rgba(255, 244, 221, 0.94));
  border-color: rgba(200, 154, 84, 0.22);
  box-shadow: 0 16px 30px rgba(200, 154, 84, 0.12);
}

.result-value {
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
}

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

.mini-insights-compact {
  gap: 8px;
}

.mini-insight {
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(123, 87, 61, 0.09);
}

.mini-insight span,
.table-intro,
.chart-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-insight strong {
  display: block;
  margin-top: 8px;
  color: #39291e;
  font-size: 1rem;
}

.table-shell,
.chart-shell,
.footer-shell {
  border-radius: 18px;
}

.chart-shell {
  padding: 16px;
}

.table-shell {
  overflow: auto;
  border: 1px solid rgba(123, 87, 61, 0.1);
  background: rgba(255, 255, 255, 0.84);
}

.finsights-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.finsights-table th,
.finsights-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(123, 87, 61, 0.1);
  font-size: 0.95rem;
}

.finsights-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff3e3;
  color: #51372a;
}

.finsights-table tbody tr:hover {
  background: rgba(255, 247, 237, 0.88);
}

.milestone-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(23, 52, 83, 0.09);
  color: #173453;
  font-size: 0.82rem;
  font-weight: 800;
}

.table-emphasis {
  font-weight: 800;
  color: #173453;
}

.meaning-note {
  color: #4f4a44;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chart-shell {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.9), rgba(241, 233, 220, 0.84));
  border: 1px solid rgba(110, 89, 57, 0.1);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 12px;
}

.chart-shell canvas {
  width: 100%;
  height: 280px !important;
}

.cta-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  background:
    radial-gradient(circle at top right, rgba(200, 154, 84, 0.3), transparent 30%),
    linear-gradient(180deg, #ffffff, #faf8f5);
  gap: 24px;
  padding: 28px;
}

.offers-section {
  padding-top: 12px;
}

.offers-shell {
  padding: 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(200, 154, 84, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(23, 52, 83, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.95), rgba(245, 238, 227, 0.88));
  border: 1px solid rgba(110, 89, 57, 0.12);
  box-shadow: 0 16px 36px rgba(18, 31, 51, 0.08);
}

.offers-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.offers-copy {
  max-width: 62ch;
  color: #5b544d;
  font-size: 1rem;
  line-height: 1.7;
}

.offers-disclosure {
  padding: 18px 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(246, 238, 225, 0.86));
  border: 1px solid rgba(123, 87, 61, 0.1);
  box-shadow: 0 12px 24px rgba(18, 31, 51, 0.05);
}

.offers-disclosure strong {
  display: block;
  margin-bottom: 8px;
  color: #173453;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offers-disclosure p {
  margin: 0;
  color: #5f584f;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.offers-guidance-card {
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(110, 89, 57, 0.1);
}

.offers-guidance-card span {
  display: block;
  color: #776959;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offers-guidance-card strong {
  display: block;
  margin-top: 7px;
  color: #173453;
  font-size: 1rem;
}

.offers-guidance-card p {
  margin: 8px 0 0;
  color: #615850;
  font-size: 0.9rem;
  line-height: 1.55;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.offer-card {
  display: grid;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 233, 0.88));
  border: 1px solid rgba(110, 89, 57, 0.12);
  box-shadow: 0 14px 28px rgba(18, 31, 51, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.offer-card:hover,
.offer-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(200, 154, 84, 0.25);
  box-shadow: 0 18px 34px rgba(18, 31, 51, 0.09);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(23, 52, 83, 0.08);
  color: #173453;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 0;
  color: #1a3048;
  font-size: 1.18rem;
  line-height: 1.2;
}

.offer-summary {
  margin: 0;
  color: #5e544a;
  line-height: 1.6;
}

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

.offer-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: #4d4842;
  line-height: 1.5;
}

.offer-points li::before {
  content: "+";
  color: #b8823e;
  font-weight: 800;
}

.offer-note {
  margin: 0;
  padding: 12px 13px;
  border-radius: 16px;
  background: rgba(246, 238, 225, 0.82);
  color: #625548;
  font-size: 0.88rem;
  line-height: 1.5;
}

.offers-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(23, 52, 83, 0.08), rgba(200, 154, 84, 0.14));
  border: 1px solid rgba(200, 154, 84, 0.18);
}

.offers-footer-copy strong {
  display: block;
  color: #173453;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offers-footer-copy p {
  margin: 8px 0 0;
  color: #594e43;
  line-height: 1.6;
}

.offers-footer-cta {
  min-width: 240px;
  text-align: center;
}

.connections-section {
  padding-top: 10px;
}

.connections-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250, 245, 237, 0.9), rgba(242, 233, 220, 0.82));
  border: 1px solid rgba(110, 89, 57, 0.12);
  box-shadow: 0 14px 34px rgba(18, 31, 51, 0.06);
}

.connections-title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #173453;
}

.connections-copy p {
  margin: 0;
  color: #675d57;
  font-size: 0.94rem;
  line-height: 1.65;
}

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

.connection-card {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 241, 232, 0.8));
  border: 1px solid rgba(110, 89, 57, 0.1);
  color: #173453;
  text-align: left;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.connection-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(200, 154, 84, 0.92), rgba(23, 52, 83, 0.92));
}

.connection-card::after {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(23, 52, 83, 0.38);
  font-size: 0.95rem;
  font-weight: 800;
}

.connection-platform {
  font-size: 1rem;
  font-weight: 800;
  color: #16304b;
}

.connection-handle {
  color: #6b625a;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.connection-card:hover,
.connection-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(200, 154, 84, 0.24);
  box-shadow: 0 16px 30px rgba(18, 31, 51, 0.1);
  outline: none;
}

.connection-card-tiktok::before {
  background: linear-gradient(180deg, #111111, #25f4ee);
}

.connection-card-youtube::before {
  background: linear-gradient(180deg, #9f0f19, #ff2d2d);
}

.connection-card-instagram::before {
  background: linear-gradient(180deg, #833ab4, #fd1d1d 56%, #fcb045);
}

.connection-card-facebook::before {
  background: linear-gradient(180deg, #1d4ed8, #0f2a6d);
}

.team-section {
  padding-top: 14px;
}

.team-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(200, 154, 84, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(252, 247, 240, 0.92), rgba(244, 236, 224, 0.84));
  border: 1px solid rgba(110, 89, 57, 0.14);
  box-shadow: 0 16px 36px rgba(18, 31, 51, 0.08);
}

.team-copy p,
.connections-copy p {
  color: #675d57;
}

.team-copy {
  grid-template-rows: auto auto auto 1fr auto;
}

.team-visual {
  margin-top: 10px;
  padding: 12px 10px 0;
  border-top: 1px solid rgba(200, 154, 84, 0.24);
}

.appointment-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.appointment-section .section-kicker {
  text-align: center;
}

.appointment-section .section-title {
  text-align: center;
}

.appointment-section .section-intro {
  text-align: center;
}

/* Calendly inline widget */
.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 700px;
  margin: 24px auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(110, 89, 57, 0.14);
  box-shadow: 0 8px 28px rgba(18, 31, 51, 0.1);
}

@media (max-width: 760px) {
  .calendly-inline-widget {
    height: 600px;
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 480px) {
  .calendly-inline-widget {
    height: 580px;
  }
}

.team-visual img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(200, 154, 84, 0.26);
  box-shadow:
    0 10px 20px rgba(111, 85, 47, 0.14),
    0 0 0 6px rgba(247, 235, 210, 0.42);
  object-fit: cover;
  filter: drop-shadow(0 10px 20px rgba(111, 85, 47, 0.14));
}

.team-point {
  border-radius: 16px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.team-next-steps {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(245, 237, 225, 0.9));
  border: 1px solid rgba(200, 154, 84, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.team-next-steps-intro {
  display: grid;
  gap: 6px;
}

.team-next-steps-intro p {
  margin: 0;
  color: #675d57;
  line-height: 1.6;
}

.team-next-steps-kicker {
  color: #8a6737;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-next-steps-list {
  display: grid;
  gap: 10px;
}

.team-next-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(110, 89, 57, 0.08);
}

.team-next-step-index {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(23, 52, 83, 0.96), rgba(200, 154, 84, 0.92));
  color: #fffaf1;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.team-next-step strong {
  display: block;
  margin-bottom: 4px;
  color: #173453;
  font-size: 0.96rem;
}

.team-next-step p {
  margin: 0;
  color: #675d57;
  line-height: 1.55;
}

.team-form-card {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(214, 172, 97, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(15, 31, 52, 0.96), rgba(23, 52, 83, 0.92));
  color: #fff7ef;
  box-shadow:
    0 18px 38px rgba(15, 31, 52, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
  animation: formCardFloatIn 420ms ease both;
}

.lead-form-card {
  animation: formCardFloatIn 420ms ease both;
}

.team-form-card h3 {
  font-size: 1.45rem;
}

.team-form-card p,
.team-note {
  color: rgba(255, 247, 239, 0.76);
}

.team-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.team-form input,
.team-form select,
.team-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(123, 87, 61, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 242, 0.96));
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 2px rgba(15, 31, 52, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.team-form input:focus,
.team-form select:focus,
.team-form textarea:focus {
  border-color: rgba(200, 154, 84, 0.6);
  box-shadow: 0 0 0 4px rgba(200, 154, 84, 0.16), 0 14px 28px rgba(11, 22, 38, 0.08);
  transform: translateY(-1px);
}

.team-form textarea {
  resize: vertical;
  min-height: 110px;
  font: inherit;
}

.connect-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.connect-options legend {
  margin-bottom: 8px;
}

.connect-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff7ef;
  font-weight: 700;
}

.connect-choice input {
  accent-color: #c89a54;
}

.field-help-inline {
  color: rgba(255, 247, 239, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
  margin: -4px 0 0;
}

.site-footer {
  padding: 18px 0 34px;
  color: #6d5647;
  font-size: 0.94rem;
}

.footer-shell {
  padding: 22px 24px;
  background: rgba(251, 246, 238, 0.8);
  border: 1px solid rgba(110, 89, 57, 0.1);
}

.footer-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(123, 87, 61, 0.08);
}

.footer-link-button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(123, 87, 61, 0.08);
  background: rgba(255, 255, 255, 0.65);
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: none;
  width: min(420px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(200, 154, 84, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(15, 31, 52, 0.98), rgba(23, 52, 83, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 44px rgba(11, 22, 38, 0.28);
  color: #fff7ef;
}

.cookie-banner.is-visible {
  display: grid;
  gap: 14px;
  animation: formCardFloatIn 220ms ease;
}

.cookie-banner-copy strong {
  display: block;
  color: #fff9f1;
  font-size: 1rem;
}

.cookie-banner-copy p {
  margin: 8px 0 0;
  color: rgba(255, 247, 239, 0.8);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner-btn {
  flex: 1 1 0;
}

.privacy-note.success {
  color: #c5f2da;
}

.privacy-note.error {
  color: #ffd1d1;
}

.team-note.success {
  color: #c5f2da;
}

.team-note.error {
  color: #ffd1d1;
}

.field-optional {
  color: rgba(255, 247, 239, 0.68);
  font-weight: 600;
}

.team-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 247, 239, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

.team-consent input {
  width: auto;
  margin-top: 3px;
  accent-color: #c89a54;
}

.team-form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #d7a764, #b8823e);
  color: #132337;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(200, 154, 84, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  position: relative;
  overflow: hidden;
}

.lead-form button::after,
.team-form button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  transition: left 0.42s ease;
}

.team-form button:hover,
.team-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(200, 154, 84, 0.28);
}

.lead-form button:hover::after,
.lead-form button:focus-visible::after,
.team-form button:hover::after,
.team-form button:focus-visible::after {
  left: 118%;
}

.team-form button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  box-shadow: 0 10px 20px rgba(200, 154, 84, 0.16);
}

/* Override legacy encoded glyphs with ASCII-safe symbols. */
.checklist li::before {
  content: "+";
}

.connection-card::after {
  content: "->";
}

@media (max-width: 980px) {
  .hero-content,
  .lead-shell,
  .offers-intro,
  .tool-layout,
  .cta-shell,
  .connections-shell,
  .team-shell {
    grid-template-columns: 1fr;
  }

  .tool-sidebar {
    position: static;
  }

  .tool-intro {
    align-items: start;
    flex-direction: column;
  }

  .tool-results-header {
    flex-direction: column;
  }

  .hero-stats,
  .offers-guidance,
  .offers-grid,
  .results-grid,
  .comparison-grid,
  .quick-strip,
  .signal-grid,
  .action-grid,
  .dashboard-grid,
  .mini-insights,
  .connections-links,
  .connect-options {
    grid-template-columns: 1fr;
  }

  .hero-assurance-points {
    grid-template-columns: 1fr;
  }

  .form-split {
    grid-template-columns: 1fr;
  }

  .sidebar-snapshot {
    grid-template-columns: 1fr;
  }

  .utilization-panel-header {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .topbar,
  .hero-actions,
  .tool-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    border-radius: 22px;
  }

  .brand-mark-image {
    width: 56px;
    height: 66px;
  }

  .hero-copy,
  .hero-card,
  .lead-shell,
  .offers-shell,
  .calculator-shell,
  .cta-shell {
    padding: 22px;
  }

  .profile-card,
  .stories-grid,
  .calculator-inputs {
    grid-template-columns: 1fr;
  }

  .story-photo {
    height: 190px;
  }

  .team-shell,
  .team-form-card {
    padding: 22px;
  }

  .lead-copy,
  .cta-copy,
  .connections-copy,
  .team-copy,
  .game-lab-copy {
    padding: 20px;
  }

  .cta-proof,
  .team-points,
  .game-lab-points {
    grid-template-columns: 1fr;
  }

  .cta-proof-item:nth-child(3),
  .team-point:nth-child(3),
  .game-lab-point:nth-child(3) {
    grid-column: auto;
  }

  .lead-visual {
    padding: 16px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lead-visual-grid {
    grid-template-columns: 1fr;
  }
}

/* FinSights Brand Colors */
:root {
  --deep-navy: #0A0F1F;
  --emerald: #0FAF6C;
  --gold: #D4AF37;
  --soft-white: #F5F7FA;
}

/* Calculator Styles */
.calculator-shell {
  background: var(--deep-navy);
  border: 2px solid #ffffff; /* Pure white border for clear contrast */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 2rem;
}

.field-group {
  margin-bottom: 1.5rem;
}

.field-label {
  display: block;
  color: var(--soft-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

input[type="range"], input[type="number"], select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--soft-white);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

input[type="range"]:focus, input[type="number"]:focus, select:focus {
  box-shadow: 0 0 0 3px var(--emerald);
  outline: none;
  border-color: var(--emerald);
}

.info-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 0.5rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  cursor: help;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  transition: color 0.3s ease, background 0.3s ease;
  vertical-align: middle;
}

.info-icon::after {
  content: attr(data-tooltip); /* Changed from data-tip to data-tooltip */
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  width: min(240px, 70vw);
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc; /* Light background for contrast */
  color: #1c2534; /* Dark text for readability */
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  z-index: 20;
  border: 1px solid #e2e8f0; /* Subtle border */
}

.info-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #f8fafc transparent transparent transparent; /* Match background */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 20;
}

.info-icon:hover,
.info-icon:focus-visible {
  color: var(--emerald);
  background: rgba(15, 175, 108, 0.16);
  outline: none;
}

.info-icon:hover::after,
.info-icon:hover::before,
.info-icon:focus-visible::after,
.info-icon:focus-visible::before {
  opacity: 1;
  visibility: visible;
}

.scenario-chip {
  background: var(--soft-white);
  color: var(--deep-navy);
  border: 1px solid var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  margin-right: 0.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.scenario-chip:hover, .scenario-chip.active {
  background: var(--emerald);
  color: var(--soft-white);
}

.calculate-btn {
  background: var(--emerald);
  color: var(--soft-white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 12px rgba(15, 175, 108, 0.3);
}

.calculate-btn:hover {
  background: #0e9a5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 175, 108, 0.4);
}

.results-card {
  background: linear-gradient(135deg, var(--deep-navy), #0d1425);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold);
}

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

.result-item span {
  font-weight: 500;
}

.result-item strong {
  color: var(--emerald);
  font-size: 1.1rem;
}

.monthly-breakdown, .charts {
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--soft-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background: var(--emerald);
  color: var(--soft-white);
}

td {
  background: var(--light-gray);
}

.chart {
  margin-bottom: 2rem;
  background: var(--soft-white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.results-card, .monthly-breakdown, .charts {
  animation: fadeIn 0.5s ease-out;
}

/* Tooltips */
.tooltip {
  position: absolute;
  background: var(--deep-navy);
  color: var(--soft-white);
  padding: 0.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 200px;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tool-layout {
    flex-direction: column;
  }
  .calculate-btn {
    position: sticky;
    bottom: 0;
    z-index: 10;
    margin-top: 1rem;
  }
  .tool-sidebar, .tool-results {
    padding: 1rem;
  }
}

/* Calculator Layout */
.tool-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.tool-sidebar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.tool-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label .info-icon {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--gold), #f4c430);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: var(--deep-navy);
  cursor: help;
  transition: transform 0.2s ease;
}

.form-label .info-icon:hover {
  transform: scale(1.1);
}

input[type="range"],
input[type="number"],
select {
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="range"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(15, 175, 108, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--emerald), #0e9a5c);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Enhanced Calculator Styles for Better Visual Quality */
.calculator-shell {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #0d1425 100%);
  border: 2px solid #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.calculator-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.calculator-title h3 {
  color: var(--soft-white);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.calculator-title p {
  color: rgba(245, 247, 250, 0.85);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

/* Improved Tool Layout */
.tool-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

.tool-sidebar {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}

.tool-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.form-label .info-icon {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--gold), #f4c430);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: var(--deep-navy);
  cursor: help;
  transition: transform 0.2s ease;
}

.form-label .info-icon:hover {
  transform: scale(1.1);
}

input[type="range"],
input[type="number"],
select {
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="range"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(15, 175, 108, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--emerald), #0e9a5c);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Enhanced Results Section */
.tool-results {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .results-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: stretch;
    justify-content: space-between;
  }

  .results-grid .result-card {
    flex: 1 1 0;
    min-width: 220px;
  }
}

.result-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.result-label {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

.result-value {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-break: break-word;
}

.result-card.highlight {
  background: linear-gradient(135deg, var(--emerald) 0%, #0e9a5c 100%);
  border-color: var(--emerald);
  color: #ffffff;
}

.result-card.highlight .result-label {
  color: rgba(255, 255, 255, 0.85);
}

.result-card.highlight .result-value {
  color: #ffffff;
}

.result-card.accent {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: #2563eb;
  color: #ffffff;
}

.result-card.accent .result-label {
  color: rgba(255, 255, 255, 0.85);
}

.result-card.accent .result-value {
  color: #ffffff;
}

.results-status {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

.results-status p {
  margin: 0;
  color: #78350f;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

/* Enhanced Charts and Table */
.charts-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.charts-section-featured {
  margin-bottom: 18px;
}

.charts-section-secondary {
  margin-bottom: 24px;
}

.chart-container {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.chart-container-featured {
  border-color: rgba(200, 154, 84, 0.28);
  box-shadow: 0 10px 24px rgba(23, 52, 83, 0.08);
}

.chart-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.chart-container h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chart-teaser {
  margin: -10px 0 18px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.chart-toggle-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(23, 52, 83, 0.14);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(23, 52, 83, 0.05), rgba(200, 154, 84, 0.12));
  color: #173453;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  list-style: none;
}

.chart-toggle-button:hover,
.chart-toggle-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(23, 52, 83, 0.08);
  border-color: rgba(200, 154, 84, 0.34);
}

.chart-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #173453;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.chart-toggle-button::-webkit-details-marker {
  display: none;
}

.chart-disclosure {
  margin-bottom: 0;
}

.chart-disclosure[open] .chart-toggle-button {
  margin-bottom: 18px;
}

.chart-disclosure[open] .chart-toggle-icon::before {
  content: "-";
}

.chart-disclosure:not([open]) .chart-toggle-icon::before {
  content: "+";
}

.chart-details-panel {
  display: grid;
  gap: 0;
}

.chart-canvas {
  max-height: 320px;
}

#monthlyTable {
  margin-top: 32px;
  overflow-x: auto;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#monthlyTable table {
  width: 100%;
  border-collapse: collapse;
}

#monthlyTable thead {
  background: linear-gradient(135deg, var(--emerald), #0e9a5c);
  color: #ffffff;
}

#monthlyTable th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#monthlyTable td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  color: #374151;
}

#monthlyTable tbody tr:hover {
  background: rgba(15, 175, 108, 0.05);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .tool-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .tool-sidebar {
    order: 2;
    position: static;
  }
  
  .tool-results {
    order: 1;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .charts-section {
    grid-template-columns: 1fr;
  }
  
  .calculator-shell {
    padding: 1.5rem;
  }
  
  .tool-sidebar,
  .tool-results {
    padding: 20px;
  }
}

/* Join Team Section Styles */
.join-team-section {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(15, 31, 52, 0.05), rgba(200, 154, 84, 0.03));
}

.join-team-shell {
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.join-team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.join-team-intro {
  font-size: 1.1rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-team-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.join-team-form input,
.join-team-form textarea {
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.join-team-form input:focus,
.join-team-form textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(15, 175, 108, 0.1);
}

.join-team-form textarea {
  resize: vertical;
  min-height: 80px;
}

.join-team-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--emerald), #0e9a5c);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: center;
  min-width: 200px;
}

.join-team-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 175, 108, 0.3);
}

.join-team-note {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .join-team-shell {
    padding: 24px;
  }
  
  .join-team-title {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .join-team-btn {
    width: 100%;
  }
}

.disclosures-page .hero::before {
  background:
    linear-gradient(180deg, rgba(255, 244, 227, 0.76), rgba(15, 31, 52, 0.22)),
    radial-gradient(circle at top right, rgba(23, 52, 83, 0.22), transparent 32%),
    linear-gradient(135deg, #efe4d4 0%, #dfd0bb 100%);
}

.disclosures-hero {
  padding-bottom: 34px;
}

.disclosures-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
  padding: 30px;
}

.disclosures-hero-copy p {
  max-width: 60ch;
  color: #544133;
  font-size: 1.02rem;
}

.disclosures-hero-copy h1 {
  margin: 10px 0 14px;
  max-width: 14ch;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.6vw, 3.65rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #12263d;
  text-wrap: balance;
}

.disclosures-review-note {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 31, 52, 0.96), rgba(23, 52, 83, 0.92));
  color: #fff7ef;
  box-shadow: 0 18px 38px rgba(15, 31, 52, 0.24);
}

.disclosures-review-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3d8ad;
}

.disclosures-review-note p {
  margin: 0;
  color: rgba(255, 247, 239, 0.82);
}

.disclosures-main {
  padding-bottom: 36px;
}

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

.disclosure-card {
  padding: 24px;
}

.disclosure-card-wide {
  grid-column: 1 / -1;
}

.disclosure-card h3 {
  margin: 8px 0 10px;
  color: #173453;
  font-size: 1.18rem;
}

.disclosure-lead {
  margin: 10px 0 0;
  color: #544133;
  font-size: 1rem;
}

.disclosure-list,
.disclosure-timeline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.disclosure-item,
.timeline-row {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(110, 89, 57, 0.1);
  color: #4c453f;
}

.timeline-row strong {
  display: block;
  margin-bottom: 4px;
  color: #173453;
}

.disclosure-bullets {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.disclosure-bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: #4c453f;
}

.disclosure-bullets li::before {
  content: "+";
  color: #173453;
  font-weight: 800;
}

.disclosure-footnote {
  margin-top: 14px;
  color: #70665d;
  font-size: 0.9rem;
}

.disclosures-legal {
  padding: 26px;
}

.disclosures-legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.disclosures-legal-grid > div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(110, 89, 57, 0.1);
}

.disclosures-legal-grid h3 {
  margin: 0 0 8px;
  color: #173453;
  font-size: 1rem;
}

.disclosures-legal-grid p {
  margin: 0;
  color: #544133;
}

@media (max-width: 980px) {
  .disclosures-hero-shell,
  .disclosures-grid,
  .disclosures-legal-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium mobile form treatment */
@media (max-width: 760px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: min(100vw - 24px, 420px);
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .offers-shell {
    border-radius: 24px;
  }

  .offers-disclosure,
  .offers-guidance-card,
  .offer-card,
  .offers-footer {
    border-radius: 20px;
  }

  .offers-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .offers-footer-cta {
    min-width: 100%;
  }

  .lead-section,
  .team-section {
    padding-top: 10px;
  }

  .lead-shell,
  .team-shell {
    gap: 18px;
  }

  .lead-form-card,
  .team-form-card {
    position: relative;
    padding: 24px 18px 20px;
    border-radius: 24px;
    box-shadow:
      0 18px 34px rgba(10, 20, 35, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .lead-form-card::before,
  .team-form-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 72px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
  }

  .lead-form-card h3,
  .team-form-card h3 {
    font-size: 1.36rem;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .lead-form-card > p,
  .team-form-card > p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .form-expectation {
    margin-top: 12px;
    padding: 14px 15px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
  }

  .form-confidence-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 16px 0 8px;
  }

  .form-trust-rail {
    gap: 9px;
    margin: 14px 0 6px;
  }

  .form-trust-step {
    grid-template-columns: 40px 1fr;
    gap: 11px;
    padding: 12px 13px;
    border-radius: 16px;
  }

  .form-trust-index {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 0.76rem;
  }

  .form-trust-step strong {
    font-size: 0.9rem;
  }

  .form-trust-step p {
    font-size: 0.8rem;
  }

  .form-confidence-pill {
    padding: 11px 13px;
    border-radius: 16px;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
  }

  .lead-form,
  .team-form {
    gap: 10px;
    margin-top: 16px;
  }

  .conversation-step {
    min-height: 285px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .conversation-step legend {
    font-size: 1.28rem;
  }

  .conversation-progress-meta {
    font-size: 0.72rem;
  }

  .conversation-actions {
    gap: 9px;
  }

  .field-stack {
    gap: 7px;
  }

  .lead-form input,
  .lead-form select,
  .team-form input,
  .team-form select,
  .team-form textarea {
    min-height: 54px;
    padding: 15px 16px;
    border-radius: 16px;
    font-size: 16px;
  }

  .team-form textarea {
    min-height: 132px;
  }

  .field-label {
    font-size: 0.84rem;
    letter-spacing: 0.06em;
  }

  .field-help-inline,
  .field-feedback {
    padding-left: 2px;
  }

  .field-feedback {
    min-height: 20px;
    margin-top: -2px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .team-consent {
    padding: 14px 14px;
    border-radius: 16px;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .lead-form button,
  .team-form button {
    width: 100%;
    min-height: 56px;
    margin-top: 6px;
    border-radius: 18px;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    box-shadow: 0 16px 28px rgba(18, 31, 51, 0.2);
  }

  .form-success-card {
    margin-top: 16px;
    padding: 18px 16px;
    border-radius: 20px;
    box-shadow: 0 16px 28px rgba(17, 46, 38, 0.18);
  }

  .privacy-note,
  .team-note {
    margin-top: 14px;
    padding: 12px 4px 0;
    font-size: 0.85rem;
    line-height: 1.55;
  }
}

@media (max-width: 520px) {
  .footer-link-button {
    width: 100%;
    text-align: center;
  }

  .offers-shell {
    padding: 22px 16px 18px;
  }

  .offer-card {
    padding: 19px 16px;
  }

  .lead-shell,
  .team-shell,
  .connections-shell,
  .cta-shell,
  .calculator-shell {
    gap: 16px;
  }

  .lead-form-card,
  .team-form-card {
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .lead-form-card h3,
  .team-form-card h3 {
    font-size: 1.28rem;
  }

  .lead-form input,
  .lead-form select,
  .team-form input,
  .team-form select,
  .team-form textarea {
    padding: 14px 15px;
  }

  .form-confidence-pill,
  .form-trust-step,
  .form-expectation,
  .team-consent,
  .form-success-card {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-form-card,
  .team-form-card,
  .form-success-card.is-visible {
    animation: none;
  }

  .lead-form button::after,
  .team-form button::after {
    transition: none;
  }
}

/* ── Mobile: calculator + buttons ─────────────────────────────── */
@media (max-width: 640px) {

  /* Tighter edge breathing room */
  .container {
    width: calc(100% - 24px);
  }

  /* Hero buttons: stack full-width */
  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-cta,
  .hero-pdf-btn {
    width: 100%;
    min-height: 52px;
    font-size: 0.97rem;
    justify-content: center;
  }

  /* Updates callout: stack text + button vertically */
  .updates-callout {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 18px;
  }

  .updates-text {
    font-size: 1.05rem;
    text-align: center;
  }

  .updates-arrow {
    display: none;
  }

  .updates-cta {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
    justify-content: center;
  }

  /* Calculator shell: tighter padding */
  .calculator-shell {
    padding: 1rem;
  }

  /* Tool layout: single column, inputs FIRST */
  .tool-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tool-sidebar {
    order: 1;
    position: static;
    padding: 16px;
  }

  .tool-results {
    order: 2;
    padding: 16px;
  }

  /* Inputs: large enough to prevent iOS zoom */
  .tool-form input,
  .tool-form select,
  input[type="number"],
  input[type="range"],
  select {
    font-size: 16px;
    min-height: 48px;
  }

  /* Update projection button: full width */
  #calculateBtn {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
    margin-top: 4px;
  }

  /* Result cards: 2-column on mobile instead of 4 */
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .result-card {
    padding: 14px 12px;
  }

  .result-value {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }

  /* Chart canvas: shorter on small screens */
  .chart-canvas {
    max-height: 220px;
  }

  /* Monthly table: scrollable */
  #monthlyTable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Form split (name fields): single column */
  .form-split {
    grid-template-columns: 1fr;
  }

  /* Topbar: tighter on mobile */
  .topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
  }

  .topbar-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    font-size: 0.85rem;
  }

  .topbar-links a {
    text-align: center;
    padding: 10px 8px;
  }

  /* Section title smaller on mobile */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* Lead form shell */
  .lead-shell {
    padding: 16px;
  }

  .lead-copy {
    padding: 16px;
  }

  /* Lead form submit button */
  .lead-submit-btn,
  .lead-form button[type="submit"] {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
  }
}

/* Frontend refresh overrides */
:root {
  --page-max: 1180px;
}

.container {
  width: min(var(--page-max), calc(100% - 32px));
}

section {
  padding: 42px 0;
}

.hero {
  padding: 26px 0 56px;
}

.hero::before {
  background:
    linear-gradient(115deg, rgba(255, 247, 234, 0.92), rgba(15, 31, 52, 0.2)),
    radial-gradient(circle at top right, rgba(23, 52, 83, 0.22), transparent 28%),
    url("images/BrandColorexample..jpg") center/cover no-repeat;
}

.topbar {
  padding: 16px 20px;
  margin-bottom: 28px;
  position: sticky;
  top: 14px;
  z-index: 20;
  background: rgba(255, 249, 241, 0.78);
  border: 1px solid rgba(110, 89, 57, 0.12);
  box-shadow: 0 14px 34px rgba(18, 31, 51, 0.08);
}

.topbar-links a:last-child {
  background: rgba(23, 52, 83, 0.08);
  color: var(--accent);
  font-weight: 800;
}

.hero-content {
  gap: 24px;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.hero-copy,
.hero-card {
  padding: 36px;
  background: rgba(255, 250, 243, 0.76);
}

.hero-tagline {
  max-width: 58ch;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.hero-headline {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-subheadline {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}

.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(110, 89, 57, 0.12);
  color: #54463b;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-trust {
  gap: 12px;
  margin-bottom: 22px;
}

.hero-trust li {
  color: #4f4842;
  line-height: 1.6;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.hero-action-note {
  margin: 12px 0 0;
  color: #6a6158;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-stats {
  margin-top: 22px;
  gap: 14px;
}

.stat-card {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-path {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(23, 52, 83, 0.08), rgba(200, 154, 84, 0.14)),
    rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(110, 89, 57, 0.12);
}

.hero-path-intro {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.hero-path-kicker {
  color: #7a5a2d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-path-intro p {
  margin: 0;
  color: #5f564e;
}

.hero-path-steps {
  display: grid;
  gap: 10px;
}

.hero-path-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(110, 89, 57, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-path-step:hover,
.hero-path-step:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 31, 51, 0.1);
  border-color: rgba(200, 154, 84, 0.22);
  outline: none;
}

.hero-path-index {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-path-step strong {
  display: block;
  margin-bottom: 4px;
  color: #173453;
  font-size: 0.96rem;
}

.video-followup {
  padding: 22px;
}

.video-followup-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.video-followup h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: -0.01em;
}

.journey-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.value-section {
  padding-top: 8px;
}

.value-shell {
  display: grid;
  gap: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(203, 222, 182, 0.32), transparent 26%),
    radial-gradient(circle at bottom left, rgba(247, 223, 176, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(242, 237, 225, 0.94));
  border-color: rgba(122, 133, 88, 0.18);
}

.value-intro {
  display: grid;
  gap: 10px;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.value-intro > * {
  margin: 0;
}

.value-intro .section-kicker,
.value-intro .section-title,
.value-intro .section-intro {
  grid-column: 1;
}

.value-intro .section-kicker {
  color: #6b7b49;
}

.value-intro .section-title {
  max-width: 15ch;
}

.value-intro .section-intro {
  color: #5d584f;
}

.value-intro-panel {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 240, 229, 0.92));
  border: 1px solid rgba(122, 133, 88, 0.14);
  box-shadow: 0 16px 30px rgba(18, 31, 51, 0.06);
}

.value-intro-panel-copy strong {
  display: block;
  color: #1d3a2f;
  font-size: 1.02rem;
}

.value-intro-panel-copy p {
  margin: 8px 0 0;
  color: #625b52;
  line-height: 1.65;
}

.value-intro-checklist {
  display: grid;
  gap: 10px;
}

.value-intro-check {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 133, 88, 0.1);
  color: #5d584f;
  line-height: 1.55;
}

.value-intro-check::before {
  content: "•";
  margin-right: 8px;
  color: #6b7b49;
  font-weight: 900;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.value-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 240, 229, 0.92));
  border: 1px solid rgba(122, 133, 88, 0.12);
  box-shadow: 0 14px 28px rgba(18, 31, 51, 0.06);
}

.value-card h3,
.value-card p {
  margin: 0;
}

.value-card h3 {
  color: #1d3a2f;
  font-size: 1.05rem;
}

.value-card p {
  color: #625b52;
  line-height: 1.65;
}

.value-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(105, 128, 76, 0.98), rgba(219, 184, 103, 0.95));
  color: #fffaf1;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journey-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(110, 89, 57, 0.12);
  color: #173453;
  font-weight: 800;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.journey-link:hover,
.journey-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 154, 84, 0.24);
  box-shadow: 0 14px 28px rgba(18, 31, 51, 0.08);
  outline: none;
}

.offers-shell,
.connections-shell,
.team-shell {
  box-shadow: 0 18px 40px rgba(18, 31, 51, 0.08);
}

.stories-section .section-intro,
.calculator-title p p {
  max-width: 64ch;
}

.story-card {
  gap: 16px;
  padding: 24px;
}

.story-card h3 {
  font-size: 1.28rem;
  color: #173453;
}

.game-lab-card,

/* Restored active public layout after CSS cleanup. */
.appointment-section.container {
  max-width: 1040px;
  display: block;
}

.appointment-shell {
  padding: clamp(22px, 4vw, 38px);
}

.appointment-copy {
  width: 100%;
}

.appointment-visual-content {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.appointment-visual-header,
.appointment-visual-media,
.appointment-visual-copy,
.appointment-proof-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.appointment-visual-header,
.appointment-visual-copy,
.appointment-proof-item {
  padding: clamp(16px, 2vw, 22px);
  text-align: left;
}

.appointment-visual-media {
  overflow: hidden;
}

.appointment-visual-media img {
  display: block;
  width: 100%;
  height: auto;
}

.appointment-visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.appointment-visual-tags span {
  border-radius: 999px;
  border: 1px solid rgba(200, 154, 84, 0.28);
  background: rgba(247, 244, 238, 0.9);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 12px;
}

.appointment-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 18px;
}

.appointment-proof-item {
  display: grid;
  align-content: start;
  min-height: auto;
}

.appointment-proof-item p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.calendly-embed-wrapper {
  width: 100%;
  max-width: 960px;
  margin: clamp(34px, 5vw, 54px) auto 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.95));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(23, 52, 83, 0.14);
  overflow: hidden;
}

.calendly-panel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  text-align: left;
  background:
    radial-gradient(circle at top left, rgba(200, 154, 84, 0.14), transparent 42%),
    linear-gradient(135deg, #ffffff, #f9f4ec);
  border-bottom: 1px solid rgba(23, 52, 83, 0.08);
}

.calendly-panel-header h3 {
  margin: 10px 0 6px;
  color: #173453;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}

.calendly-panel-header p {
  max-width: 620px;
  margin: 0;
  color: #5f564e;
  font-size: 0.98rem;
  line-height: 1.55;
}

.calendly-fallback-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  background: #173453;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(23, 52, 83, 0.2);
}

.calendly-fallback-link:hover,
.calendly-fallback-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(23, 52, 83, 0.28);
}

.disclaimer-section {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.disclaimer-shell {
  padding: 0;
  overflow: hidden;
  border: 0.0625rem solid rgba(23, 52, 83, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 251, 246, 0.96);
  box-shadow: 0 1.125rem 2.5rem rgba(18, 31, 51, 0.1);
}

.disclaimer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 4.75rem;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: transparent;
  color: #173453;
  cursor: pointer;
  text-align: left;
}

.disclaimer-toggle:hover,
.disclaimer-toggle:focus-visible {
  background: rgba(23, 52, 83, 0.04);
  outline: none;
}

.disclaimer-title {
  margin: 0;
  color: #173453;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border: 0.0625rem solid rgba(23, 52, 83, 0.16);
  border-radius: 50%;
  color: #173453;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.disclaimer-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
  background: #173453;
  color: #ffffff;
}

.disclaimer-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  border-top: 0.0625rem solid rgba(23, 52, 83, 0.1);
  transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.32s ease;
}

.disclaimer-content:not([hidden]) {
  padding-top: 1.35rem;
  padding-bottom: 1.5rem;
}

.disclaimer-intro {
  margin-bottom: 1.25rem;
}

.disclaimer-shell p {
  margin: 0 0 0.9rem;
  color: #4f5a66;
  font-size: 0.95rem;
  line-height: 1.65;
}

.disclaimer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.disclaimer-card {
  padding: 1rem;
  border: 0.0625rem solid rgba(23, 52, 83, 0.1);
  border-radius: 1rem;
  background: #ffffff;
}

.disclaimer-card h3 {
  margin: 0 0 0.55rem;
  color: #173453;
  font-size: 1rem;
  line-height: 1.35;
}

.disclaimer-card p,
.disclaimer-detail {
  font-size: 0.92rem;
}

.page-footer {
  position: relative;
  clear: both;
  width: 100%;
  margin-top: 0;
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, #173453 0%, #0f1f34 100%);
  color: #f7fbff;
}

.page-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, rgba(200, 154, 84, 0.9), transparent);
}

.footer-content,
.footer-bottom {
  width: min(100% - 3rem, 70rem);
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(16rem, 1.35fr) repeat(3, minmax(8rem, 1fr));
  align-items: start;
  gap: 2.5rem;
}

.footer-brand,
.footer-column,
.footer-meta {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  gap: 1rem;
  max-width: 20rem;
}

.footer-logo {
  width: 7.5rem;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-meta p,
.footer-bottom p {
  margin: 0;
}

.footer-brand > p {
  max-width: 18rem;
  color: #e5edf7;
  font-size: 1rem;
  line-height: 1.65;
}

.footer-meta {
  gap: 0.35rem;
  padding-top: 0.35rem;
}

.footer-meta p {
  color: #d9e5f2;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.footer-column h4 {
  margin: 0 0 10px;
  color: rgba(247, 251, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-column > a:hover,
.footer-column > a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: translateX(3px);
  outline: none;
}

.footer-meta a,
.footer-bottom a {
  color: #e9f2ff;
  text-decoration: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  outline: none;
}

.footer-social-icons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 251, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
  outline: none;
}

.footer-social-link svg {
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.18s ease;
}

.footer-social-link:hover svg {
  opacity: 1;
}

.footer-social-facebook:hover { background: rgba(24, 119, 242, 0.22); border-color: rgba(24, 119, 242, 0.35); }
.footer-social-youtube:hover { background: rgba(255, 0, 0, 0.22); border-color: rgba(255, 0, 0, 0.35); }
.footer-social-instagram:hover { background: rgba(225, 48, 108, 0.22); border-color: rgba(225, 48, 108, 0.35); }
.footer-social-tiktok:hover { background: rgba(37, 244, 238, 0.14); border-color: rgba(37, 244, 238, 0.28); }
.footer-social-x:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.28); }

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.18);
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #e9f2ff;
}

.developer-credit img {
  width: 2.125rem;
  height: 2.125rem;
  object-fit: contain;
}

@media (max-width: 980px) {
  .appointment-proof-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .appointment-shell {
    padding: 1.125rem;
    border-radius: 1.125rem;
  }

  .appointment-visual-content {
    gap: 0.875rem;
  }

  .calendly-panel-header {
    grid-template-columns: 1fr;
  }

  .calendly-fallback-link {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .disclaimer-section {
    padding-bottom: 2rem;
  }

  .disclaimer-toggle {
    min-height: 4.25rem;
    padding: 1rem;
  }

  .disclaimer-title {
    font-size: 0.92rem;
  }

  .disclaimer-content {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .disclaimer-cards {
    grid-template-columns: 1fr;
  }

  .page-footer {
    padding: 2.75rem 0 2rem;
  }

  .footer-content,
  .footer-bottom {
    width: min(100% - 2rem, 70rem);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-brand {
    max-width: none;
    gap: 0.9rem;
  }

  .footer-column {
    gap: 0.7rem;
    padding-top: 0;
  }

  .footer-column a,
  .footer-meta a,
  .footer-bottom a {
    font-size: 1.02rem;
  }

  .footer-bottom {
    justify-content: flex-start;
    margin-top: 2rem;
  }

  .developer-credit {
    align-self: flex-start;
  }
}

/* 2026 landing page refresh: stronger hierarchy, softer depth, mobile-first spacing,
   and GPU-friendly reveal states without changing calculator IDs or form logic. */
:root {
  --bg: #f6f8f6;
  --surface: #ffffff;
  --surface-warm: #fffaf2;
  --surface-cool: #edf7f4;
  --line: #dbe3df;
  --text: #17212b;
  --muted: #52606d;
  --primary: #16324f;
  --primary-strong: #0c2239;
  --accent: #b2772f;
  --accent-strong: #8f561b;
  --teal: #2c6f67;
  --shadow: 0 18px 42px rgba(19, 34, 49, 0.1);
  --shadow-soft: 0 10px 28px rgba(19, 34, 49, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-xl: 24px;
  --section-space: clamp(3.25rem, 7vw, 6.5rem);
}

html {
  scroll-padding-top: 1.5rem;
}

body {
  background:
    linear-gradient(180deg, #f7faf8 0%, #f4f1ea 42%, #f6f8f6 100%);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--primary-strong);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(44, 111, 103, 0.42);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - clamp(2rem, 5vw, 4rem)));
}

.calculator-shell .calculator-header .section-kicker,
.calculator-shell .calculator-header .section-title,
.calculator-shell .calculator-title .section-kicker,
.calculator-shell .calculator-title .section-title {
  color: #f5f7fa;
  opacity: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.calculator-shell .calculator-title p,
.calculator-shell .calculator-header p {
  color: rgba(245, 247, 250, 0.92);
}

/* Accessibility refactor: larger type, simpler spacing, and bigger touch targets. */
body {
  font-size: 1.125rem;
  line-height: 1.65;
}

p,
li,
td,
th,
label,
summary {
  line-height: 1.6;
}

p,
.muted,
.hero-subheadline,
.section-intro,
.lead-copy p,
.profile-role {
  color: #2f3c49;
}

section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.topbar-links {
  font-size: 1.125rem;
  color: #263646;
}

.topbar-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.08;
}

.section-kicker,
.eyebrow {
  font-size: 1.125rem;
  color: #16324f;
}

.hero-content {
  min-height: auto;
}

.hero-profile {
  max-width: 720px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.headshot-img {
  width: 10rem;
  height: 10rem;
  margin: 0 auto;
  border-radius: 50%;
}

.profile-name {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.15;
}

.profile-role,
.profile-note {
  font-size: clamp(1.125rem, 3vw, 1.35rem);
  line-height: 1.55;
}

.calculator-copy {
  max-width: 980px;
}

.calculator-copy .hero-tagline,
.appt-lead,
.disclaimer-shell p {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.65;
}

#hero-title {
  display: inline-block;
  max-width: 34ch;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(77, 214, 255, 0.28);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(5, 14, 24, 0.95), rgba(12, 32, 45, 0.92)),
    rgba(5, 14, 24, 0.92);
  color: #4dd6ff;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.25rem, 10vw, 3.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    0 0 30px rgba(77, 214, 255, 0.16),
    0 18px 42px rgba(5, 14, 24, 0.34);
  text-shadow: 0 0 12px rgba(77, 214, 255, 0.45);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  #hero-title {
    animation: none;
  }
}

.hero-actions {
  gap: clamp(1.125rem, 3vw, 1.75rem);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.calculator-copy > .hero-actions .hero-cta,
.calculator-copy > .hero-actions .hero-pdf-btn {
  flex: 1 1 260px;
  min-height: 72px;
  padding: 1.125rem 2rem;
  border-radius: 1.25rem;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.2;
  color: #ffffff;
  gap: 0.875rem;
  text-align: left;
  box-shadow: 0 18px 34px rgba(12, 34, 57, 0.22);
}

.calculator-copy > .hero-actions .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.calculator-copy > .hero-actions .btn-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.calculator-copy > .hero-actions .btn-label {
  flex: 1;
  color: #ffffff;
  font-weight: 900;
}

.calculator-copy > .hero-actions .hero-cta[data-cta="hero_calculator"] {
  background: linear-gradient(135deg, #0c2239, #255884);
}

.calculator-copy > .hero-actions .hero-cta[data-cta="hero_calculator"]:hover,
.calculator-copy > .hero-actions .hero-cta[data-cta="hero_calculator"]:focus-visible {
  background: linear-gradient(135deg, #13395f, #2d6b9f);
}

.calculator-copy > .hero-actions .hero-pdf-btn {
  background: linear-gradient(135deg, #7a3f10, #b96c1e);
}

.calculator-copy > .hero-actions .hero-pdf-btn:hover,
.calculator-copy > .hero-actions .hero-pdf-btn:focus-visible {
  background: linear-gradient(135deg, #934f17, #d37f28);
}

.calculator-copy > .hero-actions .hero-cta[data-cta="hero_talk_with_rob"] {
  background: linear-gradient(135deg, #0f4f48, #16786d);
}

.calculator-copy > .hero-actions .hero-cta[data-cta="hero_talk_with_rob"]:hover,
.calculator-copy > .hero-actions .hero-cta[data-cta="hero_talk_with_rob"]:focus-visible {
  background: linear-gradient(135deg, #13665d, #1a9184);
}

.calculator-copy > .hero-actions .hero-cta:focus-visible,
.calculator-copy > .hero-actions .hero-pdf-btn:focus-visible {
  outline: 4px solid #ffffff;
  outline-offset: 4px;
  box-shadow:
    0 0 0 8px rgba(12, 34, 57, 0.42),
    0 18px 34px rgba(12, 34, 57, 0.22);
}

.lead-section {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.lead-section .lead-shell,
.lead-section .lead-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lead-section .lead-shell {
  padding: 0;
}

.lead-section .lead-copy {
  padding: 0;
}

.lead-popup-trigger {
  min-height: 64px;
  max-width: 420px;
  padding: 1rem 2rem;
  font-size: 1.35rem;
}

.calculator-intro {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.calculator-section {
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

.appointment-shell {
  width: 100%;
}

.appointment-copy {
  gap: 1.25rem;
}

.calendly-embed-wrapper {
  margin-top: clamp(1.25rem, 4vw, 2rem);
}

.calculator-shell {
  font-size: 1.125rem;
}

.calculator-shell .calculator-header .section-title,
.calculator-shell .calculator-title .section-title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.08;
}

.calculator-shell .calculator-header .section-kicker,
.calculator-shell .calculator-title .section-kicker {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.calculator-shell .calculator-title p,
.calculator-shell .calculator-header p {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.55;
}

.tool-layout {
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.tool-form {
  gap: 1.75rem;
}

.form-group {
  gap: 0.875rem;
}

.form-label {
  align-items: flex-start;
  color: #17212b;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.35;
}

.form-label .info-icon {
  min-width: 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1rem;
}

.tool-form input,
.tool-form select {
  min-height: 56px;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  color: #111827;
  font-size: 1.5rem;
  line-height: 1.25;
}

.tool-form input::placeholder {
  color: #4b5563;
  font-size: 1.35rem;
}

.tool-form input[type="range"] {
  min-height: 48px;
  padding: 0;
}

#calculateBtn {
  min-height: 60px;
  padding: 1rem 1.5rem;
  border-radius: 0.875rem;
  font-size: 1.35rem;
}

.tool-results {
  font-size: 1.125rem;
}

.results-grid {
  gap: 1.25rem;
}

.result-card {
  padding: 1.5rem;
}

.result-label {
  color: #283747;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.35;
}

.result-value {
  color: #0f172a;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900;
}

.result-card.highlight .result-label,
.result-card.accent .result-label {
  color: #ffffff;
}

.results-status p,
.chart-container h4,
.chart-teaser,
.chart-toggle-button,
#monthlyTable th,
#monthlyTable td {
  font-size: 1.125rem;
}

.chart-container h4,
.chart-toggle-button,
#monthlyTable th {
  color: #0f172a;
  font-weight: 800;
}

.chart-teaser,
#monthlyTable td {
  color: #263646;
}

@media (min-width: 768px) {
  body {
    font-size: 1.25rem;
  }

  #hero-title {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .profile-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .headshot-img {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .tool-layout {
    grid-template-columns: 1fr;
  }

  .tool-sidebar {
    order: 1;
    position: static;
  }

  .tool-results {
    order: 2;
  }
}

@media (max-width: 640px) {
  .topbar-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 1.125rem;
  }

  .calculator-copy > .hero-actions .hero-cta,
  .calculator-copy > .hero-actions .hero-pdf-btn {
    width: 100%;
    min-height: 72px;
    justify-content: flex-start;
    font-size: 1.5rem;
  }

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

  .result-value {
    font-size: 2rem;
  }
}

/* Water effect update: reusable, lightweight liquid layers for the hero and calculator. */
.calculator-intro,
.calculator-content,
.calculator-shell,
.about-hero,
.about-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.calculator-intro::before,
.calculator-content::before,
.calculator-shell::before,
.about-hero::before,
.about-main::before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 18% 24%, rgba(77, 214, 255, 0.58), transparent 34%),
    radial-gradient(ellipse at 78% 18%, rgba(38, 188, 230, 0.42), transparent 38%),
    radial-gradient(ellipse at 44% 82%, rgba(28, 218, 190, 0.34), transparent 42%),
    conic-gradient(from 140deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.12) 62deg, transparent 126deg, rgba(77, 214, 255, 0.1) 210deg, transparent 300deg),
    linear-gradient(135deg, rgba(4, 20, 38, 0.94), rgba(11, 72, 104, 0.88));
  filter: blur(24px) saturate(1.25);
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: finsightsWaterDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.calculator-intro::after,
.calculator-content::after,
.calculator-shell::after,
.about-hero::after,
.about-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 24% 28%, rgba(255, 255, 255, 0.24), transparent 30%),
    radial-gradient(ellipse at 72% 34%, rgba(139, 235, 255, 0.18), transparent 36%),
    radial-gradient(ellipse at 54% 76%, rgba(77, 214, 255, 0.16), transparent 42%),
    conic-gradient(from 95deg at 55% 46%, transparent 0deg, rgba(255, 255, 255, 0.18) 48deg, transparent 112deg, rgba(77, 214, 255, 0.12) 176deg, transparent 280deg);
  opacity: 0.72;
  mix-blend-mode: screen;
  animation: finsightsWaterCaustics 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.calculator-content,
.calculator-shell {
  background:
    linear-gradient(135deg, rgba(5, 21, 39, 0.68), rgba(7, 58, 86, 0.54)),
    rgba(6, 20, 35, 0.54);
  border: 1px solid rgba(135, 222, 255, 0.34);
  box-shadow:
    0 20px 55px rgba(5, 14, 24, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.calculator-content > *,
.calculator-shell > * {
  position: relative;
  z-index: 2;
}

.tool-sidebar,
.tool-results,
.chart-container,
.chart-disclosure,
#monthlyTable {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(135, 222, 255, 0.24);
}

.tool-sidebar {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 36px rgba(5, 18, 32, 0.12);
}

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

#calculateBtn {
  width: 100%;
}

#calculateBtn.tool-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 78px;
  padding: 1.25rem 2rem;
  border: 2px solid rgba(210, 252, 255, 0.92);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(135deg, #b7f7ff 0%, #4dd6ff 34%, #00bdf2 68%, #0796cf 100%);
  color: #011827;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 18px rgba(77, 214, 255, 0.74),
    0 0 42px rgba(77, 214, 255, 0.42),
    0 18px 38px rgba(4, 44, 69, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -8px 18px rgba(0, 118, 165, 0.24);
}

#calculateBtn.tool-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.95) 18%, rgba(77, 214, 255, 0.78) 32%, transparent 52%);
  transform: translateX(-130%) skewX(-14deg);
  transition: transform 0.55s ease;
}

#calculateBtn.tool-button::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.34),
    inset 0 0 34px rgba(77, 214, 255, 0.28);
  pointer-events: none;
}

#calculateBtn.tool-button:hover,
#calculateBtn.tool-button:focus-visible {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 1), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #7fefff 30%, #16d4ff 64%, #00aeea 100%);
  color: #011827;
  transform: translateY(-2px);
  box-shadow:
    0 0 24px rgba(167, 245, 255, 0.94),
    0 0 58px rgba(77, 214, 255, 0.72),
    0 0 92px rgba(77, 214, 255, 0.38),
    0 22px 44px rgba(4, 44, 69, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -8px 18px rgba(0, 118, 165, 0.18);
}

#calculateBtn.tool-button:hover::before,
#calculateBtn.tool-button:focus-visible::before {
  transform: translateX(130%) skewX(-14deg);
}

@media (prefers-reduced-motion: reduce) {
  #calculateBtn.tool-button::before {
    transition: none;
  }

  #calculateBtn.tool-button:hover::before,
  #calculateBtn.tool-button:focus-visible::before {
    transform: translateX(0) skewX(-14deg);
    opacity: 0.34;
  }
}

@keyframes finsightsWaterDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1) rotate(0deg);
  }

  100% {
    transform: translate3d(2%, 1%, 0) scale(1.06) rotate(4deg);
  }
}

@keyframes finsightsWaterCaustics {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(1);
    opacity: 0.42;
  }

  100% {
    transform: translate3d(1.5%, 0, 0) scale(1.04);
    opacity: 0.66;
  }
}

@media (prefers-reduced-motion: reduce) {
  .calculator-intro::before,
  .calculator-intro::after,
  .calculator-content::before,
  .calculator-content::after,
  .calculator-shell::before,
  .calculator-shell::after,
  .about-hero::before,
  .about-hero::after,
  .about-main::before,
  .about-main::after {
    animation: none;
  }
}

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

/* About page: client-facing financial education layout with strong mobile readability. */
.about-page {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(240, 247, 250, 0.96)),
    var(--bg);
  font-size: 18px;
}

.about-page .topbar {
  margin-bottom: clamp(2rem, 6vw, 4rem);
  padding: 1rem;
  border: 1px solid rgba(190, 244, 255, 0.32);
  border-radius: 8px;
  background: rgba(3, 24, 39, 0.78);
  box-shadow: 0 18px 42px rgba(2, 14, 24, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-page .brand-name,
.about-page .topbar-links a {
  color: #ffffff;
}

.about-page .brand-subtitle {
  color: #8befff;
}

.about-page .topbar-links a {
  border: 1px solid transparent;
}

.about-page .topbar-links a:hover,
.about-page .topbar-links a:focus-visible,
.about-page .topbar-links a[aria-current="page"] {
  background: rgba(77, 214, 255, 0.18);
  border-color: rgba(139, 235, 255, 0.34);
  color: #8befff;
}

.about-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: #f7fbff;
}

.about-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}

.about-hero-copy {
  max-width: 860px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(190, 244, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 17, 29, 0.94), rgba(4, 31, 48, 0.92));
  box-shadow: 0 22px 54px rgba(2, 14, 24, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-eyebrow {
  margin: 0 0 1rem;
  color: #4dd6ff;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0;
}

.about-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.65rem, 7.5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: rgba(247, 251, 255, 0.95);
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  line-height: 1.55;
}

.about-hero-bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.about-hero-bullets span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(139, 235, 255, 0.34);
  border-radius: 999px;
  background: rgba(139, 235, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.2;
}

.about-trust-line {
  max-width: 760px;
  margin-top: 1.5rem;
  color: #bdefff;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 850;
  line-height: 1.5;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.25rem;
}

.about-hero-card {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid rgba(39, 78, 112, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #102941;
  box-shadow: 0 32px 62px rgba(2, 14, 24, 0.18);
}

.about-portrait {
  width: 136px;
  height: 136px;
  margin-bottom: 0.85rem;
  border: 4px solid rgba(23, 52, 83, 0.18);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 36px rgba(15, 31, 52, 0.16);
}

.about-portrait-label {
  margin: 0 0 1.25rem;
  color: #225678;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.about-card-kicker {
  margin: 0 0 0.4rem;
  color: #0f4f72;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero-card h2 {
  margin: 0 0 1rem;
  color: #102941;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  line-height: 1.16;
}

.about-hero-card p {
  margin: 0;
  color: #34485c;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-main {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.about-main::before {
  opacity: 0.16;
}

.about-main::after {
  opacity: 0.18;
}

.about-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.about-section-intro {
  max-width: 880px;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.about-section h2 {
  max-width: 780px;
  margin: 0 0 1rem;
  color: #102941;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.about-section p,
.about-section li {
  color: #243748;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.65;
}

.about-section p {
  max-width: 840px;
  margin: 0 0 1rem;
}

.about-grid,
.about-start-grid,
.commitment-grid,
.faq-list,
.about-timeline,
.about-intake-preview {
  display: grid;
  gap: 1rem;
}

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

.about-grid-four,
.about-start-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

.about-feature,
.about-path-card,
.about-timeline-item,
.commitment-panel,
.faq-item {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgba(23, 52, 83, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(15, 31, 52, 0.08);
}

.about-path-card {
  position: relative;
  display: block;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.about-path-card:hover,
.about-path-card:focus-visible {
  border-color: rgba(22, 120, 109, 0.32);
  box-shadow: 0 18px 38px rgba(15, 31, 52, 0.12);
  transform: translateY(-2px);
}

.about-path-number,
.about-timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 120, 109, 0.1);
  color: #0f4f72;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.about-feature h3,
.about-path-card h3,
.about-timeline-item h3,
.commitment-panel h3,
.faq-item h3 {
  margin: 0 0 0.65rem;
  color: #14314e;
  font-size: 1.2rem;
  line-height: 1.3;
}

.about-feature p,
.about-path-card p,
.about-timeline-item p,
.faq-item p {
  margin: 0;
}

.commitment-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.25rem;
}

.about-value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-value-strip span {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(23, 52, 83, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #173453;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(15, 31, 52, 0.08);
}

.about-note,
.about-guided,
.about-final-cta {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(23, 52, 83, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 249, 250, 0.9));
  box-shadow: 0 18px 42px rgba(15, 31, 52, 0.08);
}

.about-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: start;
}

.about-note h2,
.about-final-cta h2 {
  margin-bottom: 0;
}

.commitment-disclosure {
  background: #f8fbff;
}

.commitment-disclosure a {
  display: inline-flex;
  margin-top: 0.35rem;
  color: #0f4f72;
  font-weight: 900;
}

.about-guided {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: center;
}

.about-guided-copy p:last-child,
.about-final-cta p {
  margin-bottom: 0;
}

.about-intake-preview {
  gap: 0.75rem;
}

.about-intake-preview div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid rgba(23, 52, 83, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.about-intake-preview span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #173453;
  color: #ffffff;
  font-weight: 900;
}

.about-intake-preview p {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 1.25rem;
  padding: 1rem 1.6rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #173453, #16786d);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(23, 52, 83, 0.18);
}

.about-cta:hover,
.about-cta:focus-visible {
  background: linear-gradient(135deg, #1d456f, #1a9184);
}

.about-cta-secondary {
  border: 1px solid rgba(23, 52, 83, 0.18);
  background: #ffffff;
  color: #173453;
}

.about-hero .about-cta-secondary {
  border-color: rgba(139, 235, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.about-cta-secondary:hover,
.about-cta-secondary:focus-visible {
  background: #edf9fb;
  color: #102941;
}

@media (max-width: 820px) {
  .about-grid,
  .about-grid-four,
  .about-start-grid,
  .commitment-grid,
  .about-timeline,
  .about-guided,
  .about-note,
  .about-hero-shell {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
  }

  .about-page .topbar {
    align-items: stretch;
  }

  .about-hero-copy,
  .about-hero-card {
    padding: 1.25rem;
  }

  .about-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .about-hero p {
    font-size: 1.12rem;
  }

  .about-cta,
  .about-cta-row {
    width: 100%;
  }

  .about-cta {
    justify-content: center;
  }

  .about-value-strip span {
    width: 100%;
  }
}

/* Aqua visibility boost: make the water treatment obvious on the visible hero surfaces. */
.hero,
.calculator-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(77, 214, 255, 0.38), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(18, 190, 232, 0.28), transparent 34%),
    linear-gradient(135deg, #031827 0%, #064d72 48%, #0a2843 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -28%;
  pointer-events: none;
}

.hero::before {
  background:
    radial-gradient(ellipse at 30% 35%, rgba(132, 235, 255, 0.5), transparent 34%),
    radial-gradient(ellipse at 74% 64%, rgba(45, 222, 205, 0.34), transparent 42%),
    conic-gradient(from 120deg at 52% 48%, transparent 0deg, rgba(207, 250, 255, 0.16) 54deg, transparent 132deg, rgba(77, 214, 255, 0.14) 224deg, transparent 310deg);
  filter: blur(20px) saturate(1.25);
  animation: finsightsWaterDrift 16s ease-in-out infinite alternate;
}

.hero::after {
  inset: 0;
  background:
    radial-gradient(ellipse at 28% 24%, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(ellipse at 70% 70%, rgba(77, 214, 255, 0.16), transparent 42%),
    conic-gradient(from 75deg at 54% 50%, transparent 0deg, rgba(255, 255, 255, 0.14) 58deg, transparent 124deg, rgba(77, 214, 255, 0.12) 196deg, transparent 302deg);
  mix-blend-mode: screen;
  opacity: 0.7;
  animation: finsightsWaterCaustics 10s ease-in-out infinite alternate;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.calculator-content,
.calculator-shell {
  background:
    radial-gradient(circle at 14% 20%, rgba(77, 214, 255, 0.52), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(92, 241, 255, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(4, 31, 55, 0.72), rgba(6, 96, 128, 0.58)),
    #05283f;
}

#hero-title {
  background:
    radial-gradient(circle at 12% 18%, rgba(77, 214, 255, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(2, 18, 32, 0.72), rgba(5, 62, 91, 0.58)) !important;
  border-color: rgba(139, 235, 255, 0.48);
  box-shadow:
    0 0 38px rgba(77, 214, 255, 0.26),
    0 18px 42px rgba(5, 14, 24, 0.34);
}

.profile-card {
  padding: 1.25rem;
  border: 1px solid rgba(139, 235, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(4, 24, 39, 0.22);
}

/* Premium About redesign: founder-led trust page with direct, low-friction lead capture. */
.about-page-premium {
  background: #f7f9f8;
  color: #102941;
  font-size: 18px;
}

.about-page-premium .about-hero,
.about-page-premium .about-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-page-premium .about-hero::before,
.about-page-premium .about-hero::after,
.about-page-premium .about-main::before,
.about-page-premium .about-main::after {
  content: none;
}

.about-page-premium .about-hero {
  min-height: min(840px, 92vh);
  padding: clamp(1rem, 3vw, 1.5rem) 0 clamp(3.25rem, 8vw, 5.5rem);
  display: flex;
  align-items: stretch;
  color: #ffffff;
  background-color: #102941;
  background-image:
    linear-gradient(90deg, rgba(3, 20, 35, 0.97) 0%, rgba(5, 32, 52, 0.88) 44%, rgba(5, 32, 52, 0.28) 100%),
    url("images/coverphoto.jpg");
  background-repeat: no-repeat;
  background-position: center, right clamp(1rem, 4vw, 4rem) center;
  background-size: auto, contain;
}

.about-page-premium .about-hero > .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.about-page-premium .topbar {
  margin: 0 0 clamp(2.25rem, 7vw, 5rem);
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 20, 35, 0.72);
  box-shadow: 0 18px 42px rgba(2, 14, 24, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-page-premium .brand-name,
.about-page-premium .topbar-links a {
  color: #ffffff;
}

.about-page-premium .brand-subtitle {
  color: #d7b36e;
}

.about-page-premium .topbar-links a {
  border: 1px solid transparent;
}

.about-page-premium .topbar-links a:hover,
.about-page-premium .topbar-links a:focus-visible,
.about-page-premium .topbar-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(215, 179, 110, 0.34);
  color: #f3d08d;
}

.about-page-premium .about-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 440px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

.about-page-premium .about-hero-copy {
  max-width: 830px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.about-page-premium .about-eyebrow {
  margin: 0 0 1rem;
  color: #f0c876;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-page-premium .about-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 7vw, 5.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.about-page-premium .about-hero p {
  max-width: 760px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.about-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.about-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(243, 208, 141, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.2;
}

.about-page-premium .about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.5rem;
}

.about-page-premium .about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin: 0;
  padding: 1rem 1.45rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0c876, #c89a54);
  color: #102941;
  cursor: pointer;
  font-weight: 950;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(2, 14, 24, 0.2);
}

.about-page-premium .about-cta:hover,
.about-page-premium .about-cta:focus-visible {
  background: linear-gradient(135deg, #ffe1a3, #d8a95e);
  color: #102941;
  outline: none;
  transform: translateY(-1px);
}

.about-page-premium .about-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.about-page-premium .about-cta-secondary:hover,
.about-page-premium .about-cta-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.about-founder-panel {
  display: grid;
  gap: 1rem;
}

.about-founder-figure {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(2, 14, 24, 0.34);
}

.about-founder-image {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center;
}

.about-founder-figure figcaption {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  color: #102941;
}

.about-founder-figure strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.about-founder-figure span {
  color: #4a5e70;
  font-size: 0.95rem;
  font-weight: 700;
}

.about-founder-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #102941;
  box-shadow: 0 18px 42px rgba(2, 14, 24, 0.18);
}

.about-page-premium .about-card-kicker {
  margin: 0 0 0.45rem;
  color: #8a6425;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-founder-card p:last-child {
  margin: 0;
  color: #243748;
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-page-premium .about-main {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background:
    linear-gradient(180deg, #f7f9f8, #eef5f4 42%, #f7f9f8);
}

.about-page-premium .about-section {
  padding: clamp(2.25rem, 5.5vw, 4.75rem) 0;
}

.about-page-premium .about-section-intro {
  max-width: 820px;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.about-page-premium .about-section h2 {
  max-width: 790px;
  margin: 0 0 1rem;
  color: #102941;
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.about-page-premium .about-section p,
.about-page-premium .about-section li {
  color: #31495d;
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.about-page-premium .about-section p {
  max-width: 820px;
  margin: 0 0 1rem;
}

.about-principle-grid,
.about-page-premium .about-start-grid,
.about-page-premium .faq-list {
  display: grid;
  gap: 1rem;
}

.about-principle-grid,
.about-page-premium .about-start-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page-premium .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-page-premium .about-feature,
.about-page-premium .about-path-card,
.about-page-premium .faq-item {
  padding: clamp(1.2rem, 3vw, 1.75rem);
  border: 1px solid rgba(23, 52, 83, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(15, 31, 52, 0.07);
}

.about-feature-label,
.about-page-premium .about-path-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(200, 154, 84, 0.14);
  color: #8a6425;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.about-page-premium .about-feature h3,
.about-page-premium .about-path-card h3,
.about-page-premium .faq-item h3 {
  margin: 0 0 0.65rem;
  color: #14314e;
  font-size: 1.18rem;
  line-height: 1.25;
}

.about-page-premium .about-feature p,
.about-page-premium .about-path-card p,
.about-page-premium .faq-item p {
  margin: 0;
}

.about-page-premium .about-path-card {
  display: block;
  width: 100%;
  min-height: 100%;
  color: inherit;
  text-align: left;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.about-page-premium .about-path-button {
  cursor: pointer;
  font: inherit;
}

.about-page-premium .about-path-card:hover,
.about-page-premium .about-path-card:focus-visible {
  border-color: rgba(200, 154, 84, 0.34);
  box-shadow: 0 18px 38px rgba(15, 31, 52, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

.about-story-copy {
  max-width: 760px;
}

.about-story-list {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.35rem;
}

.about-story-list div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0 1rem 1rem;
  border-left: 3px solid #c89a54;
}

.about-story-list strong {
  color: #102941;
  font-size: 1.05rem;
}

.about-story-list span {
  color: #4a5e70;
  line-height: 1.55;
}

.about-page-premium .about-note,
.about-page-premium .about-final-cta {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(23, 52, 83, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 31, 52, 0.08);
}

.about-page-premium .about-note {
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
}

.about-page-premium .about-note h2,
.about-page-premium .about-final-cta h2 {
  margin-bottom: 0;
}

.about-text-link {
  display: inline-flex;
  margin-top: 0.25rem;
  color: #0f4f72;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.about-page-premium .about-final-cta {
  background:
    linear-gradient(135deg, rgba(16, 41, 65, 0.96), rgba(10, 92, 86, 0.92)),
    #102941;
}

.about-page-premium .about-final-cta h2,
.about-page-premium .about-final-cta p,
.about-page-premium .about-final-cta .section-kicker {
  color: #ffffff;
}

.about-page-premium .about-final-cta p {
  max-width: 720px;
}

@media (max-width: 920px) {
  .about-page-premium .about-hero {
    min-height: auto;
    background-color: #102941;
    background-image:
      linear-gradient(180deg, rgba(3, 20, 35, 0.98) 0%, rgba(5, 32, 52, 0.86) 58%, rgba(5, 32, 52, 0.72) 100%),
      url("images/coverphoto.jpg");
    background-repeat: no-repeat;
    background-position: center top, center top 5.5rem;
    background-size: auto, min(100%, 760px) auto;
  }

  .about-page-premium .about-hero-shell,
  .about-story,
  .about-page-premium .about-note,
  .about-principle-grid,
  .about-page-premium .about-start-grid,
  .about-page-premium .faq-list {
    grid-template-columns: 1fr;
  }

  .about-founder-panel {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .about-page-premium .about-hero {
    padding-bottom: 3rem;
  }

  .about-page-premium .topbar {
    align-items: stretch;
  }

  .about-page-premium .about-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .about-page-premium .about-hero p {
    font-size: 1.05rem;
  }

  .about-proof-row span,
  .about-page-premium .about-cta,
  .about-page-premium .about-cta-row {
    width: 100%;
  }

  .about-page-premium .about-cta {
    min-height: 54px;
  }

.about-founder-image {
    aspect-ratio: 1 / 0.95;
  }
}

/* Premium Career Path redesign: high-trust recruiting page with a clear interest form. */
.career-page-premium {
  margin: 0;
  color: #102941;
  background: #f7f9f8;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.career-page-premium .career-hero {
  min-height: min(820px, 92vh);
  padding: clamp(1rem, 3vw, 1.5rem) 0 clamp(3.25rem, 8vw, 5.5rem);
  color: #ffffff;
  background-color: #102941;
  background-image:
    linear-gradient(90deg, rgba(3, 20, 35, 0.97) 0%, rgba(5, 32, 52, 0.9) 48%, rgba(5, 32, 52, 0.42) 100%),
    url("images/coverphoto.jpg");
  background-repeat: no-repeat;
  background-position: center, right clamp(1rem, 4vw, 4rem) center;
  background-size: auto, contain;
}

.career-page-premium .career-hero > .container {
  display: flex;
  min-height: inherit;
  flex-direction: column;
}

.career-page-premium .topbar {
  margin: 0 0 clamp(2.25rem, 7vw, 5rem);
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 20, 35, 0.72);
  box-shadow: 0 18px 42px rgba(2, 14, 24, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.career-page-premium .brand-name,
.career-page-premium .topbar-links a {
  color: #ffffff;
}

.career-page-premium .brand-subtitle {
  color: #d7b36e;
}

.career-page-premium .topbar-links a {
  border: 1px solid transparent;
}

.career-page-premium .topbar-links a:hover,
.career-page-premium .topbar-links a:focus-visible,
.career-page-premium .topbar-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(215, 179, 110, 0.34);
  color: #f3d08d;
}

.career-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 430px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

.career-hero-copy {
  max-width: 840px;
}

.career-eyebrow {
  margin: 0 0 1rem;
  color: #f0c876;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 7vw, 5.25rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.career-hero-copy > p:not(.career-eyebrow) {
  max-width: 760px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.career-proof-row,
.career-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.career-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(243, 208, 141, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.2;
}

.career-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.5rem;
}

.career-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1rem 1.45rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.career-cta-primary {
  border: 0;
  background: linear-gradient(135deg, #f0c876, #c89a54);
  color: #102941;
  box-shadow: 0 18px 34px rgba(2, 14, 24, 0.2);
}

.career-cta-primary:hover,
.career-cta-primary:focus-visible {
  background: linear-gradient(135deg, #ffe1a3, #d8a95e);
  color: #102941;
  outline: none;
  transform: translateY(-1px);
}

.career-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.career-cta-secondary:hover,
.career-cta-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  outline: none;
}

.career-hero-panel {
  display: grid;
  gap: 1rem;
}

.career-hero-video-shell {
  display: grid;
  width: 100%;
  max-width: 560px;
  place-items: center;
}

.career-hero-short-video {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 9 / 16;
  max-height: min(70vh, 620px);
  overflow: hidden;
  border-radius: 16px;
  background: #031423;
  box-shadow: 0 28px 64px rgba(2, 14, 24, 0.28);
}

.career-hero-short-video iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.career-video-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #031423;
  color: #102941;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.career-video-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-video-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 20, 35, 0.06) 0%, rgba(3, 20, 35, 0.34) 100%),
    rgba(3, 20, 35, 0.08);
}

.career-video-preview-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 200, 118, 0.96), rgba(200, 154, 84, 0.96));
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.15;
  box-shadow: 0 18px 34px rgba(2, 14, 24, 0.34);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.career-video-preview:hover .career-video-preview-label,
.career-video-preview:focus-visible .career-video-preview-label {
  background: linear-gradient(135deg, #ffe1a3, #d8a95e);
  box-shadow: 0 22px 40px rgba(2, 14, 24, 0.42);
  transform: translateY(-1px);
}

.career-video-preview:focus-visible {
  outline: 3px solid #ffe1a3;
  outline-offset: 4px;
}

.career-hero-short-video.is-playing .career-video-preview {
  display: none;
}

.career-video-play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.62rem solid currentColor;
}

.career-hero-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 30px 70px rgba(2, 14, 24, 0.34);
}

.career-hero-card,
.career-form-header {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #102941;
  box-shadow: 0 18px 42px rgba(2, 14, 24, 0.18);
}

.career-card-kicker {
  margin: 0 0 0.45rem;
  color: #8a6425;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-hero-card p:last-child,
.career-form-header p {
  margin: 0;
  color: #31495d;
  font-size: 1.02rem;
  line-height: 1.7;
}

.career-main {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background:
    linear-gradient(180deg, #f7f9f8, #eef5f4 42%, #f7f9f8);
}

.career-section {
  padding: clamp(2.25rem, 5.5vw, 4.75rem) 0;
}

.career-section-intro,
.career-form-copy,
.career-expectations-copy {
  max-width: 820px;
}

.career-section h2 {
  max-width: 790px;
  margin: 0 0 1rem;
  color: #102941;
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.career-section p {
  max-width: 820px;
  margin: 0 0 1rem;
  color: #31495d;
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.career-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.career-feature-card,
.career-form-panel {
  border: 1px solid rgba(23, 52, 83, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(15, 31, 52, 0.07);
}

.career-feature-card {
  padding: clamp(1.2rem, 3vw, 1.75rem);
}

.career-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(200, 154, 84, 0.14);
  color: #8a6425;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

.career-feature-card h3 {
  margin: 0 0 0.65rem;
  color: #14314e;
  font-size: 1.18rem;
  line-height: 1.25;
}

.career-feature-card p {
  margin: 0;
}

.career-expectations,
.career-form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}

.career-expectation-list {
  display: grid;
  gap: 0.85rem;
}

.career-expectation-list div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0 1rem 1rem;
  border-left: 3px solid #c89a54;
}

.career-expectation-list strong {
  color: #102941;
  font-size: 1.05rem;
}

.career-expectation-list span {
  color: #4a5e70;
  line-height: 1.55;
}

.career-trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(23, 52, 83, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: #173453;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 12px 26px rgba(15, 31, 52, 0.07);
}

.career-form-panel {
  position: sticky;
  top: 1rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.career-form-header {
  background:
    linear-gradient(135deg, rgba(16, 41, 65, 0.96), rgba(10, 92, 86, 0.92)),
    #102941;
  color: #ffffff;
  box-shadow: none;
}

.career-form-header h3 {
  margin: 0 0 0.65rem;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.career-form-header p,
.career-form-header .career-card-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.career-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.career-form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.career-field-group {
  display: grid;
  gap: 0.4rem;
}

.career-field-group label {
  color: #102941;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
}

.career-field-group label span {
  color: #8a6425;
}

.career-field-group label em {
  color: #637588;
  font-style: normal;
  font-weight: 700;
}

.career-field {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(23, 52, 83, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #102941;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(15, 31, 52, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.career-field:focus {
  border-color: rgba(200, 154, 84, 0.68);
  box-shadow: 0 0 0 4px rgba(200, 154, 84, 0.16), inset 0 1px 2px rgba(15, 31, 52, 0.06);
}

textarea.career-field {
  min-height: 9rem;
  resize: vertical;
}

.career-field[aria-invalid="true"] {
  border-color: rgba(185, 28, 28, 0.9);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}

.career-consent-label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(23, 52, 83, 0.1);
  border-radius: 8px;
  background: #f8fbff;
  color: #31495d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.career-consent-label input {
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  accent-color: #173453;
}

.career-privacy-note {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(200, 154, 84, 0.18);
  border-radius: 8px;
  background: rgba(200, 154, 84, 0.08);
  color: #4a5e70;
  font-size: 0.92rem;
  line-height: 1.55;
}

.career-page-premium .cf-turnstile {
  max-width: 100%;
}

.field-feedback,
.form-status {
  min-height: 1.25rem;
  margin: 0;
  color: #4a5e70;
  font-size: 0.84rem;
  line-height: 1.45;
}

.field-feedback.error,
.form-status.error {
  color: #a43d3d;
}

.field-feedback.success,
.form-status.success {
  color: #21734c;
}

.career-submit {
  min-height: 56px;
  padding: 1rem 1.45rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #173453, #16786d);
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 16px 28px rgba(23, 52, 83, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.career-submit:hover,
.career-submit:focus-visible {
  background: linear-gradient(135deg, #1d456f, #1a9184);
  outline: none;
  transform: translateY(-1px);
}

.career-submit:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.form-success-card {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(33, 115, 76, 0.2);
  border-radius: 8px;
  background: #f0fdf4;
  color: #14532d;
}

.form-success-card.is-visible {
  display: block;
}

.form-success-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.form-success-card p {
  margin: 0;
  color: #14532d;
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .career-page-premium .career-hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(3, 20, 35, 0.98) 0%, rgba(5, 32, 52, 0.88) 58%, rgba(5, 32, 52, 0.74) 100%),
      url("images/coverphoto.jpg");
    background-position: center top, center top 5.5rem;
    background-size: auto, min(100%, 760px) auto;
  }

  .career-hero-shell,
  .career-card-grid,
  .career-expectations,
  .career-form-section {
    grid-template-columns: 1fr;
  }

  .career-hero-panel {
    max-width: 560px;
  }

  .career-form-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .career-page-premium .career-hero {
    padding-bottom: 3rem;
  }

  .career-page-premium .topbar {
    align-items: stretch;
  }

  .career-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .career-hero-copy > p:not(.career-eyebrow) {
    font-size: 1.05rem;
  }

  .career-proof-row span,
  .career-trust-strip span,
  .career-cta,
  .career-cta-row {
    width: 100%;
  }

  .career-hero-video-shell {
    max-width: 100%;
    justify-items: center;
  }

  .career-hero-short-video {
    width: min(100%, 310px);
    max-height: 66vh;
  }

  .career-form-split {
    grid-template-columns: 1fr;
  }

  .career-hero-image {
    aspect-ratio: 3 / 2;
  }
}
