:root {
  --bg: #ffffff;
  --surface: #f3f2f1;
  --surface-muted: #f3f2f1;
  --surface-strong: #ebe7e4;
  --surface-dark: #1a1a1a;
  --surface-dark-strong: #121212;
  --text: #1a1a1a;
  --muted: #6f6a66;
  --line: rgba(26, 26, 26, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #a23d3b;
  --accent-strong: #7e302f;
  --accent-soft: rgba(162, 61, 59, 0.08);
  --accent-warm: #f2c66d;
  --shadow-lg: 0 32px 90px rgba(26, 26, 26, 0.08);
  --shadow-md: 0 22px 56px rgba(26, 26, 26, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --container: min(1180px, calc(100vw - 32px));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(162, 61, 59, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(26, 26, 26, 0.04), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fcfbfb 100%);
  line-height: 1.55;
}

body.is-modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 42%, transparent 100%);
  opacity: 0.18;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
input,
textarea,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(162, 61, 59, 0.22);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.section-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section .eyebrow,
.section-soft .eyebrow {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.title-hero,
.title-section,
.title-card,
.title-mini {
  margin: 0;
  letter-spacing: -0.05em;
}

.title-hero {
  max-width: 11ch;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 0.96;
  font-weight: 800;
}

.title-section {
  max-width: 14ch;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  font-weight: 800;
}

.title-card {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.1;
  font-weight: 700;
}

.title-mini {
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 700;
}

.lead,
.section-lead,
.muted {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.section-lead {
  max-width: 72ch;
  font-size: 1.02rem;
}

.button-row,
.card-chip-row,
.card-meta-row,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.button-outline,
.button-secondary,
.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.button:hover,
.button-outline:hover,
.button-secondary:hover {
  transform: translateY(-3px);
}

.button {
  background: linear-gradient(135deg, #a23d3b, #c76a68);
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(162, 61, 59, 0.28);
}

.button:hover {
  background: linear-gradient(135deg, #922f2d, #b55452);
}

.button-outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: rgba(26, 26, 26, 0.12);
  box-shadow: 0 14px 28px rgba(26, 26, 26, 0.06);
}

.button-outline:hover {
  border-color: rgba(162, 61, 59, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-strong);
}

.button-secondary {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: rgba(162, 61, 59, 0.22);
}

.button-secondary:hover {
  background: rgba(162, 61, 59, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.08);
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark,
.footer-brand-mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 20px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 16px 32px rgba(26, 26, 26, 0.08);
}

.brand-mark {
  width: 64px;
  height: 56px;
}

.brand-mark strong,
.footer-brand-mark strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--accent);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy > span,
.footer-brand-copy > span {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-copy small,
.footer-brand-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.nav-toggle-box {
  display: grid;
  gap: 5px;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

.site-nav {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  right: 0;
  display: none;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.site-nav.is-open {
  display: grid;
}

.site-nav-main,
.header-actions {
  display: grid;
  gap: 10px;
}

.site-nav-main a,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text);
  transition: background 0.25s ease, color 0.25s ease;
}

.site-nav-main a:hover,
.nav-link:hover,
.site-nav-main a.is-active,
.nav-link.is-active {
  background: rgba(162, 61, 59, 0.08);
  color: var(--accent);
}

.nav-item-has-dropdown {
  display: grid;
  gap: 8px;
}

.nav-link-wrap {
  display: flex;
  gap: 8px;
}

.nav-link {
  flex: 1;
}

.nav-subtoggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
}

.nav-dropdown {
  display: none;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.nav-item-has-dropdown.is-open .nav-dropdown {
  display: block;
}

.nav-dropdown-grid {
  display: grid;
  gap: 14px;
}

.nav-topic-group {
  display: grid;
  gap: 8px;
}

.nav-topic-title {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-topic-links {
  display: grid;
  gap: 8px;
}

.nav-topic-links a {
  padding: 0;
  color: var(--muted);
  border-radius: 0;
}

.nav-topic-links a:hover {
  background: transparent;
  color: var(--accent-strong);
}

.header-actions .button,
.header-actions .button-outline {
  width: 100%;
}

.header-actions .button-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(26, 26, 26, 0.12);
  box-shadow: none;
}

.header-actions .button-outline:hover {
  background: rgba(162, 61, 59, 0.08);
  border-color: rgba(162, 61, 59, 0.24);
}

.lang-switch {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 6px;
  width: fit-content;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(26, 26, 26, 0.05);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.lang-button {
  min-width: 48px;
  min-height: 40px;
  padding: 0 14px;
  background: transparent;
  color: var(--muted);
  border: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-button.is-active {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(26, 26, 26, 0.08);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 56px 0 34px;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.hero-copy,
.hero-panel {
  display: grid;
  gap: 22px;
}

.hero-copy {
  padding: 28px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(162, 61, 59, 0.26), transparent 18%),
    radial-gradient(circle at 72% 78%, rgba(242, 198, 109, 0.11), transparent 20%),
    linear-gradient(128deg, #111111 0%, #1b1818 34%, #402727 66%, #76403e 100%);
  box-shadow: var(--shadow-lg);
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.74);
}

.hero-panel {
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 242, 241, 0.85)),
    linear-gradient(180deg, #ffffff, #f3f2f1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.panel-label {
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-metric-list {
  display: grid;
  gap: 14px;
}

.hero-metric {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.hero-metric strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.hero-metric span {
  color: var(--muted);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb,
.hero-grid {
  position: absolute;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(18px);
}

.hero-orb-one {
  width: 240px;
  height: 240px;
  top: 72px;
  right: min(12vw, 120px);
  background: rgba(162, 61, 59, 0.16);
}

.hero-orb-two {
  width: 180px;
  height: 180px;
  top: 260px;
  left: min(8vw, 90px);
  background: rgba(242, 198, 109, 0.12);
}

.hero-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 36%, transparent 100%);
  opacity: 0.12;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  display: grid;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 68%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(162, 61, 59, 0.22);
  box-shadow: 0 30px 64px rgba(26, 26, 26, 0.14);
}

.card:hover::before {
  opacity: 1;
}

.card-content {
  display: grid;
  gap: 18px;
  height: 100%;
}

.card-course {
  background:
    linear-gradient(160deg, rgba(162, 61, 59, 0.06), rgba(255, 255, 255, 0.92) 44%),
    rgba(255, 255, 255, 0.95);
}

.card-article .card-media,
.card-expert .card-media {
  min-height: 220px;
}

.card-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(242, 198, 109, 0.18), transparent 20%),
    linear-gradient(135deg, #1a1a1a 0%, #352f2f 65%, #a23d3b 120%);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent, transparent 48%, rgba(0, 0, 0, 0.46)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
}

.card-media-pattern,
.expert-avatar {
  position: absolute;
  inset: 0;
}

.card-media-pattern {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}

.card-media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-media-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: #ffffff;
}

.card-media-copy span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.card-chip-row,
.card-meta-row {
  align-items: center;
}

.chip,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: rgba(26, 26, 26, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.meta-pill strong {
  color: var(--text);
  font-weight: 700;
}

.card-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.card-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.card-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), #c47e7c);
}

.expert-avatar {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.expert-avatar::before,
.expert-avatar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.expert-avatar::before {
  width: 124px;
  height: 124px;
  background: radial-gradient(circle, rgba(162, 61, 59, 0.34), transparent 70%);
}

.expert-avatar::after {
  width: 184px;
  height: 184px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lead-block {
  display: grid;
  gap: 28px;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(162, 61, 59, 0.24), transparent 26%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    #121212;
  box-shadow: var(--shadow-lg);
}

.lead-block .title-section,
.lead-block .lead,
.lead-block .field-label,
.lead-block .form-note {
  color: #ffffff;
}

.lead-block .lead {
  color: rgba(255, 255, 255, 0.74);
}

.lead-modal-cta {
  display: grid;
  gap: 18px;
}

.lead-benefits {
  color: rgba(255, 255, 255, 0.74);
}

.lead-benefits li::before {
  background: linear-gradient(180deg, var(--accent-warm), #ffffff);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 10px;
}

.field-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(242, 198, 109, 0.42);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(242, 198, 109, 0.1);
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

.lead-form-footer {
  display: grid;
  gap: 14px;
  align-items: start;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
}

.form-note {
  color: rgba(255, 255, 255, 0.7);
}

.form-status {
  min-height: 1.4em;
  color: rgba(255, 255, 255, 0.74);
}

.form-status[data-state="success"] {
  color: #f2c66d;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 10, 0.64);
  backdrop-filter: blur(12px);
}

.lead-modal-shell {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  display: grid;
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(162, 61, 59, 0.24), transparent 22%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    #121212;
  box-shadow: 0 42px 100px rgba(12, 10, 10, 0.36);
}

.lead-modal-copy {
  display: grid;
  gap: 16px;
}

.lead-modal-copy .title-section,
.lead-modal-copy .lead {
  color: #ffffff;
}

.lead-modal-copy .lead {
  color: rgba(255, 255, 255, 0.74);
}

.lead-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
}

.lead-modal-form {
  padding-top: 6px;
}

.site-footer {
  padding: 46px 0 32px;
  background: var(--text);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-copy,
.footer-links {
  display: grid;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-mark {
  width: 72px;
  height: 62px;
}

.footer-brand-copy {
  display: grid;
  gap: 4px;
}

.footer-links h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-links a,
.footer-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-meta-links a {
  color: rgba(255, 255, 255, 0.64);
}

.footer-meta-links a:hover {
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 720px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: stretch;
  }

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

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

  .lead-form-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .lead-modal-shell {
    padding: 34px;
  }

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

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

@media (min-width: 1024px) {
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 18px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 6px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
  }

  .header-actions .button,
  .header-actions .button-outline {
    width: auto;
    min-height: 50px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: none;
  }

  .nav-item-has-dropdown {
    position: relative;
    display: block;
  }

  .nav-item-has-dropdown:hover .nav-dropdown,
  .nav-item-has-dropdown:focus-within .nav-dropdown {
    display: block;
  }

  .nav-link-wrap {
    display: block;
  }

  .nav-subtoggle {
    display: none;
  }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    width: min(920px, calc(100vw - 80px));
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .nav-dropdown-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1fr;
  }
}

@media (max-width: 719px) {
  .section,
  .section-soft {
    padding: 68px 0;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .lead-block {
    padding: 22px;
  }

  .title-hero {
    max-width: 12ch;
  }

  .title-section {
    max-width: none;
  }
}

.section-intro .title-section,
.program-banner .title-section,
.home-cta-block .title-section {
  max-width: none;
}

.home-hero {
  padding-top: 44px;
}

.hero-photo-panel {
  gap: 18px;
}

.hero-photo-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 198, 109, 0.18), transparent 22%),
    linear-gradient(135deg, #1a1a1a 0%, #352f2f 65%, #a23d3b 120%);
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 198, 109, 0.14), transparent 72%);
  filter: blur(8px);
}

.hero-photo-chip,
.hero-photo-placeholder,
.speaker-photo-note {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-photo-chip {
  top: 18px;
  left: 18px;
}

.hero-photo-placeholder {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-photo-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero-photo-note strong {
  font-size: 1.02rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hero-photo-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.audience-grid,
.directions-grid,
.experts-grid {
  display: grid;
  gap: 20px;
}

.audience-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
}

.audience-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(162, 61, 59, 0.08);
  color: var(--accent);
}

.audience-icon svg {
  width: 26px;
  height: 26px;
}

.direction-card {
  background:
    linear-gradient(160deg, rgba(162, 61, 59, 0.06), rgba(255, 255, 255, 0.92) 44%),
    rgba(255, 255, 255, 0.95);
}

.direction-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.direction-cta {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--text);
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 18px 30px rgba(26, 26, 26, 0.16);
}

.direction-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.direction-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.direction-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), #c47e7c);
}

.program-banner {
  display: grid;
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(242, 198, 109, 0.18), transparent 24%),
    radial-gradient(circle at left bottom, rgba(162, 61, 59, 0.18), transparent 26%),
    linear-gradient(135deg, #121212 0%, #221c1c 50%, #583434 100%);
  color: #ffffff;
  box-shadow: 0 34px 86px rgba(26, 26, 26, 0.16);
}

.program-banner .lead,
.program-meta-item span {
  color: rgba(255, 255, 255, 0.72);
}

.program-banner .eyebrow,
.home-cta-block .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.program-meta {
  display: grid;
  gap: 14px;
}

.program-meta-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.program-meta-item strong {
  font-size: 1.18rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.program-banner .button {
  justify-self: start;
}

.speaker-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
}

.speaker-photo {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(242, 198, 109, 0.18), transparent 20%),
    linear-gradient(135deg, #1a1a1a 0%, #352f2f 65%, #a23d3b 120%);
}

.speaker-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}

.speaker-photo::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 61, 59, 0.36), transparent 72%);
}

.speaker-photo-initials {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 2.9rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.speaker-photo-note {
  left: 18px;
  bottom: 18px;
}

.speaker-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(162, 61, 59, 0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.speaker-regalia {
  margin: 0;
  color: var(--muted);
}

.home-cta-block {
  margin-bottom: 0;
}

.footer-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 720px) {
  .audience-grid,
  .directions-grid,
  .experts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .directions-grid > * {
    grid-column: span 4;
  }

  .directions-grid > :nth-child(4),
  .directions-grid > :nth-child(5) {
    grid-column: span 6;
  }

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

.page-breadcrumbs-section {
  padding: 28px 0 0;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs-list li:not(:last-child)::after {
  content: "/";
  color: rgba(26, 26, 26, 0.32);
}

.breadcrumbs a:hover {
  color: var(--accent-strong);
}

.page-hero {
  padding-top: 24px;
}

.page-hero-side {
  align-content: start;
}

.pain-grid,
.programs-grid,
.learning-steps {
  display: grid;
  gap: 20px;
}

.pain-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
}

.pain-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(162, 61, 59, 0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-program-card {
  background:
    linear-gradient(160deg, rgba(162, 61, 59, 0.06), rgba(255, 255, 255, 0.92) 44%),
    rgba(255, 255, 255, 0.95);
}

.course-summary {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-meta {
  display: grid;
  gap: 10px;
}

.step-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
}

.step-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(162, 61, 59, 0.08);
  color: var(--accent);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 720px) {
  .pain-grid,
  .programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.topic-hero-shell {
  align-items: stretch;
}

.topic-graphic-panel {
  align-content: stretch;
}

.traffic-graphic {
  display: grid;
  gap: 18px;
  height: 100%;
}

.traffic-chart {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 198, 109, 0.18), transparent 24%),
    linear-gradient(135deg, #121212 0%, #221c1c 50%, #583434 100%);
}

.traffic-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.44;
}

.traffic-bar,
.traffic-line {
  position: absolute;
  z-index: 1;
}

.traffic-bar {
  bottom: 18px;
  width: 34px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, rgba(242, 198, 109, 0.92), rgba(162, 61, 59, 0.92));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.traffic-bar-one {
  left: 20px;
  height: 68px;
}

.traffic-bar-two {
  left: 68px;
  height: 94px;
}

.traffic-bar-three {
  left: 116px;
  height: 118px;
}

.traffic-bar-four {
  left: 164px;
  height: 144px;
}

.traffic-bar-five {
  left: 212px;
  height: 172px;
}

.traffic-line {
  inset: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
}

.traffic-stats {
  display: grid;
  gap: 14px;
}

.traffic-stat {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.traffic-stat strong {
  letter-spacing: -0.04em;
}

.traffic-stat span {
  color: var(--muted);
}

.result-card {
  background:
    linear-gradient(160deg, rgba(162, 61, 59, 0.06), rgba(255, 255, 255, 0.92) 44%),
    rgba(255, 255, 255, 0.95);
}

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

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 18%, transparent 19%),
    linear-gradient(135deg, #a23d3b, #c76a68);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.86);
}

.accordion-list {
  display: grid;
  gap: 14px;
}

.accordion-card {
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.accordion-card summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.accordion-card summary::-webkit-details-marker {
  display: none;
}

.accordion-card summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(162, 61, 59, 0.08);
  color: var(--accent-strong);
  font-size: 1.1rem;
}

.accordion-card[open] summary::after {
  content: "−";
}

.accordion-content {
  padding: 0 22px 22px;
  color: var(--muted);
}

.accordion-content p {
  margin: 0;
}

.expert-spotlight {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 242, 241, 0.88)),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.expert-spotlight-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(242, 198, 109, 0.18), transparent 20%),
    linear-gradient(135deg, #1a1a1a 0%, #352f2f 65%, #a23d3b 120%);
}

.expert-spotlight-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}

.expert-spotlight-media::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 61, 59, 0.36), transparent 72%);
}

.expert-spotlight-initials {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.expert-spotlight-note {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.expert-role,
.expert-description {
  margin: 0;
}

.expert-role {
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 600;
}

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

.expert-stats {
  display: grid;
  gap: 14px;
}

.expert-stat {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(26, 26, 26, 0.04);
  border: 1px solid var(--line);
}

.expert-stat strong {
  font-size: 1.08rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.expert-stat span {
  color: var(--muted);
}

.related-grid {
  display: grid;
  gap: 20px;
}

.related-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
}

@media (min-width: 720px) {
  .expert-spotlight {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

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

.speaker-profile {
  display: grid;
  gap: 22px;
}

.speaker-profile-media,
.speaker-profile-copy {
  border-radius: 32px;
}

.speaker-profile-media {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background:
    radial-gradient(circle at top right, rgba(242, 198, 109, 0.18), transparent 22%),
    linear-gradient(135deg, #111111 0%, #201b1b 42%, #5b3534 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
}

.speaker-profile-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.42;
}

.speaker-profile-media::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 61, 59, 0.46), transparent 68%);
}

.speaker-profile-initials,
.speaker-profile-note {
  position: relative;
  z-index: 1;
}

.speaker-profile-initials {
  position: absolute;
  top: 32px;
  left: 32px;
  color: #ffffff;
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.speaker-profile-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-profile-copy {
  display: grid;
  gap: 22px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(162, 61, 59, 0.24), transparent 18%),
    radial-gradient(circle at 72% 82%, rgba(242, 198, 109, 0.12), transparent 22%),
    linear-gradient(128deg, #111111 0%, #1b1818 34%, #402727 66%, #76403e 100%);
  box-shadow: var(--shadow-lg);
}

.speaker-profile-title {
  max-width: none;
}

.speaker-profile-role {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.45;
  font-weight: 600;
}

.speaker-profile-copy .lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.74);
}

.speaker-competence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.speaker-competence-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.speaker-bio-card {
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(162, 61, 59, 0.05), rgba(255, 255, 255, 0.96) 46%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.speaker-bio-copy {
  display: grid;
  gap: 18px;
  max-width: 74ch;
}

.speaker-bio-copy p {
  margin: 0;
  color: var(--muted);
}

.speaker-bio-copy strong {
  color: var(--text);
}

.speaker-course-grid,
.speaker-publications-grid {
  display: grid;
  gap: 20px;
}

.speaker-course-card {
  background:
    linear-gradient(160deg, rgba(162, 61, 59, 0.06), rgba(255, 255, 255, 0.92) 44%),
    rgba(255, 255, 255, 0.95);
}

.speaker-course-card .button-outline,
.publication-card .button-outline {
  width: fit-content;
}

.speaker-card-meta,
.publication-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(162, 61, 59, 0.08);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-course-meta {
  display: grid;
  gap: 10px;
}

.publication-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
}

.speaker-consultation-section {
  padding-top: 0;
}

@media (min-width: 720px) {
  .speaker-course-grid,
  .speaker-publications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .speaker-profile {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    align-items: stretch;
  }

  .speaker-profile-media {
    min-height: 100%;
  }

  .speaker-profile-copy {
    padding: 36px;
  }

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

.article-header-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(162, 61, 59, 0.24), transparent 18%),
    radial-gradient(circle at 72% 82%, rgba(242, 198, 109, 0.12), transparent 22%),
    linear-gradient(128deg, #111111 0%, #1b1818 34%, #402727 66%, #76403e 100%);
  box-shadow: var(--shadow-lg);
}

.article-header-copy {
  display: grid;
  gap: 18px;
}

.article-header-copy .lead {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.74);
}

.article-meta-row,
.article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-meta-row {
  align-items: center;
}

.article-meta-item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.article-author-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.article-author-mini-photo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(242, 198, 109, 0.88), rgba(162, 61, 59, 0.96));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.article-author-mini-copy {
  display: grid;
  gap: 2px;
}

.article-author-mini-copy strong,
.article-author-mini-copy span {
  line-height: 1.2;
}

.article-author-mini-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.article-tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-tag-list li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.article-toc {
  display: grid;
  gap: 16px;
}

.article-toc-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.article-toc-card h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

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

.toc-list li {
  display: grid;
  gap: 10px;
}

.toc-list a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.toc-list a:hover {
  color: var(--accent-strong);
}

.toc-list .toc-sublist {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
  border-left: 1px solid rgba(26, 26, 26, 0.08);
}

.article-main {
  min-width: 0;
}

.article-content {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 251, 251, 0.96)),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content > :last-child {
  margin-bottom: 0;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content figure,
.article-content .article-table-wrap {
  margin: 0;
}

.article-content h2,
.article-content h3 {
  margin: 16px 0 0;
  letter-spacing: -0.04em;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.article-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.article-content h3 {
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1.18;
}

.article-content p,
.article-content li,
.article-content figcaption,
.article-content td,
.article-content th {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.article-content strong {
  color: var(--text);
}

.article-content a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.article-content li::marker {
  color: var(--accent-strong);
}

.article-content blockquote {
  padding: 24px;
  border-left: 4px solid var(--accent);
  border-radius: 0 24px 24px 0;
  background:
    linear-gradient(160deg, rgba(162, 61, 59, 0.06), rgba(255, 255, 255, 0.94) 48%),
    #ffffff;
}

.article-content blockquote p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.72;
}

.article-content blockquote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.article-figure {
  display: grid;
  gap: 12px;
}

.article-figure-media {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 198, 109, 0.16), transparent 20%),
    linear-gradient(135deg, #111111 0%, #1d1a1a 38%, #583434 100%);
}

.article-figure-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.42;
}

.article-figure-badge {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-figure-lines,
.article-figure-bars {
  position: absolute;
  inset: 0;
}

.article-figure-bars span,
.article-figure-lines svg {
  position: absolute;
  z-index: 1;
}

.article-figure-bars span {
  bottom: 24px;
  width: 38px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, rgba(242, 198, 109, 0.92), rgba(162, 61, 59, 0.92));
}

.article-figure-bars span:nth-child(1) {
  left: 28px;
  height: 72px;
}

.article-figure-bars span:nth-child(2) {
  left: 82px;
  height: 104px;
}

.article-figure-bars span:nth-child(3) {
  left: 136px;
  height: 138px;
}

.article-figure-bars span:nth-child(4) {
  left: 190px;
  height: 170px;
}

.article-figure-lines svg {
  inset: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
}

.article-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.article-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.article-table thead th {
  color: var(--text);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.article-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--line);
}

.article-inline-cta {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(242, 198, 109, 0.16), transparent 20%),
    linear-gradient(128deg, #111111 0%, #1b1818 34%, #402727 66%, #76403e 100%);
  box-shadow: var(--shadow-lg);
}

.article-inline-cta h2,
.article-inline-cta p {
  margin: 0;
}

.article-inline-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.article-footer-stack {
  display: grid;
  gap: 24px;
}

.article-author-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.article-author-box {
  display: grid;
  gap: 16px;
}

.article-author-photo {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(242, 198, 109, 0.88), rgba(162, 61, 59, 0.96));
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.article-author-copy {
  display: grid;
  gap: 10px;
}

.article-author-copy h2,
.article-author-copy p {
  margin: 0;
}

.article-related-grid {
  display: grid;
  gap: 20px;
}

.article-related-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 241, 0.92)),
    #ffffff;
}

@media (min-width: 720px) {
  .article-header-card {
    padding: 34px;
  }

  .article-author-box {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

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

@media (min-width: 1080px) {
  .article-layout {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  }

  .article-toc {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }

  .article-content {
    padding: 38px;
  }

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