@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-950: #061221;
  --navy-900: #0b1d35;
  --navy-875: #0f2541;
  --navy-850: #102742;
  --navy-800: #14304f;
  --navy-700: #1b426b;
  --gold-600: #b78d49;
  --gold-500: #caa55b;
  --gold-400: #e0c279;
  --gold-300: #f0ddb0;
  --gold-200: #f8eacc;
  --gold-soft: rgba(202, 165, 91, 0.18);
  --cream: #f4efe3;
  --ivory: #fbf8f1;
  --white: #ffffff;
  --text: #1f2833;
  --muted: #5c6573;
  --line: rgba(16, 39, 66, 0.12);
  --shadow-xl: 0 30px 80px rgba(5, 19, 37, 0.18);
  --shadow-lg: 0 24px 70px rgba(5, 19, 37, 0.16);
  --shadow-md: 0 16px 40px rgba(7, 21, 39, 0.1);
  --radius-xxl: 34px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224, 194, 121, 0.1), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(20, 48, 79, 0.08), transparent 20%),
    linear-gradient(180deg, #f5efe3 0%, #fbf8f1 36%, #f8f4ea 100%);
  line-height: 1.6;
}

h1, h2, h3, h4, .headline, .page-title, .brand-text strong, .hero-subheadline {
  font-family: "League Spartan", Arial, sans-serif;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(6, 18, 33, 0.96), rgba(11, 29, 53, 0.92));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 194, 121, 0.18);
  box-shadow: 0 8px 28px rgba(5, 19, 37, 0.18);
}

.nav {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-mark {
  width: 14px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 0 30px rgba(224, 194, 121, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}

.brand-text em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links > a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links > a:not(.btn):hover,
.nav-links > a.active {
  background: rgba(224, 194, 121, 0.12);
  color: var(--gold-300);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn::after,
.premium-card::after,
.resource-card::after,
.topic-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(224, 194, 121, 0.2), transparent);
  transition: left 0.75s ease;
  pointer-events: none;
}

.btn:hover::after,
.premium-card:hover::after,
.resource-card:hover::after,
.topic-card:hover::after {
  left: 135%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 12px 26px rgba(202, 165, 91, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 30px rgba(202, 165, 91, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(202, 165, 91, 0.42);
  color: var(--navy-900);
  box-shadow: inset 0 0 0 1px rgba(224, 194, 121, 0.08);
}

.btn-secondary:hover {
  background: rgba(202, 165, 91, 0.08);
}

.btn-tertiary,
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
  border-color: rgba(11, 29, 53, 0.08);
}

.hero {
  padding: 96px 0 76px;
}

.hero-home-polished {
  position: relative;
  overflow: hidden;
}

.hero-home-polished::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(224, 194, 121, 0.14), transparent 23%),
    radial-gradient(circle at 84% 34%, rgba(20, 48, 79, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-topline {
  max-width: 1180px;
  margin-bottom: 34px;
  position: relative;
}

.eyebrow,
.section-kicker,
.billing-label,
.panel-label,
.resource-tag,
.dark-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow,
.section-kicker,
.billing-label,
.panel-label,
.resource-tag {
  color: var(--gold-600);
}

.dark-kicker {
  color: rgba(11, 29, 53, 0.72);
}

.headline-brand {
  color: var(--navy-900);
  font-size: clamp(3.2rem, 5vw, 6rem);
  line-height: 0.94;
  margin: 14px 0 12px;
}

.headline-wide {
  max-width: none;
  width: 100%;
}

.page-title {
  color: var(--navy-900);
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  line-height: 0.96;
  margin: 14px 0 10px;
  max-width: 11ch;
}

.page-title-speaking {
  max-width: 11ch;
}

.gold-stroke {
  height: 14px;
  background: linear-gradient(90deg, rgba(183, 141, 73, 0.95), rgba(224, 194, 121, 0.7), rgba(183, 141, 73, 0.85));
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='100' viewBox='0 0 1200 100'><path d='M5 62 C90 48, 170 70, 260 58 S445 42, 550 55 S755 68, 860 54 S1035 43, 1195 57 L1195 90 L5 90 Z' fill='black'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='100' viewBox='0 0 1200 100'><path d='M5 62 C90 48, 170 70, 260 58 S445 42, 550 55 S755 68, 860 54 S1035 43, 1195 57 L1195 90 L5 90 Z' fill='black'/></svg>");
  mask-size: cover;
  -webkit-mask-size: cover;
  opacity: 0.95;
  position: relative;
  overflow: hidden;
}

.gold-stroke::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%);
  animation: shimmerStroke 7s ease-in-out infinite;
}

.gold-stroke-hero {
  width: min(100%, 320px);
  margin: 12px 0 0;
}

.gold-stroke-page {
  width: min(100%, 280px);
  margin: 10px 0 20px;
}

.gold-stroke-section {
  width: min(100%, 220px);
  margin-top: 12px;
}

.gold-stroke-dark {
  width: min(100%, 220px);
  margin-top: 12px;
}

.narrow-stroke {
  width: 160px;
}

@keyframes shimmerStroke {
  0%, 100% { transform: translateX(-120%); }
  45%, 55% { transform: translateX(120%); }
}

.hero-lower-grid,
.page-hero-grid,
.statement-grid,
.two-column-feature,
.authority-home-grid,
.resource-rail,
.cta-card,
.footer-grid,
.two-column-layout,
.value-grid,
.service-grid,
.speaking-reason-grid,
.topic-grid,
.speaking-value-grid,
.speaking-hero-grid,
.conversion-panel {
  display: grid;
  gap: 24px;
}

.hero-lower-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: start;
  margin-top: 10px;
}

.hero-lower-copy {
  padding-top: 8px;
  max-width: 680px;
}

.hero-subheadline {
  font-size: clamp(1.5rem, 2.1vw, 2.35rem);
  line-height: 1.02;
  color: var(--navy-900);
  margin: 0 0 16px;
}

.hero-intro,
.hero-support,
.statement-text,
.feature-panel p,
.resource-body p,
.cta-card p,
.authority-home-text,
.page-intro,
.service-card p,
.value-grid p,
.topic-card p,
.fine-note {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-intro-tight {
  max-width: 620px;
  margin-bottom: 14px;
}

.hero-support {
  max-width: 620px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-lower-visual,
.hero-visual,
.authority-home-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.portrait-frame {
  position: relative;
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(10, 25, 45, 0.98), rgba(24, 58, 94, 0.9));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(240, 221, 176, 0.45);
  border-radius: 24px;
  pointer-events: none;
}

.portrait-frame-hero {
  width: min(100%, 470px);
  aspect-ratio: 4 / 4.7;
  margin-top: -14px;
}

.portrait-frame-secondary {
  width: min(100%, 520px);
  aspect-ratio: 4 / 3.35;
}

.portrait-frame-page-main {
  width: min(100%, 430px);
  aspect-ratio: 4 / 4.65;
}

.portrait-frame-speaking-small {
  width: min(100%, 320px);
  aspect-ratio: 4 / 4.4;
}

.page-secondary-frame {
  width: min(100%, 500px);
  aspect-ratio: 4 / 3.35;
}

.portrait-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(224, 194, 121, 0.35), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 55%);
  pointer-events: none;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #0e2138;
}

.hero-portrait-raised {
  object-position: center 12%;
}

.page-portrait-main {
  object-position: center 15%;
}

.speaking-portrait-main {
  object-position: center 12%;
}

.speaking-portrait-alt {
  object-position: 36% center;
}

.secondary-portrait {
  object-position: center center;
}

.billing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.billing-card,
.premium-card,
.feature-panel,
.resource-card,
.topic-card,
.service-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 39, 66, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.premium-card:hover,
.resource-card:hover,
.topic-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(202, 165, 91, 0.45);
}

.billing-card,
.feature-panel {
  padding: 28px;
}

.service-card {
  padding: 0;
}

.service-card-clean {
  display: block;
}

.service-card-inner {
  width: 100%;
  padding: 30px 32px 28px;
}

.billing-card h2,
.feature-panel h3,
.resource-body h3,
.authority-home-copy h2,
.service-card h3,
.value-grid h3,
.topic-card h3 {
  color: var(--navy-900);
  line-height: 1.06;
  margin: 8px 0 10px;
}

.billing-card h2 {
  font-size: 1.55rem;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--navy-800);
  font-weight: 700;
  position: relative;
}

.text-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 4px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}

.text-link:hover {
  color: var(--gold-600);
}

.text-link:hover::after {
  width: 100%;
}

.statement-band,
.speaking-value-band {
  background: linear-gradient(180deg, rgba(10, 24, 43, 0.98), rgba(15, 35, 59, 0.98));
  color: var(--white);
}

.statement-grid,
.speaking-value-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.statement-band h2,
.speaking-value-band h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.statement-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.cta-card h2,
.conversion-panel h2 {
  margin: 10px 0 0;
  color: var(--navy-900);
  line-height: 1.04;
  font-size: clamp(2rem, 3vw, 3rem);
}

.two-column-feature {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  font-weight: 800;
  margin-bottom: 20px;
}

.feature-list {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 0 0 4px rgba(202, 165, 91, 0.12);
}

.larger-list li {
  margin-bottom: 16px;
}

.brush-divider-section {
  padding: 8px 0 0;
}

.brush-divider {
  height: 26px;
  background: linear-gradient(90deg, rgba(8, 26, 47, 1), rgba(25, 58, 96, 0.95), rgba(202, 165, 91, 0.95));
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1400' height='120' viewBox='0 0 1400 120'><path d='M10 75 C120 60, 220 88, 330 70 S560 52, 700 66 S920 92, 1090 64 S1260 48, 1390 62 L1390 110 L10 110 Z' fill='black'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1400' height='120' viewBox='0 0 1400 120'><path d='M10 75 C120 60, 220 88, 330 70 S560 52, 700 66 S920 92, 1090 64 S1260 48, 1390 62 L1390 110 L10 110 Z' fill='black'/></svg>");
  mask-size: cover;
  -webkit-mask-size: cover;
  opacity: 0.96;
}

.authority-home-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: center;
}

.authority-home-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-top: 10px;
}

.authority-home-text {
  margin-top: 16px;
  max-width: 680px;
}

.resources-section {
  position: relative;
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.resource-card {
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.resource-image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 39, 66, 0.08);
  background: #e9e2d2;
}

.resource-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-body {
  padding: 18px 18px 20px;
}

.resource-body h3 {
  margin: 4px 0 8px;
  font-size: 1.3rem;
  line-height: 1.05;
}

.resource-body p {
  font-size: 0.96rem;
  line-height: 1.5;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.download-links a {
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--navy-800);
}

.download-links a:hover {
  color: var(--gold-600);
}

.resource-rail,
.authority-strip {
  margin-top: 22px;
  padding: 26px 28px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.resource-rail-actions,
.authority-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.page-hero {
  padding: 92px 0 48px;
}

.page-hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.polished-page-grid {
  gap: 34px;
}

.hero-visual-page {
  justify-content: flex-end;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-clean {
  align-items: stretch;
}

.dark-section {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-850));
  color: var(--white);
}

.light-heading h2,
.light-heading .section-kicker,
.dark-section h3 {
  color: var(--white);
}

.dark-section p,
.topic-card p {
  color: rgba(255, 255, 255, 0.78);
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid article {
  padding: 28px;
  border: 1px solid rgba(224, 194, 121, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.two-column-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.pricing-box {
  padding: 20px 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 39, 66, 0.08);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  color: var(--navy-900);
  text-align: right;
}

.speaking-hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.speaking-hero-grid-refined {
  gap: 18px 34px;
}

.speaking-hero-visual {
  justify-content: center;
}

.speaking-hero-copy .page-intro {
  max-width: 620px;
}

.speaking-proof-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.proof-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(202, 165, 91, 0.22);
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(7, 21, 39, 0.06);
}

.speaking-reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.topic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.topic-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(224, 194, 121, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.topic-card h3 {
  color: var(--white);
}

.speaking-conversion-section {
  padding-top: 18px;
}

.conversion-panel {
  padding: 32px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.conversion-actions {
  display: grid;
  gap: 12px;
  align-content: center;
}

.cta-section {
  padding-top: 24px;
}

.cta-card {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 22px 50px rgba(155, 116, 40, 0.2);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.cta-card h2 {
  color: var(--navy-950);
}

.cta-card p {
  color: rgba(11, 29, 53, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.premium-footer {
  background: linear-gradient(180deg, #081a2f, #0b1d35);
  color: rgba(255,255,255,0.85);
  padding-top: 60px;
  border-top: 1px solid rgba(202,165,91,0.25);
  margin-top: 40px;
  position: relative;
}

.premium-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.9fr 1fr 0.9fr;
}

.footer-grid-simple {
  grid-template-columns: 1.3fr 0.9fr 1fr 0.9fr;
}

.footer-brand h3 {
  letter-spacing: 0.18em;
  color: white;
  margin-top: 0;
  margin-bottom: 12px;
}

.footer-tagline {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold-400);
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.76);
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-contact p {
  margin: 6px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
}

@media (max-width: 1180px) {
  .headline-brand {
    font-size: clamp(2.9rem, 5vw, 5.2rem);
  }

  .hero-lower-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 28px;
  }

  .portrait-frame-hero {
    width: min(100%, 420px);
    margin-top: -8px;
  }

  .resource-grid-compact,
  .service-grid-three,
  .speaking-reason-grid,
  .footer-grid,
  .footer-grid-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-lower-grid,
  .page-hero-grid,
  .statement-grid,
  .two-column-feature,
  .authority-home-grid,
  .resource-rail,
  .authority-strip,
  .cta-card,
  .two-column-layout,
  .speaking-hero-grid,
  .speaking-value-grid,
  .conversion-panel {
    grid-template-columns: 1fr;
  }

  .hero-lower-visual,
  .hero-visual-page,
  .authority-home-visual,
  .speaking-hero-visual {
    justify-content: center;
  }

  .portrait-frame-hero {
    margin-top: 0;
  }

  .resource-rail-actions,
  .authority-actions,
  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }

  .headline-brand,
  .page-title {
    max-width: none;
  }

  .billing-grid,
  .resource-grid-compact,
  .footer-grid,
  .footer-grid-simple,
  .service-grid,
  .value-grid,
  .speaking-reason-grid,
  .topic-grid,
  .service-grid-three {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .portrait-frame-hero {
    width: min(100%, 380px);
    aspect-ratio: 4 / 4.9;
  }

  .portrait-frame-secondary,
  .page-secondary-frame {
    width: min(100%, 440px);
    aspect-ratio: 4 / 3.5;
  }

  .portrait-frame-page-main {
    width: min(100%, 360px);
    aspect-ratio: 4 / 4.8;
  }

  .portrait-frame-speaking-small {
    width: min(100%, 300px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .headline-brand,
  .page-title,
  .section-heading h2,
  .statement-band h2,
  .speaking-value-band h2,
  .cta-card h2,
  .conversion-panel h2,
  .authority-home-copy h2 {
    line-height: 0.98;
  }

  .headline-brand {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-subheadline {
    font-size: clamp(1.2rem, 6vw, 1.7rem);
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .resource-rail-actions,
  .authority-actions,
  .cta-actions {
    flex-direction: column;
  }

  .billing-card,
  .feature-panel,
  .resource-rail,
  .authority-strip,
  .cta-card,
  .conversion-panel,
  .service-card-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .resource-body {
    padding: 18px 16px 18px;
  }

  .service-card-inner {
    padding: 24px 22px 22px;
  }

  .portrait-frame-hero {
    width: min(100%, 360px);
    aspect-ratio: 4 / 5;
  }

  .hero-portrait-raised,
  .speaking-portrait-main,
  .speaking-portrait-alt {
    object-position: center 14%;
  }

  .proof-chip {
    width: 100%;
  }
}