:root {
  --blue: #27508f;
  --blue-deep: #1c3d70;
  --light-blue: #8fafda;
  --ink: #0e1319;
  --muted: #56616e;
  --line: rgba(14, 19, 25, 0.1);
  --paper: #ffffff;
  --wash: #f4f7fb;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: "Schibsted Grotesk", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.hero__film {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 32%, rgba(143, 175, 218, 0.7), transparent 27%),
    radial-gradient(circle at 28% 78%, rgba(39, 80, 143, 0.2), transparent 24%),
    linear-gradient(135deg, #fbfcfe 0%, #e8f0f9 48%, #b9cce5 100%);
}

.hero__film::before,
.hero__film::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.56;
}

.hero__film::before {
  width: 48vw;
  height: 48vw;
  right: -8vw;
  top: -19vw;
  background: rgba(255, 255, 255, 0.94);
  animation: breathe-a 15s ease-in-out infinite alternate;
}

.hero__film::after {
  width: 34vw;
  height: 34vw;
  left: 4vw;
  bottom: -22vw;
  background: rgba(143, 175, 218, 0.42);
  animation: breathe-b 19s ease-in-out infinite alternate;
}

.hero__film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.78) 36%, rgba(255, 255, 255, 0.42) 70%, rgba(255, 255, 255, 0.91) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 36%, transparent 64%, rgba(255, 255, 255, 0.5));
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  width: min(100% - 64px, 1240px);
  height: 78px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(14, 19, 25, 0.07);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.logo__tile {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.logo__dot {
  width: 5px;
  height: 5px;
  margin-left: -4px;
  margin-bottom: -12px;
  border-radius: 50%;
  background: var(--light-blue);
}

.nav__links {
  display: flex;
  gap: 30px;
  margin-left: 52px;
  color: rgba(14, 19, 25, 0.69);
  font-size: 14px;
  font-weight: 500;
}

.nav__links a,
.nav__login {
  transition: color 180ms ease;
}

.nav__links a:hover,
.nav__links a:focus-visible,
.nav__login:hover,
.nav__login:focus-visible {
  color: var(--ink);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav__login {
  font-size: 14px;
  font-weight: 500;
}

.nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: var(--paper);
  font-weight: 600;
  transition: transform 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}

.nav__cta {
  height: 42px;
  padding: 0 19px;
  font-size: 14px;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(64px, 8vh, 96px) 24px 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 24px;
  padding: 0 13px;
  border: 1px solid rgba(39, 80, 143, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

h1 {
  max-width: 950px;
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(62px, 6.4vw, 96px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero__copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(14, 19, 25, 0.68);
  font-size: clamp(16px, 1.25vw, 19px);
  letter-spacing: -0.018em;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.button {
  height: 52px;
  padding: 0 26px;
  box-shadow: 0 12px 28px rgba(39, 80, 143, 0.19);
  font-size: 15px;
}

.price {
  color: rgba(14, 19, 25, 0.57);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.price strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.nav__cta:hover,
.nav__cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-deep);
}

.stage {
  position: relative;
  width: min(980px, 94vw);
  height: 425px;
  margin-top: clamp(46px, 6vh, 74px);
  perspective: 1800px;
}

.stage__glow {
  position: absolute;
  width: 670px;
  height: 250px;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(39, 80, 143, 0.23);
  filter: blur(70px);
  opacity: 0.42;
}

.phone {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 286px;
  height: 584px;
  padding: 9px;
  transform: translateX(-50%) rotateX(3deg);
  border: 1px solid rgba(14, 19, 25, 0.13);
  border-radius: 43px;
  background: linear-gradient(150deg, #f7f9fc, #cdd6e1 50%, #f5f7fa);
  box-shadow:
    0 44px 90px rgba(19, 43, 76, 0.2),
    0 10px 28px rgba(19, 43, 76, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
  background: #eef1f5;
  text-align: left;
}

.phone__island {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 78px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--ink);
}

.phone__top {
  padding: 45px 17px 18px;
  background: var(--blue);
  color: var(--paper);
}

.phone__title {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 14px;
}

.day {
  padding: 6px 2px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 8px;
  font-weight: 600;
  text-align: center;
}

.day strong {
  display: block;
  margin-top: 1px;
  font-size: 14px;
  font-weight: 600;
}

.day--active {
  background: var(--paper);
  color: var(--ink);
}

.phone__summary {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  font-size: 12px;
  font-weight: 500;
}

.jobs {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.job {
  padding: 11px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 0 rgba(14, 19, 25, 0.03);
}

.job__meta {
  display: flex;
  justify-content: space-between;
  color: #6c7682;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job__address {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.job__crew {
  margin-top: 2px;
  color: #737e8b;
  font-size: 10px;
}

.job__drive {
  margin-top: 7px;
  padding: 6px 7px;
  border-radius: 7px;
  background: #22272b;
  color: var(--paper);
  font-size: 8px;
  font-weight: 500;
}

.phone__tabs {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 9px 5px 18px;
  border-top: 1px solid rgba(14, 19, 25, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #7b8591;
  font-size: 8px;
  font-weight: 600;
  text-align: center;
}

.phone__tabs span:nth-child(1) {
  color: var(--blue);
}

.float-card {
  position: absolute;
  z-index: 2;
  width: 252px;
  padding: 18px;
  border: 1px solid rgba(14, 19, 25, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(25, 52, 86, 0.11);
  text-align: left;
  backdrop-filter: blur(20px) saturate(150%);
}

.float-card--left {
  left: 7%;
  top: 80px;
  transform: rotateY(7deg) rotateZ(-2deg);
}

.float-card--right {
  right: 5%;
  top: 38px;
  transform: rotateY(-7deg) rotateZ(2deg);
}

.float-card__label {
  color: #66717e;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.float-card__number {
  margin-top: 8px;
  font-family: "Newsreader", serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.float-card__title {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.float-card__detail {
  margin-top: 3px;
  color: #66717e;
  font-size: 12px;
  line-height: 1.45;
}

.float-card__people {
  display: flex;
  align-items: center;
  margin-top: 13px;
}

.avatar {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: -5px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #e5ebf3;
  color: #506071;
  font-size: 8px;
  font-weight: 600;
}

.avatar:first-child {
  margin-left: 0;
}

.float-card__people em {
  margin-left: 8px;
  color: #606b78;
  font-size: 11px;
  font-style: normal;
}

.menu-button,
.mobile-menu {
  display: none;
}

.section-shell {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-title {
  max-width: 830px;
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(52px, 5.8vw, 82px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  letter-spacing: -0.018em;
  line-height: 1.55;
  text-wrap: pretty;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.product {
  padding: 150px 0 160px;
  background: var(--paper);
}

.product__intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.product__intro .section-copy {
  margin-bottom: 7px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
  margin-top: 76px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--wash);
}

.bento-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.bento-card > p {
  position: relative;
  z-index: 2;
  max-width: 32ch;
  margin: 9px 0 0;
  color: #66717e;
  font-size: 13px;
  line-height: 1.5;
}

.bento-card--schedule {
  grid-column: span 7;
  grid-row: span 3;
  background: #eef3f9;
}

.bento-card--money {
  grid-column: span 5;
  grid-row: span 2;
  background: var(--ink);
  color: var(--paper);
}

.bento-card--money > p,
.bento-card--message > p {
  color: rgba(255, 255, 255, 0.62);
}

.bento-card--photos,
.bento-card--offline {
  grid-column: span 5;
}

.bento-card--message {
  grid-column: span 7;
  grid-row: span 2;
  background: var(--blue);
  color: var(--paper);
}

.bento-card--crew {
  grid-column: span 5;
  grid-row: span 2;
  background: #e7eef7;
}

.agenda-window {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 84%;
  height: 72%;
  overflow: hidden;
  border: 1px solid rgba(14, 19, 25, 0.1);
  border-radius: 15px;
  background: var(--paper);
  box-shadow: 0 22px 50px rgba(39, 80, 143, 0.13);
  transform: rotate(-1.3deg);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 29px;
  padding: 0 12px;
  background: #e4e7eb;
}

.window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c3c8ce;
}

.agenda-body {
  display: grid;
  grid-template-columns: 100px 1fr;
  height: calc(100% - 29px);
}

.agenda-nav {
  padding: 16px 10px;
  border-right: 1px solid var(--line);
  background: #f7f8fa;
}

.agenda-nav span {
  display: block;
  margin-bottom: 6px;
  padding: 7px 9px;
  border-radius: 5px;
  color: #687381;
  font-size: 8px;
  font-weight: 600;
}

.agenda-nav span:first-child {
  background: var(--blue);
  color: var(--paper);
}

.agenda-main {
  padding: 15px;
}

.agenda-main strong {
  font-size: 11px;
}

.agenda-row {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 10px;
  align-items: start;
  margin-top: 10px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 8px;
}

.agenda-row b {
  font-size: 9px;
}

.agenda-row em {
  color: var(--blue);
  font-size: 7px;
  font-style: normal;
  font-weight: 600;
}

.money-figures {
  position: absolute;
  right: 25px;
  bottom: 28px;
  left: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.money-figure {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
}

.money-figure span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  text-transform: uppercase;
}

.money-figure strong {
  display: block;
  margin-top: 5px;
  font-family: "Newsreader", serif;
  font-size: clamp(17px, 1.7vw, 25px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.photo-stack {
  position: absolute;
  right: 25px;
  bottom: -16px;
  display: flex;
}

.photo {
  width: 80px;
  height: 102px;
  overflow: hidden;
  margin-left: -18px;
  border: 4px solid var(--paper);
  border-radius: 13px;
  box-shadow: 0 12px 25px rgba(14, 19, 25, 0.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,.15), transparent),
    linear-gradient(35deg, #b8c3ce, #e4ddd4 55%, #7f9a85);
  transform: rotate(-7deg);
}

.photo:nth-child(2) {
  background: linear-gradient(35deg, #dde6ec, #bdc9ba 52%, #879faf);
  transform: translateY(-8px) rotate(4deg);
}

.offline-signal {
  position: absolute;
  right: 28px;
  bottom: 31px;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 58px;
}

.offline-signal i {
  width: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.offline-signal i:nth-child(1) { height: 16px; opacity: 0.35; }
.offline-signal i:nth-child(2) { height: 28px; opacity: 0.55; }
.offline-signal i:nth-child(3) { height: 42px; opacity: 0.75; }
.offline-signal i:nth-child(4) { height: 58px; }

.chat {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 42%;
  display: grid;
  gap: 9px;
}

.bubble {
  max-width: 87%;
  padding: 10px 12px;
  border-radius: 13px 13px 13px 4px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  line-height: 1.35;
}

.bubble--mine {
  justify-self: end;
  border-radius: 13px 13px 4px 13px;
  background: var(--paper);
  color: var(--ink);
}

.crew-row {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  gap: 8px;
}

.crew-person {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 11px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.crew-person i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #d6e0ed;
  color: #56687b;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
}

.crew-person em {
  color: #6b7683;
  font-size: 8px;
  font-style: normal;
}

.human-story {
  padding: 24px;
  background: var(--paper);
}

.human-story__frame {
  position: relative;
  display: flex;
  min-height: 84svh;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 30px;
  background: #d8e2ed;
  color: var(--paper);
}

.human-story__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: photo-breathe 18s ease-in-out infinite alternate;
}

.human-story__frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 17, 27, 0.74) 0%, rgba(9, 17, 27, 0.34) 43%, transparent 72%),
    linear-gradient(180deg, transparent 45%, rgba(9, 17, 27, 0.55) 100%);
  content: "";
}

.human-story__content {
  position: relative;
  z-index: 1;
  max-width: 710px;
  padding: clamp(40px, 6vw, 84px);
}

.human-story__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.human-story h2 {
  margin: 20px 0 0;
  font-family: "Newsreader", serif;
  font-size: clamp(54px, 6.4vw, 92px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.human-story p {
  max-width: 510px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

@keyframes photo-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

.extra {
  position: relative;
  overflow: hidden;
  padding: 155px 0;
  background: #0d1520;
  color: var(--paper);
}

.extra::before {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -250px;
  top: -300px;
  border-radius: 50%;
  background: rgba(39, 80, 143, 0.34);
  filter: blur(20px);
  content: "";
}

.extra .section-kicker {
  color: var(--light-blue);
}

.extra .section-copy {
  color: rgba(255, 255, 255, 0.62);
}

.extra__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 80px;
}

.board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 255px 1fr;
  min-height: 560px;
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: #f5f7fa;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.board__side {
  display: flex;
  flex-direction: column;
  padding: 25px 18px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.board__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px 25px;
  font-size: 15px;
  font-weight: 600;
}

.board__logo i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 6px;
  background: var(--blue);
  color: var(--paper);
  font-size: 11px;
  font-style: normal;
}

.board__nav span {
  display: block;
  margin-bottom: 5px;
  padding: 11px 12px;
  border-radius: 8px;
  color: #67727f;
  font-size: 12px;
  font-weight: 500;
}

.board__nav span:nth-child(3) {
  background: #e9f0f9;
  color: var(--ink);
  font-weight: 600;
}

.board__side-note {
  margin-top: auto;
  padding: 14px;
  border-radius: 11px;
  background: #eef3f9;
  font-size: 10px;
  line-height: 1.45;
}

.board__main {
  padding: 32px;
}

.board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.board__head h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.board__post {
  min-height: 40px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--paper);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
}

.shift-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  margin-top: 26px;
}

.shift-card,
.applicants {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.shift-card__top {
  display: flex;
  justify-content: space-between;
  color: #687481;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shift-card h4 {
  margin: 17px 0 0;
  font-family: "Newsreader", serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.shift-card__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 21px;
}

.shift-fact {
  padding: 11px;
  border-radius: 9px;
  background: #f2f4f7;
}

.shift-fact span {
  display: block;
  color: #717c88;
  font-size: 8px;
  text-transform: uppercase;
}

.shift-fact strong {
  display: block;
  margin-top: 4px;
  font-size: 11px;
}

.shift-card__status {
  margin-top: 17px;
  padding: 12px;
  border-radius: 10px;
  background: #e7f0ed;
  color: #244d43;
  font-size: 10px;
  font-weight: 600;
}

.applicants h4 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
}

.applicant {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.applicant__avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #e8edf3;
  color: #596979;
  font-size: 9px;
  font-weight: 600;
}

.applicant strong,
.applicant span {
  display: block;
}

.applicant strong {
  font-size: 10px;
}

.applicant span {
  margin-top: 2px;
  color: #7a8490;
  font-size: 8px;
}

.applicant button {
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 8px;
  font-weight: 600;
}

.extra__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 62px;
}

.extra-step {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.extra-step span {
  color: var(--light-blue);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.extra-step h3 {
  margin: 11px 0 0;
  font-family: "Newsreader", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.extra-step p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.statement {
  display: grid;
  min-height: 68svh;
  place-items: center;
  padding: 120px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(143, 175, 218, 0.46), transparent 32%),
    linear-gradient(145deg, #edf3fa, #ffffff 54%, #dce8f6);
  text-align: center;
}

.statement blockquote {
  max-width: 1000px;
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.97;
  text-wrap: balance;
}

.statement p {
  margin: 28px 0 0;
  color: #5b6673;
  font-size: 14px;
}

.cleaners {
  padding: 155px 0;
  background: var(--paper);
}

.cleaners__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 90px;
  align-items: center;
}

.cleaners__facts {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.cleaner-fact {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.cleaner-fact strong {
  font-size: 13px;
  font-weight: 600;
}

.cleaner-fact span {
  color: #66717e;
  font-size: 13px;
  line-height: 1.5;
}

.cleaner-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.8), transparent 28%),
    linear-gradient(145deg, #dce8f6, #f5f8fb 65%);
}

.cleaner-phone {
  position: absolute;
  top: 58px;
  left: 50%;
  width: 300px;
  height: 620px;
  padding: 9px;
  transform: translateX(-50%) rotate(2deg);
  border-radius: 44px;
  background: linear-gradient(155deg, #eef2f7, #c8d1dc 55%, #f3f6f9);
  box-shadow: 0 38px 75px rgba(26, 53, 99, 0.19);
}

.cleaner-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #f1f3f6;
}

.cleaner-screen__top {
  padding: 48px 18px 20px;
  background: var(--ink);
  color: var(--paper);
}

.cleaner-screen__top small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cleaner-screen__top h3 {
  margin: 7px 0 0;
  font-family: "Newsreader", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.cleaner-shifts {
  display: grid;
  gap: 9px;
  padding: 11px;
}

.cleaner-shift {
  padding: 14px;
  border-radius: 13px;
  background: var(--paper);
}

.cleaner-shift__top {
  display: flex;
  justify-content: space-between;
  color: #74808c;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.cleaner-shift h4 {
  margin: 8px 0 0;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.cleaner-shift p {
  margin: 4px 0 0;
  color: #707b87;
  font-size: 10px;
}

.cleaner-shift strong {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 15px;
}

.pricing {
  padding: 155px 0;
  background: #f4f7fb;
}

.pricing__head {
  text-align: center;
}

.pricing__head .section-kicker {
  justify-content: center;
}

.pricing__head .section-title,
.pricing__head .section-copy {
  margin-right: auto;
  margin-left: auto;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid rgba(39, 80, 143, 0.28);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 25px 60px rgba(39, 80, 143, 0.08);
}

.price-card__main {
  padding: 38px;
}

.price-card__top {
  display: flex;
  align-items: end;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.price-card__amount {
  font-family: "Newsreader", serif;
  font-size: 68px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.price-card__amount span {
  font-family: "Schibsted Grotesk", sans-serif;
  color: #66717e;
  font-size: 14px;
  letter-spacing: 0;
}

.included {
  padding: 7px 10px;
  border-radius: 6px;
  background: #eaf0f8;
  font-size: 12px;
  font-weight: 600;
}

.price-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  margin-top: 25px;
}

.price-feature {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.price-feature i {
  color: #146152;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.price-feature strong,
.price-feature span {
  display: block;
}

.price-feature strong {
  font-size: 13px;
  font-weight: 600;
}

.price-feature span {
  margin-top: 2px;
  color: #707b87;
  font-size: 11px;
  line-height: 1.45;
}

.calculator {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-left: 1px solid var(--line);
  background: #f8fafc;
}

.calculator__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.calculator__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 600;
}

.calculator input[type="range"] {
  width: 100%;
  height: 28px;
  margin: 10px 0 17px;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.calculator input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: #d4dce6;
}

.calculator input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  margin-top: -8.5px;
  appearance: none;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 1px 5px rgba(14, 19, 25, 0.24);
}

.calculator input[type="range"]::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: #d4dce6;
}

.calculator input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
}

.addon {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 9px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
  cursor: pointer;
}

.addon input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--blue);
}

.addon strong,
.addon small {
  display: block;
}

.addon strong {
  font-size: 11px;
}

.addon small {
  margin-top: 2px;
  color: #7c8793;
  font-size: 8px;
}

.addon > span:last-child {
  font-size: 12px;
  font-weight: 600;
}

.total-lines {
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.total-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: #6c7783;
  font-size: 11px;
}

.grand-total {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.grand-total span:first-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.grand-total strong {
  font-family: "Newsreader", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.grand-total strong span {
  color: #687481;
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0;
}

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

.pricing-note {
  margin: 14px 0 0;
  color: #6b7682;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.start {
  padding: 26px;
  background: var(--paper);
}

.start__panel {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: var(--blue);
  color: var(--paper);
  text-align: center;
}

.start__panel::before,
.start__panel::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.start__panel::before {
  width: 540px;
  height: 540px;
  left: -180px;
  bottom: -280px;
  background: rgba(143, 175, 218, 0.35);
}

.start__panel::after {
  width: 420px;
  height: 420px;
  right: -100px;
  top: -220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.start__content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
}

.start h2 {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Newsreader", serif;
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.start p {
  max-width: 500px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.55;
}

.start__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 31px;
}

.button--white,
.button--outline {
  min-width: 155px;
}

.button--white {
  background: var(--paper);
  box-shadow: none;
  color: var(--ink);
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  box-shadow: none;
}

.button--white:hover,
.button--white:focus-visible {
  background: #f1f4f8;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.footer {
  padding: 50px 0 38px;
  background: var(--paper);
}

.footer__row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: #66717e;
  font-size: 13px;
}

.footer__fine {
  margin-top: 35px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: #808a95;
  font-size: 11px;
  line-height: 1.55;
}

@keyframes breathe-a {
  to { transform: translate(-8vw, 7vw) scale(1.08); }
}

@keyframes breathe-b {
  to { transform: translate(7vw, -4vw) scale(0.9); }
}

@media (max-width: 900px) {
  .nav {
    width: calc(100% - 40px);
    height: 68px;
  }

  .nav__links,
  .nav__login {
    display: none;
  }

  .hero__content {
    min-height: calc(100svh - 68px);
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(54px, 13vw, 72px);
  }

  .stage {
    height: 405px;
    margin-top: 48px;
  }

  .float-card {
    width: 205px;
    padding: 15px;
  }

  .float-card--left {
    left: -3%;
  }

  .float-card--right {
    right: -3%;
  }
}

@media (max-width: 650px) {
  .nav {
    width: calc(100% - 32px);
  }

  .nav__cta {
    height: 40px;
    padding: 0 16px;
  }

  .hero__content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .eyebrow {
    margin-bottom: 19px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 62px);
    line-height: 0.98;
  }

  .hero__copy {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 26px;
  }

  .button {
    width: min(100%, 330px);
  }

  .price {
    text-align: center;
  }

  .stage {
    width: 100vw;
    height: 395px;
    margin-top: 42px;
  }

  .phone {
    width: 258px;
    height: 527px;
    border-radius: 39px;
  }

  .phone__screen {
    border-radius: 31px;
  }

  .float-card--left {
    display: none;
  }

  .float-card--right {
    z-index: 4;
    top: 140px;
    right: -64px;
    width: 180px;
    transform: rotateZ(2deg);
  }
}

@media (max-width: 1000px) {
  .product__intro,
  .extra__intro,
  .cleaners__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .bento-card--schedule,
  .bento-card--message {
    grid-column: span 7;
  }

  .bento-card--money,
  .bento-card--photos,
  .bento-card--offline,
  .bento-card--crew {
    grid-column: span 5;
  }

  .price-card {
    grid-template-columns: 1fr 340px;
  }
}

@media (max-width: 780px) {
  .section-shell {
    width: calc(100% - 40px);
  }

  .section-title {
    font-size: clamp(46px, 12vw, 64px);
  }

  .product,
  .extra,
  .cleaners,
  .pricing {
    padding: 100px 0;
  }

  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    margin-top: 48px;
  }

  .bento-card,
  .bento-card--schedule,
  .bento-card--money,
  .bento-card--photos,
  .bento-card--offline,
  .bento-card--message,
  .bento-card--crew {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .bento-card--schedule {
    min-height: 430px;
  }

  .agenda-window {
    width: 92%;
  }

  .bento-card--message {
    min-height: 320px;
  }

  .chat {
    left: 26px;
  }

  .board {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .board__side {
    display: none;
  }

  .board__main {
    padding: 22px;
  }

  .shift-layout {
    grid-template-columns: 1fr;
  }

  .extra__steps {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 48px;
  }

  .statement {
    min-height: 560px;
    padding: 90px 20px;
  }

  .cleaners__grid {
    gap: 48px;
  }

  .cleaner-stage {
    min-height: 580px;
  }

  .price-card {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .price-card__main {
    padding: 28px;
  }

  .calculator {
    min-height: 520px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .start {
    padding: 12px;
  }

  .start__panel {
    min-height: 540px;
    border-radius: 22px;
  }

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

  .footer__links {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .human-story {
    padding: 12px;
  }

  .human-story__frame {
    min-height: 720px;
    border-radius: 22px;
  }

  .human-story__image {
    object-position: 61% center;
  }

  .human-story__frame::after {
    background: linear-gradient(180deg, rgba(9, 17, 27, 0.06) 26%, rgba(9, 17, 27, 0.84) 83%, rgba(9, 17, 27, 0.95) 100%);
  }
}

@media (max-width: 650px) {
  .menu-button {
    display: grid;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 11px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
  }

  .menu-button span {
    display: block;
    width: 16px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .nav__actions {
    margin-left: 11px;
  }

  .nav__actions .nav__cta {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    z-index: 9;
    top: 60px;
    right: 16px;
    left: 16px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 45px rgba(14, 19, 25, 0.13);
    backdrop-filter: blur(20px);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 13px 14px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
  }

  .mobile-menu a:last-child {
    margin-top: 4px;
    background: var(--blue);
    color: var(--paper);
    text-align: center;
  }

  .price-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-features {
    grid-template-columns: 1fr;
  }

  .shift-card__facts {
    grid-template-columns: 1fr;
  }

  .cleaner-stage {
    min-height: 540px;
  }

  .cleaner-phone {
    top: 45px;
    width: 264px;
    height: 546px;
  }

  .start__actions {
    align-items: center;
    flex-direction: column;
  }

  .button--white,
  .button--outline {
    width: min(100%, 300px);
  }

  .human-story__content {
    padding: 34px 26px;
  }
}

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

/* ---------------------------------------------------------------------
   Everything above this line is site-reference-v2.html's own <style>
   block, unchanged. Nothing below existed in the reference — it is the
   markup for the real email form, styled to match the reference's own
   existing button/pill/panel conventions rather than inventing new ones. */

.lead-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.lead-form__field {
  position: relative;
}

.lead-form input[type="email"] {
  height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font: inherit;
  font-size: 15px;
}

.lead-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.hp {
  position: absolute;
  left: -9999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lead-message {
  flex-basis: 100%;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.lead-message--error {
  color: #ffd7d7;
}

@media (max-width: 650px) {
  .lead-form {
    flex-direction: column;
  }
}
