:root {
  --ink: #07192b;
  --ink-soft: #21364c;
  --muted: #617289;
  --paper: #f5f9fc;
  --surface: #ffffff;
  --surface-blue: #eef7ff;
  --line: #dce8f2;
  --pricing-blue: #005ea8;
  --pricing-blue-2: #0098d7;
  --teal: #00a6a6;
  --teal-soft: #dff8f5;
  --lime: #c7f04b;
  --navy: #06182a;
  --shadow: 0 24px 70px rgba(7, 25, 43, .12);
  --shadow-soft: 0 14px 36px rgba(7, 25, 43, .08);
  --radius: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 12%, rgba(0, 152, 215, .12), transparent 24rem),
    linear-gradient(180deg, #fff 0, var(--paper) 28rem, #fff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(7, 25, 43, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 118px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  max-width: 128px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.15;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 850;
}

.nav a {
  transition: color .2s ease, transform .2s ease;
}

.nav a:hover {
  color: var(--pricing-blue);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pricing-blue), var(--pricing-blue-2));
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(0, 94, 168, .22);
}

.menu {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .78fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  min-height: 700px;
  padding: clamp(70px, 8vw, 120px) clamp(18px, 6vw, 86px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 94, 168, .08) 1px, transparent 1px),
    linear-gradient(rgba(0, 94, 168, .08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000 0, rgba(0, 0, 0, .72) 44%, transparent 96%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -18vw;
  top: -18vw;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(0, 166, 166, .22), transparent 62%),
    radial-gradient(circle at 36% 36%, rgba(199, 240, 75, .18), transparent 34%);
}

.hero-copy {
  max-width: 850px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--pricing-blue);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0, 166, 166, .12);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.15rem, 6.7vw, 6.6rem);
  line-height: .92;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 1.24rem;
}

.hero-actions,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--teal), var(--pricing-blue-2));
  color: #fff;
  box-shadow: 0 20px 46px rgba(0, 166, 166, .24);
}

.btn.ghost {
  border-color: rgba(0, 94, 168, .2);
  color: var(--pricing-blue);
  background: rgba(255, 255, 255, .78);
}

.btn.secondary {
  border-color: var(--line);
  color: var(--pricing-blue);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  align-self: stretch;
  min-height: 540px;
  padding: 28px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(0, 94, 168, .14);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .94), rgba(238, 247, 255, .9)),
    radial-gradient(circle at top right, rgba(0, 152, 215, .16), transparent 34%);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(250px, 82%);
  height: auto;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.signal-card {
  padding: 22px;
  border: 1px solid rgba(0, 94, 168, .14);
  border-radius: 18px;
  background: #fff;
}

.signal-card span,
.venue-card small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.primary-signal {
  background:
    linear-gradient(135deg, var(--navy), #0d4f80 70%),
    radial-gradient(circle at 18% 20%, rgba(199, 240, 75, .24), transparent 36%);
}

.primary-signal span,
.primary-signal strong {
  color: #fff;
}

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

.signal-grid span {
  min-height: 76px;
  padding: 16px;
  display: grid;
  align-items: end;
  border: 1px solid rgba(0, 94, 168, .13);
  border-radius: 16px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .72);
  font-weight: 950;
}

.venue-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--teal-soft);
}

.venue-card b {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}

.venue-card small {
  margin-top: 4px;
  color: #40606b;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
}

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

.split {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(34px, 5vw, 64px);
}

.section h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(2.05rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.rich-text p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.benefits,
.agenda,
.speakers,
.download,
.company-strip {
  border-top: 1px solid var(--line);
}

.benefit-grid,
.pill-grid,
.speaker-grid,
.sponsor-grid,
.company-grid {
  display: grid;
  gap: 14px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid article,
.pill-grid span,
.sponsor-grid article,
.lead-form,
.faq details,
.company-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
}

.benefit-grid article {
  min-height: 150px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  font-weight: 950;
}

.benefit-grid article:nth-child(2n) {
  background: var(--surface-blue);
}

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

.pill-grid span {
  padding: 18px 20px;
  color: var(--ink-soft);
  font-weight: 850;
  box-shadow: none;
}

.company-strip {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 6vw, 86px);
  background: linear-gradient(180deg, #fff, #f2fbfb);
}

.company-strip .section-head {
  width: min(var(--max), 100%);
  margin: 0 auto 24px;
}

.company-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.company-grid span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--ink-soft);
  text-align: center;
  font-weight: 950;
  box-shadow: none;
}

.tabs {
  display: flex;
  gap: 10px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--pricing-blue);
  padding: 12px 18px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.tab.active {
  border-color: transparent;
  background: var(--navy);
  color: #fff;
}

.agenda-list {
  display: none;
  gap: 12px;
}

.agenda-list.active {
  display: grid;
}

.agenda-list article {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #fff;
}

.agenda-list time {
  color: var(--pricing-blue);
  font-weight: 950;
}

.agenda-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.15;
}

.agenda-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.speaker-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.speaker {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.speaker img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: linear-gradient(135deg, #dcecf7, #f6fbff);
}

.speaker div {
  padding: 18px;
}

.speaker h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.02rem;
}

.speaker p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.speaker strong {
  display: block;
  margin-top: 8px;
  color: var(--pricing-blue);
}

.icon-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #0a66c2;
  font-weight: 950;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: #0a66c2;
}

.workshop {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 6vw, 86px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, #06182a, #0d4f80 72%),
    radial-gradient(circle at 84% 18%, rgba(199, 240, 75, .25), transparent 32%);
  color: #fff;
}

.workshop h2,
.workshop .section-tag,
.workshop p {
  color: #fff;
}

.workshop .section-tag::before {
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(199, 240, 75, .16);
}

.workshop p {
  max-width: 620px;
  margin: 0;
  font-size: 1.18rem;
  color: #e6f2fa;
}

.sponsor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}

.sponsor-grid article {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(0, 152, 215, .36), rgba(0, 166, 166, .24)) border-box;
  border: 1px solid transparent;
}

.sponsor-grid strong {
  color: var(--ink);
  font-size: 1.55rem;
}

.sponsor-grid span {
  color: var(--pricing-blue);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.download {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 42px;
  align-items: start;
}

.download p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: #fff;
}

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

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--pricing-blue-2);
  outline: 3px solid rgba(0, 152, 215, .15);
}

.full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.captcha {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-blue);
}

.captcha div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha span {
  color: var(--pricing-blue);
  font-weight: 950;
}

.faq details {
  padding: 18px 22px;
  margin: 12px 0;
  background: #fff;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

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

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20c763;
  box-shadow: 0 18px 44px rgba(32, 199, 99, .32);
}

.whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 34px clamp(18px, 6vw, 86px);
  background: var(--navy);
  color: #dce8f2;
}

footer img {
  width: 130px;
  height: auto;
}

footer p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    min-height: auto;
  }

  .speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .split,
  .download,
  .workshop {
    grid-template-columns: 1fr;
  }

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

  .nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .menu {
    display: block;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand img {
    width: 92px;
    height: 40px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 56px 18px 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4rem);
    letter-spacing: 0;
  }

  .lead {
    font-size: 1.04rem;
  }

  .hero-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-panel img {
    width: min(210px, 100%);
  }

  .signal-grid,
  .benefit-grid,
  .pill-grid,
  .speaker-grid,
  .sponsor-grid,
  .lead-form,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 62px 0;
  }

  .company-strip,
  .workshop {
    padding-inline: 14px;
  }

  .agenda-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-head {
    align-items: flex-start;
  }

  .captcha div {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  footer {
    display: grid;
    text-align: left;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
