/* ==========================================================
   01 / 05 — BASE GLOBAL + HEADER + HERO + COUNTDOWN
   Proyecto: Conversatorio Compras Públicas Efectivas 2026
   ========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --ink: #080b1f;
  --navy: #070b22;
  --navy-2: #0b1530;
  --orange: #ff681f;
  --orange-2: #ff7c25;
  --yellow: #f4b73a;
  --blue: #2b66b0;
  --red: #c12a2a;
  --paper: #f3f3f3;
  --card: #e7e8ea;
  --muted: #535968;
  --line: #d6d8dd;
  --white: #fff;
  --container: 1190px;
  --shadow: 0 34px 78px rgba(8, 13, 36, 0.18), 0 12px 34px rgba(8, 13, 36, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.section-dark {
  position: relative;
  overflow: hidden;
  background: #050816;
  color: #fff;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
 /* background:
    radial-gradient(
      circle at 18% 15%,
      rgba(255, 103, 29, 0.2),
      transparent 24%
    ),
    radial-gradient(circle at 86% 36%, rgba(19, 45, 88, 0.72), transparent 28%),
    linear-gradient(180deg, rgba(2, 7, 22, 0.05), #050816 72%);*/
  background: linear-gradient(110.27deg, #000000 0.75%, #0C0E25 56.1%, #250100 100%);

  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  padding: 9px 0;
  color: #fff;
  transition:
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 9, 23, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
}

.header__inner {
  height: 48px;
  display: grid;
  grid-template-columns: 162px 190px 1fr 178px;
  gap: 18px;
  align-items: center;
}

.brand img {
  width: 154px;
  height: auto;
}

.search input {
  width: 100%;
  height: 24px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  outline: 0;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a,
.phones a {
  transition: color 0.25s var(--ease);
}

.main-nav a:hover,
.phones a:hover {
  color: var(--orange);
}

.phones {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition:
    opacity 0.25s var(--ease),
    top 0.25s var(--ease),
    rotate 0.25s var(--ease);
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle::after {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 20px;
  rotate: 45deg;
}

.nav-toggle[aria-expanded="true"]::after {
  top: 20px;
  rotate: -45deg;
}

/* ==========================================================
   HERO
   ========================================================== */

.hero {
  position: relative;
  min-height: 720px;
  padding: 78px 0 60px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero__stage {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 7, 20, 0.48) 0%,
      rgba(3, 7, 20, 0.62) 45%,
      rgba(3, 7, 20, 0.94) 100%
    ),
    radial-gradient(
      circle at 16% 42%,
      rgba(255, 104, 31, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 84% 40%,
      rgba(55, 171, 218, 0.2),
      transparent 28%
    ),
    url("../assets/conversatorio2026/images/hero-auditorium.jpg") center center/cover no-repeat;
  filter: saturate(1.04) contrast(1.04) brightness(0.94);
}

.hero__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 22, 0.62) 0%,
      rgba(5, 8, 22, 0.18) 42%,
      rgba(5, 8, 22, 0.58) 100%
    ),
    radial-gradient(
      ellipse at 50% 68%,
      rgba(255, 104, 31, 0.12),
      transparent 48%
    );
  pointer-events: none;
}

.hero__stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 185px;
  background: linear-gradient(
    0deg,
    #050816 0%,
    rgba(5, 8, 22, 0.86) 42%,
    rgba(5, 8, 22, 0) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 20;
  display: grid;
  justify-items: center;
  margin-bottom: 50px;
}

.hero__logo {
  width: min(670px, 82vw);
  height: auto;
  margin: -12px auto 14px;
}

.hero__lead {
  max-width: 660px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 500px;
  width: 100%;
}

.hero__actions .btn{     width: 100%; }

.btn {
  position: relative;
  min-height: 38px;
  padding: 0 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.26s var(--ease),
    border-color 0.26s var(--ease),
    color 0.26s var(--ease),
    transform 0.26s var(--ease),
    box-shadow 0.26s var(--ease);
}

.btn::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.25s var(--ease);
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 104, 31, 0.25);
}

.btn-primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ==========================================================
   COUNTDOWN
   ========================================================== */

.countdown {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}

.countdown li {
  position: relative;
  min-width: 94px;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.countdown li:not(:last-child)::after {
  content: ":";
  position: absolute;
  right: -22px;
  top: 12px;
  color: #ff7c2d;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(255, 104, 31, 0.42);
}

.countdown strong {
  width: 92px;
  height: 86px;
  border: 1px solid rgba(255, 133, 41, 0.95);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 38, 0.94),
    rgba(5, 8, 24, 0.86)
  );
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(255, 110, 35, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.28);
  color: #ff8b2d;
  font-size: 47px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -3px;
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(255, 120, 40, 0.25);
}

.countdown span {
  display: block;
  margin-top: 0;
  color: #fff;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* ==========================================================
   NEURALS BASE + HERO
   ========================================================== */

.neural {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: floaty 9.5s ease-in-out infinite;
  filter: drop-shadow(0 14px 28px rgba(255, 104, 31, 0.13));
  transform-origin: center;
}

.neural--hero-l {
  width: 285px;
  left: 15%;
  top: 18%;
  opacity: 0.82;
}

.neural--hero-r {
  width: 370px;
  right: 15%;
  top: 18%;
  opacity: 0.82;
  animation-delay: -2.1s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(1.4deg);
  }
}

/* ==========================================================
   RESPONSIVE — BASE / HEADER / HERO
   ========================================================== */

@media (max-width: 1280px) {
  .neural--hero-l {
    left: 8%;
  }

  .neural--hero-r {
    right: 8%;
  }
}

@media (max-width: 1100px) {
  .header__inner {
    grid-template-columns: 160px 1fr 42px;
  }

  .search,
  .phones {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: 66px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 18px;
    background: rgba(5, 9, 23, 0.96);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  .hero {
    min-height: 590px;
    padding-bottom: 132px;
  }

  .hero__content {
    margin-bottom: 38px;
  }

  .neural--hero-l {
    width: 220px;
    left: 4%;
    top: 20%;
  }

  .neural--hero-r {
    width: 260px;
    right: 4%;
    top: 22%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 560px;
    padding: 92px 0 70px;
  }

  .hero__stage {
    background-position: center top;
  }

  .hero__logo {
    width: min(430px, 92vw);
    margin: 0 auto 16px;
  }

  .hero__lead {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.42;
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .countdown {
    gap: 18px;
    margin-bottom: 24px;
  }

  .countdown li {
    min-width: 68px;
  }

  .countdown li:not(:last-child)::after {
    right: -14px;
    top: 8px;
    font-size: 40px;
  }

  .countdown strong {
    width: 66px;
    height: 62px;
    font-size: 34px;
    letter-spacing: -2px;
  }

  .countdown span {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .neural--hero-l {
    width: 118px;
    left: -28px;
    top: 132px;
  }

  .neural--hero-r {
    width: 106px;
    right: -25px;
    top: 292px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 8px 0;
  }

  .header__inner {
    height: 44px;
    grid-template-columns: 142px 1fr;
  }

  .brand img {
    width: 134px;
  }

  .hero__logo {
    width: min(385px, 96vw);
  }

  .hero__lead {
    max-width: 345px;
    font-size: 15px;
    line-height: 1.38;
  }

  .btn {
    min-height: 35px;
    padding: 0 17px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .countdown {
    gap: 14px;
  }

  .countdown li {
    min-width: 58px;
  }

  .countdown li:not(:last-child)::after {
    right: -12px;
    top: 8px;
    font-size: 34px;
  }

  .countdown strong {
    width: 58px;
    height: 55px;
    font-size: 31px;
    letter-spacing: -1.8px;
  }

  .countdown span {
    font-size: 8px;
    letter-spacing: 1.8px;
  }

  .hero__actions {
    gap: 16px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   02 / 05 — PROGRAMA + TABS + AGENDA + PLANS
   ========================================================== */

/*==================================================
PROGRAM
==================================================*/

.program {
  position: relative;
  z-index: 30;
  margin-top: -50px;
  margin-bottom: -100px;
  overflow: hidden;
 /* background: linear-gradient( 180deg, transparent 0, transparent 155px,  var(--paper) 155px,  var(--paper) 100%  ); */
}

.program__card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.program__header {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 42px;
  align-items: start;
  margin-bottom: 34px;
}

.program h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 0.94;
  letter-spacing: -1px;
  font-weight: 800;
}

.program h2 em {
  color: var(--orange);
  font-style: italic;
}

/*==================================================
EYEBROW
==================================================*/

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 40%;
  color: var(--navy);
}

.program__tabs {
  text-align: center;
}

/*==================================================
TABS
==================================================*/

.tabs {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: #09142f;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.tabs button {
  min-height: 42px;
  padding: 0 30px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #949494;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.tabs button:hover {
  color: var(--orange);
}

.tabs button[aria-selected="true"] {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}

.tabs button:focus-visible {
  outline: 3px solid rgba(255, 104, 31, 0.35);
  outline-offset: 3px;
}

.tabs--plans button {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 10px;
}

/*==================================================
AGENDA
==================================================*/

.schedule {
  width: 100%;
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.schedule.is-switching {
  opacity: 0.25;
  transform: translateY(10px);
}

.schedule__head {
  display: grid;
  grid-template-columns: 125px 1fr 360px;
  gap: 20px;
  padding-bottom: 12px;
}

.schedule__head span {
  color: #ec671c;
  font-size: 13px;
  font-weight: 900;
}

.schedule__row {
  display: grid;
  grid-template-columns: 125px 1fr 360px;
  gap: 20px;
  align-items: center;
  min-height: 54px;
  padding: 10px 16px;
  background: #f2f2f3;
}

.schedule__row.game { 
    color: #EC671C; 
    display: flex;
}

.schedule__row.game strong{ color: #EC671C; }
.schedule__row.game p{
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #EC671C;
}

.schedule__row:nth-child(even) {
  background: #fff;
}

.schedule__row strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.schedule__row p {
  margin: 0;
  color: #23293b;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.schedule__break {
  margin: 8px 0;
  padding: 16px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 13px;
  font-weight: 900;
}

.almuerzo {
  color: #f4b43a !important;
}

/*==================================================
PLANS
==================================================*/

.plans {
  position: relative;
  margin-top: 0;
  padding: 12px 0 60px;
  background: #f3f3f3;
}

.plans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    to right,
    #f4b73a 0%,
    #f4b73a 50%,
    #2b66b0 50%,
    #2b66b0 75%,
    #c12a2a 75%,
    #c12a2a 100%
  );
}

.section-heading {
  padding-top: 18px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 40px;
  line-height: 0.95;
  font-weight: 800;
}

.section-heading h2 span {
  font-size: 26px;
}

.section-heading em {
  color: var(--orange);
  font-style: italic;
}

.section-heading p {
  max-width: 700px;
  margin: 22px auto 0;
  color: #535968;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

/*==================================================
PRICE GRID
==================================================*/

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 32px;
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.price-grid.is-switching {
  opacity: 0.25;
  transform: translateY(10px);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 34px 38px;
  border-radius: 24px;
  background: #e6e7e9;
  border: 1px solid #d0d3d8;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(8, 13, 36, 0.14);
}

.price-card--featured {
  background: var(--navy);
  color: #fff;
}

.price-card .kicker {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.price-card--featured .kicker {
  color: #fff;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
}

.price-card p {
  margin: 0;
  color: #535968;
  line-height: 1.45;
  font-size: 14px;
}

.price-card--featured p {
  color: #d8dfea;
}

.price-card strong {
  display: block;
  margin: 26px 0 4px;
  color: var(--orange);
  font-size: 40px;
  font-weight: 900;
}

.price-card small {
  color: #3d4658;
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 15px;
}

.price-card--featured small {
  color: #fff;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.price-card:not(.price-card--featured) .btn {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}

.price-card--featured .btn {
  background: var(--orange);
}

/*==================================================
DECORACIONES
==================================================*/

.neural--program-l {
  width: 150px;
  left: calc(50vw - 710px);
  top: 12%;
  z-index: 5;
}

.neural--program-r {
  width: 150px;
  right: calc(50vw - 710px);
  top: 65%;
  z-index: 5;
}

.neural--plans-l {
  width: 130px;
  left: calc(50vw - 700px);
  top: 52%;
  z-index: 0;
}

.neural--plans-r {
  width: 130px;
  right: calc(50vw - 680px);
  top: 55%;
  z-index: 0;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 1100px) {
  .program {
    margin-top: -95px;
    margin-bottom: -95px;
  }

  .program__card {
    border-radius: 28px;
  }

  .program__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .program__tabs {
    text-align: left;
  }

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

@media (max-width: 390px) {
  .tabs {
    padding: 4px;
  }

  .tabs button {
    font-size: 8px;
    letter-spacing: 0.8px;
    padding: 0 4px;
    min-height: 38px;
  }
}

@media (max-width: 768px) {
  .program {
    margin-top: -72px;
    margin-bottom: -72px;
  }

  .program__card {
    padding: 26px;
  }

  .program h2 {
    font-size: 34px;
  }

  #program-title br{  display: none; }
 .program__header .eyebrow{ text-align: center; }

  .tabs {
    width: 100%;
  }

  .tabs {
    width: 100%;
    display: flex;
    gap: 2px;
  }

  .tabs button {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 6px;
    font-size: 10px;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .schedule__head span:last-child {
    display: none;
  }

  .schedule__row.game { display: grid; }
  .schedule__row.game p{
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 800;
  }

  .schedule__row {
    grid-template-columns: 76px 1fr;
    gap: 10px;
    align-items: start;
  }

  .schedule__row p:last-child {
    grid-column: 2;
  }

  .schedule__break {
    letter-spacing: 6px;
    font-size: 10px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading h2 span {
    font-size: 22px;
  }

  .benefits__neural--tl, .benefits__neural--br{ display: none;  }

}

@media (max-width: 480px) {
  .program__card {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .schedule__row {
    font-size: 11px;
  }

  .price-card {
    padding: 22px 20px;
  }
}
/* ==========================================================
   03 / 05 — EXPERIENCE + BENEFITS + SPEAKERS
   ========================================================== */

/*==================================================
 EXPERIENCE
==================================================*/

.experience {
  position: relative;
  overflow: hidden;
  padding: 170px 0 110px;
  /*background:
    radial-gradient(circle at 8% 12%, rgba(255, 104, 31, 0.1), transparent 24%),
    radial-gradient(  circle at 96% 12%,  rgba(44, 108, 177, 0.18),  transparent 28%  ),
    linear-gradient(90deg, #040715 0%, #091228 100%);*/

    background: linear-gradient(110.27deg, #000000 0.75%, #0C0E25 56.1%, #250100 100%);

}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    transparent 18%,
    transparent 82%,
    rgba(255, 255, 255, 0.03)
  );
  pointer-events: none;
}

.experience__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 92px;
  align-items: start;
}

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

.experience__copy h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  line-height: 0.92;
  letter-spacing: -2px;
  font-weight: 900;
}

.experience__copy h2 em {
  color: var(--orange);
  font-style: italic;
}

.experience__copy p {
  max-width: 355px;
  margin: 28px 0 36px;
  color: #d9e0ea;
  font-size: 18px;
  line-height: 1.62;
  font-weight: 500;
}

.experience__copy strong {
  color: #f6b33d;
}

.experience__copy img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow:
    0 45px 80px rgba(0, 0, 0, 0.34),
    0 10px 25px rgba(0, 0, 0, 0.25);
}

/*==================================================
 BENEFITS
==================================================*/

.benefits {
  position: relative;
  overflow: visible;
  padding: 38px 42px;
  border-radius: 34px;
  border: 1px solid rgba(93, 168, 220, 0.55);

  background: linear-gradient(
    180deg,
    rgba(13, 24, 52, 0.98),
    rgba(10, 19, 43, 0.98)
  );

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 25px 70px rgba(0, 0, 0, 0.28);
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255, 104, 31, 0.04),
    transparent 35%
  );
}

.benefits__head {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits__head p {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  font-weight: 800;
}

.benefits__head span {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 800;
}

.benefits__head span:nth-child(2) {
  color: #6ec8ea;
}

.benefits__head span:nth-child(3) {
  color: var(--orange);
}

.benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.benefits li:last-child {
  border-bottom: none;
}

.benefits li span {
  color: #edf3fb;
  font-size: 17px;
  line-height: 1.45;
  padding-right: 30px;
}

.benefits i,
.benefits b {
  justify-self: center;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
}

.benefits i {
  color: #70c8eb;
}

.benefits b {
  color: var(--orange);
}

.benefits i::before,
.benefits b::before {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.benefits .is-empty {
  opacity: 0.25;
}

.benefits .is-empty::before {
  content: "—";
  font-size: 18px;
}

/*==================================================
 BENEFITS DECORATIONS
==================================================*/

.benefits__neural {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.benefits__neural--tl {
  width: 105px;
  left: -51px;
  top: -55px;
}

.benefits__neural--br {
  width: 105px;
  right: -54px;
  bottom: -63px;
}

/*==================================================
 SPEAKERS
==================================================*/

.speakers {
  position: relative;
  padding: 76px 0 72px;
  /*background:
    radial-gradient(
      circle at 12% 22%,
      rgba(255, 104, 31, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(52, 126, 186, 0.18),
      transparent 30%
    ),
    linear-gradient(180deg, #050816 0%, #091126 100%);*/

    background: linear-gradient(110.27deg, #000000 0.75%, #0C0E25 56.1%, #250100 100%);

}

.speakers__inner {
  position: relative;
  z-index: 2;
}

.speakers__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 455px;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}

.speakers__copy h2 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  line-height: 0.95;
  font-weight: 950;
}

.speakers__copy h2 em {
  color: var(--orange);
  font-style: italic;
}

.speakers__copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dce3ef;
  font-size: 16px;
  line-height: 1.55;
}

.speakers__support {
  padding-left: 34px;
}

.support-flag {
  width: 72px;
  margin: 0 0 22px;
}

.speakers__support .eyebrow {
  color: #EFA53B;
  letter-spacing: 7px;
}

.speakers__support ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.speakers__support li {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  border-right: 1px solid #FFFFFF7A;
}

.speakers__support li:last-child {
  border-right: none;
}

/*==================================================
 SPEAKER GRID
==================================================*/

.speaker-pages {
  position: relative;
}

.speaker-page {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.speaker-page.is-active {
  display: grid;
  animation: speakerFade 0.35s both;
}

.speaker-card {
  position: relative;
  overflow: hidden;
  height: 330px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.speaker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.speaker-card:hover img {
  transform: scale(1.05);
}

.speaker-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
}

.speaker-card__content {
  position: absolute;
  left: 15px;
  right: 60px;
  bottom: 16px;
  z-index: 10;
}

.speaker-card__content h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 850;
}

.speaker-card__content p {
  margin: 0;
  opacity: 0.85;
  font-size: 11px;
  color: #FF8845;
}

.speaker-card__more {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  width: 34px;
  height: 34px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--orange);
  font-size: 22px;
  font-weight: 700;
  padding: 0;

  /*box-shadow: 0 10px 22px rgba(255, 104, 31, 0.35);*/

  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.speaker-card:hover .speaker-card__more {
  /*transform: scale(1.12);*/
  /*box-shadow: 0 18px 36px rgba(255, 104, 31, 0.45);*/
  box-shadow: 0 10px 22px rgba(255, 104, 31, 0.35);
}

/*==================================================
 PAGINATION
==================================================*/

.speaker-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.speaker-pagination__numbers {
  display: flex;
  gap: 12px;
}

.speaker-page-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #fff;
  font-weight: 400;
}

.speaker-page-btn.is-active {
  background: #7a4630;
}

.speaker-arrow {
  width: 34px;
  height: auto;
  border: none;
  background: none;
  color: var(--orange);
  font-size: 34px;
}

/*==================================================
 MOBILE PAGINATION
==================================================*/

.speaker-mobile-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.speaker-mobile-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  background: none;
  color: var(--orange);
  font-size: 24px;
}

.speaker-mobile-counter {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

/*==================================================
 MODAL
==================================================*/

.speaker-modal {
  width: min(900px, calc(100vw - 32px));
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.speaker-modal::backdrop {
  background: rgba(2, 7, 22, 0.78);
  backdrop-filter: blur(8px);
}

.speaker-modal__body {
  display: grid;
  grid-template-columns: 330px 1fr;
}

.speaker-modal__body img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 4;

  width: 38px;
  height: 38px;

  border: none;
  border-radius: 50%;

  background: rgba(8, 13, 36, 0.1);

  font-size: 28px;
}

.speaker-bio {
  padding: 46px 44px;
}

.speaker-bio h3 {
  margin: 0;
  color: var(--navy);
  font-size: 38px;
}

.speaker-bio strong {
  display: block;
  margin: 12px 0 22px;
  color: var(--orange);
}

.speaker-bio p {
  color: #4f5868;
  line-height: 1.6;
}

@keyframes speakerFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/*==================================================
 RESPONSIVE
==================================================*/

@media (max-width: 1100px) {
  .experience {
    padding: 90px 0 70px;
    padding-bottom: 20px;
  }

  .experience__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .speaker-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 390px) {
  .benefits__head,
  .benefits li {
    grid-template-columns: minmax(0, 1fr) 48px 48px;

    column-gap: 6px;
  }

  .benefits__head p {
    font-size: 9px;

    letter-spacing: 2px;
  }

  .benefits__head span {
    font-size: 9px;

    letter-spacing: 1px;
  }
}

@media (max-width: 768px) {

.speakers__support {
  padding-left: 0;
}

  .benefits {
    padding: 24px;
  }

  .benefits__head,
  .benefits li {
    grid-template-columns: minmax(0, 1fr) 60px 60px;
    column-gap: 10px;
  }

  .benefits__head p {
    font-size: 10px;
    letter-spacing: 3px;
    white-space: nowrap;
  }

  .benefits__head span {
    font-size: 10px;
    letter-spacing: 2px;
    white-space: nowrap;
    text-align: center;
  }

  .benefits li span {
    font-size: 13px;
    line-height: 1.35;
    padding-right: 10px;
  }

  .benefits li span {
    font-size: 14px;
  }

  .speaker-page {
    display: none;
  }

  .speaker-page.is-active {
    display: flex;
    justify-content: center;
  }

  .speaker-card {
    display: none;
    width: 290px;
    max-width: 290px;
    height: 430px;
  }

  .speaker-card.is-active {
    display: block;
  }

  .speaker-pagination {
    display: none;
  }

  .speaker-mobile-nav {
    display: flex;
  }

  .speaker-modal__body {
    grid-template-columns: 1fr;
  }

  .speaker-modal__body img {
    min-height: 0;
    height: 260px;
  }

  .speaker-bio {
    padding: 28px 24px;
  }
}
/* ==========================================================
   04 / 05 — RECAP + VIDEO + FOOTER
   ========================================================== */

/*==================================================
 RECAP
==================================================*/

.recap {
  position: relative;

  overflow: hidden;

  padding: 72px 0;

  background: var(--paper);
}

.recap::before,
.recap::after {
  content: "";

  position: absolute;

  left: 0;

  width: 100%;

  height: 8px;

  background: linear-gradient(
    to right,
    var(--yellow) 0%,
    var(--yellow) 50%,
    var(--blue) 50%,
    var(--blue) 75%,
    var(--red) 75%,
    var(--red) 100%
  );
}

.recap::before {
  top: 0;
}

.recap::after {
  bottom: 0;
}

/*==================================================
 GRID
==================================================*/

.recap__grid {
  display: grid;

  grid-template-columns: 380px minmax(0, 1fr);

  gap: 72px;

  align-items: start;
}

/*==================================================
 COPY
==================================================*/

.recap h2 {
  margin: 0 0 28px;

  color: var(--ink);

  font-size: 38px;

  line-height: 1.15;

  letter-spacing: -1px;

  font-weight: 900;
}

.recap h2 em {
  color: var(--orange);
  font-style: italic;
}

.recap p {
  max-width: 320px;
  margin: 0 0 38px;
  color: #545b68;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 500;
}

.recap .btn {
  min-width: 250px;
}

/*==================================================
 STATS
==================================================*/

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.stats li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 24px;
  border-radius: 20px;
  background: #e6e7e9;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.stats li:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(8, 13, 36, 0.12);
}

.stats strong {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.stats span {
  color: #23293b;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}

/*==================================================
 VIDEO
==================================================*/

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  padding: 0;
  margin: 0;
}

.video-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.video-card:hover img {
  transform: scale(1.04);
}

.video-card button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 112px;
  height: 112px;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 14px rgba(255, 104, 31, 0.28);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.video-card button:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 18px rgba(255, 104, 31, 0.24);
}

.video-card button::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 35px;
  border-left: 30px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

/*==================================================
 FOOTER
==================================================*/

.site-footer {
  background: #f3f3f3;
  border-top: 3px solid var(--orange);
  padding: 34px 0 18px;
}

.footer__grid {
  display: grid;
  grid-template-columns:
    240px
    160px
    280px
    1fr;
  gap: 42px;
  align-items: start;
}

.footer__grid img {
  width: 180px;
}

.footer__grid nav {
  display: grid;
  gap: 10px;
}

.footer__grid nav a {
  transition: color 0.25s var(--ease);
}

.footer__grid nav a:hover {
  color: var(--orange);
}

.footer__grid address {
  font-style: normal;
  color: #4d5668;
  line-height: 1.7;
}

.hashtag {
  margin: 8px 0 12px;
  color: var(--orange);
  font-weight: 900;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
}

.copyright {
  margin-top: 24px;
  text-align: center;
  color: var(--orange);
  font-size: 11px;
}

/*==================================================
 RESPONSIVE
==================================================*/

@media (max-width: 1100px) {
  .recap__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

@media (max-width: 768px) {
  .recap {
    padding: 54px 0;
  }

  .recap h2 {
    font-size: 34px;
  }

  .recap p {
    max-width: none;
  }

  .stats {
    gap: 10px;
  }

  .stats li {
    padding: 16px;

    min-height: 95px;
  }

  .stats strong {
    font-size: 28px;
  }

  .stats span {
    font-size: 10px;
    font-weight:300;
  }

  .video-card {
    border-radius: 22px;
  }

  .video-card img {
    height: 320px;
  }

  .video-card button {
    width: 86px;

    height: 86px;
  }

  .video-card button::before {
    left: 34px;
    top: 27px;
    border-left: 24px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
  }
}

@media (max-width: 480px) {
  /*.stats {
    grid-template-columns: 1fr;
  }*/

  .video-card img {
    height: 230px;
  }

  .footer__grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }
}

/* ==========================================================
   05 / 05 — ENTERPRISE POLISH
   ========================================================== */

/*==================================================
 FLUID TYPOGRAPHY
==================================================*/

.hero__lead {
  font-size: clamp(15px, 1.15vw, 18px);
}

.program h2,
.experience h2,
.speakers h2,
.recap h2 {
  font-size: clamp(30px, 2.8vw, 48px);
}

.section-heading h2 {
  font-size: clamp(30px, 2.8vw, 42px);
}

.section-heading h2 span {
  font-size: clamp(20px, 2vw, 26px);
}

/*==================================================
 FLUID SPACING
==================================================*/

.container {
  width: min(calc(100% - clamp(28px, 4vw, 42px)), var(--container));
}

.hero {
  padding-top: clamp(70px, 6vw, 90px);
}

.program__card,
.benefits,
.price-card {
  padding: clamp(22px, 3vw, 48px);
}

.recap {
  padding-block: clamp(54px, 6vw, 72px);
}

.speakers {
  padding-block: clamp(52px, 7vw, 76px);
}

/*==================================================
 HOVER PERFORMANCE
==================================================*/

.btn,
.price-card,
.speaker-card img,
.video-card img,
.speaker-card__more {
  will-change: transform;

  backface-visibility: hidden;
}

/*==================================================
 GPU
==================================================*/

.speaker-card img,
.video-card img,
.neural {
  transform: translateZ(0);
}

/*==================================================
 FOCUS
==================================================*/

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 104, 31, 0.35);

  outline-offset: 4px;
}

/*==================================================
 SELECTION
==================================================*/

::selection {
  background: var(--orange);

  color: #fff;
}

/*==================================================
 SCROLLBAR
==================================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #091126;
}

::-webkit-scrollbar-thumb {
  background: var(--orange);

  border-radius: 50px;
}

/*==================================================
 LARGE DESKTOP
==================================================*/

@media (min-width: 1600px) {
  :root {
    --container: 1280px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__logo {
    width: 700px;
  }

  .program {
    margin-top: -170px;
  }
}

/*==================================================
 1440
==================================================*/

@media (max-width: 1440px) {
  .neural--hero-l {
    left: 10%;
  }

  .neural--hero-r {
    right: 10%;
  }
}

/*==================================================
 1280
==================================================*/

@media (max-width: 1280px) {
  .program__header {
    gap: 34px;
  }

  .experience__grid {
    gap: 70px;
  }
}

/*==================================================
 992
==================================================*/

@media (max-width: 992px) {
  .experience__grid {
    gap: 55px;
  }

  .recap__grid {
    gap: 30px;
  }
}

/*==================================================
 768
==================================================*/

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .countdown {
    justify-content: space-between;
  }

  .speaker-card {
    box-shadow: none;
  }
}

/*==================================================
 640
==================================================*/

@media (max-width: 640px) {
  .program__card {
    border-radius: 20px;
    width: 99%;
  }

  .benefits {
    border-radius: 22px;
  }

  .video-card {
    border-radius: 20px;
  }
}

/*==================================================
 390
==================================================*/

@media (max-width: 390px) {
  .hero__logo {
    width: 94%;
  }

  .countdown {
    gap: 12px;
  }

  .speaker-mobile-counter {
    font-size: 24px;
  }
}

/*==================================================
 REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}

/*==================================================
 PRINT
==================================================*/

@media print {
  .hero,
  .video-card,
  .speaker-mobile-nav,
  .speaker-pagination,
  .btn {
    display: none !important;
  }
}

/*==================================================
 IMAGE QUALITY
==================================================*/

img {
  image-rendering: auto;
}

/*==================================================
 SVG
==================================================*/

svg {
  overflow: visible;
}

/*==================================================
 UTILITIES
==================================================*/

.hidden {
  display: none !important;
}

.flex-center {
  display: flex;

  align-items: center;

  justify-content: center;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/*==================================================
 FINAL
==================================================*/

html {
  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
}