:root {
  --bg: #000;
  --bg-1: #070a10;
  --bg-2: #121821;
  --panel: #121821;
  --line: rgba(180, 205, 255, .24);
  --line-strong: rgba(0, 145, 255, .68);
  --text: #f7fbff;
  --muted: rgba(237, 238, 240, .74);
  --accent: #0091ff;
  --accent-2: #62c0ff;
  --violet: #6554ff;
  --red: #f31414;
  --focus: #ffe45e;
  --max: 1080px;
  --header-h: 72px;
  color-scheme: dark;
  scroll-padding-top: var(--header-h);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-wrap: anywhere;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: contrast(1.05) saturate(.88) brightness(.97);
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--focus);
  color: #111;
  font-weight: 800;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.page-shell {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1440px);
  height: var(--header-h);
  padding: 0 44px;
  transform: translateX(-50%);
  background: linear-gradient(#000 0%, rgba(0, 0, 0, .96) 58%, rgba(0, 0, 0, .08) 100%);
  font-size: 15px;
  transition: transform .3s ease;
}

.site-header.is-hidden {
  transform: translate(-50%, -100%);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 12px;
  align-items: center;
  min-width: 120px;
  min-height: 44px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
}

.brand img {
  width: 112px;
  filter: none;
}

.brand span {
  font-size: 18px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, .9);
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--accent-2);
}

.site-nav .header-cta {
  position: relative;
  overflow: hidden;
  justify-content: center;
  min-width: 270px;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid rgba(98, 192, 255, .62);
  border-radius: 999px;
  background: #0968c7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.site-nav .header-cta:hover {
  background: #0b75dc;
  color: #fff;
}

.site-nav .header-cta span {
  margin-left: .25em;
}

.menu-button {
  position: relative;
  z-index: 2;
  display: none;
  width: 82px;
  min-height: 38px;
  padding: 4px 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  white-space: nowrap;
}

.fixed-cta {
  position: fixed;
  right: calc((100vw - min(100vw, 1440px)) / 2 + 32px);
  bottom: 32px;
  z-index: 35;
  display: none;
  width: 360px;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.fixed-cta.is-hidden,
body.menu-open .fixed-cta {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(120%);
}

.primary-cta,
.secondary-cta,
.fixed-cta a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.primary-cta,
.fixed-cta a {
  overflow: hidden;
  min-height: 68px;
  padding: 16px 78px 16px 28px;
  border: 1px solid rgba(98, 192, 255, .68);
  background: #0968c7;
  color: #fff;
  font-size: 21px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .18);
  transition: background-color .2s ease, opacity .2s ease;
}

.primary-cta::before,
.fixed-cta a::before {
  content: none;
}

.primary-cta:hover,
.fixed-cta a:hover {
  background-color: #0b75dc;
}

.primary-cta span,
.fixed-cta span {
  position: absolute;
  z-index: 2;
  right: 19px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: #0750a6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24);
}

.primary-cta span::before,
.fixed-cta span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.secondary-cta,
.capacity-pill {
  min-height: 48px;
  padding: 11px 24px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.cta-block .capacity-pill {
  width: min(560px, 100%);
  margin: 8px auto 0;
}

.secondary-cta:hover {
  background: #111821;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 0 0 64px;
  border-top: var(--header-h) solid #000;
  isolation: isolate;
  background: #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #03070c;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: -2;
  width: 100%;
  height: 210px;
  background: linear-gradient(180deg, transparent, #000 76%);
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  top: 132px;
  left: max(30px, calc((100% - var(--max)) / 2 + 52px));
  z-index: 0;
  width: 330px;
  height: 330px;
  border: 14px solid rgba(0, 145, 255, .25);
  border-radius: 50%;
  opacity: .38;
  transform: rotate(-22deg) skewX(-7deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(54%, 760px);
  padding: 116px 0 0 max(54px, calc((100% - var(--max)) / 2));
}

.hero-eyebrow,
.hero-chapter {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-family: din-2014, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .16em;
}

.hero-lockup {
  position: absolute;
  top: 68px;
  left: max(40px, calc((100% - var(--max)) / 2 - 8px));
  z-index: -1;
  width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, .1);
  font-size: clamp(68px, 8.5vw, 126px);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.slant-label {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  line-height: 1;
}

.slant-label span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.slant-label span::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewX(-14deg);
  border: 1px solid rgba(112, 195, 255, .52);
  background: #0b58bf;
  box-shadow: 0 0 24px rgba(0, 145, 255, .28);
}

.hero h1 {
  position: relative;
  z-index: 1;
  width: 760px;
  max-width: calc(100vw - 96px);
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  text-shadow: 0 1px 0 #000;
}

.hero-lead {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(18px, 1.75vw, 25px);
  font-weight: 900;
  line-height: 1.65;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 68%;
  height: 640px;
  margin: 0;
  overflow: hidden;
  background: #05080d;
  box-shadow: none;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .94) 18%, rgba(0, 0, 0, .54) 41%, rgba(0, 0, 0, .12) 68%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .74) 0%, rgba(0, 0, 0, .08) 38%, #000 100%);
  pointer-events: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-bottom: 1px solid rgba(0, 145, 255, .18);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) saturate(.94) brightness(.8);
}

.dot-wave {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 300px;
  opacity: .56;
  transform: perspective(620px) rotateX(62deg) rotateZ(-10deg);
  background:
    radial-gradient(circle, rgba(0, 145, 255, .94) 1.5px, transparent 1.9px),
    radial-gradient(circle, rgba(101, 84, 255, .78) 1.4px, transparent 1.8px);
  background-position: 0 0, 7px 7px;
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, .82) 48%, transparent 79%);
  pointer-events: none;
}

.dot-wave-hero {
  left: 10px;
  top: 418px;
  z-index: 0;
}

.dot-wave-right {
  right: -220px;
  top: 72px;
  transform: perspective(620px) rotateX(60deg) rotateZ(13deg);
}

.dot-wave-left {
  left: -260px;
  bottom: -18px;
}

.dot-wave-program {
  right: -230px;
  top: 84px;
  width: 760px;
  height: 330px;
  transform: perspective(680px) rotateX(62deg) rotateZ(8deg);
}

.dot-wave-exchange {
  right: -170px;
  bottom: 90px;
}

.dot-wave-final {
  left: 50%;
  top: 54px;
  width: min(980px, 120vw);
  height: 360px;
  opacity: .86;
  transform: translateX(-50%) perspective(700px) rotateX(64deg) rotateZ(-7deg);
}

.hero-meta {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: min(780px, 54%);
  margin: 84px 0 0 max(54px, calc((100% - var(--max)) / 2));
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero-date {
  display: flex;
  align-items: center;
  grid-row: span 3;
  margin: 0;
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hero-date span {
  padding: 0 .12em;
  font-weight: 300;
}

.hero-date small {
  margin-left: .48em;
  padding-top: .14em;
  font-size: .48em;
  font-weight: 600;
}

.hero-place {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin: 0;
  padding: 0 0 0 28px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-place p {
  margin: 0;
}

.hero-place p:first-child {
  padding: 2px 12px 4px;
  border: 1px solid rgba(111, 185, 255, .72);
  border-radius: 4px;
  background: rgba(0, 145, 255, .16);
  box-shadow: 0 0 18px rgba(0, 145, 255, .32);
  font-size: 16px;
}

.hero-place p:last-child {
  font-size: 18px;
}

.hero-organizer {
  margin: 14px 0 0;
  padding-left: 28px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-organizer strong {
  margin-left: .6em;
  font-size: 19px;
  letter-spacing: .04em;
  overflow-wrap: normal;
}

.hero-capacity {
  margin: 8px 0 0;
  padding-left: 28px;
  color: var(--accent-2);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .08em;
}

.fact-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.fact-row p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.fact-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.fact-row p > small:first-of-type {
  display: inline;
  margin-left: 8px;
}

.fact-icon,
.benefit-icon,
.list-icon,
.target-icon,
.bulb-icon {
  position: relative;
  display: inline-block;
  color: var(--accent);
  flex: 0 0 auto;
}

.fact-icon {
  width: 26px;
  height: 26px;
}

.fact-icon::before,
.fact-icon::after,
.benefit-icon::before,
.benefit-icon::after,
.list-icon::before,
.list-icon::after,
.target-icon::before,
.target-icon::after,
.bulb-icon::before,
.bulb-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.calendar::before {
  inset: 4px 3px 2px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.calendar::after {
  left: 6px;
  right: 6px;
  top: 11px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 -1px currentColor;
}

.pin::before {
  left: 7px;
  top: 2px;
  width: 14px;
  height: 20px;
  border-radius: 14px 14px 14px 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.pin::after {
  left: 12px;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #06111d;
}

.clock::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.clock::after {
  left: 13px;
  top: 7px;
  width: 2px;
  height: 10px;
  background: currentColor;
  box-shadow: 5px 8px 0 -1px currentColor;
}

.people::before {
  left: 9px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.people::after {
  left: 4px;
  bottom: 3px;
  width: 20px;
  height: 12px;
  border-radius: 14px 14px 4px 4px;
  background: currentColor;
}

.ticket::before {
  inset: 7px 2px;
  border-radius: 3px;
  background: currentColor;
}

.ticket::after {
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #06111d;
  box-shadow: 22px 0 0 #06111d;
}

.flag::before {
  left: 6px;
  top: 3px;
  width: 2px;
  height: 22px;
  background: currentColor;
}

.flag::after {
  left: 8px;
  top: 4px;
  width: 16px;
  height: 11px;
  border-radius: 2px 6px 6px 2px;
  background: currentColor;
}

.sponsor-strip {
  position: relative;
  z-index: 2;
  width: min(var(--max), 90vw);
  margin-inline: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101824;
}

.sponsor-strip-hero {
  width: min(520px, 45%);
  margin: 44px 0 0 max(54px, calc((100% - var(--max)) / 2));
}

.sponsor-strip h2 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sponsor-logo,
.sponsor-coming {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border-radius: 4px;
}

.sponsor-logo {
  background: #fff;
}

.sponsor-logo img {
  width: 130px;
  aspect-ratio: 552 / 266;
  object-fit: contain;
  filter: none;
}

.sponsor-coming {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
}

.speaker-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 28px;
  width: min(var(--max), 90vw);
  margin-inline: auto;
  padding: 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#101721, #0a111d) padding-box,
    linear-gradient(90deg, rgba(0, 145, 255, .64), rgba(101, 84, 255, .42), rgba(255, 255, 255, .18)) border-box;
}

.speaker-card::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(0, 145, 255, .18);
  pointer-events: none;
}

.speaker-card-hero {
  width: min(520px, 45%);
  margin: 44px 0 0 max(54px, calc((100% - var(--max)) / 2));
}

.speaker-card .speaker-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  filter: none;
}

.speaker-photo-tawara {
  object-position: center 18%;
}

.slant-label-small {
  margin-bottom: 14px;
}

.slant-label-small span {
  min-height: 28px;
  padding: 0 16px;
  font-size: 12px;
}

.speaker-card h2,
.speaker-card h3 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.24;
}

.speaker-card p:not(.slant-label) {
  margin: 16px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
}

.speaker-card .speaker-company {
  margin-top: 12px;
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .03em;
}

.speaker-card .speaker-bio {
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.hero-closing {
  position: relative;
  z-index: 2;
  width: min(560px, 90vw);
  margin: 52px auto 0;
  text-align: center;
}

.hero-closing p,
.cta-block p {
  margin: 0 0 22px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.75;
}

.hero-closing .primary-cta,
.hero-closing .secondary-cta,
.cta-block .primary-cta,
.cta-block .secondary-cta {
  width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.hero-closing .secondary-cta,
.cta-block .secondary-cta,
.final-cta .secondary-cta {
  margin-top: 8px;
}

.section {
  position: relative;
  padding: 104px 5vw 124px;
  isolation: isolate;
  background: #000;
}

main section[id] {
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.concept {
  position: relative;
  padding: 96px 5vw 156px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #000 0%, rgba(7, 13, 24, .54) 74%),
    #18181a;
}

.concept::after {
  content: "";
  position: absolute;
  right: max(-520px, calc((100vw - 1440px) / 2 - 420px));
  top: 50%;
  z-index: -1;
  width: 1100px;
  height: 520px;
  background: url("./assets/decor/blue-speed-bg.webp") center / cover no-repeat;
  opacity: .26;
  transform: translateY(-50%) rotate(-9deg);
}

.concept-inner {
  width: min(var(--max), 90vw);
  margin: 0 auto;
}

.concept h2 {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--accent-2);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: .02em;
}

.concept p {
  width: min(820px, 100%);
  margin: 42px 0 0;
  color: rgba(237, 238, 240, .88);
  font-size: 20px;
  line-height: 2;
  letter-spacing: .03em;
}

.section::before {
  content: "";
  position: absolute;
  top: -46px;
  left: -4%;
  z-index: -1;
  width: 54%;
  height: 92px;
  transform: skewY(-5deg);
  background: #070b12;
}

.section-title-band {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: 0 0 64px 50%;
  padding: .42em 5vw;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent) 0%, #101821 78%);
  color: #fff;
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: .08em;
  text-indent: .08em;
}

.contents-intro .section-title-band {
  margin-bottom: 96px;
}

.networking-design .section-title-band,
.exchange .section-title-band {
  margin-bottom: 0;
}

.contents-intro {
  position: relative;
  padding-top: 112px;
  padding-bottom: 128px;
  overflow: hidden;
  background: #070a10;
}

.contents-intro::after {
  content: "";
  position: absolute;
  right: -280px;
  bottom: -120px;
  z-index: -1;
  width: 780px;
  height: 320px;
  background: url("./assets/decor/blue-speed-bg.webp") center / cover no-repeat;
  opacity: .25;
  transform: rotate(-14deg);
}

.contents-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(520px, 1.1fr);
  grid-template-areas:
    "copy visuals"
    "flow visuals";
  gap: 40px 64px;
  align-items: start;
  width: min(1280px, 90vw);
  margin: 0 auto;
}

.contents-copy {
  position: relative;
  grid-area: copy;
  min-width: 0;
  padding-left: 30px;
}

.contents-copy::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 0;
  width: 5px;
  height: calc(100% - 38px);
  background: var(--accent);
}

.contents-chapter {
  margin: 0 0 22px;
  color: var(--accent-2);
  font-family: din-2014, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .16em;
}

.contents-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.contents-copy p:not(.contents-chapter) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(237, 238, 240, .8);
  font-size: 17px;
  line-height: 1.95;
  letter-spacing: .03em;
}

.contents-visuals {
  grid-area: visuals;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.contents-main-photo,
.contents-sub-photos img {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(170, 205, 255, .18);
  background: #101721;
}

.contents-main-photo {
  aspect-ratio: 16 / 9;
}

.contents-main-photo::after,
.contents-sub-photos::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contents-main-photo::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .42));
}

.contents-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.88) brightness(.95);
}

.contents-sub-photos img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(1.04) saturate(.88) brightness(.95);
}

.contents-sub-photos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contents-sub-photos img {
  aspect-ratio: 16 / 10;
}

.contents-flow {
  grid-area: flow;
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  border-top: 1px solid rgba(0, 145, 255, .54);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  list-style: none;
}

.contents-flow li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contents-flow li:last-child {
  border-bottom: 0;
}

.contents-flow span {
  grid-row: span 3;
  color: var(--accent-2);
  font-family: din-2014, "Helvetica Neue", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.contents-flow h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .04em;
}

.contents-flow p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
  letter-spacing: .03em;
}

.contents-flow a {
  justify-self: start;
  margin-top: 14px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(98, 192, 255, .62);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .06em;
}

.contents-flow a:hover {
  border-color: #fff;
  color: #fff;
}

.benefits,
.program,
.target-section,
.faq {
  background: #070a10;
}

.problems,
.speakers,
.sponsor,
.outline {
  background: #000;
}

.problems {
  padding: 96px 0 120px;
  overflow: hidden;
  background: #05080d;
}

.section-heading,
.benefit-grid,
.problem-list,
.program-list,
.target-grid,
.outline-table,
.timetable,
.faq-list,
.privacy-note,
.cta-block {
  width: min(var(--max), 90vw);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.section-heading-left {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .58fr);
  gap: 42px;
  align-items: end;
  text-align: left;
}

.section-heading h2,
.exchange-copy h2,
.final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.02em;
}

.section-heading:not(.section-heading-left) {
  text-align: center;
}

.section-heading h2::after,
.exchange-copy h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 26px 0 0;
  background: var(--accent);
}

.section-heading:not(.section-heading-left) h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
  line-height: 2;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(var(--max), 90vw);
  border-top: 1px solid rgba(0, 145, 255, .38);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.benefit-grid article {
  position: relative;
  min-height: 0;
  padding: 28px 24px 6px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-grid b {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: rgba(98, 192, 255, .82);
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.benefit-grid b::after {
  content: "";
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background: rgba(98, 192, 255, .42);
}

.benefit-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 145, 255, .45);
  border-radius: 6px;
  overflow: hidden;
  background-color: #061321;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  box-shadow: inset 0 0 18px rgba(0, 145, 255, .12);
}

.target::before {
  inset: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.target::after {
  left: 28px;
  top: 10px;
  width: 2px;
  height: 38px;
  background: currentColor;
  transform: rotate(90deg);
}

.building::before {
  left: 20px;
  top: 16px;
  width: 19px;
  height: 30px;
  border: 2px solid currentColor;
}

.building::after {
  left: 25px;
  top: 23px;
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow: 8px 0 currentColor, 0 8px currentColor, 8px 8px currentColor, 0 16px currentColor, 8px 16px currentColor;
}

.handshake::before {
  left: 14px;
  top: 29px;
  width: 32px;
  height: 11px;
  border: 2px solid currentColor;
  border-left: 0;
  border-right: 0;
  transform: rotate(-18deg);
}

.handshake::after {
  left: 15px;
  top: 22px;
  width: 30px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: rotate(28deg);
}

.network::before {
  left: 17px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 19px 1px currentColor, 10px 20px currentColor;
}

.network::after {
  left: 22px;
  top: 23px;
  width: 25px;
  height: 24px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: skewX(-18deg);
}

.problem-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, .76fr);
  grid-template-areas:
    "photo panel"
    "strip strip"
    "bridge bridge"
    "list list"
    "cta cta";
  gap: 0 32px;
  width: min(1280px, 90vw);
  margin: 0 auto;
}

.problem-editorial-photo {
  position: relative;
  grid-area: photo;
  aspect-ratio: 737 / 421;
  margin: 0;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
  background: #101721;
}

.problem-editorial-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .1);
  pointer-events: none;
}

.problem-editorial-photo img,
.problem-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.9) brightness(.92);
}

.problem-editorial-photo img {
  object-position: center;
}

.problem-editorial-panel {
  position: relative;
  z-index: 2;
  grid-area: panel;
  align-self: end;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  min-height: 392px;
  margin: 0 0 -42px -96px;
  padding: 34px 42px 38px;
  border-radius: 6px;
  background: #0968c7;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .36);
}

.problem-editorial-chapter {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-family: din-2014, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .16em;
  text-align: center;
}

.problem-editorial-copy {
  display: block;
}

.problem-editorial-copy::before {
  content: "";
  display: block;
  width: min(180px, 44%);
  height: 2px;
  margin: 0 0 24px;
  background: rgba(255, 255, 255, .42);
}

.problem-editorial-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.55vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.problem-editorial-copy p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 1.82;
  letter-spacing: .03em;
}

.problem-photo-strip {
  grid-area: strip;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 82px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.problem-photo-strip img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.problem-bridge {
  grid-area: bridge;
  width: min(820px, 100%);
  margin: 38px auto 0;
  color: #fff;
  font-size: clamp(21px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: .02em;
  text-align: center;
}

.problem-editorial > .problem-list {
  grid-area: list;
  width: min(var(--max), 100%);
  margin: 34px auto 0;
}

.problem-editorial > .cta-block {
  grid-area: cta;
  margin-top: 48px;
}

.problem-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
}

.problem-list a {
  display: grid;
  grid-template-columns: 64px 1fr 24px;
  align-items: center;
  min-height: 82px;
  padding: 14px 22px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101721;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  text-decoration: none;
  transition: background-color .18s ease;
}

.problem-list a:hover {
  background: #132032;
}

.problem-list a:focus-visible {
  border-radius: 8px;
}

.problem-list li:nth-child(2n) {
  margin-left: 0;
}

.problem-list i {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.list-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 145, 255, .55);
  border-radius: 6px;
  overflow: hidden;
  background-color: #061321;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  box-shadow: inset 0 0 16px rgba(0, 145, 255, .14);
}

.person::before,
.owner::before {
  left: 17px;
  top: 11px;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.person::after,
.owner::after {
  left: 13px;
  top: 29px;
  width: 22px;
  height: 13px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.chart::before {
  left: 13px;
  bottom: 12px;
  width: 7px;
  height: 20px;
  border: 2px solid currentColor;
  box-shadow: 10px 7px 0 -2px #0b2035, 10px 7px 0 0 currentColor, 20px -2px 0 -2px #0b2035, 20px -2px 0 0 currentColor;
}

.chart::after {
  right: 10px;
  top: 13px;
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.talk::before {
  left: 11px;
  top: 13px;
  width: 26px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 15px;
}

.talk::after {
  left: 21px;
  top: 22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 8px 0 currentColor, -8px 0 currentColor;
}

.flag-small::before,
.office::before {
  left: 13px;
  top: 10px;
  width: 2px;
  height: 29px;
  background: currentColor;
}

.flag-small::after {
  left: 15px;
  top: 12px;
  width: 22px;
  height: 14px;
  border: 2px solid currentColor;
  border-left: 0;
}

.office::before {
  width: 22px;
  height: 29px;
  border: 2px solid currentColor;
  background: transparent;
}

.office::after {
  left: 18px;
  top: 17px;
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow: 8px 0 currentColor, 0 8px currentColor, 8px 8px currentColor, 0 16px currentColor, 8px 16px currentColor;
}

.benefit-icon::before,
.benefit-icon::after,
.list-icon::before,
.list-icon::after {
  display: none;
}

.benefit-icon.target {
  background-image: url("./assets/icons/01-winning-pattern.png");
}

.benefit-icon.building {
  background-image: url("./assets/icons/02-enterprise-approach.png");
}

.benefit-icon.handshake {
  background-image: url("./assets/icons/03-new-connections.png");
}

.benefit-icon.network {
  background-image: url("./assets/icons/04-learning-to-action.png");
}

.list-icon.person {
  background-image: url("./assets/icons/05-founder-dependency.png");
}

.list-icon.chart {
  background-image: url("./assets/icons/06-top-sales-dependency.png");
}

.list-icon.talk {
  background-image: url("./assets/icons/07-meeting-not-closing.png");
}

.list-icon.flag-small {
  background-image: url("./assets/icons/08-no-repeatability.png");
}

.list-icon.office {
  background-image: url("./assets/icons/09-enterprise-method-unknown.png");
}

.cta-block {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  text-align: center;
}

.cta-block.compact {
  margin-top: 34px;
}

.program {
  overflow: hidden;
  padding-top: 108px;
}

.program::after {
  content: "";
  position: absolute;
  right: max(-120px, calc((100vw - 1440px) / 2));
  top: 72px;
  z-index: -1;
  width: min(760px, 58vw);
  height: 520px;
  background:
    linear-gradient(90deg, #070a10 0%, rgba(7, 10, 16, .88) 22%, rgba(7, 10, 16, .38) 58%, rgba(7, 10, 16, .8) 100%),
    url("./assets/akey-visuals/program-keynote-live.jpg") center / cover no-repeat;
  opacity: .22;
}

.program > .slant-label,
.speakers > .slant-label {
  position: relative;
  z-index: 1;
  width: min(var(--max), 90vw);
  margin-inline: auto;
  margin-bottom: 44px;
}

.program-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), 90vw);
  margin: -18px auto 34px;
  color: rgba(237, 238, 240, .82);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.program-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.program-list li {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  min-height: 118px;
  padding: 26px 34px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#121821, #070d16) padding-box,
    linear-gradient(90deg, rgba(0, 145, 255, .6), rgba(101, 84, 255, .28)) border-box;
}

.program-list li::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(0, 145, 255, .11);
}

.program-list span {
  display: block;
  border-right: 1px solid rgba(0, 145, 255, .75);
  color: var(--accent);
  font-size: 50px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.program-list strong {
  padding-left: 42px;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.45;
}

.speakers {
  padding-top: 86px;
  padding-bottom: 72px;
}

.speaker-lineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), 90vw);
  margin: 0 auto;
}

.speaker-lineup .speaker-card {
  grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  min-height: 304px;
  margin: 0;
}

.speaker-lineup .speaker-card::after {
  right: -210px;
  bottom: -260px;
  width: 430px;
  height: 430px;
}

.networking-design {
  position: relative;
  padding-top: 104px;
  overflow: hidden;
  background: #070a10;
}

.networking-design::after {
  content: "";
  position: absolute;
  left: -260px;
  bottom: -190px;
  z-index: -1;
  width: 860px;
  height: 420px;
  background: url("./assets/decor/blue-speed-bg.webp") center / cover no-repeat;
  opacity: .18;
  transform: rotate(11deg);
}

.networking-design-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr);
  gap: 40px 64px;
  align-items: center;
  width: min(1280px, 90vw);
  margin: 72px auto 0;
  padding-top: 28px;
}

.networking-design-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 232px;
  height: 4px;
  background: var(--accent);
}

.networking-design-copy {
  position: relative;
  min-width: 0;
}

.networking-kicker {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-family: din-2014, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .16em;
}

.networking-design-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.3vw, 52px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.networking-summary {
  margin: 24px 0 0;
  color: #c4cfdf;
  font-size: 17px;
  line-height: 1.95;
}

.networking-features {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.networking-features li {
  position: relative;
  min-height: 56px;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(93, 188, 255, .28);
  border-radius: 6px;
  background: #0c131d;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.networking-features li::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  margin: 11px 0 0 -24px;
  background: var(--accent);
}

.networking-design-photo {
  position: relative;
  min-width: 0;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(170, 205, 255, .28);
  border-radius: 8px;
  background: #07101c;
}

.networking-design-photo picture,
.networking-design-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.networking-design-photo img {
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(.88) brightness(.96);
}

.networking-design-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .06) 54%, rgba(0, 0, 0, .58) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .34), transparent 34%);
  pointer-events: none;
}

.networking-tags {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.networking-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(98, 192, 255, .5);
  border-radius: 4px;
  background: rgba(1, 8, 16, .86);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .04em;
}

.networking-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  border-top: 1px solid rgba(0, 145, 255, .42);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  list-style: none;
}

.networking-flow li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  background: #080e16;
}

.networking-flow li:last-child {
  border-right: 0;
}

.networking-flow span {
  color: var(--accent-2);
  font-family: din-2014, "Helvetica Neue", Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.networking-flow strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.exchange {
  padding-top: 112px;
  padding-bottom: 112px;
  background: linear-gradient(180deg, #000 0%, #27282d 100%);
}

.exchange-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "main"
    "copy";
  gap: 24px;
  width: min(1280px, 90vw);
  margin: 80px auto 0;
  padding: 32px;
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#101720, #070d15) padding-box,
    linear-gradient(90deg, rgba(0, 145, 255, .58), rgba(101, 84, 255, .32), rgba(255, 255, 255, .2)) border-box;
}

.exchange-copy {
  grid-area: copy;
  padding: 0;
}

.exchange-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.02em;
}

.exchange-copy h3::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 26px 0 0;
  background: var(--accent);
}

.exchange-copy p:not(.slant-label) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.exchange figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #07111f;
}

.exchange figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, .34));
}

.exchange figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.exchange-photo-main {
  grid-area: main;
  aspect-ratio: 1915 / 821;
  min-height: 0;
}

.exchange-photo-left {
  grid-area: left;
  min-height: 280px;
}

.exchange-photo-right {
  grid-area: right;
  min-height: 280px;
}

.section-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max), 90vw);
  margin: 0 auto 42px;
  text-align: center;
}

.section-title-line span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-title-line h2 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  list-style: none;
}

.target-grid li {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 22px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111923;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.target-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 10px rgba(0, 145, 255, .18));
}

.sales::before {
  left: 17px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -13px 12px 0 -3px currentColor, 13px 12px 0 -3px currentColor;
}

.sales::after {
  left: 7px;
  top: 27px;
  width: 33px;
  height: 17px;
  border-radius: 18px 18px 4px 4px;
  background: currentColor;
}

.briefcase::before {
  left: 5px;
  top: 18px;
  width: 36px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.briefcase::after {
  left: 17px;
  top: 11px;
  width: 14px;
  height: 9px;
  border: 3px solid currentColor;
  border-bottom: 0;
}

.growth::before {
  left: 4px;
  bottom: 8px;
  width: 38px;
  height: 25px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: skewY(-35deg);
}

.growth::after {
  right: 3px;
  top: 8px;
  width: 15px;
  height: 15px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.target-icon::before,
.target-icon::after {
  display: none;
}

.target-icon.owner {
  background-image: url("./assets/icons/target-owner.png");
}

.target-icon.sales {
  background-image: url("./assets/icons/target-sales-manager.png");
}

.target-icon.briefcase {
  background-image: url("./assets/icons/target-business-leader.png");
}

.target-icon.growth {
  background-image: url("./assets/icons/target-sales-organization.png");
}

.sponsor {
  padding-top: 84px;
}

.sponsor .sponsor-strip {
  padding: 22px;
}

.sponsor-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  width: min(var(--max), 90vw);
  margin: 28px auto 0;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111923;
}

.bulb-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0b58bf;
}

.bulb-icon::before {
  left: 20px;
  top: 14px;
  width: 18px;
  height: 24px;
  border: 3px solid #fff;
  border-bottom: 0;
  border-radius: 16px 16px 8px 8px;
}

.bulb-icon::after {
  left: 22px;
  top: 41px;
  width: 14px;
  height: 6px;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.sponsor-card h3 {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--accent);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
}

.sponsor-card p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.sponsor-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.sponsor-card li {
  min-width: 118px;
  padding: 7px 16px;
  border: 1px solid rgba(0, 145, 255, .55);
  border-radius: 999px;
  color: #c2e5ff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.sponsor-recruitment-banner {
  display: block;
  width: min(820px, 84vw);
  margin: 48px auto 0;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #05080d;
}

.sponsor-recruitment-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.sponsor-recruitment-banner:hover {
  border-color: var(--red);
}

.sponsor-recruitment-banner:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.outline {
  padding-top: 100px;
}

.outline-table,
.faq-list,
.timetable {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0a1018;
}

.outline-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.outline-table div:last-child {
  border-bottom: 0;
}

.outline-table dt,
.outline-table dd {
  display: flex;
  align-items: center;
  margin: 0;
}

.outline-table dt {
  gap: 12px;
  padding: 16px 18px;
  color: var(--accent-2);
  font-size: 18px;
  font-weight: 900;
}

.outline-table dt .fact-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 7px rgba(0, 145, 255, .28));
}

.outline-table .fact-icon::before,
.outline-table .fact-icon::after {
  display: none;
}

.outline-table .calendar {
  background-image: url("./assets/icons/outline-date.png");
}

.outline-table .clock {
  background-image: url("./assets/icons/outline-time.png");
}

.outline-table .pin {
  background-image: url("./assets/icons/outline-place.png");
}

.outline-table .ticket {
  background-image: url("./assets/icons/outline-price.png");
}

.outline-table .people {
  background-image: url("./assets/icons/outline-capacity.png");
}

.outline-table .flag {
  background-image: url("./assets/icons/outline-host.png");
}

.outline-table dd {
  padding: 16px 22px;
  border-left: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.timetable-title {
  margin-top: 64px;
}

.timetable {
  padding: 0;
  list-style: none;
}

.timetable li {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.timetable li:last-child {
  border-bottom: 0;
}

.timetable time,
.timetable span {
  display: flex;
  align-items: center;
  padding: 14px 22px;
  font-size: 18px;
  font-weight: 800;
}

.timetable time {
  color: var(--accent-2);
}

.timetable span {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.faq {
  padding-top: 72px;
}

.faq-list div {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.faq-list div:last-child {
  border-bottom: 0;
}

.faq-list dt,
.faq-list dd {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: baseline;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.faq-list dd {
  margin-top: 7px;
  color: var(--muted);
}

.faq-list dt span,
.faq-list dd span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0b58bf;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.privacy-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  min-height: 500px;
  padding: 104px 5vw 72px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  background: #000;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("./assets/decor/blue-speed-bg.webp") center / cover no-repeat;
  opacity: .46;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .66) 36%, #000 100%);
}

.final-cta h2,
.final-cta p,
.final-cta a {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: clamp(36px, 4.2vw, 58px);
}

.final-cta p {
  width: min(640px, 100%);
  margin: 24px auto 32px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.75;
}

.final-cta .primary-cta,
.final-cta .secondary-cta {
  width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.akey-footer {
  width: 100%;
  padding: 34px 5vw 36px;
  background: #fff;
  color: #101214;
  color-scheme: light;
}

.akey-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.akey-footer__social {
  display: flex;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 58px;
  gap: 16px;
}

.akey-footer__social p {
  margin: 0 18px 0 0;
  color: #101214;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.akey-footer__social a,
.akey-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #101214;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.akey-footer__social a {
  justify-content: center;
  width: 44px;
  min-height: 44px;
  padding: 0;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
}

.akey-footer__social a:hover,
.akey-footer__links a:hover {
  color: #0968c7;
}

.akey-footer__social a::before {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.akey-footer__social a:nth-of-type(1)::before {
  content: "f";
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.akey-footer__social a:nth-of-type(2)::before {
  content: "X";
  font-family: din-2014, "Helvetica Neue", Arial, sans-serif;
}

.akey-footer__social a:nth-of-type(3)::before {
  content: "▶";
  font-size: 22px;
}

.akey-footer__social a:nth-of-type(4)::before {
  content: "in";
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
}

.akey-footer__info {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  justify-self: center;
  max-width: 330px;
  color: #101214;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.akey-footer__info p {
  margin: 0 0 6px;
  color: #101214;
  font-size: 16px;
  line-height: 1.65;
}

.akey-footer__info .akey-footer__name {
  margin-bottom: 14px;
  color: #101214;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.akey-footer__links {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding: 0;
  font-size: 13px;
}

.akey-footer__copy {
  grid-column: 1 / -1;
  margin: 0;
  color: #101214;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1279.98px) {
  .site-header {
    padding: 0 5vw;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    right: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    height: 100dvh;
    padding: calc(var(--header-h) + 40px) 5vw 40px;
    overflow: auto;
    background: rgba(0, 0, 0, .94);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, right 0s .3s;
  }

  .site-nav.is-open {
    right: 0;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav a {
    display: grid;
    grid-template-columns: 28px auto;
    min-height: 44px;
    color: #fff;
    font-size: 23px;
    font-weight: 900;
  }

  .site-nav a::before {
    content: "";
    align-self: center;
    width: 16px;
    height: 2px;
    background: #fff;
  }

  .site-nav .header-cta {
    display: flex;
    width: min(600px, 100%);
    min-height: 56px;
    margin-top: auto;
    font-size: 18px;
  }

  .site-nav .header-cta::before {
    content: none;
  }

  .fixed-cta {
    display: block;
    right: auto;
    left: 50%;
    bottom: 12px;
    width: min(600px, 90vw);
    transform: translateX(-50%);
  }

  .fixed-cta.is-hidden,
  body.menu-open .fixed-cta {
    transform: translate(-50%, 120%);
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: min(58%, 680px);
  }

  .hero h1 {
    font-size: clamp(42px, 6vw, 62px);
  }

  .hero-photo {
    width: 70%;
    height: 600px;
  }

  .hero-meta {
    width: min(720px, 58%);
  }

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

  .benefit-grid article:nth-child(2n) {
    border-right: 0;
  }

  .benefit-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

@media (max-width: 1080.98px) {
  .contents-editorial {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "visuals"
      "flow";
    gap: 34px;
    width: min(820px, 90vw);
  }

  .contents-copy p:not(.contents-chapter) {
    max-width: 720px;
  }

  .networking-design-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    width: min(820px, 90vw);
  }

  .networking-design-copy {
    max-width: 760px;
  }

  .networking-design-photo {
    width: 100%;
  }

  .networking-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .networking-flow li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .networking-flow li:last-child {
    border-bottom: 0;
  }

  .problem-editorial {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "photo"
      "panel"
      "strip"
      "bridge"
      "list"
      "cta";
    width: min(820px, 90vw);
  }

  .problem-editorial-photo {
    border-radius: 4px;
  }

  .problem-editorial-panel {
    min-height: 0;
    margin: -42px 32px 0;
  }

  .problem-photo-strip {
    margin-top: 28px;
  }

  .speaker-lineup {
    grid-template-columns: minmax(0, 1fr);
    width: min(820px, 90vw);
  }

  .speaker-lineup .speaker-card {
    grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-h: 56px;
  }

  body {
    font-size: 14px;
  }

  .page-shell {
    width: 100%;
  }

  .site-header {
    height: var(--header-h);
    padding: 0 5vw;
  }

  .brand {
    min-height: 40px;
    gap: 8px;
  }

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

  .brand span {
    font-size: 13px;
    letter-spacing: .01em;
  }

  .site-nav {
    padding-top: calc(var(--header-h) + 32px);
  }

  .site-nav a {
    font-size: 20px;
  }

  .site-nav .header-cta {
    min-width: 0;
    min-height: 58px;
    font-size: 16px;
  }

  .fixed-cta {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 5vw calc(12px + env(safe-area-inset-bottom));
    transform: none;
    background: #000;
  }

  .fixed-cta.is-hidden,
  body.menu-open .fixed-cta {
    transform: translateY(120%);
  }

  .fixed-cta a,
  .primary-cta {
    min-height: 60px;
    padding: 12px 66px 12px 22px;
    font-size: 17px;
  }

  .primary-cta span,
  .fixed-cta span {
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .primary-cta span::before,
  .fixed-cta span::before {
    width: 10px;
    height: 10px;
  }

  .hero {
    min-height: 680px;
    padding: 0 5vw 46px;
    border-top: var(--header-h) solid #000;
    overflow: hidden;
  }

  .hero::before {
    background: #03070c;
  }

  .hero::after {
    height: 170px;
  }

  .hero-ring {
    top: 92px;
    left: 50%;
    width: 255px;
    height: 255px;
    border-width: 13px;
    transform: translateX(-50%) rotate(-22deg) skewX(-7deg);
  }

  .hero-copy {
    width: min(560px, 100%);
    padding: 26px 0 0;
  }

  .hero-eyebrow,
  .hero-chapter {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hero-lockup {
    top: 70px;
    left: -5px;
    width: 112%;
    font-size: 52px;
    white-space: normal;
  }

  .slant-label {
    margin-bottom: 12px;
  }

  .slant-label span {
    min-height: 28px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 38px;
    line-height: 1.13;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-photo {
    position: absolute;
    top: 148px;
    left: auto;
    right: -238px;
    width: 760px;
    height: 432px;
    margin: 0;
    transform: none;
  }

  .hero-photo::before {
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .82) 24%, rgba(0, 0, 0, .22) 58%, #000 100%),
      linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .04) 36%, #000 100%);
  }

  .dot-wave-hero {
    left: -110px;
    top: 360px;
    width: 520px;
    height: 220px;
    opacity: .36;
  }

  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
    width: min(356px, 100%);
    margin: 46px 0 0 auto;
    padding: 14px 16px 16px;
    border: 1px solid rgba(98, 192, 255, .3);
    border-radius: 8px;
    background: rgba(3, 8, 14, .9);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .38);
  }

  .hero-date {
    grid-row: auto;
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    font-size: 32px;
  }

  .hero-place {
    padding: 14px 0 0;
    font-size: 16px;
  }

  .hero-place p:last-child {
    font-size: 14px;
  }

  .hero-organizer,
  .hero-capacity {
    padding-left: 0;
  }

  .hero-organizer {
    font-size: 13px;
  }

  .hero-organizer strong {
    display: block;
    margin: 4px 0 0;
    font-size: 15px;
    letter-spacing: .03em;
  }

  .fact-row {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    min-height: 52px;
  }

  .fact-row p {
    font-size: 16px;
  }

  .fact-row small {
    font-size: 11px;
  }

  .fact-icon {
    width: 24px;
    height: 24px;
  }

  .sponsor-strip,
  .sponsor-strip-hero,
  .hero-meta,
  .speaker-lineup,
  .speaker-card,
  .speaker-card-hero,
  .section-heading,
  .benefit-grid,
  .problem-list,
  .program-list,
  .program-copy,
  .target-grid,
  .outline-table,
  .timetable,
  .faq-list,
  .privacy-note,
  .cta-block,
  .program > .slant-label,
  .speakers > .slant-label,
  .section-title-line {
    width: min(560px, 100%);
  }

  .sponsor-strip-hero {
    margin: 34px auto 0;
  }

  .sponsor-strip {
    padding: 16px 12px;
  }

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

  .sponsor-logo,
  .sponsor-coming {
    min-height: 54px;
  }

  .sponsor-logo img {
    width: 102px;
  }

  .speaker-card,
  .speaker-card-hero {
    grid-template-columns: 120px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .speaker-lineup {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .speaker-lineup .speaker-card {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 0;
  }

  .speaker-card-hero {
    margin: 32px auto 0;
  }

  .speaker-card h2,
  .speaker-card h3 {
    font-size: 21px;
  }

  .speaker-card p:not(.slant-label) {
    margin-top: 10px;
    font-size: 14px;
  }

  .speaker-card .speaker-company {
    font-size: 11px;
    line-height: 1.55;
  }

  .speaker-card .speaker-bio {
    font-size: 12px;
    line-height: 1.72;
  }

  .slant-label-small {
    margin-bottom: 10px;
  }

  .slant-label-small span {
    min-height: 24px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-closing {
    width: min(560px, 100%);
    margin-top: 42px;
  }

  .hero-closing p,
  .cta-block p {
    font-size: 15px;
    line-height: 1.75;
  }

  .section {
    padding: 72px 5vw 84px;
  }

  .section-title-band {
    margin-bottom: 48px;
    padding: .45em 5vw;
    font-size: 32px;
  }

  .networking-design .section-title-band,
  .exchange .section-title-band {
    margin-bottom: 0;
  }

  .contents-intro {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .contents-editorial {
    width: min(560px, 100%);
    gap: 26px;
  }

  .contents-copy {
    padding-left: 18px;
  }

  .contents-copy::before {
    top: 34px;
    width: 4px;
    height: calc(100% - 30px);
  }

  .contents-chapter {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .contents-copy h2 {
    font-size: 30px;
    line-height: 1.24;
  }

  .contents-copy p:not(.contents-chapter) {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.84;
  }

  .contents-visuals {
    gap: 10px;
  }

  .contents-sub-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contents-sub-photos img {
    aspect-ratio: 1 / 1;
  }

  .contents-flow {
    margin-top: 4px;
  }

  .contents-flow li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }

  .contents-flow span {
    font-size: 30px;
  }

  .contents-flow h3 {
    font-size: 17px;
  }

  .contents-flow p {
    font-size: 12px;
    line-height: 1.72;
  }

  .contents-flow a {
    margin-top: 10px;
    font-size: 12px;
  }

  .section::before {
    top: -28px;
    height: 56px;
    width: 78%;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading-left {
    display: block;
  }

  .section-heading h2,
  .exchange-copy h3,
  .final-cta h2 {
    font-size: 32px;
    line-height: 1.24;
  }

  .section-heading h2::after,
  .exchange-copy h3::after {
    width: 64px;
    margin-top: 18px;
  }

  .section-heading p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.9;
  }

  .benefit-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(560px, 100%);
  }

  .benefit-grid article {
    min-height: 0;
    padding: 20px 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .benefit-grid b {
    margin-bottom: 12px;
    font-size: 34px;
  }

  .benefit-grid h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.45;
  }

  .benefit-grid p {
    font-size: 12px;
    line-height: 1.72;
  }

  .problems {
    padding: 64px 5vw 86px;
  }

  .problem-editorial {
    width: min(560px, 100%);
  }

  .problem-editorial-photo {
    width: calc(100% + 10vw);
    aspect-ratio: 16 / 10;
    margin: 0 -5vw;
    border-radius: 0;
  }

  .problem-editorial-panel {
    gap: 20px;
    margin: -34px 12px 0;
    padding: 22px 18px;
    border-radius: 6px;
  }

  .problem-editorial-chapter {
    font-size: 11px;
    text-align: left;
  }

  .problem-editorial-copy {
    display: block;
  }

  .problem-editorial-copy::before {
    width: 96px;
    margin-bottom: 16px;
  }

  .problem-editorial-copy h2 {
    font-size: 29px;
    line-height: 1.2;
  }

  .problem-editorial-copy p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.8;
  }

  .problem-photo-strip {
    display: flex;
    gap: 0;
    width: calc(100% + 10vw);
    margin: 22px -5vw 0;
    padding: 0 5vw 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .problem-photo-strip img {
    flex: 0 0 76%;
    width: 76%;
    aspect-ratio: 16 / 10;
    scroll-snap-align: start;
  }

  .problem-bridge {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.55;
    text-align: left;
  }

  .problem-editorial > .problem-list {
    width: 100%;
    margin-top: 22px;
  }

  .problem-editorial > .cta-block {
    width: 100%;
    margin-top: 32px;
  }

  .problem-list {
    gap: 8px;
  }

  .problem-list li,
  .problem-list li:nth-child(2n) {
    margin-left: 0;
  }

  .problem-list li a {
    grid-template-columns: 48px 1fr 18px;
    min-height: 68px;
    padding: 10px 14px 10px 10px;
    font-size: 15px;
  }

  .list-icon {
    width: 38px;
    height: 38px;
  }

  .program {
    padding-top: 80px;
  }

  .program::after {
    right: -260px;
    top: 48px;
    width: 620px;
    height: 360px;
    opacity: .14;
  }

  .program > .slant-label,
  .speakers > .slant-label {
    margin-bottom: 26px;
  }

  .program-copy {
    margin: -8px auto 22px;
    font-size: 13px;
    line-height: 1.8;
  }

  .program-list {
    gap: 10px;
  }

  .program-list li {
    grid-template-columns: 70px 1fr;
    min-height: 82px;
    padding: 16px;
  }

  .program-list span {
    font-size: 32px;
  }

  .program-list strong {
    padding-left: 18px;
    font-size: 17px;
    line-height: 1.45;
  }

  .speakers {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .networking-design {
    padding-top: 72px;
  }

  .networking-design-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(560px, 100%);
    margin-top: 48px;
    padding-top: 22px;
  }

  .networking-design-shell::before {
    width: 136px;
  }

  .networking-kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .networking-design-copy h3 {
    font-size: 28px;
    line-height: 1.28;
  }

  .networking-summary {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.82;
  }

  .networking-features {
    gap: 8px;
    margin-top: 20px;
  }

  .networking-features li {
    min-height: 0;
    padding: 11px 12px 11px 36px;
    font-size: 13px;
  }

  .networking-features li::before {
    width: 12px;
    margin: 9px 0 0 -22px;
  }

  .networking-design-photo {
    aspect-ratio: auto;
    overflow: hidden;
  }

  .networking-design-photo::after {
    content: none;
  }

  .networking-design-photo picture {
    aspect-ratio: 3 / 2;
    height: auto;
  }

  .networking-tags {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 12px;
    background: #050b12;
  }

  .networking-tags li {
    min-height: 28px;
    font-size: 11px;
  }

  .networking-flow {
    margin-top: 0;
  }

  .networking-flow li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 16px 14px;
  }

  .networking-flow span {
    font-size: 28px;
  }

  .networking-flow strong {
    font-size: 14px;
  }

  .exchange {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .exchange-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "copy";
    gap: 24px;
    width: min(560px, 100%);
    margin-top: 48px;
    padding: 30px min(22px, 5vw);
  }

  .exchange-copy {
    padding: 8px 0 0;
  }

  .exchange-copy p:not(.slant-label) {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.78;
  }

  .exchange-photo-main {
    aspect-ratio: 1915 / 821;
    min-height: 0;
  }

  .exchange-photo-left,
  .exchange-photo-right {
    min-height: 172px;
  }

  .section-title-line {
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-title-line h2 {
    font-size: 26px;
  }

  .target-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .target-grid li {
    min-height: 124px;
    padding: 16px 8px;
    font-size: 12px;
  }

  .target-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 8px;
  }

  .sponsor-card {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    width: min(560px, 100%);
    padding: 18px 14px;
  }

  .bulb-icon {
    width: 40px;
    height: 40px;
  }

  .sponsor-card h3 {
    padding-bottom: 12px;
    font-size: 18px;
  }

  .sponsor-card p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.8;
  }

  .sponsor-card li {
    min-width: 88px;
    font-size: 12px;
  }

  .outline {
    padding-top: 72px;
  }

  .outline-table div {
    grid-template-columns: 112px 1fr;
    min-height: 62px;
  }

  .outline-table dt,
  .outline-table dd {
    padding: 12px;
    font-size: 13px;
  }

  .outline-table dt {
    gap: 7px;
  }

  .outline-table dt .fact-icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .timetable-title {
    margin-top: 44px;
  }

  .timetable li {
    grid-template-columns: 112px 1fr;
    min-height: 60px;
  }

  .timetable time,
  .timetable span {
    padding: 12px;
    font-size: 13px;
  }

  .faq {
    padding-top: 56px;
  }

  .faq-list div {
    padding: 16px 14px;
  }

  .faq-list dt,
  .faq-list dd {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    font-size: 13px;
  }

  .faq-list dt span,
  .faq-list dd span {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .privacy-note {
    font-size: 11px;
  }

  .final-cta {
    min-height: 430px;
    padding: 72px 5vw 60px;
  }

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

  .akey-footer {
    padding: 28px 5vw calc(28px + env(safe-area-inset-bottom));
  }

  .akey-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 18px;
  }

  .akey-footer__social {
    grid-column: 1 / -1;
    grid-row: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .akey-footer__links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 2px 14px;
    margin-top: 8px;
  }

  .akey-footer__links a {
    min-height: 44px;
  }

  .akey-footer__info,
  .akey-footer__copy {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: stretch;
  }

  .akey-footer__social p {
    flex-basis: 100%;
    margin-right: 0;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-lockup {
    font-size: 42px;
  }

  .hero-photo {
    top: 152px;
    right: -268px;
    width: 760px;
    height: 430px;
    aspect-ratio: auto;
  }

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

  .benefit-grid article {
    min-height: 0;
  }

  .exchange-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "copy";
  }

  .exchange-photo-main {
    min-height: 0;
  }

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

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

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

  .hero-lead {
    font-size: 13px;
  }

  .hero-photo {
    top: 146px;
    right: -288px;
    width: 720px;
    height: 400px;
    aspect-ratio: auto;
  }

  .hero-meta {
    margin-top: 34px;
    padding: 13px 14px;
  }

  .speaker-card,
  .speaker-lineup .speaker-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .problem-editorial-copy h2 {
    font-size: 26px;
  }

  .fixed-cta a,
  .primary-cta {
    font-size: 15px;
  }

  .program-list strong {
    font-size: 15px;
  }

  .outline-table div,
  .timetable li {
    grid-template-columns: 96px 1fr;
  }
}
