:root {
  color-scheme: light dark;
  --ink: #243047;
  --ink-soft: #5a6880;
  --paper: #f6f9fc;
  --surface: #ffffff;
  --surface-blue: #eaf6ff;
  --surface-yellow: #fff8cf;
  --surface-green: #eef8da;
  --surface-red: #fff0f1;
  --blue: #1479b6;
  --blue-dark: #075787;
  --yellow: #f1d84b;
  --green: #9bca47;
  --red: #dc6a78;
  --line: rgba(36, 48, 71, 0.14);
  --shadow: 0 30px 70px rgba(30, 92, 132, 0.16);
  --radius: 28px;
  --display: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --body: Aptos, "Segoe UI", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #edf5fb;
    --ink-soft: #bdcada;
    --paper: #101923;
    --surface: #172330;
    --surface-blue: #152b3b;
    --surface-yellow: #2d2b1d;
    --surface-green: #202d1f;
    --surface-red: #302125;
    --blue: #63b6e6;
    --blue-dark: #8fcef0;
    --yellow: #e4cd57;
    --green: #a9cd68;
    --red: #e68a95;
    --line: rgba(237, 245, 251, 0.16);
    --shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 9px clamp(18px, 4vw, 60px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.2vw, 34px);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta) {
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--blue-dark);
}

.button,
.nav-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--blue-dark);
  color: var(--surface);
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 13px 30px rgba(7, 87, 135, 0.22);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, box-shadow 220ms ease;
}

.button:hover,
.nav-cta:hover {
  background: color-mix(in srgb, var(--blue-dark) 86%, #001c2a);
  box-shadow: 0 18px 38px rgba(7, 87, 135, 0.29);
  transform: translateY(-2px);
}

.button:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.98);
}

.section-shell {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
  padding-block: clamp(82px, 10vw, 140px);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
}

h1 {
  max-width: 13.5ch;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.5vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.9vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.08;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: 92px clamp(24px, 5vw, 76px) 28px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 70px 0 0 58%;
  z-index: -2;
  background: var(--surface-blue);
  content: "";
}

.hero::after {
  position: absolute;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  right: -12vw;
  top: 9vh;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--blue) 30%, transparent);
  border-radius: 50%;
  content: "";
}

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

.hero-lead {
  max-width: 38ch;
  margin: 27px 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.hero-stage {
  position: relative;
  min-height: min(690px, calc(100dvh - 104px));
}

.hero-stage img {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 34px 36px rgba(39, 80, 109, 0.18));
}

.hero-mug {
  width: min(72%, 650px);
  right: -2%;
  bottom: 1%;
}

.hero-pillow {
  width: min(61%, 530px);
  left: 1%;
  top: 6%;
  transform: rotate(-4deg);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-yellow {
  width: 34%;
  aspect-ratio: 1;
  left: 5%;
  top: 24%;
  background: color-mix(in srgb, var(--yellow) 82%, transparent);
}

.hero-shape-blue {
  width: 47%;
  aspect-ratio: 1;
  right: 1%;
  bottom: -7%;
  background: color-mix(in srgb, var(--blue) 18%, transparent);
}

.ready-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 24px clamp(24px, 5vw, 76px);
  background: var(--surface-yellow);
  color: color-mix(in srgb, var(--ink) 88%, #4a3b00);
}

.ready-strip p {
  margin: 0;
}

.ready-strip p:last-child {
  color: var(--ink-soft);
}

.experience {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(390px, 1.2fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
}

.experience-copy h2 {
  max-width: 11ch;
}

.experience-copy > p:not(.section-kicker) {
  max-width: 43ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.experience-note {
  max-width: 38ch;
  margin-top: 34px;
  padding-left: 18px;
  border-left: 4px solid var(--yellow);
}

.experience-note strong,
.experience-note span {
  display: block;
}

.experience-note span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.video-wrap {
  position: relative;
  padding: clamp(12px, 2vw, 22px);
  border-radius: var(--radius);
  background: var(--surface-blue);
}

.video-wrap::before {
  position: absolute;
  width: 96px;
  aspect-ratio: 1;
  right: -28px;
  top: -28px;
  z-index: -1;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.video-wrap video {
  width: 100%;
  max-height: 720px;
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  border-radius: calc(var(--radius) - 9px);
  background: #0c1722;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.flow {
  width: min(calc(100% - 48px), 1320px);
}

.flow-heading {
  max-width: 700px;
  margin-bottom: 58px;
}

.flow-heading p {
  max-width: 38ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-track::before {
  position: absolute;
  top: 19px;
  left: 9%;
  right: 9%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--green), var(--blue));
  content: "";
}

.flow-track li {
  position: relative;
  padding: 58px clamp(18px, 3vw, 46px) 0 0;
}

.flow-track li::before {
  position: absolute;
  width: 38px;
  aspect-ratio: 1;
  top: 1px;
  left: 0;
  z-index: 1;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 2px var(--yellow);
  content: "";
}

.flow-track li:nth-child(2)::before {
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}

.flow-track li:nth-child(3)::before {
  background: var(--blue);
  box-shadow: 0 0 0 2px var(--blue);
}

.flow-track strong {
  display: block;
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
}

.flow-track span {
  display: block;
  max-width: 27ch;
  color: var(--ink-soft);
}

.flow-footnote {
  max-width: 68ch;
  margin: 60px 0 0 auto;
  padding: 20px 24px;
  border-radius: calc(var(--radius) - 10px);
  background: var(--surface);
  color: var(--ink-soft);
  box-shadow: 0 12px 32px rgba(28, 76, 111, 0.08);
}

.value {
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(48px, 9vw, 128px);
  align-items: start;
}

.value-statement {
  position: sticky;
  top: 112px;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius);
  background: var(--surface-blue);
}

.value-statement::after {
  display: block;
  width: 86px;
  height: 9px;
  margin-top: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow) 0 33%, var(--green) 33% 66%, var(--red) 66%);
  content: "";
}

.value-statement p {
  max-width: 37ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.value-list {
  display: grid;
  gap: 0;
}

.value-list article {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.value-list article:first-child {
  padding-top: 8px;
}

.value-list article:last-child {
  border-bottom: 0;
}

.value-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.value-list p {
  max-width: 38ch;
  margin: 0;
  color: var(--ink-soft);
}

.products-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.products-heading > p:not(.section-kicker) {
  max-width: 57ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product {
  min-width: 0;
  margin: 0;
}

.product-visual {
  height: clamp(250px, 23vw, 330px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-visual img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product:hover img {
  transform: scale(1.035);
}

.product figcaption {
  padding-top: 12px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 750;
}

.product-mug .product-visual {
  background: var(--surface-yellow);
}

.product-pillow .product-visual {
  background: var(--surface-blue);
}

.product-tile .product-visual {
  background: var(--surface-green);
}

.product-shirt .product-visual {
  background: var(--surface-red);
}

.recipients {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(430px, 1.16fr);
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
}

.recipients-copy p {
  max-width: 49ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.recipient-words {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: baseline;
  gap: 7px 20px;
}

.recipient-words span {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.recipient-words span:nth-child(1),
.recipient-words span:nth-child(5) {
  color: var(--blue);
}

.recipient-words span:nth-child(2),
.recipient-words span:nth-child(6) {
  color: var(--red);
}

.recipient-words span:nth-child(3) {
  color: var(--green);
}

.recipient-words span:nth-child(4) {
  grid-column: span 2;
  color: color-mix(in srgb, var(--ink) 86%, var(--yellow));
}

.recipient-words small {
  grid-column: 2 / -1;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.opportunities-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.opportunities-heading p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.opportunity-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.opportunity-layout article,
.sales-note {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
}

.opportunity-layout article {
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(28, 76, 111, 0.08);
}

.opportunity-layout .opportunity-main {
  grid-row: span 2;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--yellow) 74%, transparent) 0 13%, transparent 13.5%),
    var(--surface-blue);
}

.opportunity-main h3 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

.opportunity-layout p {
  max-width: 47ch;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.sales-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  align-items: center;
  gap: 30px;
  background: var(--surface-yellow);
}

.sales-note strong {
  font-family: var(--display);
  font-size: 1.4rem;
}

.sales-note p {
  margin: 0;
}

.access {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  margin-bottom: clamp(70px, 8vw, 110px);
  padding-inline: clamp(28px, 7vw, 92px);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface-blue);
  text-align: center;
  overflow: hidden;
}

.access::before {
  position: absolute;
  width: 210px;
  aspect-ratio: 1;
  left: -92px;
  bottom: -108px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--red) 36%, transparent);
  content: "";
}

.access-brand {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  padding: 18px 22px;
  border-radius: calc(var(--radius) - 8px);
  background: #f9fbfd;
}

.access-brand img {
  width: 100%;
  max-width: 250px;
  margin-inline: auto;
}

.access-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  align-self: stretch;
  margin-inline: auto;
}

.access-copy h2 {
  max-width: 17ch;
  margin-inline: auto;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.access-copy p {
  max-width: 45ch;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

.site-footer {
  padding: 28px 24px 36px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.1fr);
    padding-inline: 32px;
  }

  .hero-stage {
    min-height: 570px;
  }

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

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

}

@media (max-width: 767px) {
  .site-header {
    min-height: 62px;
    justify-content: center;
    padding: 7px 16px;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    width: min(100%, 280px);
    min-height: 46px;
  }

  .section-shell {
    width: 100%;
    padding: 76px 20px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 12.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.6rem);
  }

  .hero {
    min-height: 100dvh;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    padding: 92px 20px 18px;
  }

  .hero::before {
    inset: 55% 0 0;
  }

  .hero::after {
    width: 90vw;
    right: -38vw;
    top: 52%;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-lead {
    max-width: 32ch;
    margin-block: 18px 22px;
    font-size: 1rem;
  }

  .hero-stage {
    min-height: 43dvh;
  }

  .hero-pillow {
    width: 59%;
    left: -3%;
    top: 2%;
  }

  .hero-mug {
    width: 75%;
    right: -2%;
    bottom: -3%;
  }

  .ready-strip {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px;
  }

  .experience,
  .value,
  .opportunity-layout,
  .access {
    grid-template-columns: 1fr;
  }

  .experience {
    gap: 40px;
  }

  .experience-copy h2 {
    max-width: 12ch;
  }

  .video-wrap video {
    max-height: 70dvh;
  }

  .flow-heading {
    margin-bottom: 38px;
  }

  .flow-track {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .flow-track::before {
    width: 3px;
    height: auto;
    inset: 18px auto 18px 17px;
    background: linear-gradient(180deg, var(--yellow), var(--green), var(--blue));
  }

  .flow-track li {
    padding: 0 0 0 58px;
  }

  .flow-track li::before {
    top: 0;
  }

  .flow-footnote {
    margin-top: 42px;
  }

  .value-statement {
    position: relative;
    top: auto;
    padding: 34px 26px;
  }

  .value-list article:first-child {
    padding-top: 34px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 30px;
  }

  .product,
  .product-mug,
  .product-pillow,
  .product-tile,
  .product-shirt {
    display: block;
    grid-column: auto;
    grid-row: auto;
  }

  .product-visual {
    height: min(105vw, 410px);
  }

  .recipient-words {
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 10px 18px;
  }

  .recipient-words span:nth-child(4),
  .recipient-words small {
    grid-column: auto;
  }

  .recipient-words small {
    grid-column: 1 / -1;
  }

  .opportunity-layout .opportunity-main {
    grid-row: auto;
    min-height: 320px;
  }

  .sales-note {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .access {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    gap: 34px;
    margin-bottom: 70px;
    padding: 54px 22px;
  }

  .access-brand {
    width: min(72%, 260px);
  }

  .access-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.65rem);
    overflow-wrap: anywhere;
  }

  .access-copy p {
    max-width: 100%;
  }

  .access-copy {
    width: calc(100vw - 76px);
    max-width: calc(100vw - 76px);
    align-self: center;
    margin-inline: 0;
  }
}

@media (max-width: 410px) {
  .hero {
    padding-top: 82px;
  }

  h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.25rem);
  }

  .hero-stage {
    min-height: 39dvh;
  }

  .button {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}

@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;
  }

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