:root {
  --bg: #f2ece2;
  --surface: rgba(255, 250, 245, 0.78);
  --surface-strong: rgba(255, 252, 248, 0.92);
  --surface-dark: #111522;
  --ink: #151b29;
  --muted: #665f59;
  --line: rgba(21, 27, 41, 0.1);
  --accent: #8a5a44;
  --accent-strong: #714532;
  --accent-soft: rgba(138, 90, 68, 0.1);
  --gold: #b69362;
  --shadow: 0 18px 44px rgba(21, 27, 41, 0.07);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 14px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(182, 147, 98, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(138, 90, 68, 0.1), transparent 28%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(242, 236, 226, 0.78);
  border-bottom: 1px solid rgba(21, 27, 41, 0.08);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Instrument Serif", serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links .active a {
  color: var(--ink);
}

.nav-cta,
.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--ink), #232b3d);
  color: #fff;
  box-shadow: 0 18px 38px rgba(21, 27, 41, 0.18);
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  background: #0d1624;
}

.button-secondary {
  border: 1px solid rgba(255, 248, 241, 0.18);
  background: rgba(255, 250, 245, 0.08);
  color: #fff;
}

.button-secondary-dark {
  border-color: var(--line);
  background: rgba(255, 252, 248, 0.82);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary-dark:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 1.15rem;
}

.hero {
  padding: 2.8rem 0 2.4rem;
}

.hero-card,
.panel,
.info-card,
.quote-card,
.contact-card,
.form-card,
.stat-card,
.topic-card,
.timeline-card,
.media-card,
.speaker-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1.05fr);
  gap: 0.6rem 0.7rem;
  padding: 1.2rem 1.3rem 1.2rem;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(17, 21, 34, 0.98), rgba(28, 35, 52, 0.94)),
    var(--surface-dark);
  color: #fff;
  overflow: hidden;
  position: relative;
  align-items: start;
}

.hero-main {
  display: grid;
  align-content: start;
  min-width: 0;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 147, 98, 0.26), transparent 68%);
  pointer-events: none;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0.95rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 243, 230, 0.08);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 246, 236, 0.72);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(182, 147, 98, 0.5);
}

.hero h1,
.section-heading h2,
.page-hero h1,
.contact-banner h2,
.footer-cta h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(2.55rem, 4.7vw, 4.8rem);
  max-width: none;
  line-height: 0.92;
  text-wrap: balance;
  text-wrap: pretty;
}

.hero-title-line {
  display: block;
}

.hero-lead {
  max-width: 42rem;
  margin: 0.55rem 0 0;
  font-size: 1rem;
  line-height: 1.52;
  color: rgba(255, 245, 236, 0.76);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.55rem;
}

.proof-chips,
.logo-strip,
.stat-grid,
.card-grid,
.contact-grid,
.three-up,
.two-up {
  display: grid;
  gap: 1rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.proof-chips {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.25rem;
}

.hero-proof-chips {
  margin-top: 1.3rem;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.08), rgba(255, 255, 255, 0.03));
}

.chip-label {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 242, 232, 0.56);
}

.chip strong {
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 600;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-self: start;
  width: 100%;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 1 / 1.28;
  width: 100%;
  background: linear-gradient(160deg, rgba(255,248,241,0.1), rgba(255,255,255,0.02));
}

.about-flow {
  display: grid;
  gap: 1rem;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-feature-stack {
  display: grid;
  gap: 1rem;
}

.about-feature-copy {
  width: 100%;
}

.about-feature-copy .card-title {
  margin-bottom: 0.8rem;
}

.about-image-panel {
  display: flex;
  justify-content: center;
  padding: 1.2rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 248, 241, 0.72), rgba(255, 255, 255, 0.4));
}

.about-image-panel img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: calc(var(--radius-xl) - 8px);
}

.portrait-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(17, 21, 34, 0.76);
  border: 1px solid rgba(255, 248, 241, 0.12);
  backdrop-filter: blur(18px);
}

.portrait-badge span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 245, 236, 0.64);
}

.portrait-badge strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.section {
  padding: 2.75rem 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.65rem;
}

.section-heading h2,
.page-hero h1,
.contact-banner h2,
.footer-cta h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  color: var(--ink);
}

.section-heading p,
.page-hero p,
.footer-cta p,
.contact-banner p {
  max-width: 62rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.logo-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.logo-pill,
.stat-card,
.topic-card,
.timeline-card,
.media-card,
.speaker-card,
.contact-card,
.form-card,
.quote-card,
.panel {
  border-radius: var(--radius-xl);
  padding: 1.4rem;
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  background: rgba(255, 251, 246, 0.42);
  border: 1px solid rgba(21, 27, 41, 0.07);
  font-family: "Instrument Serif", serif;
  color: var(--ink);
  font-size: 1rem;
}

.logo-wordmark-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  color: rgba(21, 27, 41, 0.94);
  text-rendering: optimizeLegibility;
}

.logo-bloomberg-text {
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.logo-ft-text,
.logo-wsj-text,
.logo-ii-text {
  font-family: "Instrument Serif", serif;
  letter-spacing: -0.018em;
}

.logo-ft-text {
  font-size: 1.16rem;
}

.logo-reuters-text {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-wsj-text {
  font-size: 1.08rem;
}

.logo-ii-text {
  font-size: 1.02rem;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat-card strong {
  display: block;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.stat-card {
  background: transparent;
  border: 1px solid rgba(21, 27, 41, 0.08);
  box-shadow: none;
}

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

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-up-editorial {
  grid-template-columns: 1.1fr 0.9fr;
}

.card-title {
  margin: 0 0 0.65rem;
  font-family: "Instrument Serif", serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.card-copy,
.panel p,
.timeline-card p,
.media-card p,
.speaker-card p,
.quote-card p,
.contact-card p,
.form-card p {
  margin: 0;
  color: var(--muted);
}

.kicker {
  display: inline-flex;
  margin-bottom: 0.7rem;
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.topic-card {
  position: relative;
  overflow: hidden;
}

.panel,
.topic-card,
.timeline-card,
.media-card,
.speaker-card,
.contact-card,
.form-card,
.quote-card {
  display: grid;
  align-content: start;
  gap: 0.15rem;
}

.topic-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -40px auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(182, 147, 98, 0.12);
}

.list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  display: grid;
  gap: 0.6rem;
  background: rgba(255, 252, 248, 0.58);
  box-shadow: none;
  border-color: rgba(21, 27, 41, 0.08);
}

.timeline-card-feature {
  background: linear-gradient(160deg, rgba(255, 252, 248, 0.94), rgba(255, 246, 238, 0.82));
}

.timeline-year {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.quote-card {
  background: linear-gradient(145deg, rgba(182, 147, 98, 0.12), rgba(255,252,248,0.88));
}

.media-card,
.speaker-card {
  background: rgba(255, 252, 248, 0.62);
  box-shadow: none;
  border-color: rgba(21, 27, 41, 0.08);
}

.media-card-lead {
  grid-column: span 2;
  background: linear-gradient(150deg, rgba(255, 252, 248, 0.92), rgba(255, 245, 236, 0.78));
}

.quote-card blockquote {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.95rem, 2.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.quote-source {
  margin-top: 1rem;
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--muted);
}

.page-hero {
  padding: 3.4rem 0 1.3rem;
}

.page-hero-card,
.footer-cta {
  border-radius: 36px;
  padding: 2.2rem;
}

.page-hero-card {
  background: linear-gradient(135deg, rgba(255,252,248,0.88), rgba(255,247,240,0.64));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.meta-pill {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(138, 90, 68, 0.1);
  color: var(--accent-strong);
  font-weight: 600;
}

.spotlight-card {
  padding: 1.8rem;
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(160deg, rgba(255, 252, 248, 0.92), rgba(255, 247, 240, 0.76));
  border: 1px solid rgba(21, 27, 41, 0.08);
  box-shadow: none;
}

.spotlight-card h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spotlight-card p {
  max-width: 34rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.spotlight-card-dark {
  background: linear-gradient(140deg, rgba(17, 21, 34, 0.98), rgba(35, 40, 57, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
}

.spotlight-card-dark .kicker,
.spotlight-card-dark h2 {
  color: #fff;
}

.spotlight-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-card,
.form-card {
  background: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.contact-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

.response-note {
  padding: 1rem;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
}

.best-for {
  margin-top: 1.2rem;
}

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

form {
  display: grid;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(20, 32, 51, 0.12);
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

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

.field-note,
.fine-print {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  padding: 1.5rem 0 2.8rem;
}

.footer-cta {
  background: linear-gradient(135deg, rgba(17, 21, 34, 0.98), rgba(38, 32, 28, 0.94));
  color: #fff;
}

.footer-cta h2,
.footer-cta p {
  color: #fff;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

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

@media (max-width: 1024px) {
  .hero-card,
  .contact-grid,
  .three-up,
  .two-up,
  .spotlight-grid,
  .proof-chips,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-proof-chips {
    margin-top: 0;
  }

  .proof-chips {
    grid-template-columns: 1fr;
  }

  .media-card-lead {
    grid-column: span 1;
  }

  .hero-title-line {
    display: inline;
  }
}

@media (min-width: 1180px) {
  .hero-card {
    grid-template-columns: minmax(0, 1.82fr) minmax(360px, 1.08fr);
    gap: 0.45rem 0.55rem;
    padding: 1.15rem 1.25rem 1.15rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 5vw, 5.15rem);
  }

  .hero-lead {
    max-width: 44rem;
    font-size: 1.02rem;
    line-height: 1.54;
  }

  .hero-actions {
    margin-top: 0.45rem;
  }

  .proof-chips {
    gap: 0.55rem;
  }

  .portrait-card {
    aspect-ratio: 1 / 1.22;
  }
}

@media (min-width: 900px) and (max-width: 1179px) {
  .hero-card {
    grid-template-columns: minmax(0, 1.62fr) minmax(300px, 1fr);
    gap: 0.5rem 0.5rem;
    padding: 1.1rem 1.15rem 1.1rem;
  }


  .hero h1 {
    font-size: clamp(2.8rem, 4.2vw, 4.1rem);
  }

  .hero-lead {
    max-width: 36rem;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .portrait-card {
    aspect-ratio: 1 / 1.18;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 70px;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.7);
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .nav-cta {
    width: 100%;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    position: relative;
  }

  .hero,
  .page-hero {
    padding-top: 2rem;
  }

  .hero-card,
  .page-hero-card,
  .footer-cta,
  .panel,
  .contact-card,
  .form-card {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-title-line {
    display: inline;
  }

  .hero-main,
  .hero-aside {
    display: contents;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.9rem;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary {
    width: 100%;
    padding-inline: 0.9rem;
  }

  .portrait-card {
    order: 4;
    min-height: 360px;
    aspect-ratio: auto;
  }

  .hero-proof-chips {
    order: 5;
    margin-top: 1rem;
  }

  .three-up,
  .two-up,
  .spotlight-grid,
  .contact-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .logo-strip,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-strip .logo-pill:last-child {
    grid-column: 1 / -1;
  }

  .logo-pill {
    min-height: 72px;
    padding: 1rem 0.8rem;
  }

  .logo-wordmark-text {
    white-space: normal;
    line-height: 1.1;
  }

  .logo-ft-text,
  .logo-wsj-text,
  .logo-ii-text {
    font-size: 0.86rem;
  }

  .logo-bloomberg-text,
  .logo-reuters-text {
    font-size: 0.92rem;
  }

  .section-heading,
  .footer-bottom {
    display: block;
  }

  .footer-links {
    margin-top: 0.8rem;
  }
}
