:root {
  --bg: #071225;
  --bg-2: #0b1f3a;
  --bg-3: #102c52;
  --text: #f6f7fb;
  --muted: rgba(246, 247, 251, 0.74);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #f5c518;
  --gold-soft: rgba(245, 197, 24, 0.16);
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 85%;
  --nav-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(58, 104, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(245, 197, 24, 0.12), transparent 22%),
    linear-gradient(180deg, #081120 0%, #08172d 38%, #071225 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 94%);
  opacity: 0.45;
  z-index: 0;
}
.loader{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(58, 104, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(245, 197, 24, 0.12), transparent 22%),
    linear-gradient(180deg, #081120 0%, #08172d 38%, #071225 100%);
  overflow-x: hidden;
    position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.loader::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 94%);
  opacity: 0.45;
  z-index: 0;
}
@keyframes rotate{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(8, 17, 32, 0.9), rgba(8, 17, 32, 0.56));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 100px;   /* adjust as needed */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  font-size: 20px;
}
.cta-headshot {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px auto 16px;
  border: 2px solid rgba(245,197,24,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #ffd84a 0%, #f5c518 56%, #d8a800 100%);
  color: #091221;
  box-shadow: 0 16px 40px rgba(245, 197, 24, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: center;
  padding: 32px 0 40px;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(245, 197, 24, 0.1), transparent 16%),
    radial-gradient(circle at 18% 75%, rgba(46, 111, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 15px;
  backdrop-filter: blur(12px);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 14px;
}

.hero-kicker,
.section-label,
.gateway-link,
.proof-signature,
.testimonial-meta,
.footer-col h4,
.footer-bottom,
.speaker-pill,
.panel-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-kicker {
  margin: 22px 0 14px;
  color: var(--muted);
  font-size: clamp(18px, 2.6vw, 28px);
}

.hero-title,
.section-title,
.hero-card-copy h2,
.panel-header h3,
.outcome-card h4,
.signature-card h3,
.gateway-card h3,
.cta-panel .section-title {
  font-family: Oswald, Inter, sans-serif;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-title {
  margin: 0;
  font-size: clamp(58px, 9vw, 80px);
  max-width: 20ch;
}

.gold {
  color: var(--gold);
}

.hero-sub,
.section-text,
.hero-card-copy p,
.feature-item p,
.outcome-card p,
.signature-card p,
.gateway-card p,
.testimonial-content blockquote,
.footer-brand-block p,
.footer-col p,
.footer-col span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-sub {
  max-width: 42ch;
  font-size: clamp(18px, 2vw, 22px);
  margin: 26px 0 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  margin-top: 28px;
  max-width: 50ch;
  padding-left: 18px;
  border-left: 2px solid rgba(245, 197, 24, 0.34);
}

.proof-quote {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.proof-signature {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.38), transparent 68%);
  top: 4%;
  right: 4%;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(46, 111, 255, 0.3), transparent 70%);
  bottom: 0;
  left: 0;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-grid-floor {
  position: absolute;
  inset: 12% 4% 4% 8%;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at center, rgba(245, 197, 24, 0.08), transparent 44%),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 58px);
  transform: perspective(1000px) rotateX(66deg);
  transform-origin: center center;
  opacity: 0.75;
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(550px, 100%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 780px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 10, 18, 0.2) 35%, rgba(5, 10, 18, 0.62) 100%);
}

.hero-card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 12px;
}
.speaker-pill,
.panel-tag {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--muted);
  background: rgba(7, 18, 37, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.connection-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.connection-mark {
  font-size: 34px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 5px;
}
.connection-text{
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 7px;
  text-transform: none;
  letter-spacing: normal;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.cta-bob-image {
  width: 600px;
  height: 400px;
  border-radius: 25%;
  object-fit: cover;
  object-position: right;
  margin: 18px auto 0;
  border: 2px solid rgba(245,197,24,0.4);
  box-shadow:
    0 0 0 4px rgba(245,197,24,0.08),
    0 20px 40px rgba(0,0,0,0.35);
}
.legacy-bridge-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.legacy-bridge-copy h2 {
  margin: 14px 0 18px;
  font-family: Oswald, sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.legacy-bridge-copy p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.8;
}
.legacy-bridge-copy{
  order: 2;
  text-align: right;
}

/* IMAGE */
.legacy-bridge-visual {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.legacy-bridge-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1200px) {
  .legacy-bridge-grid {
    grid-template-columns: 1fr;
  }

  .legacy-bridge-copy {
    text-align: center;
    order: -1;
  }

  .legacy-bridge-copy p {
    margin: 0 auto;
  }
}
.jeopardy-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.jeopardy-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.jeopardy-grid,
.jeopardy-copy,
.jeopardy-image-wrap {
  min-width: 0;
}

.jeopardy-image-wrap {
  width: 100%;
  max-width: 100%;
}

.jeopardy-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.jeopardy-copy {
  order: 1;
  text-align: left;
  margin: 0 auto;
}
.jeopardy-copy .section-title{
  width: 100%;
}
.jeopardy-section .section-text{
  font-size: 25px;
}
.jeopardy-copy .section-label,
.jeopardy-copy .section-title,
.jeopardy-copy .section-text {
  margin-left: auto;
  margin-right: auto;
}

.jeopardy-image-wrap {
  order: 2;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.jeopardy-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.jeopardy-copy .section-text strong {
  color: var(--gold);
}
.connection-mark sup {
  font-size: 25px;
  margin-left: 2px;
}
.wsgat-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.wsgat-section .section-title{
  width: 100%;
}
.wsgat-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr; /* flipped proportions */
  gap: 28px;
  align-items: center;
}

.wsgat-main {
  order: 2; /* moves title/text to the right */
    text-align: right;
}

.wsgat-card {
  order: 1; /* keeps card on the left */
  text-align: left;
}
.wsgat-main .section-label{
  font-size: 34px;
}
.wsgat-main .section-text{
  width: 100%;
}
.wsgat-points {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.wsgat-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.wsgat-point p{
  font-size: 18px;
}
.wsgat-point i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245,197,24,0.18), rgba(245,197,24,0.05));
  border: 1px solid rgba(245,197,24,0.25);
  color: var(--gold);
  font-size: 18px;
}

.wsgat-point h3 {
  margin: 0 0 8px;
  font-family: Oswald, sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.wsgat-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .wsgat-grid {
    grid-template-columns: 1fr;
  }
  .wsgat-main {
  order: 1; /* moves title/text to the right */
    text-align: right;
}
.wsgat-card {
  order: 2; /* keeps card on the left */
  text-align: left;
}
.cta-bob-image {
  width: 400px;
  height: 400px;
}
}
.hero-card-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.floating-stat {
  position: absolute;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(7, 18, 37, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  min-width: 180px;
}

.floating-stat span {
  display: block;
  font-family: Oswald, Inter, sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
}

.floating-stat small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.stat-one {
  top: 18%;
  left: 2%;
}

.stat-two {
  right: -4%;
  bottom: 12%;
}

.cred-strip {
  padding: 0 0 32px;
  margin-top: -10px;
}

.cred-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cred-item,
.intro-panel,
.signature-card,
.gateway-card,
.testimonial-wrap,
.cta-panel,
.footer-top,
.outcome-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.cred-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
}

.cred-item::before,
.signature-card::before,
.gateway-card::before,
.testimonial-wrap::before,
.cta-panel::before,
.footer-top::before {
  content: "";
  position: absolute;
  inset: auto -10% 0 auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12), transparent 70%);
  pointer-events: none;
}

.cred-item strong {
  display: block;
  font-family: Oswald, Inter, sans-serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}

.cred-item span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.section {
  padding: 30px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: start;
}

.section-label {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 16px;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 86px);
  width: 11ch;
}

.section-text {
  font-size: clamp(20px, 2vw, 20px);
  width: 62ch;
}

.section-text.narrow {
  width: 54ch;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 4px;
  background: radial-gradient(circle, #fff 0 25%, var(--gold) 26% 58%, rgba(245, 197, 24, 0.16) 59% 100%);
  box-shadow: 0 0 0 8px rgba(245, 197, 24, 0.08);
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
}

.feature-item p {
  margin: 0;
}

.intro-panel {
  border-radius: 28px;
  padding: 30px;
}

.panel-header h3 {
  margin: 16px 0 0;
  font-size: 44px;
}

.outcome-stack {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.outcome-card {
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.outcome-card .number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold);
  font-family: Oswald, Inter, sans-serif;
  font-size: 24px;
}
.framework-section {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

/* top curved connector */
.framework-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 90px;
  height: 90px;
  border-left: 2px dashed rgba(245,197,24,0.7);
  border-bottom: 2px dashed rgba(245,197,24,0.7);
  border-radius: 0 0 0 90px;
  transform: translateX(-10px);
  opacity: 0.8;
}

/* bottom curved connector */
.framework-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90px;
  height: 90px;
  border-left: 2px dashed rgba(245,197,24,0.7);
  border-top: 2px dashed rgba(245,197,24,0.7);
  border-radius: 90px 0 0 0;
  transform: translateX(-80px);
  opacity: 0.8;
}
.outcome-card h4 {
  margin: 2px 0 8px;
  font-size: 28px;
}

.outcome-card p {
  margin: 0;
  font-size: 20px;
}

.section-heading {
  margin-bottom: 30px;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.signature-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 24px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.signature-card:hover,
.gateway-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 197, 24, 0.34);
}

.signature-card small,
.gateway-number {
  display: inline-block;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.signature-card h3,
.gateway-card h3 {
  margin: 0 0 12px;
  font-size: 34px;
}
.signature-card p{
  font-size: 20px;
}

.page-gateway-section {
  padding-top: 24px;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gateway-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.gateway-card p {
  margin: 0 0 24px;
}

.gateway-link {
  margin-top: auto;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
}

.testimonial-section {
  padding-top: 24px;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 42px;
}

.testimonial-content {
  max-width: 74ch;
}

.testimonial-content blockquote {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
}

.testimonial-meta {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}
.testimonial-section {
  padding-top: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 18px;
  min-height: 100%;
}

.testimonial-card.featured {
  grid-column: span 2;
  grid-template-columns: 180px 1fr;
  align-items: center;
  padding: 28px;
}

.testimonial-headshot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,197,24,0.35);
}

.testimonial-card.featured .testimonial-headshot {
  width: 180px;
  height: 180px;
  border-radius: 22px;
}

.testimonial-content {
  display: grid;
  gap: 10px;
}

.testimonial-quote {
  margin: 0;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-size: 18px;
}

.testimonial-card.featured .testimonial-quote {
  font-size: 22px;
  line-height: 1.6;
}

.testimonial-name {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 1;
}

.testimonial-role {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card.featured {
    grid-column: span 2;
  }
  .video{
    width: 600px;
    height: 400px;
  }
}

@media (max-width: 760px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured .testimonial-headshot {
    width: 120px;
    height: 120px;
    border-radius: 20px;
  }
    .video{
    width: 280px;
    height: 200px;
  }
}
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 60px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}
.cta-panel h2{
  font-size: 50px;
  width: 18ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.cta-inline {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 20px;
  max-width: 700px; 
}

.cta-inline-btn {
  width: fit-content;
  font-family: Oswald, sans-serif;
  font-size: clamp(21px, 2vw, 28px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
 margin-top: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd84a, #f5c518);
  color: #091221;
  box-shadow: 0 14px 40px rgba(245,197,24,0.25);
  transition: all 0.25s ease;
}

.cta-inline-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(245,197,24,0.35);
}
.site-footer {
  padding: 24px 0 56px;
}

.footer-top {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 34px;
}

.footer-brand-block {
  width: 42ch;
}
.footer-brand-block p{
  font-size: 20px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-email {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h4 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
}

.footer-col a,
.footer-col span,
.footer-col p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.footer-cta-col {
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.bwd a{
 color: gold;
}
@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}
.contact-page {
  padding: 40px 0 40px;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-copy {
  padding-top: 24px;
}

.contact-title {
  margin: 0 0 18px;
  font-family: Oswald, sans-serif;
  font-size: clamp(48px, 6vw, 70px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.contact-sub {
  max-width: 40rem;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
  margin: 0 0 30px;
}

.contact-info-cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-info-card {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.panel-tag{
  font-size: 18px;
} 
.contact-info-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 17px;
}

.contact-info-card a,
.contact-info-card span {
  color: var(--text);
  font-size: 20px;
  line-height: 1.6;
}

.contact-form-panel {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.contact-form-panel h2 {
  margin: 16px 0 10px;
  font-family: Oswald, sans-serif;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form-panel p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  color: var(--text);
  padding: 16px 16px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  font-size: 16px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(245,197,24,0.45);
  background: rgba(0, 0, 0, 0.9);
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-submit {
  margin-top: 10px;
  width: fit-content;
}


.about-hero {
  padding: 40px 0 40px;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.about-title {
  margin: 0 0 20px;
  font-family: Oswald, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 13ch;
}

.about-sub {
  max-width: 40rem;
  color: var(--muted);
  font-size: 23px;
  line-height: 1.8;
  margin: 0;
}

.about-image-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.about-image {
  width: 100%;
  display: block;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.about-highlight-card {
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.about-story-section .section-text{
  font-size: 22px;
}

.highlight-stat {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.highlight-stat:last-child {
  border-bottom: none;
}

.highlight-stat strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--gold);
}
.about-values-section .section-title, .about-story-section .section-title{
 width: 16ch;
}
.highlight-stat span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 20px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.value-card h3 {
  margin: 0 0 12px;
  font-family: Oswald, sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 20px;
}

.about-quote-panel {
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.about-quote-panel blockquote {
  margin: 18px 0 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.outcome-icon {
  width: 60px;
  height: 60px;
  margin: 10px 0 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(245,197,24,0.18),
    rgba(245,197,24,0.05)
  );
  border: 1px solid rgba(245,197,24,0.25);
}
.audience-heading {
  text-align: center;
}

.audience-image {
  width: 100%;
  max-width: 450px;
  margin: 25px auto 0;
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);

}
.outcome-icon i {
  font-size: 22px;
  color: var(--gold);
}

.speaking-hero {
  padding: 40px 0 40px;
}

.speaking-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.speaking-title {
  margin: 0 0 18px;
  font-family: Oswald, sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.speaking-sub {
  max-width: 40rem;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.speaking-intro-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);

  display: grid;
  gap: 18px;
}
.audience-outcomes-grid .section-title{
  width: 100%;
}

.intro-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-headshot {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,197,24,0.4);
}

.intro-name {
  margin: 6px 0 4px;
  font-family: Oswald, sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  line-height: 1;
}

.intro-role {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.intro-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 20px;
}

.fit-grid,
.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fit-card,
.theme-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.fit-card h3,
.theme-card h3,
.audience-outcome strong {
  margin: 0 0 12px;
  font-family: Oswald, sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
    color: var(--gold);
}

.fit-card p,
.theme-card p,
.audience-outcome p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.audience-outcomes-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.audience-outcomes-list {
  display: grid;
  gap: 16px;
}

.audience-outcome {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.speaking-video-section .video-wrapper {
  margin-top: 20px;
}
.speaking-fit-section .section-title{
  width: 100%;
}
.speaking-themes-section .section-title{
  width: 100%;
}
.dotted-connect {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}

.dotted-connect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 70px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(245,197,24,0.6) 0px,
    rgba(245,197,24,0.6) 4px,
    transparent 4px,
    transparent 10px
  );
  opacity: 0.7;
}

/* BOTTOM DOTTED LINE */
.dotted-connect::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 70px;
  background: repeating-linear-gradient(
    to top,
    rgba(245,197,24,0.6) 0px,
    rgba(245,197,24,0.6) 4px,
    transparent 4px,
    transparent 10px
  );
  opacity: 0.7;
}

.strategy-hero {
  padding: 40px 0 40px;
}
.strategy-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.strategy-hero-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.strategy-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1000px) {
  .strategy-hero-inner {
    grid-template-columns: 1fr;
  }

  .strategy-hero-visual {
    order: -1; /* puts image ABOVE text */
  }
}
.strategy-title {
  margin: 0 0 18px;
  font-family: Oswald, sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.strategy-sub {
  max-width: 38rem;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}
.section-title.strat{
  width: 100%;
}

.strategy-philosophy {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.philosophy-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* TOP LINE */
.philosophy-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 5px;
  height: 70px;
  transform: translateX(-50%);

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(245,197,24,0.6),
    transparent
  );

  opacity: 0.7;
}

/* BOTTOM LINE */
.philosophy-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 5px;
  height: 70px;
  transform: translateX(-50%);

  background: linear-gradient(
    to top,
    transparent,
    rgba(245,197,24,0.6),
    transparent
  );

  opacity: 0.7;
}
.philosophy-section::before,
.philosophy-section::after {
  border-radius: 2px;
  filter: blur(0.3px);
    height: 90px;

}
.strategy-philosophy-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.8;
}

.strategy-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245,197,24,0.2), rgba(245,197,24,0.05));
  border: 1px solid rgba(245,197,24,0.25);
  margin: 0 auto 12px;
}

.step-icon i {
  font-size: 23px;
  color: var(--gold);
}
.strategy-step {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  font-family: Oswald, sans-serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
}

.strategy-step h3 {
  margin: 0 0 10px;
  font-family: Oswald, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}
.section-heading.centered .section-title{
  width: 100%;
}

.strategy-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 20px;
}
.section-title.centered{
  width: 100%;
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.application-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.application-card h3 {
  font-family: Oswald, sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  margin: 0;
  color: var(--gold);
}
.application-card p{
  font-size: 20px;
}
.strategy-book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.app-icon {
  width: 60px;
  height: 60px;
  margin: 12px 0 16px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245,197,24,0.18), rgba(245,197,24,0.05));
  border: 1px solid rgba(245,197,24,0.25);
}

.app-icon i {
  font-size: 22px;
  color: var(--gold);
}
.strategy-book-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  padding: 20px;
}

.strategy-book-image {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.strategy-book-copy .section-title {
  max-width: none;
}
.strategy-book-copy .section-text{
  font-size: 22px;
  margin: 20px 0;
}

.book-actions {
  margin-top: 24px;
}

.book-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.book-testimonial-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.book-testimonial-quote {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  font-size: 20px;
}

.book-testimonial-author {
  font-family: Oswald, sans-serif;
  font-size: 23px;
  text-transform: uppercase;
  line-height: 1;
}

.book-testimonial-role {
  margin-top: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .strategy-book-grid,
  .book-testimonial-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1100px) {
  .strategy-steps {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-title{
    width: 100%;
  }
  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strategy-hero {
  padding: 40px 0 0px;
}
}

@media (max-width: 700px) {
  .strategy-steps,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .strategy-title {
    font-size: clamp(42px, 14vw, 70px);
  }
}
@media (max-width: 1100px) {
  .speaking-hero-inner,
  .audience-outcomes-grid {
    grid-template-columns: 1fr;
  }
  .about-story-section .section-title, .about-values-section .section-title{
    width: 100%;
  }
  .fit-grid,
  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .fit-grid,
  .themes-grid {
    grid-template-columns: 1fr;
  }

  .speaking-title {
    font-size: clamp(42px, 14vw, 74px);
  }
}
@media (max-width: 1100px) {
  .about-hero-inner,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-quote-panel {
    padding: 24px;
  }

  .about-title {
    font-size: clamp(42px, 14vw, 72px);
  }
  .cta-panel h2{
    font-size: 40px;
    width: 100%;
  }
}
@media (max-width: 980px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-title {
    max-width: 12ch;
  }
  .footer-brand-block {
  width: 100%;
}
.footer-brand-block .brand{
    justify-content: center;
    width: 100%;
}
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 22px;
  }

  .contact-title {
    font-size: clamp(40px, 13vw, 64px);
  }

  .contact-submit {
    width: 100%;
  }
}
@media (max-width: 1180px) {
  .hero-grid,
  .intro-grid,
  .cta-panel,
  .footer-top {
    grid-template-columns: 1fr;
  }
:root {
    --nav-h: 74px;
  }

  .container {
    width: min(calc(100% - 22px), var(--max));
  }
  .topbar {
    height: auto;
    min-height: var(--nav-h);
  }

  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    margin-top: 14px;
    padding: 14px 16px;

    background: linear-gradient(
      180deg,
      rgba(11, 31, 58, 0.96),
      rgba(7, 18, 37, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .topbar.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 4px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }
  .signature-grid,
  .gateway-grid,
  .cred-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 660px;
  }

  .hero-card {
    position: relative;
    width: 100%;
  }

  .hero-card img {
    min-height: 660px;
  }

  .stat-two {
    right: 2%;
  }
}

  @media (max-width: 800px) {
    .section-text{
      width: 100%;
    }
    .section-text.narrow{
      width: 100%;
    }
  .hero-title {
    font-size: clamp(48px, 15vw, 96px);
  }

  .hero-visual,
  .hero-card img {
    min-height: 520px;
  }

  .cred-strip-inner,
  .signature-grid,
  .gateway-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .floating-stat {
    position: static;
    margin-top: 16px;
  }

  .hero-card-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .testimonial-wrap,
  .cta-panel,
  .footer-top,
  .intro-panel {
    padding: 24px;
  }
  .site-footer{
    text-align: center;
      padding: 24px 0 10px;
  }

  .footer-bottom {
    flex-direction: column;
  }
  .intro-headshot {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,197,24,0.4);
}
  .intro-top {
    flex-direction: column;
    align-items: center; 
    text-align: center;
  }

  }