:root {
  --orange: #ff992e;
  --pink: #da1467;
  --ink: #171923;
  --muted: #5c6370;
  --line: #dedde3;
  --soft: #f3f1ed;
  --warm: #faf7f2;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(23, 25, 35, .12);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 999;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
}

.skip-link:focus {
  top: 12px;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 221, 227, .76);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand img {
  width: 132px !important;
  height: 37px !important;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-cta {
  min-height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(218, 20, 103, .18);
}

.button {
  gap: 18px;
  padding: 16px 24px;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  box-shadow: 0 16px 42px rgba(218, 20, 103, .24);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(218, 20, 103, .27);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: clamp(70px, 9vw, 128px) 0 24px;
  background:
    linear-gradient(120deg, rgba(255, 153, 46, .1), transparent 38%),
    linear-gradient(300deg, rgba(218, 20, 103, .08), transparent 46%),
    #fff;
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(218, 20, 103, .15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  width: 52vw;
  height: 52vw;
  right: -20vw;
  top: -24vw;
}

.hero-orb-two {
  width: 28vw;
  height: 28vw;
  left: -18vw;
  bottom: -18vw;
  border-color: rgba(255, 153, 46, .2);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
  align-items: center;
}

.hero-copy {
  width: 100%;
}

.kicker,
.eyebrow {
  color: #9b174f;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 750px;
  margin: 0 0 24px;
  border: 1px solid rgba(218, 20, 103, .18);
  border-radius: 999px;
  background: #fff;
  padding: 12px 20px;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  text-transform: none;
}

.kicker::before {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(52px, 6.4vw, 88px);
  line-height: .95;
  letter-spacing: -.055em;
}

h1 span {
  color: var(--pink);
}

.hero-long-title {
  max-width: 1040px;
  font-size: clamp(38px, 3.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hero-long-title .hero-title-intro {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: .72em;
  line-height: 1.15;
}

.hero-lede {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

.hero-context {
  max-width: 750px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-calendar {
  width: 100%;
  max-width: 1120px;
  margin-top: 8px;
  scroll-margin-top: 98px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  margin-top: 34px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 14px 34px rgba(23, 25, 35, .06);
}

.hero-meta div {
  display: grid;
  align-content: center;
  min-height: 92px;
  background: rgba(255, 255, 255, .94);
  padding: 15px 17px;
}

.hero-meta strong {
  font-size: 16px;
  line-height: 1.25;
}

.hero-meta span,
.microcopy {
  color: var(--muted);
  font-size: 12px;
}

.microcopy {
  margin: 12px 0 0;
}

.pulse {
  position: relative;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2bb673;
  box-shadow: 0 0 0 6px rgba(43, 182, 115, .12);
}

.section {
  padding: clamp(76px, 9vw, 126px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.eyebrow {
  margin-bottom: 18px;
}

.prose {
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 21px);
}

.prose p {
  margin-bottom: 22px;
}

.prose strong {
  color: var(--ink);
}

.dark-section {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow-light {
  color: #ffb76b;
}

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

.fit-card {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  padding: clamp(24px, 3vw, 34px);
}

.card-number {
  display: block;
  margin-bottom: 38px;
  color: #ffb76b;
  font-size: 13px;
  font-weight: 850;
}

.fit-card h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

.fit-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}

.experience-note {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 18px;
  border: 1px solid rgba(255, 153, 46, .3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 153, 46, .12), rgba(218, 20, 103, .1));
  padding: clamp(24px, 3vw, 34px);
}

.experience-emphasis {
  font-size: 110%;
  font-weight: 900;
}

.note-icon,
.package-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 153, 46, .2), rgba(218, 20, 103, .22));
  color: #ffb76b;
  font-size: 24px;
  font-weight: 800;
}

.experience-note p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.experience-note strong {
  color: #fff;
}

.package-section {
  background: var(--warm);
  padding: 44px 0 34px;
}

.intro-section,
.dark-section {
  padding: 34px 0;
}

.interview-cta {
  padding: 34px 0;
  background: #fff;
}

.role-campaign-am-is .role-footer {
  padding-top: 34px;
}

.interview-cta-after {
  border-top: 1px solid rgba(218, 20, 103, .12);
  border-bottom: 1px solid rgba(218, 20, 103, .12);
  background: #fff1f4;
  color: var(--ink);
}

.interview-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.interview-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
}

.interview-cta .eyebrow {
  margin-bottom: 12px;
}

.interview-cta .button {
  min-width: 240px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: grid;
  grid-template-columns: 42px minmax(100px, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 16px;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 38px rgba(23, 25, 35, .05);
}

.package-card-featured {
  background:
    radial-gradient(circle at 92% 8%, rgba(218, 20, 103, .12), transparent 35%),
    #fff;
}

.package-icon {
  margin-bottom: 0;
  color: #bd155d;
}

.package-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.package-card strong {
  display: block;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.3;
}

.booking-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 126px) 0;
}

.booking-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 0 100%, rgba(255, 153, 46, .1), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(218, 20, 103, .08), transparent 40%);
  content: "";
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(540px, 1.28fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 120px;
}

.booking-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.booking-copy strong {
  color: var(--ink);
}

.booking-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 750;
}

.booking-points li {
  display: flex;
  gap: 10px;
}

.booking-points span {
  color: var(--pink);
}

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

.calendar-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
}

.calendar-heading div {
  display: grid;
}

.calendar-heading span {
  color: var(--muted);
  font-size: 12px;
}

.calendar-card iframe {
  display: block;
  width: 100%;
  border: 0;
}

.site-footer {
  background: #181818;
  color: #fff;
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-inner img {
  width: 140px;
  filter: brightness(0) invert(1);
}

.footer-inner p,
.footer-inner span {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 68px;
  }

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

  .hero-grid,
  .split,
  .booking-grid,
  .interview-cta-inner {
    grid-template-columns: 1fr;
  }

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

  .booking-copy {
    position: static;
    max-width: 700px;
  }

  .interview-cta .button {
    justify-self: start;
  }

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

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

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(var(--shell), calc(100% - 28px));
  }

.brand img {
  width: 132px !important;
  height: 37px !important;
  }

  .header-cta {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 12px;
  }

  .hero {
    padding: 52px 0 20px;
  }

  .kicker {
    margin-bottom: 21px;
    padding: 13px 18px;
    font-size: 14px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-long-title {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.07;
  }

  .hero-long-title .hero-title-intro {
    margin-bottom: 10px;
    font-size: .68em;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-context {
    font-size: 15px;
  }

  .hero-calendar {
    margin-inline: -6px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta div {
    min-height: 72px;
  }

  .button {
    width: 100%;
  }

  .interview-cta .button {
    justify-self: stretch;
  }

  .microcopy {
    text-align: center;
  }

  .section,
  .booking-section {
    padding: 72px 0;
  }

  .package-section {
    padding: 32px 0 26px;
  }

  .intro-section,
  .dark-section,
  .interview-cta {
    padding: 26px 0;
  }

  .role-campaign-am-is .role-footer {
    padding-top: 26px;
  }

  h2 {
    font-size: 40px;
  }

  .fit-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .fit-card {
    min-height: 230px;
  }

  .experience-note {
    grid-template-columns: 1fr;
  }

  .package-card {
    grid-template-columns: 42px minmax(90px, .7fr) minmax(0, 1.3fr);
    gap: 12px;
    min-height: 86px;
    padding: 16px;
  }

  .package-card p {
    font-size: 13px;
  }

  .package-card strong {
    font-size: 16px;
  }

  .calendar-card {
    margin-inline: -6px;
  }

  .calendar-heading {
    padding: 15px 16px;
  }

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

  .footer-inner p {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (min-width: 1800px) {
  :root {
    --shell: 1460px;
  }

  body {
    font-size: 19px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1040px);
  }

  .booking-grid {
    grid-template-columns: minmax(360px, .72fr) minmax(700px, 1.28fr);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Logo proportion fix */
.brand img,
.footer-inner img,
img[src*="role-logo.svg"] {
  height: auto !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
  transform: none !important;
}
