@font-face {
  font-family: "Space Mono";
  src: url("assets/fonts/SpaceMono-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #35204f;
  --ink-soft: #59466d;
  --muted: #79638f;
  --lavender: #f5f0ff;
  --lavender-strong: #e9ddf8;
  --butter: #ffe795;
  --butter-soft: #fff5ce;
  --coral: #ffada4;
  --coral-soft: #ffe1dd;
  --paper: #fffdf9;
  --white: #ffffff;
  --green: #52745c;
  --border: rgba(53, 32, 79, 0.14);
  --shadow: 0 24px 70px rgba(67, 43, 88, 0.14);
  --shadow-small: 0 12px 35px rgba(67, 43, 88, 0.1);
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 44px;
  --max: 1180px;
  --font-display: ui-rounded, "Arial Rounded MT Bold", "Avenir Next", Avenir, sans-serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--coral);
}

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

:focus-visible {
  outline: 3px solid #8b5bb6;
  outline-offset: 4px;
}

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

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

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(53, 32, 79, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.025em;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--butter);
  box-shadow: inset 0 -2px 0 rgba(53, 32, 79, 0.08);
}

.brand-mark::before {
  width: 14px;
  height: 8px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  content: "";
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 7px 0 #200f34;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: #4a2967;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 9px 0 #200f34;
}

.button:active {
  transform: translateY(3px);
  box-shadow: 0 4px 0 #200f34;
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 7px 0 rgba(53, 32, 79, 0.25);
}

.button-light:hover {
  background: var(--butter-soft);
}

.hero {
  overflow: hidden;
  position: relative;
  padding: clamp(42px, 5vw, 64px) 0 70px;
  background:
    radial-gradient(circle at 10% 25%, rgba(255, 231, 149, 0.45), transparent 21%),
    radial-gradient(circle at 89% 18%, rgba(233, 221, 248, 0.85), transparent 25%),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: -60px;
  bottom: 70px;
  width: 190px;
  height: 190px;
  border-radius: 45% 55% 63% 37%;
  background: var(--coral-soft);
  content: "";
  opacity: 0.8;
  transform: rotate(14deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 36px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 3px;
  border-radius: 4px;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 13ch;
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
  font-size: clamp(3.25rem, 7vw, 5.3rem);
  font-weight: 900;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2.2vw, 1.36rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.hero-scene {
  position: relative;
  z-index: 3;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(18px, 3vw, 42px);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(53, 32, 79, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #f0e8fd 0%, #f9f4ff 48%, #fff3cb 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-scene::before {
  position: absolute;
  top: -95px;
  left: -65px;
  width: 300px;
  height: 260px;
  border: 30px solid rgba(255, 231, 149, 0.75);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(8deg);
}

.illustration-wrap {
  position: relative;
  min-width: 0;
  align-self: end;
}

.desk-illustration {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 510px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 18px rgba(53, 32, 79, 0.1));
}

.scene-note {
  position: absolute;
  z-index: 4;
  top: 3%;
  left: 0;
  width: 145px;
  color: var(--ink-soft);
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.45;
  transform: rotate(-4deg);
}

.scene-note::after {
  display: block;
  width: 74px;
  height: 2px;
  margin: 8px 0 0 18px;
  background: currentColor;
  content: "";
  transform: rotate(-7deg);
}

.notification {
  position: relative;
  z-index: 5;
  width: min(330px, 100%);
  margin: 0 0 24px auto;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(53, 32, 79, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.notification-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--lavender-strong), var(--butter));
  font-size: 1.3rem;
}

.notification strong,
.notification span {
  display: block;
  line-height: 1.25;
}

.notification strong {
  font-size: 0.72rem;
}

.notification span {
  margin-top: 3px;
  font-size: 0.78rem;
}

.notification time {
  align-self: start;
  color: var(--muted);
  font-size: 0.67rem;
}

.notification .notification-icon {
  display: grid;
  margin-top: 0;
  font-size: 1.5rem;
}

.phone {
  position: relative;
  z-index: 4;
  width: min(100%, 324px);
  min-height: 552px;
  justify-self: center;
  padding: 12px;
  border: 7px solid #3c2d4b;
  border-radius: 46px;
  background: #6d5b7c;
  box-shadow: 0 26px 45px rgba(48, 26, 67, 0.27), inset 0 0 0 2px #b4a7bf;
  transform: rotate(1.5deg);
}

.phone-screen {
  min-height: 514px;
  padding: 21px 15px 18px;
  border-radius: 33px;
  background: linear-gradient(180deg, #fffefc, #fbf7ff);
  text-align: center;
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  padding: 0 5px;
  font-size: 0.65rem;
  font-weight: 800;
}

.phone-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
}

.phone-brand .mini-sun {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--butter);
}

.phone h2 {
  margin-bottom: 22px;
  font-size: 1.75rem;
}

.check-in {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  padding: 12px 17px;
  border: 0;
  border-radius: 21px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.check-in:hover {
  transform: translateY(-2px);
}

.check-in[aria-pressed="true"] {
  box-shadow: inset 0 0 0 3px var(--ink);
}

.check-in-good {
  background: linear-gradient(120deg, #ffe8a3, #ffdb78);
}

.check-in-adjust {
  background: linear-gradient(120deg, #ffd1cb, #ffada4);
}

.face {
  position: relative;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0;
}

.face::before {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 12px 0 currentColor;
  content: "";
}

.face::after {
  position: absolute;
  bottom: 8px;
  left: 9px;
  width: 16px;
  height: 7px;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 16px 16px;
  content: "";
}

.check-in-adjust .face::after {
  bottom: 7px;
  border-top: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.next-check {
  margin-top: 18px;
  padding: 14px;
  border-radius: 20px;
  background: var(--lavender);
  line-height: 1.1;
}

.next-check span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.78rem;
  font-weight: 700;
}

.next-check strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
}

.phone-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: clamp(74px, 10vw, 126px) 0;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 5vw, 4.25rem);
}

.section-intro {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.rhythm {
  background: var(--lavender);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.schedule-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.schedule-card::before {
  position: absolute;
  top: -16px;
  left: 42%;
  width: 82px;
  height: 30px;
  background: rgba(255, 231, 149, 0.75);
  content: "";
  transform: rotate(3deg);
}

.schedule-card h3 {
  margin-bottom: 24px;
  font-size: 1.45rem;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.day {
  text-align: center;
}

.day abbr {
  display: block;
  margin-bottom: 8px;
  border: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.day span {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--lavender-strong);
  border-radius: 12px;
  background: var(--lavender);
  font-weight: 900;
}

.day.off span {
  background: var(--white);
  color: var(--muted);
}

.window-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding: 15px 17px;
  border-radius: 16px;
  background: var(--butter-soft);
  font-size: 0.9rem;
  font-weight: 750;
}

.story-list {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.story-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
}

.story-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--butter);
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  font-weight: 800;
  transform: rotate(-4deg);
}

.story-item:nth-child(2) .story-number {
  background: var(--coral-soft);
  transform: rotate(4deg);
}

.story-item:nth-child(3) .story-number {
  background: var(--lavender-strong);
}

.story-item h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.story-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.steps-header {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
}

.steps-header .section-heading,
.steps-header .section-intro {
  margin-right: auto;
  margin-left: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.step-card:nth-child(2) {
  background: var(--butter-soft);
}

.step-card:nth-child(3) {
  background: var(--coral-soft);
}

.step-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 23px;
  background: var(--lavender-strong);
  font-size: 1.8rem;
  transform: rotate(-5deg);
}

.step-card:nth-child(2) .step-icon {
  background: var(--white);
  transform: rotate(4deg);
}

.step-card:nth-child(3) .step-icon {
  background: var(--white);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
}

.quiet-tools {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.quiet-tools::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: #503269;
  content: "";
}

.tools-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.quiet-tools .section-kicker,
.quiet-tools .section-intro {
  color: #d6c9e3;
}

.tool-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.tool-card {
  min-height: 160px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
}

.tool-card:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 130px;
}

.tool-card span {
  font-size: 1.7rem;
}

.tool-card h3 {
  margin: 14px 0 7px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.tool-card p {
  margin: 0;
  color: #d6c9e3;
  font-size: 0.9rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -5px 44px 24px 0;
  color: var(--ink-soft);
}

.final-cta {
  padding-top: 0;
}

.cta-panel {
  position: relative;
  padding: clamp(46px, 7vw, 82px) clamp(28px, 8vw, 96px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--butter) 0%, #ffeab0 48%, var(--coral-soft) 100%);
  text-align: center;
  overflow: hidden;
}

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

.cta-panel::before {
  top: -90px;
  left: -50px;
  width: 220px;
  height: 220px;
  border: 28px solid rgba(255, 255, 255, 0.45);
}

.cta-panel::after {
  right: -35px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  background: rgba(233, 221, 248, 0.7);
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  max-width: 700px;
  margin: 0 auto 18px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.cta-panel p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--paper);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-meta {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
  font-size: 0.88rem;
  font-weight: 700;
}

/* Legal and support pages */
.subpage {
  background:
    radial-gradient(circle at 90% 0%, rgba(233, 221, 248, 0.7), transparent 25%),
    var(--lavender);
}

.subpage .site-header {
  background: rgba(245, 240, 255, 0.88);
}

.subpage-main {
  padding: clamp(54px, 8vw, 96px) 0 clamp(80px, 10vw, 130px);
}

.page-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.page-heading h1 {
  max-width: 12ch;
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.page-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.legal-card {
  max-width: 880px;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card .effective-date {
  display: inline-block;
  margin: 0 0 28px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--butter-soft);
  color: var(--ink-soft);
  font-family: "Space Mono", monospace;
  font-size: 0.76rem;
  font-style: normal;
}

.legal-card h2 {
  margin: 48px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.legal-card p,
.legal-card li {
  color: #4f3b61;
}

.legal-card p {
  margin: 0 0 18px;
}

.legal-card ul {
  margin: 0 0 22px;
  padding-left: 1.25em;
}

.legal-card li {
  margin-bottom: 12px;
  padding-left: 7px;
}

.legal-card a:not(.button) {
  color: #654184;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-weight: 800;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 22px;
}

.support-aside,
.support-content {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.support-aside {
  align-self: start;
  background: var(--butter-soft);
}

.support-aside .mail-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 24px;
  background: var(--white);
  font-size: 2rem;
  transform: rotate(-5deg);
}

.support-aside h2,
.support-content h2 {
  margin-bottom: 13px;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.support-aside p,
.support-content p,
.support-content li {
  color: var(--ink-soft);
}

.contact-email {
  display: block;
  margin-top: 22px;
  font-size: 0.92rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.support-content ul {
  margin: 22px 0 30px;
  padding-left: 1.25em;
}

.support-content li {
  margin-bottom: 12px;
  padding-left: 7px;
}

@media (max-width: 900px) {
  .site-nav > a:not(.button) {
    display: none;
  }

  .hero-scene {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    padding: 32px 24px;
  }

  .scene-note {
    display: none;
  }

  .notification {
    margin-bottom: 20px;
  }

  .rhythm-grid,
  .tools-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .rhythm-grid,
  .faq-layout {
    gap: 48px;
  }

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

  .step-card:last-child {
    grid-column: 1 / -1;
    min-height: 240px;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .site-nav .button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.8rem;
    box-shadow: 0 5px 0 #200f34;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.4rem);
  }

  .hero-copy {
    margin-bottom: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-scene {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 16px;
    border-radius: 32px;
  }

  .illustration-wrap {
    min-height: 250px;
  }

  .desk-illustration {
    max-height: 340px;
  }

  .notification {
    width: min(300px, 100%);
  }

  .phone {
    width: min(100%, 300px);
    min-height: 526px;
    transform: none;
  }

  .phone-screen {
    min-height: 488px;
  }

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

  .step-card,
  .step-card:last-child {
    min-height: auto;
    grid-column: auto;
  }

  .step-icon {
    margin-bottom: 36px;
  }

  .tool-cards {
    grid-template-columns: 1fr;
  }

  .tool-card:nth-child(3) {
    grid-column: auto;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }

  .legal-card {
    border-radius: 28px;
  }

  .page-heading h1 {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
  }
}

@media (max-width: 380px) {
  body {
    font-size: 16px;
  }

  .brand span {
    max-width: 100px;
    line-height: 1.05;
  }

  .site-nav .button {
    padding-inline: 12px;
  }

  .notification {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-bottom: 14px;
  }

  .illustration-wrap {
    min-height: auto;
  }

  .weekdays {
    gap: 5px;
  }

  .day span {
    border-radius: 9px;
  }

  .support-aside,
  .support-content {
    padding: 24px 20px;
  }
}

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