:root {
  --black: #050505;
  --near-black: #111114;
  --white: #ffffff;
  --soft: #f5f5f7;
  --soft-2: #e8e8ed;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.1);
  --line-dark: rgba(255, 255, 255, 0.18);
  --blue: #0071e3;
  --blue-dark: #005bb5;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.hero {
  min-height: 94vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.3) 46%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.02) 58%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 54px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

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

h1 {
  width: min(800px, 100%);
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero__copy {
  width: min(650px, 100%);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.32;
}

.hero__actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.38);
  outline-offset: 3px;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--secondary {
  color: var(--black);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.button--dark {
  color: var(--white);
  background: var(--black);
}

.hero__stats {
  width: min(720px, 100%);
  margin: 58px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
  backdrop-filter: blur(16px);
}

.hero__stats div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.hero__stats dt {
  font-size: 30px;
  font-weight: 800;
}

.hero__stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--soft);
}

.section--black {
  color: var(--white);
  background: var(--black);
}

.section--black p {
  color: rgba(255, 255, 255, 0.7);
}

.section__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
}

.split--center {
  align-items: center;
}

.section__header {
  width: min(790px, 100%);
  margin-bottom: 44px;
}

.section__header--compact {
  margin-bottom: 30px;
}

.problem h2 {
  margin-bottom: 0;
}

.problem__grid,
.feature-row,
.package-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.problem__grid p,
.feature-row article,
.package,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.problem__grid p {
  min-height: 112px;
  margin: 0;
  padding: 22px;
  color: var(--near-black);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: end;
}

.feature-row {
  grid-template-columns: repeat(3, 1fr);
}

.feature-row article {
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.feature-row p,
.package p,
.faq-grid p {
  font-size: 16px;
}

.icon {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-size: 13px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--muted);
  font-weight: 800;
}

.timeline p {
  margin-bottom: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 10px;
}

.content-grid div {
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    #17171a;
  font-size: 13px;
  font-weight: 800;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.package {
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.package--featured {
  border-color: rgba(0, 113, 227, 0.55);
  box-shadow: var(--shadow);
}

.package.is-selected {
  border-color: rgba(0, 113, 227, 0.85);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.16), var(--shadow);
}

.package__top {
  min-height: 108px;
}

.price {
  margin: 18px 0 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price span {
  font-size: 42px;
  font-weight: 850;
}

.price small,
.price__alt {
  color: var(--muted);
}

.price__alt {
  margin-bottom: 26px;
  font-size: 14px;
}

.package ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.package li {
  color: var(--near-black);
  line-height: 1.42;
}

.package li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: 0.08em;
}

.package .button {
  width: 100%;
  margin-top: auto;
}

.enterprise-band {
  margin-top: 18px;
  padding: 32px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: var(--black);
}

.enterprise-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.enterprise-band .button--secondary {
  white-space: nowrap;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.selected-package {
  min-height: 120px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.selected-package strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.selected-package span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.checkout-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.checkout-form label {
  margin-bottom: 18px;
  display: grid;
  gap: 8px;
  color: var(--near-black);
  font-size: 14px;
  font-weight: 700;
}

.checkout-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--black);
  background: var(--white);
  outline: 0;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.14);
}

.form-note {
  margin: 18px 0 0;
  font-size: 13px;
}

.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid article {
  padding: 24px;
}

.final-cta {
  padding: 110px 20px;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.86)),
    url("assets/content-day-hero.png") center / cover;
  text-align: center;
}

.final-cta__inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.75);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  max-width: min(420px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(0, 0, 0, 0.86);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 880px) {
  .hero {
    min-height: 88vh;
  }

  .hero__content,
  .section__inner {
    width: min(100% - 28px, 680px);
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.08) 70%);
  }

  .hero__stats,
  .split,
  .feature-row,
  .package-grid,
  .checkout-layout,
  .faq-grid,
  .enterprise-band {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

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

  .package {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero__content {
    padding-bottom: 36px;
  }

  .hero__actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .timeline li {
    grid-template-columns: 52px 1fr;
  }

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

  .enterprise-band {
    padding: 24px;
  }
}
