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

@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/font/ProximaNova-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/font/ProximaNova-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/font/ProximaNovaA-Bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/font/ProximaNova-Extrabld.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #03063f;
  --navy-soft: #070d65;
  --orange: #f05b38;
  --purple: #282b8f;
  --paper: #f4f4fb;
  --ink: #060b3f;
  --muted: #dce4ff;
  --container-max: 1400px;
}
@media (max-width: 1440px) {
  :root {
    --container-max: 90%;
  }
}

html {
  background: #fff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Proxima Nova", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.page {
  width: 100%;
  overflow: hidden;
}

.section-inner {
  width: min(100% - 48px, var(--container-max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-dark {
  color: #fff;
  background:url(assets/images/banner-bg.jpg) no-repeat center center;
  background-size: cover;
}

.hero {
  position: relative;
  min-height: 710px;
  padding: 22px 0 72px;
}
.copy-right{
  background: #000032;
  padding: 40px 0;
  display: grid;
  align-self: center;
  justify-self: center;
  width: 100%;
}
.copy-right p{
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.hero-inner {
  min-height: 616px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  column-gap: 72px;
  align-items: start;
}

.top-logo {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 200px;
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  padding: 15px;
  z-index: 9;
}

.top-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  /* max-width: 610px; */
  padding-top: 120px;
  margin-left: 0;
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.line {
  width: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.86);
}

.line::before {
  content: "";
  width: 122px;
  height: 1px;
  flex: 0 0 122px;
  background: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  margin-top: 28px;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: clamp(72px, 3.7vw, 48px);
  line-height: 1;
  font-weight: 900;
  color: var(--orange);
}

.hero h2 {
  max-width: 570px;
  margin-top: 28px;
  font-size: clamp(28px, 2.7vw, 36px);
  line-height: 1.16;
  font-weight: 500;
}

.hero-copy > p {
  /* max-width: 610px; */
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.brand-card {
  position: relative;
  width: fit-content;
  min-width: 270px;
  max-width: 400px;
  min-height: 68px;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border-radius: 6px;
  background: #fff;
}

.brand-card img {
  display: block;
  max-width: 100%;
  height: auto;
}

.brand-card::before {
  position: absolute;
  left: 14px;
  top: 0;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.brand-card strong:first-child {
  color: #f0784c;
  font-size: 24px;
  font-style: italic;
}

.brand-card strong:last-child {
  color: #62626d;
  font-size: 34px;
}

.invite {
  margin-top: 42px !important;
  color: #fff !important;
  font-size: 18px !important;
}

.btn {
  display: inline-grid;
  place-items: center;
  min-height: 56px;
  padding: 0 42px;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.btn-light {
  margin-top: 22px;
  color: #111954;
  background: #fff;
}

.date-wrap {
  position: relative;
  width: 260px;
  height: 252px;
  justify-self: end;
  margin-top: 66px;
  margin-right: 0;
}
.date-wrap img{
  max-width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .date-wrap img{
    max-height: 100%;
  }
}
.date-orbit {
  position: absolute;
  left: 0;
  width: 260px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(49, 88, 243, 0.8);
  border-radius: 50%;
  background: linear-gradient(204.46deg, rgba(10, 21, 68, 0.4) 12.35%, #0A1544 46.89%, rgba(34, 40, 206, 0.4) 86.82%);
  text-align: center;
  box-shadow: inset 0 0 70px rgba(48, 75, 220, 0.08);
}

.date-orbit-top {
  top: 0;
}

.date-orbit-bottom {
  top: 180px;
}

.date-orbit strong {
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.date-orbit sup {
  margin-left: 2px;
  font-size: 17px;
  vertical-align: super;
}

.date-orbit span {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1;
}

.date-orbit-bottom strong {
  font-size: 42px;
}

.live-pill {
  position: absolute;
  left: 68px;
  top: 200px;
  z-index: 3;
  width: 116px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  background: #fff;
  color: #ee3f22;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
}

.live-pill i {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #6967d7;
}

.live-pill i::before,
.live-pill i::after {
  content: "";
  position: absolute;
  background: #6967d7;
}

.live-pill i::before {
  left: 4px;
  top: -4px;
  width: 7px;
  height: 5px;
  border-radius: 6px 6px 0 0;
}

.live-pill i::after {
  right: -5px;
  top: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: -9px -3px 0 -1px #8d8bed;
}

.mesh {
  position: absolute;
  pointer-events: none;
}

.mesh-hero {
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 300px;
  opacity: 0.86;
  background:
    radial-gradient(ellipse at 50% 78%, rgba(21, 149, 230, 0.72), transparent 58%),
    repeating-radial-gradient(ellipse at 50% 105%, rgba(34, 126, 232, 0.74) 0 1px, transparent 1px 9px);
  transform: perspective(230px) rotateX(60deg);
}

.countdown {
  position: relative;
  left: 0;
  width: min(100%, var(--container-max));
  height: 140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 4;
  margin: 40px auto 0;
  background: linear-gradient(90deg, #1F1F62 25.56%, #40275F 46.03%, #C84737 83.25%, #EE4A29 100%);
  border-radius: 10px;
}

.countdown div {
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown strong {
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.countdown span {
  margin-top: 11px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.speakers {
  position: relative;
  padding: 74px 0 64px;
  /* background: var(--paper); */
  background-color: #F6F4FF;
    position: relative;
    background-image: url(https://techcarrot.ae/wp-content/themes/techcarrot-theme/images/speaker-sec-bg-right.png), url(https://techcarrot.ae/wp-content/themes/techcarrot-theme/images/speaker-sec-bg.png);
    background-size: 181px 220px;
    background-repeat: no-repeat;
    background-position: 100% -60px, 0px 110%;
}

.center {
  text-align: center;
  color: #323858;
}

.speakers h2 {
  margin-top: 9px;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.corner-lines {
  position: absolute;
  width: 110px;
  height: 170px;
  opacity: 0.38;
  background: repeating-linear-gradient(135deg, transparent 0 13px, #9fa5c2 13px 15px);
}

.corner-left {
  left: 0;
  top: 24px;
}

.corner-right {
  right: 0;
  top: 24px;
  transform: scaleX(-1);
}

.corner-left::after,
.corner-right::after {
  content: "";
  position: absolute;
  top: 260px;
  width: 110px;
  height: 170px;
  background: inherit;
}

.speaker-card {
  width: 100%;
  max-width: 465px;
  margin: 28px auto 34px;
  overflow: hidden;
  border-radius: 10px;
  /* cursor: pointer; */
}
.speaker-card img{
  max-width: 100%;
}

.speaker-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 6px;
}

.speaker-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.speaker-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.speaker-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.speaker-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  max-height: min(92vh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.speaker-modal.is-open .speaker-modal__overlay {
  opacity: 1;
}

.speaker-modal.is-open .speaker-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.speaker-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 4px;
  background: rgba(24, 24, 24, 0.78);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.speaker-modal__media {
  flex: 0 0 auto;
  min-height: 296px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(45deg, transparent 0 34%, rgba(255, 255, 255, 0.18) 34% 39%, transparent 39% 52%, rgba(255, 255, 255, 0.18) 52% 57%, transparent 57%),
    #c9c9c9;
}

.speaker-modal__media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.speaker-modal__content {
  flex: 1 1 auto;
  padding: 54px 60px 60px;
  overflow-y: auto;
}

.speaker-modal__content h2 {
  margin: 0 0 6px;
  color: #111;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.speaker-modal__role {
  margin: 0 0 16px;
  color: #9a9a9a;
  font-size: 17px;
}

.speaker-modal__content p:not(.speaker-modal__role) {
  color: #181818;
  font-size: 17px;
  line-height: 1.65;
  text-align: justify;
}

.speaker-modal__social {
  width: 42px;
  height: 42px;
  margin-top: 14px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #d4d4d4;
  border-radius: 9px;
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-family: Georgia, serif;
}

body.modal-open {
  overflow: hidden;
}

.portrait {
  position: relative;
  height: 190px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 36%),
    #dfe1ec;
}

.head {
  position: absolute;
  left: 88px;
  top: 36px;
  width: 54px;
  height: 61px;
  border-radius: 48% 48% 45% 45%;
  background: #b3846e;
}

.neck {
  position: absolute;
  left: 101px;
  top: 92px;
  width: 30px;
  height: 28px;
  background: #a87462;
}

.body-shape {
  position: absolute;
  left: 58px;
  bottom: -28px;
  width: 120px;
  height: 108px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(90deg, #1d2546 0 38%, #fff 38% 62%, #1d2546 62%);
}

.tie {
  position: absolute;
  left: 111px;
  bottom: 0;
  width: 12px;
  height: 58px;
  background: #1d2546;
  clip-path: polygon(50% 0, 100% 35%, 70% 100%, 30% 100%, 0 35%);
}

.glasses {
  position: absolute;
  left: 83px;
  top: 60px;
  width: 64px;
  height: 16px;
  border-top: 4px solid #222;
}

.speaker-card footer {
  position: relative;
  min-height: 56px;
  padding: 12px 18px;
  border-radius: 11px 11px 0 0;
  background: linear-gradient(100deg, #020746, #122fbd 70%, #050743);
  color: #fff;
}

.speaker-card footer strong,
.speaker-card footer span {
  display: block;
}

.speaker-card footer strong {
  font-size: 13px;
  text-transform: uppercase;
}

.speaker-card footer span {
  margin-top: 4px;
  font-size: 10px;
  color: #c8d0ff;
}

.speaker-card footer b {
  position: absolute;
  right: 18px;
  top: 15px;
  font-size: 18px;
}

.speaker-copy {
  /* width: min(100%, 1120px); */
  margin: 0 auto;
  padding: 52px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(7, 10, 56, 0.05);
}

.speaker-copy h3 {
  font-size: 15px;
  line-height: 1.55;
}

.speaker-copy p {
  max-width: 100%;
  font-size: 18px;
  line-height: 1.75;
  color: #111426;
}

.speaker-copy p + p {
  margin-top: 30px;
}

.speaker-copy em {
  color: var(--orange);
  font-style: italic;
}

.speaker-copy strong {
  font-weight: 800;
}

.speaker-copy h4 {
  margin-top: 42px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.pill-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 4px;
  border: 1px solid #ebeaf2;
  color: #121323;
  font-size: 18px;
  line-height: 1.35;
  text-align: left;
  background: rgba(43, 43, 107, 0.08);
}

.pill-grid i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #fff;
  font-size: 22px;
  font-style: normal;
  box-shadow: 0 3px 10px rgba(20, 22, 60, 0.07);
}

.topics {
  padding: 72px 0;
  background: #000032;
}

.topics h2 {
  margin-bottom: 40px;
  padding-left: 18px;
  border-left: 2px solid var(--orange);
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
}

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

.topic {
  position: relative;
  min-height: 72px;
  padding: 18px 18px 18px 60px;
  border: 1px solid rgba(80, 96, 190, 0.36);
  border-radius: 4px;
  color: #d8dcff;
  font-size: 25px;
  line-height: 1.4;
}

.topic::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 25px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 1.3625V22.0625C32 22.815 31.39 23.425 30.6375 23.425C29.885 23.425 29.275 22.815 29.275 22.0625V4.65312L2.32626 31.6006C2.06001 31.8669 1.71126 32 1.36251 32C1.01376 32 0.665015 31.8669 0.398765 31.6006C-0.133735 31.0681 -0.133735 30.2056 0.398765 29.6731L27.3469 2.72563H9.93689C9.18439 2.72563 8.57439 2.11562 8.57439 1.3625C8.57439 0.609375 9.18439 0 9.93689 0H30.6369C31.3894 0 31.9994 0.61 31.9994 1.36312L32 1.3625Z' fill='%23E74C2D'/%3E%3C/svg%3E") no-repeat center / contain;
}

.why-card {
  width:100%;
  padding: 50px;
  min-height: 230px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  color: #0c1142;
}

.why-card > div:first-child {
  align-self: center;
}


.why-card h3 {
  font-family: "Proxima Nova", Arial, sans-serif;
  /* font-size: 26px; */
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
}

.why-card p {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
}

.why-card ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.why-card li {
  margin-bottom: 16px;
  font-size: 20px;
}

.tablet-art {
  position: relative;
}
.tablet-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tablet {
  position: absolute;
  left: 70px;
  top: 64px;
  width: 142px;
  height: 94px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  padding: 16px;
  border: 8px solid #111;
  border-radius: 14px;
  background: #fff;
  transform: rotate(-18deg);
}

.tablet span {
  border-radius: 50%;
  background: #e9504d;
}

.tablet span:nth-child(3n) {
  background: #70bd71;
}

.tablet span:nth-child(4n) {
  background: #2d71d6;
}

.hand {
  position: absolute;
  left: 24px;
  top: 132px;
  width: 108px;
  height: 42px;
  border-radius: 24px 36px 36px 24px;
  background: #d2a18b;
  transform: rotate(18deg);
}

.spark {
  position: absolute;
  color: #aeb3c4;
  font-size: 24px;
}

.s1 {
  left: 66px;
  top: 48px;
}

.s2 {
  right: 62px;
  top: 38px;
}

.final-cta {
  position: relative;
  padding: 80px 0 80px;
  text-align: center;
  overflow: hidden;
  background: url("./assets/images/footer-bg.jpg") top right !important;
  background-size: cover!important;
  background-position: center!important;
  background-repeat: no-repeat!important;
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}

.mesh-footer {
  right: -20px;
  bottom: -12px;
  width: 330px;
  height: 270px;
  opacity: 0.86;
  background:
    radial-gradient(circle at 75% 60%, rgba(41, 109, 246, 0.85), transparent 52%),
    repeating-radial-gradient(circle at 70% 60%, rgba(76, 151, 255, 0.9) 0 2px, transparent 2px 12px);
  transform: skewX(-9deg);
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: var(--orange);
}

.final-cta p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 30px auto 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #edf0ff;
}

.final-cta .btn {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  background: #fff;
}

.gradient-text {
  background: linear-gradient(90deg, #2C2F73 0%, #E54D2D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.final-cta small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 34px;
  color: #d9ddff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .date-wrap {
    justify-self: center;
    margin-top: 0;
    margin-right: 0;
  }

  .countdown {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 32px;
    max-width: calc(100% - 30px);
    padding: 15px 0;
  }

  .speaker-copy {
    padding: 36px;
  }

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

@media (max-width: 700px) {
  .section-inner {
    width: min(100% - 32px, 1040px);
  }

  .hero {
    min-height: auto;
    padding: 18px 0 42px;
    overflow: hidden;
  }

  .hero-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    row-gap: 28px;
  }

  .top-logo {
    position: relative;
    left: auto;
    top: auto;
    width: min(174px, calc(100% - 32px));
    min-height: auto;
    margin: 0 0 24px 16px;
    padding: 10px 12px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .line {
    gap: 18px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .line::before {
    width: 72px;
    flex-basis: 72px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: 34px;
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero h2 {
    max-width: 100%;
    margin-top: 22px;
    font-size: 25px;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .hero-copy > p {
    max-width: 100%;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.55;
  }

  .brand-card {
    width: 100%;
    min-width: 0;
    margin-top: 22px;
    overflow: hidden;
  }

  .brand-card::before {
    left: 12px;
    padding: 3px 8px;
    font-size: 8px;
  }

  .invite {
    margin-top: 28px !important;
    font-size: 14px !important;
    line-height: 1.4;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    font-size: 12px;
  }

  .date-wrap {
    width: 188px;
    height: 258px;
    margin: 6px auto 0;
    text-align: center;
  }

  .date-orbit {
    width: 188px;
    height: 188px;
  }

  .date-orbit-bottom {
    top: 88px;
  }

  .date-orbit strong {
    font-size: 38px;
  }

  .date-orbit sup {
    font-size: 18px;
  }

  .date-orbit span {
    font-size: 18px;
  }

  .live-pill {
    left: 28px;
    top: 1px;
    width: 132px;
    height: 40px;
    font-size: 12px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    margin-top: 10px;
  }

  .countdown div {
    min-height: 76px;
    padding: 15px 0;
  }

  .speakers {
    padding: 46px 0 42px;
  }

  .speakers h2 {
    font-size: 24px;
  }

  .speaker-card {
    width: min(230px, 72vw);
    margin: 24px auto 28px;
  }

  .topic-grid,
  .why-card {
    grid-template-columns: 1fr;
  }

  .topics {
    padding: 44px 0;
  }

  .topics h2 {
    margin-bottom: 24px;
    padding-left: 12px;
    font-size: 24px;
  }

  .topic-grid {
    gap: 12px;
  }

  .topic {
    min-height: auto;
    padding: 14px 14px 14px 36px;
    font-size: 17px;
    line-height: 1.35;
  }

  .topic::before {
    left: 13px;
    top: 13px;
    width: 14px;
    height: 14px;
  }

  .speaker-copy {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .speaker-copy p {
    font-size: 15px;
  }

  .speaker-copy h4 {
    font-size: 21px;
  }

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

  .pill-grid span {
    min-height: 68px;
    font-size: 15px;
  }

  .tablet-art {
    min-height: 220px;
  }

  .why-card {
    gap: 22px;
    padding: 28px 22px;
    margin-top: 28px;
    border-radius: 18px;
  }

  .why-card h3 {
    font-size: 22px;
  }

  .why-card p {
    margin-top: 10px;
    margin-bottom: 14px;
    font-size: 16px;
  }

  .why-card ul {
    padding-left: 20px;
  }

  .why-card li {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.4;
  }

  .final-cta {
    padding: 54px 0 42px;
  }

  .final-cta h2 {
    font-size: 25px;
  }

  .final-cta p {
    font-size: 14px;
  }

  .speaker-modal {
    padding: 16px;
  }

  .speaker-modal__dialog {
    width: min(100%, 520px);
    border-radius: 22px;
  }

  .speaker-modal__media {
    min-height: 230px;
  }

  .speaker-modal__media img {
    width: min(82%, 300px);
    max-height: 245px;
  }

  .speaker-modal__content {
    padding: 34px 30px 38px;
  }

  .speaker-modal__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .section-inner {
    width: min(100% - 24px, 1040px);
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero h2 {
    font-size: 23px;
  }

  .hero-copy > p {
    font-size: 13px;
  }

  .brand-card {
    width: 100%;
    justify-content: center;
  }

  .countdown strong {
    font-size: 32px;
  }

  .countdown span {
    font-size: 10px;
  }
  

  .speakers {
    padding: 38px 0 34px;
  }

  .speakers h2 {
    font-size: 21px;
  }

  .speaker-copy {
    padding: 24px 18px;
  }

  .speaker-copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .speaker-copy h4 {
    font-size: 19px;
  }

  .pill-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pill-grid span {
    min-height: 58px;
    gap: 12px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .pill-grid i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .pill-grid svg {
    max-width: 24px;
    max-height: 24px;
  }

  .topics {
    padding: 36px 0;
  }

  .topics h2 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .topic-grid {
    gap: 10px;
  }

  .topic {
    padding: 12px 12px 12px 34px;
    font-size: 15px;
    line-height: 1.35;
    border-radius: 3px;
  }

  .topic::before {
    left: 13px;
    top: 14px;
    width: 12px;
    height: 12px;
  }

  .why-card {
    padding: 22px 16px;
  }

  .why-card h3 {
    font-size: 20px;
  }

  .why-card p,
  .why-card li {
    font-size: 14px;
  }

  .tablet-art {
    min-height: 180px;
  }

  .final-cta h2 {
    font-size: 22px;
  }

  .final-cta p {
    font-size: 13px;
  }

  .speaker-modal__media {
    min-height: 205px;
  }

  .speaker-modal__content {
    padding: 28px 22px 32px;
  }

  .speaker-modal__content h2 {
    font-size: 22px;
  }

  .speaker-modal__role {
    font-size: 15px;
  }

  .speaker-modal__content p:not(.speaker-modal__role) {
    font-size: 15px;
    line-height: 1.6;
  }
}


@media (min-width: 1921px) {
  .hero-copy > p{
    font-size: 22px!important;
  }
}
@media (max-width: 991px) {
  .countdown span{
    margin-top: 0;
  }
}