:root {
  --ink: #080808;
  --ink-soft: #242424;
  --paper: #ffffff;
  --surface: #ffffff;
  --muted: #666666;
  --line: rgba(16, 20, 23, 0.12);
  --orange: #ff6b00;
  --orange-soft: #fff0e6;
  --orange-deep: #d94f00;
  --charcoal: #111111;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(16, 20, 23, 0.18);
}

* {
  box-sizing: border-box;
}

img,
iframe {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cairo", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  right: clamp(16px, 4vw, 56px);
  left: clamp(16px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(16, 20, 23, 0.72);
  color: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav a,
.social-links a {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  border-radius: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav a:hover,
.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.header-social {
  justify-content: flex-end;
}

.header-social a {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.header-social a[aria-label="LinkedIn"] {
  min-width: 42px;
  background: rgba(255, 255, 255, 0.14);
}

.header-social a:first-child {
  background: var(--orange);
  border-color: var(--orange);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 96svh);
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 54px;
  color: var(--white);
}

.hero-bg,
.hero-layer {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-layer {
  background:
    linear-gradient(90deg, rgba(16, 20, 23, 0.12), rgba(16, 20, 23, 0.85) 72%),
    linear-gradient(180deg, rgba(16, 20, 23, 0.55) 0%, rgba(16, 20, 23, 0.12) 36%, rgba(16, 20, 23, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.3vw, 7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.play-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary,
.play-button {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(255, 107, 0, 0.32);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.icon-play {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 9px solid currentColor;
}

.hero-console {
  position: absolute;
  z-index: 3;
  bottom: 54px;
  left: clamp(20px, 5vw, 72px);
  width: min(360px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(12, 16, 17, 0.58);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-console p {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-console strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.mini-meter,
.audio-line {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.mini-meter span,
.audio-line span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 0.32s ease;
}

.hero-console dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 0;
}

.hero-console dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-console dd {
  margin: 0;
  font-weight: 900;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -1px clamp(20px, 5vw, 72px) 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 22px 60px rgba(16, 20, 23, 0.08);
  transform: translateY(-34px);
}

.signal-strip article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
}

.signal-strip span {
  color: var(--orange);
  font-weight: 900;
}

.signal-strip strong {
  display: block;
  margin: 6px 0;
  font-size: 1.2rem;
}

.signal-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.platform,
.about-host,
.podcast,
.latest-episodes,
.guests,
.join {
  padding: clamp(62px, 8vw, 118px) clamp(20px, 5vw, 72px);
}

.section-copy {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-copy p:not(.section-label),
.join-copy p,
.feature p,
.episode p,
.guest-card p {
  color: var(--muted);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "large side"
    "large accent";
  gap: 18px;
}

.feature {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 70px rgba(16, 20, 23, 0.06);
}

.feature.large {
  grid-area: large;
  min-height: 480px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.06), rgba(8, 8, 8, 0.92)),
    url("assets/tradex-hero.png") center / cover;
  color: var(--white);
}

.feature.large p {
  color: rgba(255, 255, 255, 0.78);
}

.feature.accent {
  grid-area: accent;
  background: var(--orange-soft);
}

.feature span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature.large span {
  color: var(--orange);
}

.about-host {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 240, 230, 0.52));
}

.host-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 80px rgba(16, 20, 23, 0.08);
}

.host-card img {
  width: min(220px, 100%);
  justify-self: center;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.16));
}

.host-card p:not(.section-label) {
  max-width: 760px;
  color: var(--muted);
}

.host-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.host-metrics span {
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-weight: 900;
}

.podcast {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
}

.podcast .section-label {
  color: var(--orange);
}

.player {
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.28), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.player-top .section-label {
  margin-bottom: 0;
}

.player-top span {
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 107, 0, 0.18);
  color: #ffb077;
  font-size: 0.82rem;
  font-weight: 900;
}

.player p,
.episode p {
  color: rgba(255, 255, 255, 0.7);
}

.video-frame {
  position: relative;
  overflow: hidden;
  margin: 24px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #050909;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-link {
  width: fit-content;
  margin-top: 4px;
}

.audio-line {
  height: 9px;
}

.episode-stack {
  display: grid;
  gap: 12px;
}

.episode {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.episode.active {
  border-color: rgba(255, 107, 0, 0.56);
  background: rgba(255, 107, 0, 0.12);
}

.episode time {
  color: var(--orange);
  font-weight: 900;
}

.latest-episodes {
  background: #ffffff;
}

.episode-cards {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) repeat(2, minmax(220px, 0.75fr));
  gap: 18px;
}

.episode-card {
  display: grid;
  align-content: start;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 70px rgba(16, 20, 23, 0.06);
}

.episode-card.featured {
  grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.episode-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 8px;
  object-fit: cover;
}

.episode-card span {
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 900;
}

.episode-card p {
  color: var(--muted);
}

.guests {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 240, 230, 0.6));
}

.section-copy.narrow {
  max-width: 620px;
}

.guest-shell {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.guest-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.guest-tab {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.guest-tab.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(255, 107, 0, 0.26);
}

.guest-card {
  min-height: 315px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 230, 0.88)),
    var(--surface);
  box-shadow: 0 24px 80px rgba(16, 20, 23, 0.08);
}

.guest-sector {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 107, 0, 0.11);
  color: var(--orange-deep);
  font-size: 0.86rem;
  font-weight: 900;
}

.guest-card h3 {
  max-width: 720px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.18;
}

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

.voice-points li {
  border: 1px solid rgba(255, 107, 0, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 107, 0, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.join {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  background: #f7f7f7;
}

.join-copy {
  align-self: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(16, 20, 23, 0.07);
}

.contact-card span {
  color: var(--ink);
  font-weight: 900;
}

.contact-card .social-links a {
  border: 1px solid rgba(255, 107, 0, 0.22);
  background: var(--orange-soft);
  color: var(--orange-deep);
}

.join-form {
  display: grid;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(16, 20, 23, 0.08);
}

.join-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 20, 23, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 107, 0, 0.16);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 28px;
  margin-bottom: 0;
  color: var(--orange-deep);
  font-weight: 900;
}

.footer {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer strong {
  color: var(--white);
}

.footer-social {
  justify-content: flex-end;
}

.footer-social a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
  }

  .header-social {
    justify-self: end;
  }

  .hero {
    min-height: 880px;
  }

  .hero-console {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 34px;
  }

  .signal-strip,
  .platform-grid,
  .podcast,
  .episode-cards,
  .guest-shell,
  .join {
    grid-template-columns: 1fr;
  }

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

  .platform-grid {
    grid-template-areas: none;
  }

  .feature.large,
  .feature.accent {
    grid-area: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .brand-copy small,
  .header-social {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    max-width: calc(100vw - 104px);
    overflow: hidden;
    font-size: 0.88rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    padding-bottom: 2px;
  }

  .nav a {
    min-height: 38px;
    display: grid;
    place-items: center;
    padding: 7px 4px;
    text-align: center;
    white-space: normal;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero {
    min-height: auto;
    padding: 178px 20px 38px;
  }

  .hero-layer {
    background:
      linear-gradient(180deg, rgba(16, 20, 23, 0.72), rgba(16, 20, 23, 0.3) 40%, rgba(16, 20, 23, 0.95)),
      linear-gradient(90deg, rgba(16, 20, 23, 0.1), rgba(16, 20, 23, 0.64));
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 2.9rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    line-height: 1.15;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .btn,
  .play-button {
    width: 100%;
  }

  .signal-strip {
    margin-inline: 20px;
    transform: none;
  }

  .signal-strip,
  .episode {
    grid-template-columns: 1fr;
  }

  .signal-strip article,
  .episode,
  .player,
  .feature,
  .host-card,
  .episode-card,
  .guest-card,
  .join-form {
    padding: 20px;
  }

  .platform,
  .about-host,
  .podcast,
  .latest-episodes,
  .guests,
  .join {
    padding: 58px 20px;
  }

  .episode-card.featured {
    padding: 14px;
  }

  .episode-card img {
    min-height: 190px;
  }

  .feature.large {
    min-height: 360px;
  }

  .player-top {
    display: grid;
    align-items: start;
  }

  .video-frame {
    margin: 20px 0 16px;
  }

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

  .guest-tab {
    min-height: 48px;
    padding: 8px;
    font-size: 0.88rem;
  }

  .voice-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-card .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .footer-social {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .footer-social a {
    text-align: center;
  }
}

@media (max-width: 440px) {
  .hero-console dl,
  .guest-tabs {
    grid-template-columns: 1fr;
  }

  .hero-console,
  .player,
  .feature,
  .guest-card,
  .join-form {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    font-size: 0.78rem;
  }

  .nav a {
    min-height: 36px;
    font-size: 0.64rem;
  }

  .hero {
    padding-top: 170px;
  }

  .hero-console,
  .player,
  .feature,
  .guest-card,
  .join-form {
    padding: 18px;
  }
}
