html {
  scroll-behavior: smooth;
}

:root {
  --white: #ffffff;
  --navy: #0c1c33;
  --light-navy: #142A4A;
  --blue: #4c7eff;
  --border: #ecefef;
  --turquoise: #60F6D2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--light-navy);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.background-grid {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.background-hero-image {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.site-frame {
  min-height: 100vh;
  padding: 24px;
  background: var(--light-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-inner {
  position: relative;
  max-width: 1920px;
  min-height: 100%;
  border-radius: 32px;
  overflow: hidden;
  padding: 48px 48px;
  background: var(--navy);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 12px 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 76px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  z-index: 100;
}

.site-nav a {
  padding: 4px 0;
  transition: color 0.4s ease;
}

.site-nav a:hover {
  color: var(--turquoise);
}

.socials {
  display: flex;
  gap: 16px;
  z-index: 100;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--light-navy);
  background:
    linear-gradient(
      135deg,
      var(--navy),
      var(--light-navy),
      var(--navy)
    )
    border-box;
  transition: all 0.3s ease;
}

.social-link img {
  width: 16px;
  height: 16px;
  display: block;
}

.social-link:hover {
  border: 1px solid var(--light-navy);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  margin-top: 64px;
}

.bold-text {
  font-weight: 800;
}

.hero-floating-text {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 200px;
  z-index: 1;
  pointer-events: none;
}

.hero-floating-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.366;
  color: var(--white);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 96px;
  align-items: center;
  padding-top: 96px;
  z-index: 2;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-width: max-content;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-gradient-text {
  background: linear-gradient(45deg, var(--white), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-gradient-text-subheading {
  background: linear-gradient(45deg, var(--white), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 500;
}

.hero-date {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
}

.hero-title {
  font-size: 128px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin: 0;
}

.hero-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.366;
  color: rgba(255, 255, 255, 0.75);
  max-width: 740px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.btn-primary {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.366;
  padding: 18px 64px;
  border-radius: 12px;
  border: 1px solid var(--light-navy);
  background-color: var(--blue);
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background-color: var(--turquoise);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.366;
  padding: 18px 64px;
  border-radius: 12px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--navy), var(--navy)) padding-box,
    linear-gradient(
      135deg,
      var(--light-navy) 0%,
      var(--navy) 50%,
      var(--light-navy) 100%
    ) border-box;
  transition: all 0.4s ease;
}

.btn-secondary:hover {
  border: 1px solid var(--light-navy);
  transform: translateY(-1px);
}

.hero-image {
  position: absolute;
  left: 950px;
  top: 55%;
  transform: translateY(-50%);
  width: 868px;
  height: 755px;
  z-index: 0;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* About Section */
.about-section {
  margin-top: 164px;
}

.about-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.about-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  margin: 0;
}

.about-subtitle {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.32);
}

.about-content {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 11px;
}

.counter-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px 32px;
  height: 350px;
  border-radius: 24px;
  border: 1px solid transparent;
  background:
    radial-gradient(circle at 50% 50%, var(--white) 21%, var(--light-navy) 100%),
    var(--navy);
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  background-origin: border-box;
  background:
    linear-gradient(var(--navy), var(--navy)) padding-box,
    linear-gradient(
      135deg,
      var(--light-navy) 0%,
      var(--navy) 50%,
      var(--light-navy) 100%
    ) border-box;
  position: relative;
  z-index: 1;
}

.counter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 50%, var(--navy) 80%, var(--light-navy) 100%);
  z-index: -1;
}

.counter-number {
  position: relative;
  overflow: visible;
  width: 100%;
  text-align: center;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-number-inner {
  font-size: 156px;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(180deg, var(--white) 17%, var(--light-navy) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  white-space: nowrap;
  transition: transform 0.9s cubic-bezier(0.4, 0.0, 0.2, 1) 0.15s, opacity 0.9s cubic-bezier(0.4, 0.0, 0.2, 1) 0.15s;
}

.counter-number.slide-out .counter-number-inner {
  transform: translateY(120px);
  opacity: 0;
}

.counter-number.slide-in .counter-number-inner {
  animation: slideInFromTop 0.9s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-120px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.counter-label {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: rgba(255, 255, 255, 0.48);
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 24px;
  min-width: 274px;
  height: 350px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0) 0%, rgba(76, 126, 255, 0) 69%, rgba(12, 28, 51, 0.24) 81%, rgba(76, 126, 255, 1) 94%),
    var(--navy);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--navy), var(--navy)) padding-box,
    linear-gradient(
      135deg,
      var(--light-navy) 0%,
      var(--navy) 50%,
      var(--light-navy) 100%
    ) border-box;
  position: relative;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at -100% 150%, rgba(255, 255, 255, 0) 0%, rgba(76, 126, 255, 0) 69%, rgba(12, 28, 51, 0.24) 81%, rgba(76, 126, 255, 1) 88%);
  z-index: -1;
}

.feature-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin: 0;
}

.feature-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.366;
  color: var(--white);
}

.feature-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 4px 4px 4px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(12, 28, 51, 1) 0%, rgba(76, 126, 255, 1) 100%);
  border: 1px solid transparent;
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%) padding-box,
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.12) 100%
    ) border-box;
  cursor: pointer;
  transition: all 0.4s ease;
}

.feature-button:hover {
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.feature-button-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.366;
  color: var(--white);
}

.feature-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
}

/* Agenda Section */
.agenda-section {
  margin-top: 128px;
  border-radius: 24px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.agenda-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.agenda-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  margin: 0;
}

.agenda-date {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: rgba(255, 255, 255, 0.48);
  white-space: nowrap;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agenda-item {
  display: flex;
  align-items: center;
}

.agenda-icon {
  width: 128px;
  height: 128px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-navy);
  border-radius: 24px;
}

.agenda-icon img {
  width: 75px;
  height: 75px;
  object-fit: cover;
}

.agenda-content-card {
  flex: 1;
  height: 128px;
  background: var(--light-navy);
  border-radius: 24px;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.agenda-item-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.366;
  color: var(--white);
  margin: 0;
}

.agenda-item-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.366;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}

.agenda-time-card {
  width: 256px;
  height: 128px;
  flex-shrink: 0;
  background: var(--light-navy);
  border-radius: 24px;
  padding: 36px 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.agenda-time-range {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.366;
  color: var(--white);
}

.agenda-duration {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.366;
  color: rgba(255, 255, 255, 0.48);
}

/* Active agenda item */
.agenda-item.active .agenda-content-card {
  background: var(--blue);
}

.agenda-item.active .agenda-item-title {
  color: var(--white);
}

.agenda-item.active .agenda-item-desc {
  color: rgba(255, 255, 255, 0.48);
}

.agenda-item.active .agenda-time-card {
  background: var(--blue);
}

.agenda-item.active .agenda-time-range {
  color: var(--white);
}

.agenda-item.active .agenda-duration {
  color: rgba(255, 255, 255, 0.48);
}

.agenda-icon.active {
  background: var(--blue);
}

/* ── Speakers Section ── */
.speakers-section {
  margin-top: 128px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.speakers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.speakers-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1em;
  color: var(--white);
}

.speakers-grid {
  width: 100%;
  display: grid;
  grid-template-columns: .75fr 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
}

/* Base card styles */
.speaker-card {
  position: relative;
  width: 100%;
  height: 20vw;
  max-height: 400px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 24px;
}

/* Intro card */
.speaker-card--intro {
  background: linear-gradient(var(--navy), var(--navy)) padding-box,
    linear-gradient(135deg, rgba(76, 126, 255, 1) 0%, rgba(12, 28, 51, 0.32) 50%, rgba(76, 126, 255, 1) 100%) border-box;
  border: 1px solid transparent;
}

.speaker-intro-heading {
  position: relative;
  font-size: 32px;
  font-weight: 800;
  line-height: 1em;
  color: var(--white);
}

.speaker-intro-sub {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.366em;
  color: rgba(255, 255, 255, 0.64);
}

/* Joël Valenzuela */
.speaker-card--joel {
  background:
    radial-gradient(circle at 87% 50%, rgba(255, 255, 255, 0) 54%, rgba(76, 126, 255, 1) 100%),
    radial-gradient(circle at 67% 20%, rgba(255, 255, 255, 0) 39%, rgba(76, 126, 255, 1) 100%),
    url('imgs/speakers/joel_valenzuela.png') center / cover no-repeat,
    var(--navy);
}

/* Brian Foster */
.speaker-card--brian {
  background:
    radial-gradient(circle at 87% 50%, rgba(255, 255, 255, 0) 54%, rgba(76, 126, 255, 1) 100%),
    radial-gradient(circle at 39% 20%, rgba(255, 255, 255, 0) 39%, rgba(76, 126, 255, 1) 100%),
    url('imgs/speakers/brian_foster.png') center / cover no-repeat,
    var(--navy);
}

/* Sam Westrich */
.speaker-card--sam {
  background:
    radial-gradient(circle at 87% 50%, rgba(255, 255, 255, 0) 54%, rgba(76, 126, 255, 1) 100%),
    radial-gradient(circle at 67% 20%, rgba(255, 255, 255, 0) 52%, rgba(76, 126, 255, 1) 100%),
    url('imgs/speakers/sam_westrich.png') center / cover no-repeat,
    var(--navy);
}

.blue-text {
  color: var(--blue);
}

.speaker-card-content {
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.speaker-card-content-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speaker-dash-logo {
  position: relative;
  width: 36px;
  z-index: 2;
}

.speaker-name {
  position: relative;
  font-size: 32px;
  font-weight: 800;
  line-height: 1em;
  color: var(--white);
  z-index: 2;
}

.speaker-role {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.366em;
  color: rgba(255, 255, 255, 0.75);
  z-index: 2;
}

/* ── Partners Section ── */
.partners-section {
  margin-top: 128px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.partners-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partners-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1em;
  color: var(--white);
}

.partners-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 24px;
  border-radius: 64px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--navy), var(--navy)) padding-box,
    linear-gradient(135deg, rgba(76, 126, 255, 0.32) 0%, rgba(12, 28, 51, 0) 50%, rgba(76, 126, 255, 0.32) 100%) border-box;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
}

.partners-card {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px;
  border-radius: 24px;
  background:
    linear-gradient(10deg, var(--light-navy) 75%, var(--blue) 100%);
}

.partners-card-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partners-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333em;
  color: rgba(255, 255, 255, 0.75);
}

.partners-card-subtitle {
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  color: var(--white);
}

.partners-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.partners-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partners-input-wrap {
  display: inline-flex;
}

.partners-input {
  width: 256px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: var(--light-navy);
  padding: 15px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.366em;
  color: var(--white);
  outline: none;
}

.partners-input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.partners-contact-btn {
  height: 55px;
  padding: 12px 64px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.366em;
  cursor: pointer;
  transition: all 0.4s ease;
}

.partners-contact-btn:hover {
  background-color: var(--turquoise);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ── Tickets Section ── */
.tickets-section {
  margin-top: 128px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tickets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tickets-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1em;
  color: var(--white);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* Ticket Card Base */
.ticket-card {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Light variant (Starter + Optimal) */
.ticket-card--light {
  background:
    linear-gradient(90deg, var(--light-navy) 100%) padding-box,
    linear-gradient(90deg, var(--light-navy) 100%) border-box;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Premium variant */
.ticket-card--premium {
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%) padding-box,
    linear-gradient(135deg, var(--light-navy) 0%, var(--navy) 50%, var(--light-navy) 100%) border-box;
}

/* Icon illustration area */
.ticket-card-icon-area {
  width: 100%;
  aspect-ratio: 370 / 256;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.ticket-card-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ticket name */
.ticket-name {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.366em;
  color: var(--white);
  margin: 0 0 12px;
}

.ticket-name--white {
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.64) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ticket description */
.ticket-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.366em;
  color: rgba(255, 255, 255, 0.64);
  margin: 0 0 32px;
}

.ticket-desc--white {
  color: rgba(255, 255, 255, 0.64);
}

/* Ticket price */
.ticket-price {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.366em;
  color: var(--blue);
  margin: 0 0 32px;
}

.ticket-price-premium {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.366em;
  color: var(--white);
  margin: 0 0 32px;
}

.ticket-price-unit {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
}

.ticket-price-unit-premium {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
}

/* What You Get label */
.ticket-what-label {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.366em;
  color: var(--white);
  margin: 0 0 24px;
}

.ticket-what-label--white {
  color: var(--white);
}

/* Advantages list */
.ticket-advantages {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 0 32px;
  flex: 1;
}

.ticket-advantage {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Checkmark icon */
.ticket-advantage-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.ticket-advantage-icon--blue {
  background:
    linear-gradient(rgba(76, 126, 255, 0.12), rgba(76, 126, 255, 0.12)) padding-box,
    linear-gradient(135deg, rgba(76, 126, 255, 0.32) 0%, rgba(76, 126, 255, 0) 50%, rgba(76, 126, 255, 0.32) 100%) border-box;
}

.ticket-advantage-icon--white {
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.32) 100%) border-box;
}

.ticket-advantage-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.366em;
  color: rgba(255, 255, 255, 0.64);
}

.ticket-advantage-text--white {
  color: rgba(255, 255, 255, 0.64);
}

.ticket-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding:24px;
  border-radius: 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ticket-btn:hover {
  transform: translateY(-2px);
}

.ticket-btn--regular {
  background:
    linear-gradient(270deg, var(--light-navy) 0%, var(--blue) 100%) padding-box,
    linear-gradient(135deg, var(--light-navy) 0%, var(--blue) 50%, var(--light-navy) 100%) border-box;
}

.ticket-btn--premium {
  background:
    linear-gradient(270deg, var(--light-navy) 0%, var(--blue) 100%) padding-box,
    linear-gradient(135deg, var(--light-navy) 0%, var(--blue) 50%, var(--light-navy) 100%) border-box;
  box-shadow: 0px 0px 96px 0px rgba(76, 126, 255, 0.48);
}

.ticket-btn-label {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.366em;
  color: var(--white);
}

.ticket-btn-arrow {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticket-btn-arrow--dark {
  background: var(--navy);
}

.ticket-btn-arrow--light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* ── Contact Us ──────────────────────────────────────── */

.contact-section {
  position: relative;
  margin-top: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 463px;
}

.contact-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 827px;
}

.contact-label {
  font-size: 32px;
  font-weight: 500;
  line-height: 1em;
  color: rgba(255, 255, 255, 0.75);
}

.contact-title {
  font-size: 96px;
  font-weight: 500;
  line-height: 1em;
  color: var(--white);
}

.contact-sponsor-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 173px;
  background: var(--light-navy);
  border-radius: 24px;
}

.contact-sponsor-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 57px;
  height: 57px;
  border-radius: 64px;
  object-fit: cover;
  border: 1px solid transparent;
}

.contact-sponsor-label {
  position: absolute;
  top: 93px;
  left: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.366em;
  color: rgba(255, 255, 255, 0.64);
}

.contact-sponsor-email {
  position: absolute;
  top: 116px;
  left: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.366em;
  color: var(--white);
}

.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-inputs {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-input {
  padding: 15px 35px;
  width: 320px;
  background: var(--navy);
  border: 0.49px solid rgba(255, 255, 255, 0.32);
  border-radius: 35px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.366em;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.contact-input:focus {
  border-color: rgba(76, 126, 255, 0.64);
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 64px;
  height: 55px;
  border-radius: 12px;
  border: 1px solid transparent;
  background-color: var(--blue);
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.366em;
  color: var(--white);
  cursor: pointer;
  transition: all 0.4s ease;
}

.contact-btn:hover {
  background-color: var(--turquoise);
  color: var(--navy);
  transform: translateY(-1px);
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-status--success {
  font-size: 16px;
  color: var(--blue);
  opacity: 0.64;
  text-align: right;
}

.contact-status--error {
  font-size: 16px;
  color: #CD2E00;
  opacity: 0.64;
  text-align: right;
}

/* ── Other Events ── */
.events-section {
  margin-top: 128px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.event-card {
  min-height: 300px;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.event-card--featured {
  background:
    linear-gradient(1deg, var(--light-navy) 53%, var(--blue) 100%),
    var(--light-navy);
}

.event-card--default {
  background: var(--light-navy);
}

.event-card-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-card-eyebrow {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: var(--white);
  opacity: 0.75;
}

.event-card-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.event-card-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-card-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.event-card-name {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
}

.event-card-btn {
  width: 100%;
  min-height: 55px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.366;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.event-card-btn:hover {
  transform: translateY(-1px);
}

.event-card-btn--filled {
  background: var(--blue);
  border: 1px solid transparent;
  color: var(--white);
}

.event-card-btn--filled:hover {
  background: var(--turquoise);
  color: var(--navy);
}

.event-card-btn--outlined {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.event-card-btn--outlined:hover {
  border-color: rgba(255, 255, 255, 0.75);
}

/* ── Footer ── */
.site-footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 128px;
}

.site-footer-logo {
  height: 20px;
  width: auto;
}

.site-footer-copy {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.366em;
  color: rgba(255, 255, 255, 0.64);
}

.footer-background-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════
   HAMBURGER TOGGLE (hidden on desktop)
═══════════════════════════════════════ */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 64px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, var(--navy), var(--light-navy), var(--navy) ) border-box;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-toggle-line {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ═══════════════════════════════════════
   1440px — Extra large laptop
═══════════════════════════════════════ */

@media (max-width: 1700px) {
  .speaker-intro-heading {
    font-size: 24px;
  }
}

@media (max-width: 1440px) {
  .partners-input {
    width: 230px;
  }
}
/* ═══════════════════════════════════════
   1280px — Large laptop
═══════════════════════════════════════ */

@media (max-width: 1280px) {
  .site-nav {
    gap: 40px;
  }

  .hero-title {
    font-size: 96px;
  }

  .hero-gradient-text-subheading {
    font-size: 24px;
  }

  .hero-floating-text {
    gap: 100px;
  }

  .hero-image {
    width: 620px;
    height: 540px;
    left: 700px;
  }

  .contact-bottom {
    margin-top: 64px;
    align-items: start;
  }

  .counter-number-inner {
    font-size: 120px;
  }

  .hero-description {
    max-width: 550px;
  }

  .speaker-intro-heading {
    font-size: 16px;
  }

  .contact-button {
    display: flex;
    flex-direction: column-reverse;
    align-items: end;
    gap: 12px;
  }

  .contact-top {
    max-width: 600px;
  }
}

/* ═══════════════════════════════════════
   1100px — Small laptop
═══════════════════════════════════════ */

@media (max-width: 1100px) {
  .site-nav {
    gap: 28px;
  }

  .background-grid {
    width: 200%;
  }

  .hero-text {
    gap: 32px;
  }

  .hero-top {
    gap: 32px;
  }

  .hero-title {
    font-size: 80px;
  }

  .hero-content {
    padding-top: 80px;
    gap: 48px;
  }

  .hero-info {
    min-width: unset;
  }

  .hero-image {
    width: 500px;
    height: 435px;
    left: 600px;
  }

  .speakers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .speaker-card {
    height: 40vw;
  }

  .speaker-intro-heading {
    font-size: 32px;
  }

  .partners-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .partners-inputs {
    width: 100%;
    justify-content: space-between;
  }

  .partners-input {
    width: 100%;
    min-width: 0;
  }

  .partners-input-wrap {
    flex: 1;
  }

  .partners-contact-btn {
    width: 100%;
  }

  .tickets-grid {
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: 24px;
  }

  .tickets-grid::-webkit-scrollbar {
    display: none;
  }

  .counter-number-inner {
    font-size: 100px;
  }

  .contact-input {
    width: 220px;
  }

  .contact-title {
    font-size: 72px;
  }

  .events-section {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 240px;
  }

  .event-card-name {
    font-size: 40px;
  }

  .footer-background-grid {
    width: 200%;
  }
}

/* ═══════════════════════════════════════
   900px — Tablet landscape
═══════════════════════════════════════ */

@media (max-width: 900px) {
  .site-frame {
    padding: 16px;
  }

  .site-inner {
    padding: 32px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-gradient-text-subheading {
    font-size: 18px;
  }

  .hero-date {
    font-size: 22px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-image {
    width: 380px;
    height: 330px;
    left: 500px;
  }

  .hero-description {
    max-width: 450px;
  }

  .counter-number-inner {
    font-size: 88px;
  }

  .feature-card {
    min-width: 250px;
  }

  .counter-number {
    height: 200px;
  }

  .speaker-card {
    height: 40vw;
  }

  .speaker-card--intro {
    grid-column: 1 / -1;
    height: auto;
    min-height: 180px;
  }

  .partners-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-title {
    font-size: 56px;
  }

  .events-section {
    margin-top: 80px;
  }

  .event-card {
    min-height: 220px;
    padding: 24px;
  }

  .event-card-title,
  .event-card-name {
    font-size: 38px;
  }

  .contact-sponsor-card {
    width: 220px;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 8px 0 20px;
  }

  .logo {
    flex: 0 0 auto;
  }

  .socials {
    margin-left: auto;
    gap: 12px;
  }

  /* ── Contact ── */
  .contact-section {
    margin-top: 80px;
    min-height: unset;
    gap: 32px;
  }

  .contact-sponsor-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px 24px;
  }

  .contact-sponsor-icon {
    position: relative;
    top: auto;
    right: auto;
    align-self: flex-end;
    margin-bottom: 8px;
  }

  .contact-sponsor-label {
    position: relative;
    top: auto;
    left: auto;
  }

  .contact-sponsor-email {
    position: relative;
    top: auto;
    left: auto;
    font-size: 18px;
  }

  .contact-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .contact-inputs {
    flex-direction: column;
    gap: 12px;
  }

  .contact-input {
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    height: auto;
    padding: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .site-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    flex-direction: column;
    gap: 0;
    background: var(--light-navy);
    border-radius: 16px;
    border: 1px solid rgba(12, 28, 51, 0.08);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(12, 28, 51, 0.08);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.nav-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    justify-content: flex-start;
  }

  .site-nav a:last-child {
    border-bottom: none;
  }
}

/* ═══════════════════════════════════════
   768px — Tablet portrait / mobile
═══════════════════════════════════════ */

@media (max-width: 768px) {
  /* Layout */
  .site-frame {
    padding: 10px;
  }

  .site-inner {
    padding: 24px 20px;
    border-radius: 24px;
  }

  /* ── Hero ── */
  .hero {
    margin-top: 24px;
  }

  .hero-floating-text {
    display: none;
  }


  .hero-content {
    padding-top: 32px;
    gap: 0;
  }

  .hero-info {
    min-width: unset;
    width: 100%;
  }

  .hero-date {
    font-size: 18px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 16px;
    padding: 14px 32px;
  }

  /* ── About ── */
  .about-section {
    margin-top: 80px;
  }

  .about-content {
    flex-wrap: wrap;
  }

  .counter-card {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 0;
    height: 220px;
    padding: 16px;
  }

  .counter-number {
    height: 150px;
  }

  .counter-number-inner {
    font-size: 80px;
  }

  .counter-label {
    font-size: 18px;
  }

  .feature-card {
    width: 100%;
    min-width: unset;
    height: auto;
    min-height: 180px;
  }

  .feature-title {
    font-size: 24px;
  }

  /* ── Agenda ── */
  .agenda-section {
    margin-top: 64px;
    gap: 32px;
  }

  .agenda-header {
    flex-direction: column;
    gap: 8px;
  }

  .agenda-title {
    font-size: 22px;
  }

  .agenda-title br {
    display: none;
  }

  .agenda-date {
    font-size: 16px;
  }

  .agenda-list {
    gap: 8px;
  }

  .agenda-item {
    flex-wrap: wrap;
    gap: 6px;
  }

  .agenda-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .agenda-icon img {
    width: 44px;
    height: 44px;
  }

  .agenda-content-card {
    height: auto;
    min-height: 72px;
    border-radius: 16px;
    padding: 16px;
    gap: 6px;
  }

  .agenda-item-title {
    font-size: 17px;
  }

  .agenda-item-desc {
    font-size: 13px;
  }

  .agenda-time-card {
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 16px;
    gap: 8px;
  }

  .agenda-time-range {
    font-size: 16px;
  }

  .agenda-duration {
    font-size: 13px;
  }

  /* ── Speakers ── */
  .speakers-section {
    margin-top: 64px;
    gap: 32px;
  }

  .speakers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .speaker-card {
    height: 52vw;
  }

  .speaker-card--intro {
    grid-column: 1 / -1;
    height: auto;
    min-height: 160px;
  }

  .speaker-intro-heading {
    font-size: 22px;
  }

  .speaker-name {
    font-size: 22px;
  }

  .speaker-role {
    font-size: 12px;
  }

  /* ── Partners ── */
  .partners-section {
    margin-top: 64px;
    gap: 32px;
  }

  .partners-card {
    padding: 24px;
    gap: 32px;
  }

  .partners-card-subtitle {
    font-size: 38px;
  }

  .partners-inputs {
    flex-wrap: wrap;
  }

  /* ── Tickets ── */
  .tickets-section {
    margin-top: 80px;
    gap: 32px;
  }

  .contact-top {
    max-width: 100%;
  }

  .contact-label {
    font-size: 22px;
  }

  .contact-title {
    font-size: 48px;
  }

  .events-section {
    margin-top: 64px;
    gap: 12px;
  }

  .event-card-eyebrow {
    font-size: 20px;
  }

  .event-card-title,
  .event-card-name {
    font-size: 32px;
  }

  .event-card-btn {
    min-height: 52px;
    font-size: 16px;
  }

  /* ── Footer ── */
  .site-footer-bottom {
    margin-top: 80px;
    margin-bottom: 12px;
  }
}

@media (max-width: 590px) {
  .partners-card-subtitle {
    font-size: 32px;
  }

  .partners-inputs {
    flex-direction: column;
    align-items: stretch;
  }

  .partners-input-wrap {
    width: 100%;
  }

  .partners-input {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   480px — Small mobile
═══════════════════════════════════════ */

@media (max-width: 480px) {
  .site-frame {
    padding: 6px;
  }

  .site-inner {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .background-hero-image {
    width: 120%;
    height: 10%;
    opacity: 64%;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-gradient-text-subheading {
    font-size: 14px;
  }

  .hero-date {
    font-size: 16px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-image {
    display: none;
  }

  .hero-top {
    gap: 12px;
  }

  .hero-text {
    gap: 18px;
  }

  .hero-info {
    gap: 24px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 15px;
    padding: 18px 24px;
    flex: 1;
    text-align: center;
  }

  .about-section {
    margin-top: 56px;
  }

  .counter-card {
    height: 180px;
  }

  .counter-number {
    height: 120px;
  }

  .counter-number-inner {
    font-size: 64px;
  }

  .counter-label {
    font-size: 16px;
  }

  .feature-title {
    font-size: 22px;
  }

  .speaker-card--intro {
    height: auto;
    min-height: 180px;
  }

  .speaker-card {
    padding: 16px;
  }

  .speaker-card--joel {
    background:
    radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0) 54%, rgba(76, 126, 255, 1) 100%),
    radial-gradient(circle at 100% 40%, rgba(255, 255, 255, 0) 39%, rgba(76, 126, 255, 1) 100%),
    url('imgs/speakers/joel_valenzuela.png') center / cover no-repeat,
    var(--light-navy);
  }

  .speaker-card--brian {
    background:
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0) 54%, rgba(76, 126, 255, 1) 100%),
    radial-gradient(circle at 100% 20%, rgba(255, 255, 255, 0) 39%, rgba(76, 126, 255, 1) 100%),
    url('imgs/speakers/brian_foster.png') center / cover no-repeat,
    var(--light-navy);
  }

  .speaker-card--sam {
    background:
    radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0) 54%, rgba(76, 126, 255, 1) 100%),
    radial-gradient(circle at 100% -20%, rgba(255, 255, 255, 0) 39%, rgba(76, 126, 255, 1) 100%),
    url('imgs/speakers/sam_westrich.png') center / cover no-repeat,
    var(--light-navy);
  }

  .speaker-dash-logo {
    width: 24px;
  }

  .partners-title {
    font-size: 28px;
  }

  .partners-pill {
    width: 100%;
    justify-content: space-between;
  }

  .partners-card-title {
    font-size: 20px;
  }

  .partners-card-subtitle {
    font-size: 28px;
  }

  .partners-input {
    font-size: 16px;
    padding: 14px 20px;
  }

  .partners-contact-btn {
    padding: 16px 28px;
    font-size: 16px;
  }

  .contact-title {
    font-size: 36px;
  }

  .event-card {
    padding: 20px;
    min-height: 200px;
  }

  .event-card-eyebrow {
    font-size: 18px;
  }

  .event-card-title,
  .event-card-name {
    font-size: 28px;
  }

  .tickets-section {
    margin-top: 64px;
  }

  .contact-section {
    margin-top: 64px;
  }
}
