@font-face {
  font-family: "Space Grotesk";
  src: url("assets/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --ocean-950: #061f29;
  --ocean-900: #082f3a;
  --ocean-800: #0b4652;
  --ocean-700: #126b78;
  --reef: #0d8994;
  --spray: #dff7f7;
  --lime: #a6d535;
  --signal: #ed2a8a;
  --signal-dark: #bb0c66;
  --chalk: #f7fbfa;
  --sand: #f1e8c9;
  --ink: #0b2530;
  --muted: #58717a;
  --line: rgba(11, 70, 82, 0.18);
  --shadow: 0 28px 80px rgba(6, 31, 41, 0.14);
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--chalk);
  font-family: "Space Grotesk", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: white;
  background: var(--signal);
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a,
summary,
label,
select {
  touch-action: manipulation;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 10vw, 148px);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--ocean-950);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  text-decoration: none;
}

.brand-cross {
  color: currentColor;
  font-size: 22px;
  font-weight: 300;
  opacity: 0.58;
}

.brand-mask {
  display: block;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.brand-mask--king {
  width: 135px;
  height: 46px;
  -webkit-mask-image: url("assets/king-kendze-logo.svg");
  mask-image: url("assets/king-kendze-logo.svg");
}

.brand-mask--angels {
  width: 54px;
  height: 48px;
  -webkit-mask-image: url("assets/kites-angels-logo.svg");
  mask-image: url("assets/kites-angels-logo.svg");
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  color: var(--ocean-950);
  background: white;
  border-color: white;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(920px, 100svh);
  overflow: hidden;
  color: white;
  background: var(--ocean-900);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 31, 41, 0.98) 0%, rgba(6, 31, 41, 0.9) 36%, rgba(6, 31, 41, 0.3) 66%, rgba(6, 31, 41, 0.05) 100%),
    linear-gradient(0deg, rgba(6, 31, 41, 0.58), transparent 40%);
}

.hero-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("assets/istruttore-hero.webp");
  background-position: 62% 48%;
  background-size: cover;
}

.hero-wind-lines {
  position: absolute;
  z-index: -1;
  inset: 5% auto auto 0;
  width: 70%;
  opacity: 0.22;
  transform: rotate(-4deg);
}

.hero-wind-lines svg {
  width: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--spray);
  stroke-width: 1.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  min-height: min(920px, 100svh);
  padding-top: 118px;
  padding-bottom: 64px;
}

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

.hero-aside {
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
}

.hero-aside .hero-date-lockup {
  width: 100%;
  margin-top: 28px;
}

.hero-aside .hero-meta {
  max-width: none;
  margin-top: 14px;
}

.hero-aside-cta {
  position: relative;
  isolation: isolate;
  align-self: center;
  min-width: 236px;
  overflow: visible;
}

.hero-aside-cta::before,
.hero-aside-cta::after {
  position: absolute;
  z-index: -1;
  inset: -2px;
  content: "";
  border: 2px solid rgba(237, 42, 138, 0.68);
  border-radius: inherit;
  pointer-events: none;
}

.eyebrow,
.section-kicker,
.topic-code {
  margin: 0 0 20px;
  color: var(--reef);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--spray);
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--lime);
}

.series-title {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.promise h2,
.speaker h2,
.signup h2 {
  margin: 0;
  font-size: clamp(54px, 7.2vw, 100px);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 em,
.takeaway h2 em {
  color: var(--signal);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-date-lockup {
  position: relative;
  display: grid;
  grid-template-columns: auto 1px auto auto;
  gap: 20px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 14px 16px 14px 20px;
  overflow: hidden;
  color: var(--ocean-950);
  background: var(--lime);
  box-shadow: 0 18px 44px rgba(6, 31, 41, 0.3);
}

.hero-date-lockup::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--signal);
}

.hero-date-lockup__day,
.hero-date-lockup__time {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-date-lockup__day span,
.hero-date-lockup__time span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-date-lockup strong {
  margin-top: 4px;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
}

.hero-date-lockup__rule {
  width: 1px;
  height: 44px;
  background: rgba(6, 31, 41, 0.28);
}

.hero-date-lockup__online {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding-inline: 14px;
  color: white;
  background: var(--ocean-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover svg {
  animation: arrow-push 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button--signal {
  color: white;
  background: var(--signal-dark);
  box-shadow: 0 16px 38px rgba(187, 12, 102, 0.34);
}

.button--signal:hover {
  background: #a20759;
  box-shadow: 0 20px 44px rgba(187, 12, 102, 0.44);
}

.text-link {
  padding-block: 12px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 650px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
}

.hero-meta li {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  background: rgba(6, 31, 41, 0.72);
  backdrop-filter: blur(8px);
}

.hero-meta strong {
  color: white;
  font-size: 15px;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.hero-caption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: white;
  font-size: 13px;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-caption span:last-child {
  opacity: 0.66;
}

.promise {
  position: relative;
  overflow: hidden;
  background: var(--spray);
}

.promise::after {
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(13, 137, 148, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(13, 137, 148, 0.06), 0 0 0 128px rgba(13, 137, 148, 0.04);
}

.promise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.52fr 1.25fr 0.55fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.promise h2,
.section-heading h2,
.speaker h2,
.signup h2 {
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1;
}

.promise-copy > p,
.section-heading > p:last-child,
.speaker-bio,
.signup-copy > p {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.wind-note {
  margin: 4px 0 0;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--signal);
}

.wind-note__number {
  display: block;
  color: var(--ocean-900);
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.wind-note__unit {
  color: var(--signal-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wind-note p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.promise-photo {
  position: relative;
  grid-column: 2 / -1;
  height: clamp(380px, 42vw, 560px);
  margin: clamp(34px, 5vw, 64px) 0 0;
  overflow: hidden;
  background: var(--ocean-800);
  box-shadow: var(--shadow);
}

.promise-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(6, 31, 41, 0.78));
  pointer-events: none;
}

.promise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.promise-photo:hover img {
  transform: scale(1.025);
}

.promise-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: white;
}

.promise-photo figcaption span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.promise-photo figcaption strong {
  font-size: clamp(21px, 2.5vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.program {
  background: white;
}

.section-heading {
  max-width: 840px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(50px, 8vw, 92px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topic-card {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition: color 240ms ease, background 240ms ease;
}

.topic-card::after {
  position: absolute;
  right: -62px;
  bottom: -62px;
  width: 128px;
  height: 128px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 260ms ease;
}

.topic-card:hover {
  color: white;
  background: var(--ocean-900);
}

.topic-card:hover::after {
  transform: scale(1.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.topic-card svg {
  width: 48px;
  height: 48px;
  margin: 38px 0 34px;
  fill: none;
  stroke: var(--reef);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.topic-card:hover svg,
.topic-card--signal svg {
  stroke: var(--lime);
}

.topic-card h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.topic-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.topic-card:hover p,
.topic-card--signal p {
  color: rgba(255, 255, 255, 0.7);
}

.topic-card--signal {
  color: white;
  background: var(--ocean-800);
}

.topic-card--signal .topic-code {
  color: var(--lime);
}

.action-proof {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ocean-950);
}

.action-proof::before {
  position: absolute;
  top: 74px;
  right: -120px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(166, 213, 53, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(166, 213, 53, 0.035), 0 0 0 116px rgba(166, 213, 53, 0.025);
}

.action-proof__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.5fr 1.05fr 0.75fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.action-proof__heading .section-kicker {
  color: var(--lime);
}

.action-proof__heading h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.action-proof__heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.6vw, 20px);
}

.action-reel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  gap: 12px;
  align-items: end;
  margin-top: clamp(48px, 7vw, 84px);
}

.action-shot {
  position: relative;
  height: clamp(300px, 34vw, 470px);
  margin: 0;
  overflow: hidden;
  background: var(--ocean-800);
}

.action-shot--tall {
  height: clamp(370px, 43vw, 590px);
}

.action-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.action-shot--wide:first-child img {
  object-position: 46% center;
}

.action-shot--tall img {
  object-position: 51% center;
}

.action-shot--wide:last-child img {
  object-position: 52% center;
}

.action-shot:hover img {
  transform: scale(1.035);
}

.action-shot::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(transparent, rgba(6, 31, 41, 0.78));
  pointer-events: none;
}

.action-shot figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.speaker {
  background: var(--sand);
}

.speaker-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.speaker-photo {
  position: relative;
  min-height: 640px;
}

.speaker-photo::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -24px;
  width: 46%;
  height: 46%;
  content: "";
  border: 1px solid var(--signal);
}

.speaker-photo img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  box-shadow: var(--shadow);
}

.photo-tag {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: -18px;
  padding: 12px 18px;
  color: var(--ocean-950);
  background: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.speaker-role {
  margin: 14px 0 0;
  color: var(--signal-dark);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.speaker-bio {
  max-width: 600px;
}

.people-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  background: rgba(11, 70, 82, 0.18);
}

.people-list div {
  display: flex;
  flex-direction: column;
  min-height: 140px;
  padding: 24px;
  background: rgba(247, 251, 250, 0.68);
}

.people-list span,
.people-list small {
  color: var(--muted);
  font-size: 12px;
}

.people-list strong {
  margin-top: 12px;
  font-size: 19px;
}

.takeaway {
  color: white;
  background: var(--ocean-950);
}

.takeaway-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.takeaway .section-kicker {
  color: var(--lime);
}

.takeaway h2 {
  font-size: clamp(44px, 6vw, 78px);
}

.takeaway-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.takeaway-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.takeaway-list span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.takeaway-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.signup {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: var(--ocean-800);
}

.signup::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 14%, rgba(166, 213, 53, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(6, 31, 41, 0.46), transparent 58%);
}

.signup-map {
  position: absolute;
  z-index: -1;
  right: -7vw;
  bottom: -20vw;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(223, 247, 247, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(223, 247, 247, 0.035), 0 0 0 140px rgba(223, 247, 247, 0.025);
}

.signup-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(58px, 9vw, 130px);
  align-items: center;
}

.eyebrow--light {
  color: var(--spray);
}

.signup-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.signup-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.signup-copy li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.signup-photo {
  position: relative;
  height: 230px;
  margin: 36px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.22);
}

.signup-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(6, 31, 41, 0.74));
}

.signup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.signup-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-form {
  padding: clamp(26px, 4vw, 42px);
  color: var(--ink);
  background: rgba(247, 251, 250, 0.98);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
}

.signup-collab {
  position: absolute;
  z-index: 1;
  top: clamp(30px, 4vw, 56px);
  left: 50%;
  color: white;
  text-align: center;
  transform: translateX(-50%);
}

.signup-collab__label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signup-collab__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 2vw, 22px);
}

.signup-collab__king,
.signup-collab__angels {
  display: block;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.signup-collab__king {
  width: clamp(210px, 24vw, 310px);
  height: 62px;
  -webkit-mask-image: url("assets/king-kendze-horizontal.svg");
  mask-image: url("assets/king-kendze-horizontal.svg");
}

.signup-collab__angels {
  width: 74px;
  height: 68px;
  -webkit-mask-image: url("assets/kites-angels-logo.svg");
  mask-image: url("assets/kites-angels-logo.svg");
}

.signup-collab__cross {
  color: white;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.42;
}

.field,
.field-row {
  margin-top: 20px;
}

.field:first-of-type {
  margin-top: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-row .field {
  margin-top: 0;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ocean-900);
  font-size: 14px;
  font-weight: 750;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(11, 70, 82, 0.3);
  border-radius: 0;
  background: white;
}

.field input:focus,
.field select:focus {
  border-color: var(--reef);
  outline: 3px solid rgba(13, 137, 148, 0.18);
}

.field small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 22px 0;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--signal-dark);
}

.consent a {
  color: var(--ocean-800);
  font-weight: 700;
  text-underline-offset: 2px;
}

.consent a:hover {
  color: var(--signal-dark);
}

.button--full {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

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

.form-status {
  display: none;
  margin-bottom: 20px;
  padding: 14px 16px;
  font-size: 14px;
}

.form-status--success,
.form-status--error {
  display: block;
}

.form-status--success {
  color: #1c4e00;
  border: 1px solid #83b926;
  background: #effbd9;
}

.form-status--error {
  color: #7c103f;
  border: 1px solid #d85189;
  background: #fff0f6;
}

.faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 24px 50px 24px 0;
  font-size: 19px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 21px;
  right: 0;
  width: 32px;
  height: 32px;
  content: "+";
  color: var(--ocean-900);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 23px;
  font-weight: 400;
  line-height: 29px;
  text-align: center;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 680px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.site-footer {
  padding-block: 32px;
  color: white;
  background: var(--ocean-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup--footer .brand-mask--king {
  width: 112px;
}

.brand-lockup--footer .brand-mask--angels {
  width: 44px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.site-footer a:hover {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-media {
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 620ms ease,
    transform 880ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-media.is-visible {
  transform: none;
}

.action-shot:nth-child(2) {
  transition-delay: 90ms;
}

.action-shot:nth-child(3) {
  transition-delay: 180ms;
}

@keyframes arrow-push {
  0%, 100% { transform: translateX(0); }
  45% { transform: translateX(7px); }
}

@keyframes hero-photo-in {
  from {
    opacity: 0.35;
    transform: scale(1.09);
    filter: saturate(0.78);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
  }
}

@keyframes wind-flow {
  to { stroke-dashoffset: -220; }
}

@keyframes gust-in {
  from {
    opacity: 0;
    transform: translate3d(-24px, 12px, 0);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes date-flash {
  from { transform: translateX(-180%) skewX(-22deg); }
  to { transform: translateX(340%) skewX(-22deg); }
}

@keyframes wind-pulse {
  0% {
    opacity: 0.58;
    transform: scaleX(1) scaleY(1);
  }
  78%, 100% {
    opacity: 0;
    transform: scaleX(1.58) scaleY(1.48);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-photo {
    animation: hero-photo-in 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
    will-change: transform;
  }

  .hero-wind-lines path {
    stroke-dasharray: 22 20;
    stroke-dashoffset: 0;
    animation: wind-flow 8s linear infinite;
  }

  .hero-wind-lines path:nth-child(2) {
    animation-duration: 10s;
    animation-direction: reverse;
  }

  .hero-wind-lines path:nth-child(3) {
    animation-duration: 12s;
  }

  .hero-copy.is-visible > * {
    animation: gust-in 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-copy.is-visible > :nth-child(2) { animation-delay: 70ms; }
  .hero-copy.is-visible > :nth-child(3) { animation-delay: 130ms; }
  .hero-copy.is-visible > :nth-child(4) { animation-delay: 190ms; }
  .hero-copy.is-visible > :nth-child(5) { animation-delay: 250ms; }
  .hero-copy.is-visible > :nth-child(6) { animation-delay: 310ms; }
  .hero-copy.is-visible > :nth-child(7) { animation-delay: 370ms; }

  .hero-aside.is-visible > * {
    animation: gust-in 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-aside.is-visible > :nth-child(2) {
    animation-delay: 110ms;
  }

  .hero-aside.is-visible > :nth-child(3) {
    animation-delay: 180ms;
  }

  .hero-aside-cta::before,
  .hero-aside-cta::after {
    animation: wind-pulse 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }

  .hero-aside-cta::after {
    animation-delay: 1.4s;
  }

  .hero-date-lockup::after {
    position: absolute;
    z-index: 0;
    inset: -30% auto -30% 0;
    width: 52px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
    pointer-events: none;
    animation: date-flash 1.05s 1.25s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-date-lockup > * {
    position: relative;
    z-index: 1;
  }
}

.topic-card:nth-child(2),
.takeaway-list li:nth-child(2) {
  transition-delay: 60ms;
}

.topic-card:nth-child(3),
.takeaway-list li:nth-child(3) {
  transition-delay: 120ms;
}

.topic-card:nth-child(4),
.takeaway-list li:nth-child(4) {
  transition-delay: 40ms;
}

.topic-card:nth-child(5) {
  transition-delay: 100ms;
}

.topic-card:nth-child(6) {
  transition-delay: 160ms;
}

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

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 900px;
    padding-top: 138px;
  }

  .hero-copy {
    align-self: start;
  }

  .hero-photo {
    background-position: 70% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(6, 31, 41, 0.97) 0%, rgba(6, 31, 41, 0.84) 55%, rgba(6, 31, 41, 0.16) 100%);
  }

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

  .hero-aside {
    align-self: auto;
    justify-self: start;
    width: min(640px, 100%);
    margin: 28px 0 0;
  }

  .promise-grid {
    grid-template-columns: 1fr 2fr;
  }

  .wind-note {
    grid-column: 2;
    max-width: 330px;
  }

  .promise-photo {
    grid-column: 1 / -1;
  }

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

  .action-proof__heading {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .action-proof__heading > p:last-child {
    grid-column: 2;
    max-width: 620px;
  }

  .action-reel {
    grid-template-columns: 0.85fr 1.15fr 0.85fr;
  }

  .speaker-grid,
  .takeaway-grid,
  .signup-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .speaker-photo {
    max-width: 680px;
    min-height: 720px;
  }

  .speaker-copy,
  .signup-copy {
    max-width: 720px;
  }

  .takeaway-list,
  .faq-list {
    max-width: 760px;
  }

  .lead-form {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(calc(100% - 28px), 1180px);
  }

  .section {
    padding-block: 76px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-mask--king {
    width: 100px;
    height: 38px;
  }

  .brand-mask--angels {
    width: 40px;
    height: 38px;
  }

  .brand-cross {
    font-size: 17px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero,
  .hero-grid {
    min-height: 860px;
  }

  .hero-grid {
    padding-top: 112px;
    padding-bottom: 220px;
  }

  .hero-photo {
    background-position: 62% bottom;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 31, 41, 0.95) 0%, rgba(6, 31, 41, 0.9) 49%, rgba(6, 31, 41, 0.22) 78%, rgba(6, 31, 41, 0.58) 100%),
      linear-gradient(90deg, rgba(6, 31, 41, 0.48), transparent);
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-date-lockup {
    grid-template-columns: 1fr 1px auto;
    gap: 14px;
    width: 100%;
    max-width: 430px;
    padding: 13px 14px 13px 18px;
  }

  .hero-date-lockup strong {
    font-size: clamp(23px, 7.5vw, 31px);
  }

  .hero-date-lockup__online {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 8px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .text-link {
    align-self: center;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-top: 32px;
  }

  .hero-meta li {
    padding: 11px 14px;
  }

  .hero-aside .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 430px;
    margin-top: 10px;
  }

  .hero-aside .hero-meta li {
    padding: 10px 8px;
  }

  .hero-aside .hero-meta span {
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-aside .hero-aside-cta {
    width: min(280px, 100%);
  }

  .hero-caption {
    right: 16px;
    bottom: 16px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wind-note {
    grid-column: auto;
    max-width: 300px;
  }

  .promise-photo {
    grid-column: auto;
    height: 420px;
  }

  .promise-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .promise h2,
  .section-heading h2,
  .speaker h2,
  .signup h2,
  .takeaway h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

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

  .topic-card {
    min-height: 300px;
  }

  .action-proof__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .action-proof__heading > p:last-child {
    grid-column: auto;
  }

  .action-reel {
    grid-auto-columns: 86%;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    width: 100%;
    padding-inline: 14px;
    overflow-x: auto;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .action-reel::-webkit-scrollbar {
    display: none;
  }

  .action-shot,
  .action-shot--tall {
    height: 430px;
    scroll-snap-align: center;
  }

  .speaker-photo {
    min-height: 520px;
  }

  .speaker-photo::before {
    top: -12px;
    right: -8px;
  }

  .photo-tag {
    left: -4px;
  }

  .people-list,
  .field-row {
    grid-template-columns: 1fr;
  }

  .takeaway-list li {
    grid-template-columns: 44px 1fr;
  }

  .takeaway-list p {
    font-size: 16px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .signup-collab {
    top: 34px;
  }

  .signup-collab__label {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .signup-collab__king {
    width: 190px;
    height: 52px;
  }

  .signup-collab__angels {
    width: 58px;
    height: 54px;
  }

  .signup-photo {
    height: 210px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-wind-lines path {
    stroke-dasharray: none;
  }

  .hero-aside-cta::before,
  .hero-aside-cta::after {
    display: none;
  }
}
