@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/oswald-400.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/oswald-500.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/oswald-600.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/oswald-700.ttf") format("truetype");
}

:root {
  --bg: #050505;
  --panel: #0f0f0f;
  --panel-soft: #171717;
  --text: #ffffff;
  --muted: #d6d6d6;
  --soft: #a7a7a7;
  --red: #d30b10;
  --red-dark: #7b0003;
  --line: rgba(255, 255, 255, 0.18);
  --max: 1180px;
  --title: "Oswald", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(211, 11, 16, 0.18), transparent 28rem),
    radial-gradient(circle at 2% 46%, rgba(211, 11, 16, 0.12), transparent 20rem),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 78%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
}

.eyebrow {
  color: var(--muted);
  font-family: var(--title);
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--soft);
  font-size: 14px;
}

.nav a,
.site-footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
  position: relative;
}

.section-frame::before,
.section-frame::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  pointer-events: none;
}

.section-frame::before {
  top: 32px;
  left: 0;
  border-top: 2px solid var(--text);
  border-left: 2px solid var(--text);
}

.section-frame::after {
  right: 0;
  bottom: 32px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 44px;
  align-items: center;
  padding-top: 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 22px;
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--title);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.96;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.7vw, 108px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6.4vw, 96px);
}

.lead,
.contact-lead {
  max-width: 720px;
  color: var(--muted);
  font-family: var(--title);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.14;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid #ff3338;
  background: linear-gradient(135deg, #f52228 0%, var(--red) 45%, var(--red-dark) 100%);
  color: var(--text);
  box-shadow: 0 18px 48px rgba(211, 11, 16, 0.32);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
}

.red-disc {
  position: absolute;
  width: min(660px, 100%);
  aspect-ratio: 1;
  right: 8%;
  bottom: 2%;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 52, 46, 0.95), rgba(124, 0, 3, 0.98)),
    var(--red);
  filter: saturate(1.2);
}

.hero-visual img {
  position: relative;
  width: min(520px, 96%);
  max-height: 720px;
  margin: 0 auto;
  object-fit: cover;
  object-position: top center;
  border: 0;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 58% 62% at 52% 50%, #000 67%, rgba(0, 0, 0, 0.74) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse 58% 62% at 52% 50%, #000 67%, rgba(0, 0, 0, 0.74) 82%, transparent 100%);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 42px;
}

.section-heading.wide {
  max-width: 100%;
}

.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.industry-row span {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  background: linear-gradient(135deg, #f52b2f 0%, #9d0508 70%);
  color: var(--text);
  font-family: var(--title);
  font-size: 32px;
  line-height: 1;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 24px;
}

.industry-row span:nth-child(even) {
  background: #f7f7f7;
  color: #9d0508;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.metrics-grid article {
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.metrics-grid strong {
  display: block;
  color: var(--red);
  font-family: var(--title);
  font-weight: 600;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.9;
}

.metrics-grid span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-family: var(--title);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.05;
}

.highlight-strip {
  padding: 24px 30px;
  background: linear-gradient(135deg, #e3171d 0%, #9a0508 70%, #5a0003 100%);
  color: var(--text);
  font-family: var(--title);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.14;
  border-top-right-radius: 54px;
  border-bottom-left-radius: 54px;
}

.speaking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 36px;
  align-items: stretch;
}

.talk-list {
  display: grid;
  gap: 16px;
}

.talk-list article {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 18px 24px;
  background: #f7f7f7;
  color: #101010;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 24px;
}

.talk-list strong,
.press-card p {
  color: var(--red);
  font-family: var(--title);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.talk-list span {
  font-family: var(--title);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.photo-card {
  margin: 0;
  min-height: 100%;
  border: 1px solid rgba(211, 11, 16, 0.8);
  background: var(--red);
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

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

.press-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  min-height: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  align-items: center;
}

.press-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.press-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  background: #111;
}

.press-card h3 {
  margin: 8px 0 0;
  font-family: var(--title);
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.08;
  font-weight: 500;
}

.press-card p {
  margin-bottom: 0;
}

.topics {
  padding-top: 104px;
  padding-bottom: 104px;
}

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

.topic-grid article {
  min-height: 138px;
  padding: 24px 26px 24px 32px;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--red);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  font-family: var(--title);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
  padding-bottom: 72px;
}

.contact-visual {
  position: relative;
}

.contact-visual::before {
  content: "";
  position: absolute;
  width: 94%;
  aspect-ratio: 1;
  left: -18%;
  top: 3%;
  border-radius: 50%;
  background: linear-gradient(135deg, #d30b10, #780003);
}

.contact-visual img {
  position: relative;
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  object-position: top center;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-lead {
  max-width: 700px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 2px solid var(--text);
  font-family: var(--title);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
}

.contact-details a:hover {
  color: var(--red);
}

.qr-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  color: var(--muted);
  font-family: var(--title);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
}

.qr-block img {
  width: 180px;
  height: 180px;
  background: #fff;
}

.site-footer {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 26px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .speaking-layout,
  .contacts {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .metrics-grid,
  .topic-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .press-card.featured,
  .press-card {
    grid-template-columns: 1fr;
  }

  .photo-card img {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .section {
    padding: 62px 0;
  }

  .section-frame::before,
  .section-frame::after {
    width: 24px;
    height: 24px;
  }

  .eyebrow {
    font-size: 18px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 46px;
  }

  .lead,
  .contact-lead {
    font-size: 27px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual img {
    width: min(360px, 92%);
    max-height: 490px;
  }

  .red-disc {
    right: -8%;
  }

  .industry-row span,
  .metrics-grid span,
  .talk-list strong,
  .talk-list span,
  .press-card h3,
  .topic-grid article,
  .contact-details,
  .qr-block {
    overflow-wrap: anywhere;
  }

  .metrics-grid article,
  .topic-grid article {
    padding: 22px;
  }

  .talk-list article {
    display: grid;
    gap: 6px;
    padding: 18px;
  }

  .press-card {
    min-height: auto;
    padding: 14px;
  }

  .press-card img {
    min-height: 210px;
  }

  .contact-visual img {
    max-height: 560px;
  }

  .contact-details {
    font-size: 28px;
  }

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

  .qr-block img {
    width: 160px;
    height: 160px;
  }

  .site-footer {
    flex-direction: column;
  }
}
