/* ============================================================
   LIDIYA BORISENKO — Speaker Landing Page
   Design: Minimalist Scandi / Editorial
   Palette: #FFD600 (Gold) / #FFE1F9 (Light Pink) / #FFBEF3 (Fuchsia)
   Font: Montserrat (self-hosted — place .woff2 files in /fonts/)
   ============================================================ */

/* --- Self-hosted Montserrat --- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v31-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v31-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-v31-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #FFD600;
  --gold-dark: #e6c200;
  --pink-light: #FFE1F9;
  --pink: #FFBEF3;
  --pink-muted: #fff4fd;

  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f4;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;

  --font-family: 'Montserrat', sans-serif;
  --container-max: 1140px;
  --container-narrow: 780px;
  --header-height: 64px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection {
  background-color: var(--gold);
  color: var(--black);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section { padding: var(--space-xl) 0; }

/* --- Section Heading --- */
.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--pink);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: var(--space-lg);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  border: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 214, 0, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

.btn--secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: all 0.35s ease;
}

.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  transition: color 0.2s ease;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}

.header__nav a:hover { color: var(--black); }
.header__nav a:hover::after { width: 100%; }

.header__cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.header__cta:hover { background: var(--gold-dark); }

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  background: none; border: none;
  cursor: pointer; padding: 0;
}

.header__burger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--black);
  transition: all 0.3s ease;
}

.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- Hero (two-column with photo) --- */
.hero {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--white) 60%, var(--pink-muted) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

.hero__label { margin-bottom: var(--space-md); }

.hero__name {
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: var(--space-md);
}

.hero__name span { display: block; }

.hero__role {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  max-width: 640px;
}

.hero__statement {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.hero__statement strong {
  font-weight: 600;
  color: var(--black);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__photo {
  position: relative;
}

.hero__photo-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero__photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(10%);
}

.hero__photo-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  background: var(--pink-light);
  z-index: 1;
}

.hero__photo-dot {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  z-index: 3;
}

/* --- At a Glance --- */
.glance {
  background: #fff1f9;
}

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

.glance__item {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid rgba(255, 190, 243, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.glance__item:nth-child(odd) {
  border-right: 1px solid rgba(255, 190, 243, 0.3);
}

.glance__key {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.glance__value {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--black);
}

.glance__item--highlight {
  background: var(--pink-light);
}

.glance__item--highlight .glance__value {
  font-weight: 600;
}

/* --- Bio --- */
.bio { background: var(--white); }

.bio__content { max-width: var(--container-narrow); }

.bio__link {
  border-bottom: 1.5px solid #FFBEF3;
  font-weight: 500;
}

.bio__text p {
  font-size: clamp(1rem, 1.3vw, 1.0625rem);
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: var(--space-md);
}

.bio__text p:last-child { margin-bottom: 0; }

/* --- Team --- */
.team {
  background: #fff1f9;
}

.team__intro {
  max-width: 900px;
  margin-bottom: var(--space-xl);
}

.team__text p {
  font-size: clamp(1rem, 1.3vw, 1.0625rem);
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: var(--space-md);
}

.team__text p:last-child {
  margin-bottom: 0;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(255, 190, 243, 0.35);
  padding: var(--space-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: 0 10px 28px rgba(255, 190, 243, 0.16);
}

.team-card__photo {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 225, 249, 0.9), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(255, 190, 243, 0.35);
  color: var(--gray-500);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.team-card__body {
  padding: 0;
}

.team-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.team-card__role {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--pink-muted);
  border: 1px solid rgba(255, 190, 243, 0.45);
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.875rem;
}

.team-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.team__cta {
  margin-top: var(--space-lg);
}

/* --- Topics --- */
.topics { background: var(--white); }

.topics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-md);
}

.topic-card {
  padding: var(--space-lg);
  background: var(--pink-muted);
  border: 1px solid rgba(255, 190, 243, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--pink-light);
  transition: background 0.3s ease;
}

.topic-card:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 190, 243, 0.15);
}

.topic-card:hover::before { background: var(--gold); }

.topic-card__eyebrow {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 0.875rem;
}

.topic-card__sector {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid rgba(255, 190, 243, 0.45);
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.875rem;
}

.topic-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.topics__summary {
  max-width: 860px;
  margin-top: var(--space-xl);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.topics__startup-block {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 190, 243, 0.35);
}

.topics__startup-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-md);
}

.topics__startup-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topics__startup-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid rgba(255, 190, 243, 0.45);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}

.topics__startup-item span {
  color: var(--gray-500);
  font-weight: 500;
}

/* --- Great Guest --- */
.guest {
  background: #fff1f9;
  color: var(--black);
}

.guest .section-label { color: var(--gray-500); }
.guest .section-label::before { background: var(--pink); }
.guest .section-title { color: var(--black); }

.guest__list { display: flex; flex-direction: column; }

.guest__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 190, 243, 0.35);
  align-items: start;
}

.guest__item:last-child { border-bottom: none; }

.guest__check {
  width: 2rem; height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.guest__item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.guest__item-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.guest__cta {
  margin-top: var(--space-lg);
}

/* --- Media --- */
.media { background: var(--white); }
.media__list { display: flex; flex-direction: column; }

.media__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.media__item:first-child { border-top: 1px solid var(--gray-200); }
.media__item:hover { padding-left: var(--space-sm); }
.media__item:hover .media__title { color: var(--black); }

.media__outlet {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.media__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray-700);
  transition: color 0.2s ease;
}

.media__type {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.375rem 0.875rem;
  background: var(--pink-light);
  border: 1px solid var(--pink);
  white-space: nowrap;
}

.media__arrow {
  font-size: 1.125rem;
  color: var(--gray-400);
  transition: all 0.2s ease;
}

.media__item:hover .media__arrow {
  color: var(--black);
  transform: translateX(3px);
}

.media-topics {
  margin-top: var(--space-xl);
  background: var(--pink-muted);
  border: 1px solid rgba(255, 190, 243, 0.4);
}

.media-topics[open] {
  box-shadow: 0 12px 28px rgba(255, 190, 243, 0.12);
}

.media-topics__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
}

.media-topics__summary::-webkit-details-marker {
  display: none;
}

.media-topics__summary-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.media-topics__kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.media-topics__heading {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  letter-spacing: -0.01em;
}

.media-topics__toggle {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 190, 243, 0.55);
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.media-topics[open] .media-topics__toggle {
  transform: rotate(45deg);
  color: var(--black);
  border-color: var(--pink);
}

.media-topics__content {
  padding: 0 var(--space-lg) var(--space-lg);
}

.media-topics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.media-topic-card {
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid rgba(255, 190, 243, 0.35);
}

.media-topic-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.media-topic-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.media-topics__cta {
  margin-top: var(--space-lg);
}

/* --- Contact --- */
.contact {
  background: #fff1f9;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

.contact__top {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(220px, 320px);
  justify-content: space-between;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-lg);
}

.contact__intro {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 0;
}

.contact__links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  gap: 0.75rem;
  margin-bottom: 0;
  flex-wrap: nowrap;
}

.contact__icon-link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(255, 190, 243, 0.4);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.contact__icon-link:hover {
  border-color: var(--pink);
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 190, 243, 0.3);
}

.contact__icon-link svg {
  width: 22px;
  height: 22px;
  fill: var(--gray-700);
  transition: fill 0.2s ease;
}

.contact__icon-image {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.contact__icon-link:hover svg {
  fill: var(--black);
}

.contact__icon-link:hover .contact__icon-image {
  opacity: 0.95;
}

.contact__cta-block {
  max-width: 860px;
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border: 1px solid rgba(255, 190, 243, 0.3);
  margin-bottom: var(--space-md);
  margin-left: auto;
  margin-right: auto;
}

.contact__cta-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.contact__cta-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.contact__cta-text strong {
  font-weight: 600;
  color: var(--black);
}

.contact__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.4rem;
  margin-top: 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 190, 243, 0.3);
  text-align: left;
}

.contact__footer-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}

.contact__footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact__copy {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* --- Mobile Nav --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open { opacity: 1; pointer-events: auto; }

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.mobile-nav a:hover { color: var(--gray-500); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero__photo {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  section { padding: var(--space-xl) 0; }

  .section-title,
  .hero__name,
  .hero__role,
  .hero__statement,
  .glance__value,
  .bio__text p,
  .guest__item-title,
  .guest__item-desc,
  .topic-card__eyebrow,
  .topic-card__desc,
  .topics__summary,
  .team__text p,
  .team-card__name,
  .team-card__desc,
  .media__title,
  .media-topic-card__title,
  .media-topic-card__desc,
  .contact__intro,
  .contact__cta-text,
  .contact__footer-name,
  .contact__copy {
    text-wrap: pretty;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

  .hero__content {
    max-width: 34rem;
  }

  .hero__role,
  .hero__statement {
    max-width: 32ch;
  }

  .hero__statement br {
    display: none;
  }

  .hero__photo { max-width: 260px; }

  .glance__grid { grid-template-columns: 1fr; }
  .glance__item:nth-child(odd) { border-right: none; }
  .glance__item { padding: var(--space-sm) var(--space-md); }
  .glance__value { max-width: 34ch; }
  .team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team__intro { margin-bottom: var(--space-lg); }
  .topics__grid { grid-template-columns: 1fr; }
  .topic-card { padding: var(--space-md); }
  .topics__summary { margin-top: var(--space-lg); }
  .topics__startup-cloud { gap: 0.625rem; }
  .topics__startup-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    justify-content: flex-start;
  }

  .topics__startup-item span { display: block; }
  .guest__item { grid-template-columns: 2rem 1fr; }

  .media__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: start;
  }
  .media__type { display: none; }
  .media__arrow { display: none; }
  .media-topics { margin-top: var(--space-lg); }
  .media-topics__summary,
  .media-topics__content { padding-left: var(--space-md); padding-right: var(--space-md); }
  .media-topics__summary { padding-top: var(--space-md); padding-bottom: var(--space-md); }
  .media-topics__content { padding-bottom: var(--space-md); }
  .media-topics__grid { grid-template-columns: 1fr; }

  .contact__top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact__cta-main {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact__links {
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 0;
    flex-wrap: wrap;
  }

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

  .contact__footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }
}

@media (max-width: 480px) {
  .hero__name { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .section-title {
    max-width: 12ch;
  }

  .hero__role,
  .hero__statement,
  .topics__summary,
  .contact__intro,
  .contact__cta-text {
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn { text-align: center; }
  .hero__photo { max-width: 220px; }

  .hero__photo-dot {
    width: 50px; height: 50px;
    bottom: -12px; left: -12px;
  }

  .hero__photo-accent {
    top: -10px; right: -10px;
  }

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

  .team-card__photo {
    width: 72px;
    height: 72px;
  }

  .contact__links {
    gap: 0.5rem 0.875rem;
  }
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .stagger-1 { transition-delay: 0.05s; }
  .stagger-2 { transition-delay: 0.1s; }
  .stagger-3 { transition-delay: 0.15s; }
  .stagger-4 { transition-delay: 0.2s; }
  .stagger-5 { transition-delay: 0.25s; }
}
