@font-face {
  font-family: "Schibsted Grotesk";
  src: url("/schibsted-grotesk.woff2") format("woff2-variations"),
       url("/schibsted-grotesk.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal: #176b6b;
  --ink: #173f40;
  --mist: #e9f4f1;
  --warm: #f1c89c;
  --white: #ffffff;
  --muted: #596b69;
  --line: #dce8e6;
  --shadow: 0 20px 60px rgba(23, 63, 64, .12);
  --shadow-soft: 0 12px 32px rgba(23, 63, 64, .08);
  --radius: 32px;
  --radius-small: 20px;
  --shell: 1160px;
  --font: "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 400 17px/1.62 var(--font);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection {
  background: var(--warm);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus { top: 16px; }

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

.shell {
  width: min(calc(100% - 80px), var(--shell));
  margin-inline: auto;
}

section { padding-block: clamp(88px, 9vw, 120px); }

h1, h2, h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -.04em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.3rem);
  font-weight: 860;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  font-weight: 840;
}

h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.025em;
}

p { margin: 0; }

.lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.62;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow--light { color: var(--warm); }

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--ink);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: .84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span { color: var(--teal); }

.app-store-link {
  display: inline-flex;
  line-height: 0;
  transition: transform 180ms ease;
}

.app-store-link:hover { transform: translateY(-2px); }
.app-store-link img { width: 178px; height: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 232, 230, .8);
  backdrop-filter: blur(16px);
}

.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--teal);
  overflow: hidden;
}

.brand-mark i:first-child {
  position: absolute;
  width: 22px;
  height: 12px;
  left: 4px;
  top: 7px;
  border: 4px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 999px 0 0;
  transform: rotate(-8deg);
}

.brand-mark i:last-child {
  position: absolute;
  width: 7px;
  height: 7px;
  right: 7px;
  top: 8px;
  border-radius: 50%;
  background: var(--warm);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button):hover { color: var(--teal); }
.nav-toggle { display: none; }

/* Hero */
.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 92px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.hero-copy { padding-bottom: 10px; }
.hero-copy .lede { margin-top: 28px; }

@media (min-width: 901px) {
  .hero-copy h1 {
    font-size: clamp(3.25rem, 7vw, 5.5rem);
    white-space: nowrap;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 0;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 700;
  list-style: none;
}

.hero-notes li {
  position: relative;
  padding-left: 16px;
}

.hero-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

/* Device previews */
.device-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}

.device-stage--hero {
  background: var(--mist);
  box-shadow: inset 0 0 0 1px var(--line);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  background: var(--warm);
}

.orbit--one {
  width: 100px;
  height: 100px;
  top: 44px;
  right: -28px;
}

.orbit--two {
  width: 44px;
  height: 44px;
  bottom: 58px;
  left: 36px;
}

.phone {
  position: relative;
  z-index: 2;
  width: 270px;
  padding: 9px;
  border-radius: 42px;
  background: var(--ink);
  box-shadow: 0 34px 70px rgba(23, 63, 64, .22);
}

.phone--tilted { transform: rotate(3deg); }

.phone-screen {
  position: relative;
  min-height: 510px;
  padding: 20px 18px 18px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--white);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 800;
}

.phone-kicker {
  margin-top: 34px;
  color: var(--teal);
  font-size: .67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.phone-screen h2 {
  margin-top: 8px;
  font-size: 1.72rem;
  line-height: 1.06;
}

.strength-ring {
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  margin: 28px auto 24px;
  border: 13px solid var(--mist);
  border-top-color: var(--teal);
  border-right-color: var(--teal);
  border-radius: 50%;
  transform: rotate(18deg);
}

.strength-ring span {
  font-size: 2rem;
  font-weight: 860;
  transform: rotate(-18deg);
}

.strength-ring small { font-size: .9rem; }

.mini-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
  border-radius: 15px;
  background: var(--mist);
  color: var(--muted);
  font-size: .66rem;
}

.mini-card strong { color: var(--ink); font-size: .72rem; }
.mini-card--warm { background: rgba(241, 200, 156, .45); }

.sample-label {
  position: absolute;
  right: 14px;
  bottom: 11px;
  color: var(--muted);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Problem */
.problem-band {
  margin-inline: 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: .32fr 1.68fr;
  gap: 48px;
}

.problem-grid h2 { max-width: 800px; }
.problem-grid p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 24px;
  color: var(--line);
  font-size: 1.15rem;
}

/* Outcomes */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.outcome-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.outcome-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.outcome-number {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.outcome-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 42px 0 28px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 700;
}

.outcome-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: .98rem;
}

/* Product scenes */
.product-scene--mist { background: var(--mist); }

.product-grid {
  display: grid;
  grid-template-columns: minmax(380px, .95fr) minmax(0, 1.05fr);
  gap: clamp(56px, 9vw, 118px);
  align-items: center;
}

.product-grid--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
}

.product-copy h2 { max-width: 670px; }
.product-copy .lede { margin-top: 24px; }

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--muted);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
}

.product-scene .device-stage {
  min-height: 600px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.product-scene:not(.product-scene--mist) .device-stage {
  background: var(--mist);
}

.phone-screen--chat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--mist);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 10px;
  font-size: .78rem;
}

.avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: .67rem;
}

.chat-bubble {
  max-width: 88%;
  padding: 13px 14px;
  border-radius: 16px;
  font-size: .69rem;
  line-height: 1.45;
}

.chat-bubble--user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: var(--teal);
  color: var(--white);
}

.chat-bubble--assistant {
  border-bottom-left-radius: 4px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(23, 63, 64, .08);
}

.save-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  color: var(--teal);
  font-size: .68rem;
  font-weight: 800;
}

.save-row strong {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
}

.phone-screen--review { background: var(--white); }

.review-progress {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--mist);
}

.review-progress i {
  display: block;
  width: 43%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.phone-screen--review > small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .58rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  margin-top: 32px;
  padding: 20px;
  border-radius: 22px;
  background: var(--mist);
}

.review-card > span {
  color: var(--teal);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-card strong {
  margin-top: 16px;
  font-size: .9rem;
  line-height: 1.35;
}

.review-card button {
  min-height: 38px;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font: 800 .66rem var(--font);
}

/* Science */
.science { background: var(--mist); }

.science-heading {
  max-width: 850px;
  margin-bottom: 56px;
}

.science-heading .lede { margin-top: 24px; }

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

.science-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
}

.science-card--habit { background: rgba(241, 200, 156, .38); }

.science-stat {
  color: var(--teal);
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 860;
  line-height: .95;
  letter-spacing: -.06em;
}

.science-card h3 { margin-top: 28px; }
.science-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: .96rem;
}

.science-card small {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 58px 0 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 6px 30px;
  border-left: 1px solid var(--line);
}

.steps li:first-child { border-left: 0; }

.steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 850;
}

.steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
}

/* Privacy */
.privacy-section { padding-top: 24px; }

.privacy-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.privacy-symbol {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  font-size: 1.8rem;
  font-weight: 900;
}

.privacy-panel h2 { max-width: 780px; }

.privacy-panel p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0;
  color: var(--muted);
}

/* Download */
.download-section { padding-top: 32px; }

.download-panel {
  position: relative;
  margin: 0 16px;
  padding: clamp(72px, 9vw, 116px) 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  text-align: center;
}

.download-panel h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.download-panel > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px auto 34px;
  color: var(--mist);
  font-size: 1.12rem;
}

.download-panel .app-store-link {
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
}

.download-decoration i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--warm);
  opacity: .8;
}

.download-decoration i:nth-child(1) { width: 90px; height: 90px; left: 7%; top: 18%; }
.download-decoration i:nth-child(2) { width: 30px; height: 30px; right: 13%; top: 22%; }
.download-decoration i:nth-child(3) { width: 52px; height: 52px; right: 6%; bottom: 12%; }

/* Footer */
.site-footer {
  padding: 38px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 26px;
}

.site-footer nav a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer nav a:hover { color: var(--teal); }

.site-footer p {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .76rem;
}

/* Legal documents */
.document-page { background: var(--mist); }
.document-page .site-header { background: rgba(255, 255, 255, .96); }

.document-shell {
  width: min(calc(100% - 80px), 860px);
  margin: 56px auto 88px;
  padding: clamp(40px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.document-shell > .eyebrow { margin-bottom: 12px; }
.document-shell h1 {
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  margin-bottom: 14px;
}

.document-meta {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

.document-note {
  margin: 30px 0;
  padding: 20px 22px;
  border-left: 5px solid var(--warm);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: rgba(241, 200, 156, .32);
}

.document-shell h2 {
  margin: 48px 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
}

.document-shell h3 {
  margin: 28px 0 10px;
  font-size: 1.18rem;
}

.document-shell p,
.document-shell li {
  color: var(--muted);
}

.document-shell p + p { margin-top: 16px; }
.document-shell ul { display: grid; gap: 10px; }

.document-shell a {
  color: var(--teal);
  font-weight: 700;
  text-underline-offset: 4px;
}

/* Tablet */
@media (max-width: 900px) {
  .shell { width: min(calc(100% - 56px), var(--shell)); }
  section { padding-block: clamp(64px, 9vw, 80px); }

  .hero {
    min-height: auto;
    padding-block: 72px 80px;
  }

  .hero-grid,
  .product-grid,
  .product-grid--reverse {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy { max-width: 720px; }
  .device-stage { width: min(100%, 620px); margin-inline: auto; }

  .product-grid--reverse .product-copy { order: 1; }
  .product-grid--reverse .device-stage { order: 2; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .outcome-grid,
  .science-grid { gap: 18px; }

  .outcome-card,
  .science-card { padding: 24px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps li {
    border-left: 0;
    padding: 0;
  }
}

/* Mobile */
@media (max-width: 640px) {
  html { scroll-padding-top: 78px; }
  .shell { width: calc(100% - 40px); }
  section { padding-block: 56px; }

  .header-row { min-height: 70px; }

  .js .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: var(--mist);
  }

  .nav-toggle > span[aria-hidden="true"] {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-column: 1 / -1;
    gap: 4px;
    padding-bottom: 18px;
  }

  .js .header-row { flex-wrap: wrap; }
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: grid; }

  .site-nav > a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding-inline: 14px;
    border-radius: 12px;
  }

  .site-nav > a:not(.button) { background: var(--mist); }

  h1 { font-size: clamp(3.3rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.3rem); }
  .lede { font-size: 1.04rem; }

  .hero { padding-block: 52px 64px; }
  .hero-grid { gap: 44px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-notes { display: grid; gap: 8px; }

  .device-stage { min-height: 490px; }
  .phone { width: 244px; }
  .phone-screen { min-height: 456px; }
  .orbit--one { right: -18px; }

  .problem-band { margin-inline: 10px; }
  .problem-grid p:not(.eyebrow) { font-size: 1rem; }

  .section-heading,
  .science-heading { margin-bottom: 38px; }

  .outcome-grid,
  .science-grid { grid-template-columns: 1fr; gap: 16px; }
  .outcome-card { min-height: auto; padding: 24px; }
  .outcome-icon { margin: 30px 0 22px; }

  .product-grid,
  .product-grid--reverse { gap: 42px; }
  .product-scene .device-stage { min-height: 530px; }

  .science-card { min-height: 340px; }

  .privacy-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .download-panel {
    margin-inline: 10px;
    padding: 64px 20px;
  }

  .download-decoration i:nth-child(1) { width: 54px; height: 54px; left: -16px; }
  .download-decoration i:nth-child(2) { right: 5%; }

  .footer-grid { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }

  .document-shell {
    width: calc(100% - 24px);
    margin: 24px auto 48px;
    padding: 34px 20px;
    border-radius: 24px;
  }
}

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