:root {
  color-scheme: light;
  --black: #050505;
  --ink: #171717;
  --muted: #5f5f64;
  --white: #ffffff;
  --paper: #f4f1ec;
  --aqua: #c9eef2;
  --aqua-deep: #71c8d0;
  --lilac: #d8c8f2;
  --gold: #b48a35;
  --line: rgba(5, 5, 5, 0.16);
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
}

body.is-loading {
  overflow: hidden;
}

main {
  scroll-margin-top: 160px;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--white);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  width: min(440px, 86vw);
  display: grid;
  justify-items: center;
  gap: 22px;
}

.preloader__logo {
  width: min(250px, 64vw);
  height: auto;
}

.preloader__line {
  width: min(260px, 60vw);
  height: 1px;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.16);
}

.preloader__line span {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--black);
  animation: loadingLine 1.1s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.utility-bar {
  min-height: 34px;
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.brand-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 32px;
}

.menu-button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  align-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  width: 24px;
  height: 2px;
  background: var(--black);
}

.brand {
  width: 218px;
  height: auto;
  display: grid;
  place-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-action {
  justify-self: end;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.category-nav {
  min-height: 45px;
  display: flex;
  justify-content: center;
  gap: 46px;
  padding: 0 22px;
  background: var(--black);
}

.category-nav a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.campaign-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 34px;
  padding: 54px max(28px, calc((100vw - 1220px) / 2)) 62px;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}

.campaign-hero__video,
.campaign-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.campaign-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px) brightness(0.58) saturate(0.92);
  transform: scale(1.08);
}

.campaign-hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.58) 48%, rgba(5, 5, 5, 0.74)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.26), rgba(5, 5, 5, 0.84));
}

.campaign-hero__copy {
  display: grid;
  align-content: center;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.campaign-hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  margin: 0;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
}

h1 {
  max-width: 660px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 6.1rem);
  font-weight: 400;
  line-height: 0.96;
}

.campaign-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.58;
}

.primary-button {
  width: fit-content;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  color: var(--white);
  background: transparent;
}

.campaign-hero__visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.visual-card {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.visual-card--main {
  width: min(560px, 100%);
  aspect-ratio: 0.84;
  display: grid;
  place-items: center;
  padding: 44px;
}

.visual-card--main img {
  width: min(330px, 78%);
  height: auto;
  filter: contrast(1.05);
}

.visual-card--small {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: 185px;
  min-height: 155px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 22px;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.visual-card--small span {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.9;
}

.visual-card--small strong {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.need-strip {
  padding: 72px max(22px, calc((100vw - 1220px) / 2));
  background: var(--white);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.need-grid article {
  min-height: 250px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.need-grid article:last-child {
  border-right: 0;
}

.need-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--aqua-deep);
  font-family: var(--font-display);
  font-size: 2.35rem;
}

.need-grid h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.need-grid p,
.routine p,
.signup-intro p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.routine {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  background: #f4f9fa;
}

.routine__image {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 60px;
  background:
    linear-gradient(140deg, rgba(113, 200, 208, 0.48), rgba(216, 200, 242, 0.5)),
    var(--paper);
}

.routine__image img {
  width: min(360px, 72%);
  filter: contrast(1.06);
}

.routine__copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 72px max(38px, calc((100vw - 1220px) / 2)) 72px 64px;
  background: var(--black);
  color: var(--white);
}

.routine__copy .eyebrow,
.routine__copy p {
  color: rgba(255, 255, 255, 0.82);
}

.routine h2,
.signup-intro h2,
.story h2 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.4vw, 4.6rem);
  font-weight: 400;
  line-height: 1.02;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  width: min(1220px, calc(100% - 40px));
  margin: 78px auto;
  padding: 58px 0 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signup-intro {
  display: grid;
  align-content: start;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  outline: 0;
}

.field input::placeholder {
  color: rgba(5, 5, 5, 0.42);
}

.field input:focus-visible {
  border-color: var(--black);
  box-shadow: inset 0 0 0 1px var(--black);
}

.signup button {
  min-height: 54px;
  grid-column: 1 / -1;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.signup button:hover,
.signup button:focus-visible {
  color: var(--black);
  background: var(--white);
}

.form-message {
  min-height: 22px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--black);
  font-weight: 800;
  line-height: 1.45;
}

.form-message.is-error {
  color: #9c1f1f;
}

.story {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto 82px;
  padding: 64px;
  color: var(--black);
  background:
    linear-gradient(112deg, rgba(201, 238, 242, 0.82), rgba(216, 200, 242, 0.72)),
    var(--paper);
  text-align: center;
}

.story h2 {
  max-width: 980px;
  margin: 0 auto;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 42px 22px;
  color: var(--white);
  background: var(--black);
}

.site-footer img {
  width: 170px;
  height: auto;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

@keyframes loadingLine {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(260%);
  }
}

@media (max-width: 980px) {
  .utility-bar {
    flex-direction: column;
    gap: 2px;
  }

  .brand-row {
    min-height: 70px;
    padding: 0 18px;
  }

  .brand {
    width: 190px;
  }

  .header-action {
    display: none;
  }

  .category-nav {
    gap: 22px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .campaign-hero {
    grid-template-columns: 1fr;
    padding: 42px 20px 54px;
  }

  .campaign-hero__copy {
    order: -1;
  }

  .campaign-hero__visual {
    min-height: 330px;
  }

  .visual-card--main {
    width: min(360px, 88vw);
    aspect-ratio: 1;
    padding: 26px;
  }

  .visual-card--small {
    right: calc(50% - 190px);
    bottom: 8px;
  }

  .need-grid,
  .routine,
  .signup-section {
    grid-template-columns: 1fr;
  }

  .need-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .need-grid article:last-child {
    border-bottom: 0;
  }

  .routine__image {
    min-height: 340px;
  }

  .routine__copy {
    padding: 48px 22px;
  }

  .signup-section {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  .menu-button {
    width: 28px;
  }

  .brand {
    width: 170px;
  }

  .campaign-hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .campaign-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .visual-card--small {
    width: 138px;
    min-height: 118px;
    right: 0;
  }

  .visual-card--small span {
    font-size: 3rem;
  }

  .need-strip,
  .signup-section,
  .story {
    width: calc(100% - 28px);
  }

  .need-strip {
    padding: 54px 0;
  }

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

  .story {
    padding: 44px 22px;
  }
}

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