:root {
  --bg: #010106;
  --panel: #07101c;
  --panel-strong: #0d1524;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --quiet: rgba(255, 255, 255, 0.54);
  --line: rgba(255, 255, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.1);
  --purple: #7c3cff;
  --blue: #1ea7ff;
  --cyan: #00d4ff;
  --pink: #ff2fc6;
  --radius: 8px;
  --font-display: "Space Grotesk", "Arial Black", Impact, system-ui, sans-serif;
  --font-body: Inter, Manrope, Arial, sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 8%, rgba(73, 57, 255, 0.18), transparent 26%),
    radial-gradient(circle at 18% 60%, rgba(0, 212, 255, 0.08), transparent 28%),
    var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--white);
  color: #000;
  padding: 10px 14px;
  font-weight: 900;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.home-shell {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding-bottom: 86px;
  isolation: isolate;
}

.hero-bg,
.hero-wash,
.hero-grid-lines {
  position: absolute;
  inset: 0;
}

.hero-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 35%;
  opacity: 0.9;
  animation: heroDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-video {
  background: #000 url("assets/digital-disruption-hero.png") center / cover no-repeat;
}

.hero-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 32%, rgba(0, 0, 0, 0.34) 72%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(180deg, rgba(1, 1, 6, 0.34), rgba(1, 1, 6, 0.84) 72%, #010106 100%),
    radial-gradient(circle at 63% 20%, rgba(124, 60, 255, 0.34), transparent 24%),
    radial-gradient(circle at 45% 34%, rgba(0, 212, 255, 0.18), transparent 28%);
}

.hero-grid-lines {
  z-index: 2;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 28px;
  padding-right: 72px;
}

.logo-lockup {
  display: grid;
  gap: 4px;
  width: 190px;
}

.logo-lockup img {
  width: 178px;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.14));
}

.logo-lockup span {
  padding-left: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta,
.button-primary {
  border: 0;
  background: linear-gradient(100deg, var(--purple), var(--blue));
  box-shadow: 0 0 34px rgba(63, 112, 255, 0.28);
  color: var(--white);
}

.nav-cta {
  border-radius: var(--radius);
  padding: 14px 20px !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.45fr);
  gap: 78px;
  align-items: center;
  padding-top: 94px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.95rem;
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(95deg, var(--blue), var(--purple) 68%, #ff8adf);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 7s ease-in-out infinite alternate;
}

.hero-copy p {
  max-width: 530px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.action-card:hover {
  transform: translateY(-3px);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
}

.stage-callout {
  justify-self: end;
  width: min(390px, 100%);
  min-height: 210px;
  border: 1px solid rgba(30, 167, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 26%, rgba(30, 167, 255, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(15, 21, 42, 0.72), rgba(0, 0, 0, 0.28));
  padding: 34px;
  box-shadow: inset 0 0 90px rgba(124, 60, 255, 0.12), 0 28px 90px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
}

.stage-callout p,
.stage-callout strong {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.stage-callout strong {
  color: var(--cyan);
}

.hero-footer {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 84px;
  padding-right: 96px;
}

.trust-strip p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.trust-logos span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 850;
  opacity: 0.78;
}

.watch-button {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.watch-button strong {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}

.watch-button strong::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
  content: "";
}

.watch-button strong::after {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(124, 60, 255, 0.2);
  border-radius: inherit;
  content: "";
  animation: ringPulse 2.8s ease-in-out infinite;
}

.side-rail {
  position: absolute;
  z-index: 5;
  right: max(18px, calc((100vw - 1180px) / 2 - 46px));
  top: 165px;
  display: grid;
  gap: 18px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.side-rail i {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.6);
}

.feature-event {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.65fr) minmax(260px, 0.72fr);
  gap: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(11, 20, 35, 0.96), rgba(5, 10, 18, 0.8)),
    radial-gradient(circle at 80% 20%, rgba(30, 167, 255, 0.18), transparent 34%);
  margin-top: 34px;
  padding: 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-copy h2,
.section-row h2,
.why-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 950;
  line-height: 1.04;
  text-transform: uppercase;
}

.feature-copy h2 {
  max-width: 440px;
  font-size: clamp(1.75rem, 2.1vw, 2.2rem);
}

.feature-copy p,
.why-copy p,
.contact-panel p {
  color: var(--muted);
}

.feature-copy > p {
  max-width: 470px;
  margin: 18px 0 24px;
}

.event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-facts span {
  position: relative;
  padding-left: 22px;
}

.event-facts span::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.event-visual {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 230px;
}

.event-visual img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  filter: saturate(1.15) hue-rotate(16deg);
}

.event-benefits {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(30, 167, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 10, 22, 0.62);
  padding: 22px;
}

.event-benefits article,
.impact-stats article {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 14px;
  align-items: center;
}

.event-benefits strong,
.impact-stats strong {
  font-size: 1rem;
}

.event-benefits p,
.impact-stats p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.line-icon,
.topic-icon {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.line-icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
}

.line-icon::before,
.topic-icon::before,
.topic-icon::after {
  position: absolute;
  content: "";
}

.line-icon.people::before {
  inset: 8px;
  border: 2px solid var(--cyan);
  border-radius: 50% 50% 45% 45%;
}

.line-icon.mic::before {
  left: 14px;
  top: 7px;
  width: 6px;
  height: 15px;
  border: 2px solid var(--cyan);
  border-radius: 8px;
}

.line-icon.shield::before {
  left: 9px;
  top: 7px;
  width: 14px;
  height: 17px;
  border: 2px solid var(--cyan);
  border-radius: 2px 2px 8px 8px;
}

.line-icon.network::before,
.line-icon.calendar::before,
.line-icon.target::before {
  inset: 9px;
  border: 2px solid var(--cyan);
  border-radius: 4px;
}

.line-icon.target::before {
  border-radius: 50%;
}

.topics-section,
.why-section,
.action-cards,
.contact-panel {
  padding-top: 58px;
}

.section-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  border-top: 1px solid var(--line-soft);
  padding-top: 30px;
}

.section-row h2 {
  font-size: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.text-link span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.topic-icons {
  display: grid;
  grid-template-columns: repeat(8, minmax(104px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.topic-icons article {
  display: grid;
  min-height: 142px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.topic-icons h3 {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.topic-icon {
  width: 62px;
  height: 62px;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 26px rgba(124, 60, 255, 0.12);
}

.topic-icon::before {
  inset: 17px;
  border: 3px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 0 14px rgba(30, 167, 255, 0.6);
}

.topic-icon::after {
  left: 22px;
  top: 22px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--purple);
  border-radius: 50%;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(220px, 0.42fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  margin-top: 44px;
}

.why-copy h2 {
  font-size: 2.35rem;
}

.why-copy p {
  margin: 22px 0 24px;
  max-width: 430px;
}

.impact-stats {
  display: grid;
  gap: 18px;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  padding: 8px 28px;
}

.impact-stats strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.networking-image {
  position: relative;
  min-height: 260px;
  overflow: visible;
  border-radius: var(--radius);
  margin-top: 38px;
}

.networking-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(1.25) hue-rotate(24deg);
}

.join-badge {
  position: absolute;
  right: 18px;
  top: -64px;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 55px rgba(124, 60, 255, 0.28);
  animation: floatBadge 5s ease-in-out infinite;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
  padding-bottom: 70px;
}

.action-card {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.action-card:hover {
  border-color: rgba(30, 167, 255, 0.42);
  box-shadow: 0 18px 70px rgba(30, 167, 255, 0.12);
}

.action-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(1.2) hue-rotate(20deg);
  transition: transform 300ms ease, opacity 300ms ease;
}

.action-card:hover img {
  transform: scale(1.06);
  opacity: 0.66;
}

.action-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 18, 70, 0.86), rgba(0, 0, 0, 0.22));
  content: "";
}

.speaker-card::after,
.loop-card::after {
  background: linear-gradient(90deg, rgba(56, 13, 125, 0.88), rgba(0, 0, 0, 0.24));
}

.sponsor-card::after {
  background: linear-gradient(90deg, rgba(0, 81, 95, 0.84), rgba(0, 0, 0, 0.24));
}

.action-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 176px;
  align-content: space-between;
  padding: 24px;
}

.action-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 950;
  text-transform: uppercase;
}

.action-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.83);
}

.action-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line-soft);
  margin-top: 12px;
  padding-bottom: 68px;
}

.contact-panel h2 {
  font-size: 2.2rem;
}

.contact-panel p {
  max-width: 520px;
  margin-top: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form label:nth-child(4),
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(30, 167, 255, 0.22);
}

.form-note {
  min-height: 24px;
  color: var(--cyan);
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #000;
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--quiet);
}

.footer-inner img {
  width: 180px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.035) translate3d(-0.6%, -0.4%, 0); }
}

@keyframes gradientShift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.2; transform: scale(0.92); }
  50% { opacity: 0.8; transform: scale(1.04); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(8px) rotate(4deg); }
}

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

@media (max-width: 1080px) {
  .site-nav {
    gap: 14px;
    font-size: 0.76rem;
  }

  .hero-copy h1 {
    font-size: 4rem;
    max-width: 590px;
  }

  .feature-event,
  .why-section {
    grid-template-columns: 1fr;
  }

  .feature-event {
    gap: 24px;
  }

  .side-rail {
    display: none;
  }

  .site-header,
  .hero-footer {
    padding-right: 0;
  }

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

  .topic-icons,
  .action-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container,
  .site-header {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .site-header {
    align-items: center;
  }

  .logo-lockup {
    width: 150px;
  }

  .logo-lockup img {
    width: 150px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.96);
    padding: 16px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero-content,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .stage-callout {
    justify-self: start;
    transform: none;
    margin-top: 4px;
  }

  .hero-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 56px;
  }

  .side-rail {
    display: none;
  }

  .topic-icons,
  .action-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-stats {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 24px 0;
  }

  .networking-image {
    margin-top: 58px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-content {
    padding-top: 66px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 2.28rem;
    line-height: 0.98;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-event {
    margin-top: 0;
    padding: 18px;
  }

  .event-benefits,
  .topic-icons,
  .action-cards,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-row {
    align-items: start;
    flex-direction: column;
  }

  .trust-logos {
    gap: 14px;
  }

  .trust-logos span {
    font-size: 1rem;
  }

  .join-badge {
    right: 12px;
    top: -56px;
    width: 104px;
    height: 104px;
  }
}
