/* Dan Whigham personal site — midnight navy + soft gold/amber + off-white */
:root {
  --navy: #0b1c2d;
  --navy-deep: #071421;
  --navy-mid: #122a40;
  --navy-card: #163048;
  --navy-elev: #1a3752;
  --gold: #c9a227;
  --gold-soft: #d4b84a;
  --gold-light: #e8d48b;
  --amber: #d4a017;
  --amber-glow: rgba(201, 162, 39, 0.22);
  --offwhite: #f7f4ef;
  --cream: #faf8f4;
  --text: #f7f4ef;
  --text-muted: #a8b8c8;
  --text-dim: #7a8fa3;
  --text-dark: #0b1c2d;
  --text-dark-muted: #4a5d6e;
  --border: rgba(201, 162, 39, 0.18);
  --border-subtle: rgba(247, 244, 239, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 18px 50px rgba(7, 20, 33, 0.45);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy-deep);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Mockup chip —— */
.mockup-chip {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1000;
  background: rgba(201, 162, 39, 0.95);
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px var(--amber-glow);
}

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7, 20, 33, 0.82);
  border-bottom: 1px solid var(--border-subtle);
}

.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--offwhite);
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-size: 0.9rem;
}
.nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--gold-soft); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--navy-deep) !important;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem !important;
}
.nav-cta:hover { filter: brightness(1.08); color: var(--navy-deep) !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--navy-deep);
  box-shadow: 0 8px 28px var(--amber-glow);
}
.btn-primary:hover { filter: brightness(1.06); color: var(--navy-deep); }
.btn-secondary {
  background: transparent;
  color: var(--offwhite);
  border: 1.5px solid rgba(201, 162, 39, 0.45);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201, 162, 39, 0.08); }
.btn-ghost {
  background: var(--offwhite);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--cream); color: var(--navy); }

/* —— Hero —— */
.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto -10%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.12), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.hero h1 .gold { color: var(--gold-soft); }
.roles {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero-note {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* —— Hero portrait —— */
.hero-visual {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}
.hero-portrait {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: var(--navy-mid);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.hero-card-compact {
  width: 100%;
  padding: 1.25rem 1.35rem;
}
.hero-card-compact .path-item { padding: 0.85rem 0.95rem; }
.hero-card-compact .path-item span { font-size: 0.86rem; }

.hero-card {
  background: linear-gradient(160deg, var(--navy-card), var(--navy-mid));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.hero-card h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.path-list { display: grid; gap: 0.85rem; }
.path-item {
  background: rgba(7, 20, 33, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.path-item strong {
  display: block;
  color: var(--offwhite);
  margin-bottom: 0.25rem;
}
.path-item span { font-size: 0.88rem; color: var(--text-muted); }

/* —— Marquee —— */
.marquee-wrap {
  border-block: 1px solid var(--border-subtle);
  background: var(--navy);
  overflow: hidden;
  padding: 0.95rem 0;
}
.marquee {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scroll 32s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.9;
}
.marquee span::after {
  content: "·";
  margin-left: 2.5rem;
  color: var(--text-dim);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* —— Sections —— */
section { padding: 4.5rem 0; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  max-width: 38rem;
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
}

/* —— Proof strip —— */
.proof {
  background: var(--cream);
  color: var(--text-dark);
  padding: 3.5rem 0;
}
.proof .section-label { color: var(--amber); }
.proof .section-title { color: var(--navy); }
.proof .section-sub { color: var(--text-dark-muted); }
.illustrative-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(201, 162, 39, 0.2);
  color: #8a6d12;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.proof-card {
  background: #fff;
  border: 1px solid rgba(11, 28, 45, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  box-shadow: 0 8px 28px rgba(11, 28, 45, 0.06);
}
.proof-card .stat {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.proof-card .stat span { color: var(--gold); }
.proof-card p {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.45;
}
.proof-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  max-width: 48rem;
  padding: 1rem 1.15rem;
  background: rgba(201, 162, 39, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* —— Cards (SETR for / building) —— */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}
.feature-card .icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: var(--amber-glow);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--offwhite);
}
.feature-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.mid-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.mid-cta p { color: var(--text-muted); font-size: 0.95rem; }

/* —— Building —— */
.building { background: var(--navy); }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.build-card {
  background: linear-gradient(165deg, var(--navy-elev), var(--navy-mid));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.45rem;
}
.build-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.build-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}
.build-card p { color: var(--text-muted); font-size: 0.95rem; }

/* —— FAQ —— */
.faq-list { display: grid; gap: 0.75rem; max-width: 720px; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 650;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* —— Dual paths —— */
.dual {
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
}
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.dual-card {
  border-radius: calc(var(--radius) + 2px);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dual-card.agents {
  background: var(--navy-card);
  border: 1px solid var(--border);
}
.dual-card.families {
  background: var(--cream);
  color: var(--text-dark);
  border: 1px solid rgba(11, 28, 45, 0.08);
}
.dual-card.families h3,
.dual-card.families .section-label { color: var(--navy); }
.dual-card.families p { color: var(--text-dark-muted); }
.dual-card.families .section-label { color: var(--amber); }
.dual-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.25rem 0 0.5rem;
}
.dual-card li {
  font-size: 0.92rem;
  padding-left: 1.15rem;
  position: relative;
  color: inherit;
  opacity: 0.9;
}
.dual-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.dual-card.families li::before { color: var(--amber); }
.dual-card .btn { margin-top: auto; align-self: flex-start; }

/* —— About —— */
.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 162, 39, 0.08);
  background: var(--navy);
  aspect-ratio: 1 / 1;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-copy p:last-child { margin-bottom: 0; }

/* —— Placeholder quotes —— */
.placeholders {
  margin-top: 2.5rem;
}
.placeholders .section-label { margin-bottom: 1rem; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.quote-card {
  background: rgba(22, 48, 72, 0.6);
  border: 1px dashed rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.quote-card .badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--amber-glow);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.quote-card blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.85rem;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0 3rem;
  background: var(--navy-deep);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer-brand strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  max-width: 22rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
}
.footer-links a { color: var(--text-muted); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .dual-grid,
  .cards-3,
  .proof-grid { grid-template-columns: 1fr; }
  .cards-4,
  .quote-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    align-items: stretch;
  }
  .nav-toggle { display: block; }
  .site-nav .inner { position: relative; }
}

@media (max-width: 560px) {
  .proof-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .container { width: min(100% - 1.5rem, var(--max)); }
}

/* —— Triple path grid —— */
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.dual-card.join {
  background: linear-gradient(165deg, var(--navy-elev), var(--navy-card));
  border: 1px solid var(--border);
  position: relative;
}
.dual-card.join::after {
  content: "Agents";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
}

/* —— Join the team band —— */
.join-band {
  background: var(--cream);
  color: var(--text-dark);
  padding: 4rem 0;
}
.join-band .section-label { color: var(--amber); }
.join-band .section-title { color: var(--navy); }
.join-band .section-sub { color: var(--text-dark-muted); }
.join-band-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.join-band-points ul {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.join-band-points li {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.45;
}
.join-band-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

/* —— Shared form page bits (also used if quote.css imports patterns) —— */
.form-page-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy-deep);
}
.form-main { flex: 1; padding: 3rem 0 4rem; }
.form-shell {
  max-width: 520px;
  margin: 0 auto;
}
.form-shell.wide { max-width: 560px; }
.form-card {
  background: linear-gradient(165deg, var(--navy-card), var(--navy-mid));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem 1.85rem;
  box-shadow: var(--shadow);
}
.form-card h1 {
  font-size: clamp(1.55rem, 4vw, 1.95rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.form-card .form-sub {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(7, 20, 33, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--offwhite);
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a227' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}
.field textarea { min-height: 100px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.field .hint {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}
.form-actions { margin-top: 1.25rem; }
.form-actions .btn { width: 100%; }
.trust-line {
  margin-top: 1.15rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.45;
}
.form-thanks {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.form-thanks.is-visible { display: block; }
.form-card.is-submitted .form-fields { display: none; }
.form-thanks h2 {
  color: var(--gold-soft);
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}
.form-thanks p { color: var(--text-muted); margin-bottom: 1.25rem; }
.back-home {
  display: inline-flex;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.back-home:hover { color: var(--gold-soft); }
.mini-nav {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mini-nav .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.chip-row span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--amber-glow);
  border: 1px solid var(--border);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}

@media (max-width: 900px) {
  .triple-grid,
  .join-band-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
}


/* Insurance highlights + licensing CTAs */
.ins-highlights {
  list-style: none;
  margin: 1rem 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.ins-highlights li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.ins-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}
.ins-actions,
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}
.build-card .ins-actions { margin-top: 0.35rem; }
.about-actions { margin-top: 1.25rem; }

/* Soften mockup chip now that domain is owned */
.mockup-chip {
  background: rgba(11, 28, 45, 0.92);
  color: var(--gold-soft);
  border: 1px solid var(--border);
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
}


/* Calendly embeds */
.calendly-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-subtle);
}
.calendly-frame-wrap {
  margin-top: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy-mid);
  box-shadow: var(--shadow);
}
.calendly-inline-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--offwhite);
}
.or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
