:root {
  --ink: #23234a;
  --ink-2: #2e2e5c;
  --muted: #5d627e;
  --paper: #ecf7f7;
  --paper-2: #ddefef;
  --white: #ffffff;
  --line: rgba(35, 35, 74, 0.12);
  --blue: #333366;
  --blue-dark: #23234a;
  --red: #e0642f;
  --green: #2ea3f2;
  --gold: #d2a64a;
  --stage: #15152d;
  --stage-2: #313163;
  --shadow: 0 24px 70px rgba(16, 18, 23, 0.14);
  --soft-shadow: 0 14px 40px rgba(16, 18, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f6fbfb 0%, var(--paper) 46%, #f1f8f8 100%);
  font-family: "Aptos", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 21, 29, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(8, 10, 14, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn,
.nav-links .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(17, 19, 24, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(17, 19, 24, 0.18);
}

.btn.secondary {
  border-color: rgba(17, 19, 24, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.btn.blue,
.nav-links .btn.blue {
  background: linear-gradient(135deg, #333366, #3d3d7a);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--stage);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 14, 0.76) 0%, rgba(7, 9, 14, 0.5) 48%, rgba(7, 9, 14, 0.18) 100%),
    rgba(9, 12, 18, 0.22);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(9, 12, 18, 0.84));
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  overflow: hidden;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 42%;
  transform: scale(1.02);
  filter: saturate(0.96) contrast(1.04);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  width: min(1200px, calc(100% - 36px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(74px, 11vw, 132px) 0 clamp(34px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.talk-hero .eyebrow,
.dark .eyebrow {
  color: #7cc6f5;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  hyphens: none;
}

h1 {
  max-width: 950px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 9.2vw, 8rem);
  font-weight: 740;
}

h2 {
  max-width: 930px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  font-weight: 730;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #383d5e;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.34);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .btn.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(780px, 100%);
  margin-top: 52px;
}

.proof-item {
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.085);
  backdrop-filter: blur(14px);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-tag {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  top: clamp(18px, 4vw, 46px);
  z-index: 3;
  max-width: 360px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-tag strong {
  display: block;
  margin-bottom: 4px;
}

.section {
  position: relative;
  padding: clamp(66px, 9vw, 120px) 0;
}

.section.white {
  background: var(--white);
}

.section.dark {
  background:
    linear-gradient(115deg, rgba(49, 49, 99, 0.05), rgba(49, 49, 99, 0.85)),
    var(--stage);
  color: var(--white);
}

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

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content h2 {
  margin: 2.2em 0 0.6em;
  font-size: 1.3rem;
  color: var(--ink);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-content ul {
  padding-left: 1.2em;
}

.legal-content a {
  color: var(--blue);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature,
.talk-card,
.quote,
.reference-slot,
.contact-panel,
.form-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.feature::before,
.talk-card::before,
.quote::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
}

.feature,
.talk-card,
.quote,
.reference-slot {
  padding: clamp(22px, 3vw, 34px);
}

.feature .num,
.talk-card .label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 24px;
  border-radius: 8px;
  padding: 0 11px;
  background: rgba(46, 163, 242, 0.12);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature p,
.talk-card p,
.quote p,
.reference-slot p {
  margin: 14px 0 0;
  color: var(--muted);
}

.dark .quote,
.dark .reference-slot {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.dark .quote p,
.dark .reference-slot p {
  color: rgba(255, 255, 255, 0.72);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 0;
  background: var(--stage);
  color: var(--white);
}

.image-band img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 0% 50%;
  filter: saturate(1.03) contrast(1.02);
}

.image-credit {
  z-index: 1;
  grid-area: 1 / 1;
  align-self: end;
  justify-self: end;
  margin: 0 14px 12px 0;
  border-radius: 4px;
  padding: 4px 10px;
  background: rgba(10, 13, 20, 0.45);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.image-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 86px);
  background:
    linear-gradient(115deg, rgba(49, 49, 99, 0.05), rgba(49, 49, 99, 0.85)),
    var(--stage);
}

.image-band-copy .lead {
  color: rgba(255, 255, 255, 0.82);
}

.list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 32px;
}

.list li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  border: 4px solid rgba(46, 163, 242, 0.22);
  background: var(--green);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: auto 18px 18px;
  height: 6px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story p {
  color: #383d5e;
  font-size: 1.07rem;
}

.story p:first-of-type {
  font-size: 1.23rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.72fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(56px, 9vw, 112px) 0;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.about-portrait img {
  aspect-ratio: 4 / 5.25;
}

.about-copy p {
  color: #383d5e;
  font-size: 1.08rem;
}

.about-copy p:first-of-type {
  font-size: 1.22rem;
}

.page-hero img {
  width: 100%;
  min-height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.talk-hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: calc(100vh - 76px);
  aspect-ratio: 1.6 / 1;
  max-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--stage);
  color: var(--white);
  isolation: isolate;
}

.talk-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 13, 20, 0.9) 0%, rgba(10, 13, 20, 0.64) 48%, rgba(10, 13, 20, 0.22) 100%),
    linear-gradient(0deg, rgba(10, 13, 20, 0.74), rgba(10, 13, 20, 0.08));
  content: "";
  pointer-events: none;
}

.talk-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(1.03) contrast(1.02) brightness(1.12);
}

.seminar-hero img {
  object-position: center 42%;
}

.seminar-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 13, 20, 0.9) 0%, rgba(10, 13, 20, 0.64) 52%, rgba(10, 13, 20, 0.26) 100%),
    linear-gradient(0deg, rgba(10, 13, 20, 0.78), rgba(10, 13, 20, 0.04));
}

.about-hero img {
  object-position: 62% center;
}

.about-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 13, 20, 0.9) 0%, rgba(10, 13, 20, 0.66) 50%, rgba(10, 13, 20, 0.24) 100%),
    linear-gradient(0deg, rgba(10, 13, 20, 0.78), rgba(10, 13, 20, 0.05));
}

.contact-hero img {
  object-position: 70% center;
}

.contact-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 13, 20, 0.92) 0%, rgba(10, 13, 20, 0.66) 52%, rgba(10, 13, 20, 0.24) 100%),
    linear-gradient(0deg, rgba(10, 13, 20, 0.78), rgba(10, 13, 20, 0.04));
}

.talk-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(1200px, calc(100% - 36px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 128px) 0;
}

.talk-hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(3.1rem, 7.8vw, 7.35rem);
}

.talk-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.talk-hero .btn.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: none;
}

.talk-hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 46px;
}

.talk-hero-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.085);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 780;
  backdrop-filter: blur(14px);
}

.signature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: stretch;
}

.signature-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signature-title p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.16rem;
}

.signature-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(145deg, rgba(51, 51, 102, 0.08), rgba(46, 163, 242, 0.07)),
    #fcfdf9;
  box-shadow: var(--shadow);
}

.signature-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
}

.signature-panel .label {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 6px 12px;
  background: rgba(46, 163, 242, 0.12);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-panel p {
  margin: 0;
  color: #383d5e;
  font-size: 1.12rem;
}

.seminar-panel {
  background:
    linear-gradient(145deg, rgba(46, 163, 242, 0.1), rgba(51, 51, 102, 0.07)),
    #fcfdf9;
}

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

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

.h1-sub {
  display: block;
  font-size: 0.62em;
  font-weight: 650;
  opacity: 0.92;
}

.topic-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.09);
  border-radius: 8px;
  padding: 26px 26px 56px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.topic-card::after {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 86px;
  height: 5px;
  border-radius: 8px;
  background: var(--blue);
  content: "";
}

.topic-card:nth-child(2)::after {
  background: var(--red);
}

.topic-card:nth-child(3)::after {
  background: var(--green);
}

.topic-card:nth-child(4)::after {
  background: var(--gold);
}

.seminar-modules .topic-card {
  min-height: 300px;
}

.about-grid .topic-card {
  min-height: 315px;
}

.topic-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1;
}

.topic-card h3 {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.topic-card p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--muted);
}

.talk-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.84fr);
  background: var(--stage);
  color: var(--white);
}

.talk-flow-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.98) contrast(1.05);
}

.seminar-flow .talk-flow-image img {
  object-position: 0% 50%;
  filter: saturate(1.03) contrast(1.02);
}

.talk-flow-image {
  position: relative;
}

.talk-flow-image .image-credit {
  position: absolute;
  right: 14px;
  bottom: 12px;
  margin: 0;
}

.about-flow .talk-flow-image img {
  object-position: 66% center;
}

.talk-flow-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 88px);
  background:
    linear-gradient(115deg, rgba(49, 49, 99, 0.05), rgba(49, 49, 99, 0.85)),
    var(--stage);
}

.talk-flow-copy .lead {
  color: rgba(255, 255, 255, 0.76);
}

.flow-steps {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.flow-steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.075);
}

.flow-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.flow-steps span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
}

.format-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.format-cards article {
  border: 1px solid rgba(17, 19, 24, 0.09);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.format-cards span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.format-cards h3 {
  color: inherit;
}

.format-cards p {
  color: var(--muted);
}

.dark .format-cards article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  box-shadow: none;
}

.dark .format-cards span {
  color: #7cc6f5;
}

.dark .format-cards p {
  color: rgba(255, 255, 255, 0.72);
}

.talk-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(120deg, rgba(51, 51, 102, 0.08), rgba(46, 163, 242, 0.07)),
    #fcfdf9;
  box-shadow: var(--shadow);
}

.talk-cta::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--green));
  content: "";
}

.talk-cta > * {
  position: relative;
  z-index: 1;
}

.seminar-cta::after {
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.about-cta::after {
  background: linear-gradient(180deg, var(--red), var(--blue), var(--green));
}

.about-profile {
  max-width: none;
}

.about-profile p {
  font-size: 1.16rem;
}

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

.press-photo {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.press-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.press-photo figcaption {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 20px;
}

.press-photo strong {
  color: var(--white);
}

.press-photo span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
}

.press-photo .btn {
  margin-top: auto;
  align-self: flex-start;
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 820px) {
  .press-photos {
    grid-template-columns: 1fr;
  }

  .press-photo {
    flex-direction: row;
  }

  .press-photo img {
    width: 42%;
    height: auto;
  }
}

.seminar-more {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 20px 24px;
  background: rgba(46, 163, 242, 0.06);
}

.seminar-more p {
  margin: 0;
  color: var(--muted);
}

.seminar-more strong {
  color: var(--ink);
}

.talk-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.format-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.format-row:last-child {
  border-bottom: 1px solid var(--line);
}

.format-row strong {
  color: var(--blue);
  font-size: 1.08rem;
}

.format-row p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
}

.contact-panel,
.form-panel {
  padding: clamp(24px, 4vw, 42px);
}

.contact-panel {
  background:
    linear-gradient(155deg, rgba(51, 51, 102, 0.08), rgba(46, 163, 242, 0.07)),
    var(--white);
}

.contact-direct {
  position: sticky;
  top: 104px;
  background:
    linear-gradient(155deg, rgba(51, 51, 102, 0.08), rgba(46, 163, 242, 0.07)),
    #fcfdf9;
}

.contact-direct p:not(.eyebrow) {
  color: var(--muted);
}

.contact-methods {
  margin: 24px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.contact-line {
  display: block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.contact-line:first-child {
  margin-top: 0;
}

.contact-form-card {
  background: #fcfdf9;
}

.contact-form-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
}

.form-intro {
  margin-bottom: 26px;
}

.form-intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.contact-info-cards article {
  border-color: rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}

.contact-info-cards span {
  color: var(--blue);
}

.contact-info-cards p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #383d5e;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd5cb;
  border-radius: 8px;
  padding: 14px 13px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 163, 242, 0.18);
}

textarea {
  min-height: 142px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.reference-slot {
  min-height: 144px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.06);
}

.footer {
  background: #10131a;
  color: var(--white);
  padding: 42px 0;
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

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

.legal-links {
  font-size: 0.88rem;
}

.legal-links a {
  opacity: 0.8;
}

.quote-single {
  max-width: 780px;
  margin: 0 auto;
}

.quote {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote p:last-child {
  margin-top: auto;
  padding-top: 14px;
}

.photo-credit {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.private-notes {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 22px;
  margin: 26px 0;
}

.private-note {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(17, 19, 24, 0.09);
  border-radius: 8px;
  background: rgba(46, 163, 242, 0.06);
}

.private-note img,
.private-note video {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.private-note p {
  margin: 0;
  font-size: 0.97rem;
}

.talk-hero img.hero-shift-right {
  object-position: 84% 15%;
}

.about-hero .talk-hero-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
  }

  .page-hero,
  .section-head,
  .split,
  .image-band,
  .contact-grid,
  .contact-stage,
  .signature-layout,
  .about-story,
  .talk-flow,
  .talk-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    min-height: 760px;
  }

  .hero-tag {
    position: static;
    max-width: 100%;
    margin-top: 28px;
  }

  .grid-3,
  .grid-2,
  .reference-grid,
  .topic-grid,
  .format-cards {
    grid-template-columns: 1fr;
  }

  .format-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .image-band img {
    min-height: 420px;
  }

  .talk-hero,
  .talk-hero-copy {
    min-height: 760px;
  }

  .talk-hero-strip {
    grid-template-columns: 1fr;
  }

  .talk-flow-image img {
    min-height: 420px;
  }

  .talk-cta {
    align-items: start;
  }

  .contact-direct {
    position: relative;
    top: auto;
  }
}

@media (max-width: 620px) {
  .private-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .private-note img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .private-note video {
    width: 140px;
    height: 190px;
  }

  .nav {
    width: min(100% - 24px, 1200px);
  }

  .wrap,
  .hero-copy {
    width: min(100% - 24px, 1200px);
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    align-content: center;
    min-height: 700px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-media img,
  .hero-media video {
    object-position: 74% 54%;
  }

  .talk-hero,
  .talk-hero-copy {
    min-height: 720px;
  }

  .talk-hero-copy {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .talk-hero h1 {
    font-size: 3.05rem;
  }

  .talk-hero-strip span {
    padding: 13px;
  }

  .signature-panel,
  .topic-card,
  .about-copy,
  .talk-cta {
    padding: 22px;
  }

  .topic-card {
    min-height: 0;
    padding-bottom: 50px;
  }

  .topic-card span {
    margin-bottom: 28px;
    font-size: 2.1rem;
  }

  .flow-steps div {
    grid-template-columns: 44px 1fr;
  }

  .flow-steps strong {
    width: 36px;
    height: 36px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 8px;
  }

  .proof-item {
    min-height: 82px;
    padding: 12px;
  }

  .proof-item strong {
    font-size: 1.55rem;
  }

  .proof-item span {
    font-size: 0.78rem;
  }

  .hero-tag {
    padding: 16px;
  }

  .footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }
}
