:root {
  --bg: #282829;
  --panel: #3b3b3b;
  --text: #e6e5e3;
  --muted: rgba(255, 255, 255, 0.6);
  --muted-strong: rgba(255, 255, 255, 0.78);
  --accent: #991951;
  --accent-start: #d94891;
  --accent-end: #de4242;
  --content: 1240px;
  --wide: 1616px;
  --glass-fill: linear-gradient(80.61deg, rgba(54, 54, 54, 0.336) 5.87%, rgba(90, 90, 90, 0.6) 95.1%);
  --glass-dark-fill: linear-gradient(140deg, rgba(255, 255, 255, 0.045) 0%, rgba(32, 32, 33, 0.12) 46%, rgba(12, 12, 13, 0.22) 100%);
  --glass-edge: linear-gradient(138deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.07) 38%, rgba(255, 255, 255, 0.03) 68%, rgba(255, 255, 255, 0.44) 100%);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

p,
h1,
h2,
h3,
ul,
ol,
blockquote {
  margin: 0;
}

.landing {
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.container,
.wide-container {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.wide-container {
  width: min(var(--wide), calc(100% - 48px));
}

.section-title,
.hero h1,
.intro-statement,
.contribution-copy h3,
.closing blockquote {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.section-title {
  max-width: 1216px;
  font-size: 70.3px;
}

.section-title-small {
  font-size: 46.3px;
  letter-spacing: -0.025em;
}

.centered {
  text-align: center;
}

.accent {
  color: var(--accent);
}

.gradient-text {
  color: var(--accent-start);
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.photo-section,
.hero {
  position: relative;
  isolation: isolate;
}

.photo-layer,
.photo-fade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.photo-layer {
  overflow: hidden;
}

.photo-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-fade {
  z-index: -1;
  background: linear-gradient(to bottom, transparent 48%, var(--bg) 100%);
}

.hero {
  height: 1419px;
}

.hero-photo {
  height: 1342px;
}

.hero-photo img {
  object-position: center top;
}

.photo-fade {
  top: 466px;
  height: 876px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 82%);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 24px 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9.35px;
  width: 149px;
  height: 24px;
  flex: none;
}

.brand img {
  display: block;
  flex: none;
}

.brand-mark {
  width: 37.06px;
  height: 23.26px;
}

.brand-wordmark {
  width: 102.59px;
  height: 18.52px;
}

.socials {
  display: flex;
  gap: 24px;
}

.social-icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  opacity: 0.85;
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-copy {
  height: 759px;
  padding-top: 203px;
}

.hero h1 {
  width: 908px;
  max-width: 100%;
  font-size: 70.3px;
}

.hero-kicker {
  width: 368px;
  margin-top: 71px;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.video-shell {
  display: grid;
  place-items: center;
  height: 640px;
  overflow: hidden;
  border-radius: 64px;
  background: var(--panel);
}

.play-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  padding: 0;
  cursor: pointer;
  border: 2px solid #c45f86;
  border-radius: 50%;
  background: linear-gradient(90deg, #68103c, #d9597e);
  transition: transform 180ms ease, filter 180ms ease;
}

.play-button:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.play-button:disabled {
  cursor: default;
  opacity: 1;
}

.play-button:disabled:hover {
  transform: none;
  filter: none;
}

.play-icon {
  width: 36px;
  height: 42px;
  margin-left: 4px;
  overflow: visible;
}

.play-icon path {
  fill: none;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 4px;
}

.video-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-message {
  position: absolute;
  top: calc(50% + 82px);
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.answer-cycle {
  height: 660px;
  background: linear-gradient(to bottom, rgba(40, 40, 41, 0), var(--bg) 18%);
}

.answer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding-top: 61px;
}

.answer-content h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  text-align: center;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 51px;
  background: var(--glass-fill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  backdrop-filter: blur(18px) saturate(115%);
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  text-align: center;
}

.answer-chips {
  max-width: 1280px;
}

.answer-note {
  width: 929px;
  max-width: 100%;
  font-size: 32px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-align: center;
}

.intro {
  height: 863px;
  padding-top: 88px;
}

.intro-chips {
  justify-content: flex-start;
  margin-top: 72px;
}

.chip-large {
  min-height: 80px;
  font-size: 32px;
}

.intro-statement {
  width: 1216px;
  max-width: 100%;
  margin-top: 56px;
  font-size: 70.3px;
}

.intro-action {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 56px;
}

.intro-action p {
  color: var(--muted);
  font-size: 32px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.primary-cta,
.chip-accent {
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: linear-gradient(90deg, #68103c, #d9597e);
}

.chip-accent {
  overflow: hidden;
  isolation: isolate;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 24px 48px;
  border-radius: 95px;
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 32px;
  font-weight: 600;
  transition: transform 180ms ease, filter 180ms ease;
}

.primary-cta:hover,
.platform-actions a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.points {
  height: 1090px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.points-photo {
  width: 100%;
  height: 1533px;
}

.points-photo img {
  object-position: center top;
}

.points-content {
  width: min(1920px, 100%);
  padding-top: 100px;
}

.points-content > .section-title {
  width: min(1240px, calc(100% - 48px));
  max-width: none;
  margin-inline: auto;
}

.situation-grid {
  display: grid;
  grid-template-columns: 520px 696px 520px;
  gap: 24px;
  width: 1784px;
  margin-top: 72px;
  margin-left: 68px;
}

.glass-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 51px;
  background: var(--glass-fill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(20px) saturate(115%);
  backdrop-filter: blur(20px) saturate(115%);
}

.outline-card {
  position: relative;
  overflow: hidden;
  border-radius: 51px;
  background: var(--bg);
  box-shadow:
    inset 12px 12px 26px rgba(0, 0, 0, 0.22),
    inset -8px -8px 20px rgba(255, 255, 255, 0.02);
}

.outline-card::before,
.decision-card::before {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background: var(--glass-edge);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.situation-card {
  min-height: 152px;
  padding: 32px;
  text-align: center;
}

.situation-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: 272px;
  width: 520px;
}

.situation-card:nth-child(5) {
  grid-column: 2 / 4;
  margin-left: 272px;
  width: 696px;
}

.situation-card h3,
.outline-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
}

.situation-card p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.1;
  opacity: 0.6;
}

.points-note {
  width: 930px;
  max-width: 100%;
  margin: 72px auto 0;
  font-family: "Unbounded", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;
}

.points-note p + p {
  margin-top: 25px;
  color: rgba(230, 229, 227, 0.5);
}

.why {
  height: 1011px;
  padding-top: 0;
}

.why-chips {
  justify-content: flex-start;
  margin-top: 64px;
}

.why-note {
  width: 778px;
  max-width: 100%;
  margin-top: 36px;
  font-size: 32px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.definition {
  height: 1155px;
  padding-top: 69px;
}

.definition > .container {
  height: 100%;
}

.definition .section-title {
  width: 908px;
}

.definition-steps {
  position: absolute;
  top: 523px;
  left: 0;
  display: block;
  width: 1057px;
  height: 527px;
  margin: 0;
}

.definition-steps p {
  position: absolute;
  width: 315px;
  color: var(--muted);
  font-size: 32px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.definition-steps p:nth-child(1) {
  top: 0;
  left: 0;
}

.definition-steps p:nth-child(2) {
  top: 116px;
  left: 376px;
}

.definition-steps p:nth-child(3) {
  top: 174px;
  left: 742px;
}

.definition-steps p:nth-child(4) {
  top: 382px;
  left: 0;
}

.decision-card {
  position: absolute;
  top: 925px;
  left: 376px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 572px;
  height: 122px;
  max-width: 100%;
  margin: 0;
  padding: 32px;
  background: var(--bg);
  box-shadow:
    inset 12px 12px 26px rgba(0, 0, 0, 0.22),
    inset -8px -8px 20px rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.decision-card p {
  width: 344px;
  color: var(--muted);
  font-size: 32px;
  font-weight: 600;
  line-height: 0.9;
}

.decision-card .chip {
  min-height: 72px;
}

.journey {
  height: 920px;
}

.journey-photo {
  width: 100%;
  height: 1541px;
}

.journey-photo img {
  object-position: center top;
}

.journey-content {
  padding-top: 101px;
}

.journey-lead {
  width: 499px;
  max-width: 100%;
  font-size: 32px;
  font-weight: 600;
  line-height: 0.9;
}

.journey-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 29px;
  padding-left: 0;
  list-style: none;
}

.journey-list::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -34px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.25);
}

.journey-list li {
  position: relative;
}

.journey-list li::before {
  position: absolute;
  top: 31px;
  left: -37px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.75);
}

.journey-list .chip,
.journey-list span {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 51px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: var(--glass-fill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  backdrop-filter: blur(18px) saturate(115%);
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.paths-and-features {
  height: 1891px;
}

.paths-subtitle {
  margin-top: 39px;
  font-size: 32px;
  line-height: 0.9;
}

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

.path-cards {
  margin-top: 74px;
}

.path-cards .outline-card {
  min-height: 360px;
  padding: 32px;
}

.outline-card ul,
.price-card ul {
  margin-top: 24px;
  padding-left: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.outline-card li + li,
.price-card li + li {
  margin-top: 8px;
}

.features-block {
  margin-top: 154px;
}

.features-grid {
  gap: 12px 24px;
  margin-top: 52px;
}

.feature-card {
  min-height: 352px;
  padding: 32px;
}

.feature-card .professional-title {
  font-size: 18px;
  letter-spacing: -0.08em;
}

.feature-card:nth-child(n + 5) {
  min-height: 396px;
}

.feature-card > img,
.support-card > img {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
}

.possibilities {
  height: 1000px;
}

.possibilities-photo {
  top: -279px;
  height: 1533px;
}

.possibilities-photo img {
  object-position: center top;
}

.possibilities-content {
  padding-top: 0;
}

.possibilities-subtitle {
  margin-top: 32px;
  font-size: 32px;
  line-height: 0.9;
}

.possibilities-chips {
  justify-content: flex-start;
  margin-top: 72px;
}

.contribution {
  height: 1264px;
  padding-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px 24px;
  margin-top: 52px;
}

.support-card {
  grid-column: span 3;
  min-height: 196px;
  padding: 32px;
}

.support-card.support-wide {
  grid-column: span 4;
  min-height: 172px;
}

.contribution-copy {
  width: 715px;
  max-width: 100%;
  margin-top: 52px;
}

.contribution-copy p,
.pricing-intro {
  color: #fff;
  font-size: 32px;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.contribution-copy h3 {
  margin-top: 52px;
  font-size: 46.3px;
}

.pricing {
  min-height: 1356px;
  padding-top: 180px;
}

.pricing-intro {
  width: 715px;
  max-width: 100%;
  margin-top: 52px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 52px;
}

.price-card {
  display: flex;
  height: 388px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px;
}

.price-card:nth-child(-n + 2) {
  height: 430px;
}

.price-card header p {
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.price-card header h3 {
  margin-top: 12px;
}

.price-card header h3 a {
  display: inline-block;
  transition: color 180ms ease;
}

.price-card header h3 a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.price-card ul {
  width: 100%;
  margin-block: 24px;
}

.platform-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-actions a,
.platform-action {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 16px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 95px;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  font-weight: 500;
  transition: transform 180ms ease, filter 180ms ease;
}

.platform-action-pending {
  cursor: default;
  opacity: 0.72;
}

.platform-actions img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.included {
  height: 922px;
  padding-top: 124px;
}

.compact-chips {
  max-width: 1240px;
  margin-top: 52px;
}

.chip-compact {
  min-height: 66px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.extras {
  height: 403px;
}

.extras .section-title {
  font-size: 70.3px;
}

.extras-chips {
  margin-top: 52px;
}

.closing {
  height: 1891px;
  padding-top: 69px;
}

.closing-photo {
  top: 470px;
  height: 1421px;
}

.closing-photo img {
  object-position: center center;
}

.closing .section-title {
  width: 908px;
}

.closing-support {
  margin: 74px 0 0 7px;
}

.closing-support p {
  width: 497px;
  max-width: 100%;
  color: var(--muted);
  font-size: 32px;
  font-weight: 600;
  line-height: 0.9;
}

.closing-support p + p {
  margin-top: 58px;
}

.closing blockquote {
  width: 908px;
  max-width: 100%;
  margin-top: 158px;
  color: var(--text);
  font-size: 70.3px;
}

.closing blockquote strong {
  color: var(--accent);
  font-weight: 500;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 75px 0 0 7px;
  font-size: 12px;
  line-height: 0.95;
}

.footer a {
  width: max-content;
}

.footer span {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1101px) {
  .points::after,
  .journey::after,
  .possibilities::after,
  .closing::after {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 0;
    height: 700px;
    content: "";
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(40, 40, 41, 0), rgba(40, 40, 41, 0.42) 43%, var(--bg) 74.2%, var(--bg) 100%);
  }

  .points::after {
    top: 1014px;
  }

  .journey::after {
    top: 1022px;
  }

  .possibilities::after {
    top: 735px;
  }

  .closing::after {
    top: 1372px;
  }
}

@media (max-width: 1500px) {
  :root {
    --content: min(1240px, calc(100vw - 96px));
    --wide: min(1380px, calc(100vw - 64px));
  }

  .section-title,
  .hero h1,
  .intro-statement,
  .closing blockquote {
    font-size: clamp(52px, 4.2vw, 70.3px);
  }

  .chip {
    font-size: 20px;
  }

  .situation-card:nth-child(4),
  .situation-card:nth-child(5) {
    width: auto;
    margin-left: 0;
  }

  .situation-grid {
    grid-template-columns: 1fr 1.34fr 1fr;
    width: auto;
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  :root {
    --content: calc(100vw - 40px);
    --wide: calc(100vw - 40px);
  }

  .container,
  .wide-container {
    width: var(--content);
  }

  .landing section {
    height: auto;
    min-height: 0;
    padding-block: clamp(72px, 8vw, 96px);
  }

  .hero {
    padding: 0 0 88px !important;
  }

  .site-header {
    height: 72px;
    padding: 20px;
  }

  .socials {
    gap: 12px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }

  .hero-copy {
    height: auto;
    padding-top: 150px;
  }

  .hero h1,
  .section-title,
  .intro-statement,
  .closing blockquote,
  .extras .section-title {
    width: 100%;
    font-size: clamp(38px, 5.7vw, 62px);
    line-height: 0.94;
  }

  .definition .section-title,
  .closing .section-title {
    width: 100%;
  }

  .definition > .container {
    height: auto;
  }

  .section-title-small,
  .contribution-copy h3 {
    font-size: clamp(32px, 7vw, 46px);
  }

  .hero-kicker,
  .answer-note,
  .intro-action p,
  .why-note,
  .definition-steps p,
  .journey-lead,
  .paths-subtitle,
  .possibilities-subtitle,
  .contribution-copy p,
  .pricing-intro,
  .closing-support p {
    font-size: 25px;
    line-height: 1;
  }

  .hero-kicker {
    margin-top: 56px;
  }

  .video-shell {
    height: 420px;
    margin-top: 80px;
    border-radius: 40px;
  }

  .hero-photo {
    inset: 0;
    height: 760px;
  }

  .hero-photo img {
    object-position: center top;
  }

  .photo-fade {
    top: 250px;
    height: 600px;
  }

  .answer-content {
    gap: 40px;
    padding-top: 0;
  }

  .answer-content h2 {
    font-size: 36px;
  }

  .chip-cloud {
    gap: 12px;
  }

  .chip {
    min-height: 54px;
    padding: 16px 20px;
    font-size: 17px;
  }

  .intro-chips,
  .why-chips,
  .possibilities-chips {
    justify-content: center;
    margin-top: 48px;
  }

  .intro-statement {
    margin-top: 64px;
  }

  .intro-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-cta {
    min-height: 72px;
    padding: 20px 32px;
    font-size: 22px;
  }

  .points-content,
  .journey-content,
  .possibilities-content {
    padding-top: 0;
  }

  .points-content > .section-title {
    width: 100%;
  }

  .points-photo,
  .journey-photo,
  .possibilities-photo {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .possibilities-photo {
    object-position: center;
  }

  .situation-grid,
  .four-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .situation-grid {
    width: 100%;
    margin: 64px auto 0;
  }

  .situation-card:nth-child(4),
  .situation-card:nth-child(5) {
    grid-column: auto;
  }

  .points-note {
    font-size: 22px;
  }

  .why-note {
    margin-top: 48px;
  }

  .definition-steps {
    position: static;
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
  }

  .definition-steps p:nth-child(n) {
    position: static;
    width: auto;
  }

  .decision-card {
    position: relative;
    top: auto;
    left: auto;
    width: max-content;
    height: auto;
    margin: 56px auto 0;
  }

  .journey-list {
    margin-left: 36px;
  }

  .features-block {
    margin-top: 120px;
  }

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

  .support-card,
  .support-card.support-wide {
    grid-column: auto;
  }

  .price-card,
  .price-card:nth-child(-n + 2) {
    height: auto;
    min-height: 430px;
  }

  .pricing {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .included,
  .extras {
    padding-block: 88px !important;
  }

  .closing-photo {
    inset: 0;
    height: 100%;
  }

  .closing blockquote {
    margin-top: 120px;
  }

  .footer {
    margin-top: 100px;
  }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100vw - 32px);
    --wide: calc(100vw - 32px);
  }

  .landing section {
    padding-block: 72px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .socials {
    gap: 8px;
  }

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

  .hero {
    padding-bottom: 72px !important;
  }

  .hero-copy {
    padding-top: 128px;
  }

  .hero h1,
  .section-title,
  .intro-statement,
  .closing blockquote,
  .extras .section-title {
    font-size: clamp(29px, 8.1vw, 40px);
  }

  .hero h1 {
    font-size: clamp(22px, 7.15vw, 34px);
  }

  .hero-kicker {
    width: 82%;
    margin-top: 44px;
  }

  .video-shell {
    height: 300px;
    margin-top: 64px;
    border-radius: 28px;
  }

  .play-button {
    width: 76px;
    height: 76px;
  }

  .answer-content h2 {
    font-size: 28px;
  }

  .chip {
    font-size: 16px;
  }

  .intro-action,
  .decision-card {
    width: 100%;
  }

  .decision-card {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 32px;
  }

  .decision-card p {
    width: auto;
  }

  .situation-grid,
  .four-grid,
  .pricing-grid,
  .definition-steps,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .situation-card,
  .path-cards .outline-card,
  .feature-card,
  .feature-card:nth-child(n + 5),
  .support-card,
  .support-card.support-wide,
  .price-card,
  .price-card:nth-child(-n + 2) {
    height: auto;
    min-height: 0;
  }

  .hero-photo {
    height: 680px;
  }

  .hero-photo img {
    object-position: 78% top;
  }

  .points-photo img,
  .journey-photo img,
  .possibilities-photo img {
    object-position: center;
  }

  .journey-list span {
    min-height: 58px;
    font-size: 17px;
  }

  .platform-actions,
  .platform-actions a,
  .platform-action {
    width: 100%;
  }

  .platform-actions a,
  .platform-action {
    justify-content: flex-start;
    font-size: 14px;
  }

  .closing-photo img {
    object-position: 64% center;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
