@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Manrope:wght@400;500;700;800&display=swap");

:root {
  --bg: #f5efe4;
  --card: rgba(255, 252, 246, 0.8);
  --ink: #17222c;
  --muted: #5d6873;
  --line: rgba(23, 34, 44, 0.1);
  --gold: #c59743;
  --teal: #0c7c7b;
  --shadow: 0 20px 60px rgba(17, 22, 27, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(197, 151, 67, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(12, 124, 123, 0.16), transparent 20%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 50%, #f6f0e6 100%);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(23, 34, 44, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 34, 44, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 92%);
}

a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.site-shell { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 238, 0.76);
  border-bottom: 1px solid rgba(23, 34, 44, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-size: 22px;
  background: linear-gradient(135deg, var(--ink), #31516d);
  box-shadow: 0 12px 30px rgba(17, 22, 27, 0.16);
}

.brand-wording strong,
.section-title h1,
.section-title h2,
.display { font-family: "Fraunces", serif; }
.brand-wording strong { display: block; font-size: 17px; }
.brand-wording span { display: block; font-size: 12px; color: var(--muted); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
}

.main-nav { display: flex; align-items: center; gap: 12px; }
.nav-cta { display: none; }
.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--ink);
  background: rgba(23, 34, 44, 0.06);
}
.header-actions { display: flex; align-items: center; gap: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--ink), #2f516f);
  box-shadow: 0 18px 40px rgba(17, 22, 27, 0.16);
}
.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}
.button-inline {
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  border: 0;
  color: var(--teal);
  background: transparent;
}

.hero { padding: 84px 0 36px; }
.hero-card,
.section-card,
.page-card,
.metric-card,
.asset-card,
.service-card,
.flow-card,
.quote-card,
.panel,
.footer-card,
.loop-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 44, 0.08);
  border-radius: var(--radius-xl);
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 34, 44, 0.08);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-title h1,
.section-title h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}
.section-title p {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions,
.tag-row,
.asset-meta,
.service-meta,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions { margin-top: 28px; }
.tag-row { margin-top: 26px; }
.tag,
.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 34, 44, 0.08);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  color: var(--muted);
}
.hero-visual,
.feature-stack,
.stack,
.timeline { display: grid; gap: 16px; }

.feature-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 34, 44, 0.08);
  background: white;
}
.feature-card strong { display: block; font-size: 18px; }
.feature-card p { margin: 8px 0 0; font-size: 14px; line-height: 1.7; color: var(--muted); }
.feature-card.future { background: linear-gradient(180deg, #eff7fb, #dce9f5); }
.feature-card.market { background: linear-gradient(180deg, #fff7e9, #f4e0b4); }
.feature-card.expert { background: linear-gradient(180deg, #f8ece7, #f0d4ca); }

.section { padding: 34px 0 70px; }
.section-head { margin-bottom: 24px; }
.section-head h2 { margin: 14px 0 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.08; }
.section-head p { margin: 12px 0 0; max-width: 64ch; font-size: 16px; line-height: 1.8; color: var(--muted); }

.grid-3,
.grid-4,
.asset-grid,
.service-grid,
.flow-grid,
.kpi-strip,
.loop-flow {
  display: grid;
  gap: 18px;
}
.grid-3,
.asset-grid,
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4,
.kpi-strip,
.flow-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.loop-flow { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.section-card,
.page-card,
.metric-card,
.asset-card,
.service-card,
.flow-card,
.quote-card,
.panel,
.footer-card,
.loop-card { padding: 24px; }

.section-card h3,
.page-card h3,
.asset-card h3,
.service-card h3,
.flow-card h3,
.panel h3 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.2;
}
.section-card p,
.page-card p,
.metric-card p,
.asset-card p,
.service-card p,
.flow-card p,
.quote-card p,
.panel p,
.list {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.card-topline {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-card.future { background: linear-gradient(180deg, #eef7fb, #dceaf5); }
.section-card.market { background: linear-gradient(180deg, #fff7e8, #f6e2b2); }
.section-card.expert { background: linear-gradient(180deg, #f9ece8, #efd6ce); }
.loop-step {
  padding: 18px;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(23, 34, 44, 0.08);
}
.loop-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.loop-step strong { display: block; margin-top: 14px; font-size: 17px; }
.list { padding-left: 18px; }
.list li + li { margin-top: 8px; }
.metric-card strong { display: block; font-size: 34px; font-weight: 800; line-height: 1; }
.metric-card span { display: block; margin-top: 8px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.board-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}
.timeline-item {
  position: relative;
  padding: 16px 18px 16px 26px;
  border-left: 2px solid rgba(23, 34, 44, 0.12);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 16px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -7px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
}
.asset-card { background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 241, 229, 0.9)); }
.quote-card {
  background: linear-gradient(135deg, var(--ink), #2f526f);
  color: white;
}
.quote-card p { color: rgba(255, 255, 255, 0.82); }

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #13212e, #234155 58%, #326278 100%);
  color: white;
  box-shadow: 0 26px 60px rgba(17, 22, 27, 0.14);
}
.cta-band p { margin: 8px 0 0; color: rgba(255, 255, 255, 0.78); }
.site-footer { padding: 26px 0 36px; }
.footer-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 980px) {
  .hero-card,
  .board-layout,
  .footer-card,
  .cta-band { grid-template-columns: 1fr; }

  .grid-3,
  .grid-4,
  .asset-grid,
  .service-grid,
  .flow-grid,
  .kpi-strip,
  .loop-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .header-actions { display: none; }
  .header-bar { flex-wrap: wrap; }
  .nav-cta { display: inline-flex; margin-top: 8px; }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { background: rgba(255, 255, 255, 0.58); }
  .section-title h1,
  .section-title h2 { font-size: clamp(34px, 11vw, 52px); }
  .grid-3,
  .grid-4,
  .asset-grid,
  .service-grid,
  .flow-grid,
  .kpi-strip,
  .loop-flow { grid-template-columns: 1fr; }
  .hero,
  .section { padding-top: 26px; }
}

.expert-page .hero {
  padding-bottom: 20px;
}

.expert-hero-card {
  align-items: start;
}

.expert-copy {
  display: grid;
  gap: 20px;
}

.expert-copy p {
  margin: 0;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 11px 14px;
  border: 1px solid rgba(23, 34, 44, 0.08);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(23, 34, 44, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.audience-card strong {
  display: block;
  font-size: 16px;
}

.audience-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.expert-side {
  align-content: start;
}

.expert-profile-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 34, 44, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 237, 226, 0.96));
  box-shadow: var(--shadow);
}

.profile-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-head h3 {
  margin: 0;
  font-size: 28px;
}

.profile-head p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.expert-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ink), #2f516f);
  color: white;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(17, 22, 27, 0.14);
}

.expert-avatar.large {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  font-size: 26px;
}

.profile-rating {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-rating div {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(23, 34, 44, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.profile-rating strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.profile-rating span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.slot-board,
.mini-expert-strip,
.faq-list {
  display: grid;
  gap: 12px;
}

.slot-card,
.mini-expert-card,
.testimonial-card {
  border: 1px solid rgba(23, 34, 44, 0.08);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 22px;
}

.slot-card {
  padding: 16px 18px;
}

.slot-card span,
.slot-card em,
.mini-expert-card span,
.mini-expert-card em,
.expert-role,
.testimonial-footer span {
  color: var(--muted);
  font-style: normal;
}

.slot-card span,
.slot-card em {
  display: block;
  font-size: 13px;
  line-height: 1.6;
}

.slot-card strong {
  display: block;
  margin: 6px 0;
  font-size: 18px;
}

.compact-actions {
  margin-top: 0;
}

.mini-expert-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
}

.mini-expert-card strong {
  display: block;
  font-size: 16px;
}

.mini-expert-card span,
.mini-expert-card em {
  font-size: 13px;
}

.expert-kpis .metric-card {
  background: rgba(255, 255, 255, 0.78);
}

.expert-service-grid,
.expert-roster,
.testimonial-grid {
  align-items: stretch;
}

.featured-session {
  background: linear-gradient(180deg, rgba(255, 249, 237, 0.96), rgba(245, 228, 193, 0.96));
}

.session-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(12, 124, 123, 0.12);
  color: var(--teal);
  font-weight: 800;
}

.session-button {
  width: 100%;
  margin-top: 18px;
}

.expert-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(23, 34, 44, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.expert-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.expert-card-head h3 {
  margin: 0;
  font-size: 24px;
}

.expert-role {
  margin: 6px 0 0;
  font-size: 14px;
}

.expert-meta-line,
.testimonial-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.expert-meta-line {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 34, 44, 0.08);
  font-size: 14px;
  color: var(--muted);
}

.expert-meta-line strong {
  color: var(--ink);
}

.testimonial-card {
  padding: 24px;
}

.testimonial-quote {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink);
}

.testimonial-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 34, 44, 0.08);
}

.testimonial-footer strong,
.testimonial-footer em {
  display: block;
  font-size: 14px;
}

.testimonial-footer em {
  color: var(--teal);
}

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

.faq-item {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 34, 44, 0.08);
}

.faq-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq-item h4 {
  margin: 0;
  font-size: 18px;
}

.faq-item p {
  margin: 8px 0 0;
}

.expert-cta-band {
  align-items: center;
}

@media (max-width: 980px) {
  .audience-strip,
  .profile-rating,
  .expert-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .audience-strip {
    grid-template-columns: 1fr;
  }

  .profile-head,
  .mini-expert-card,
  .expert-meta-line,
  .testimonial-footer,
  .session-top {
    flex-direction: column;
    align-items: start;
  }
}
