:root {
  --blue: #267bd9;
  --blue-dark: #105ea9;
  --blue-soft: #ddebff;
  --ink: #17202a;
  --muted: #66717e;
  --cream: #fffaf0;
  --paper: #fffef9;
  --yellow: #ffd95a;
  --yellow-soft: #fff1a8;
  --coral: #ff806b;
  --coral-soft: #ffd5cd;
  --mint: #a9e5c8;
  --mint-dark: #3a9471;
  --lilac: #d9c6ff;
  --line: #dce4e8;
  --shadow: 0 20px 60px rgba(42, 55, 71, 0.14);
  --soft-shadow: 0 12px 30px rgba(42, 55, 71, 0.1);
  --radius: 28px;
  --rounded: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", "Avenir Next Rounded", system-ui, sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  overflow-x: hidden;
}

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

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 24px;
  transition: padding 0.25s ease;
}

.site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-shell {
  width: min(1180px, 100%);
  min-height: 60px;
  margin: 0 auto;
  padding: 8px 10px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 254, 249, 0.85);
  box-shadow: 0 7px 22px rgba(29, 43, 58, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--rounded);
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand img {
  width: 39px;
  height: 39px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #4d5864;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta):not(.language-switch) {
  position: relative;
}

.site-nav > a:not(.nav-cta):not(.language-switch)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  color: #fff;
  border-radius: 14px;
  background: var(--blue);
  box-shadow: 0 6px 0 var(--blue-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--blue-dark);
}

.language-switch {
  min-width: 42px;
  padding: 7px 10px;
  border: 1px solid rgba(38, 123, 217, 0.22);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.language-switch:hover {
  background: #cde2ff;
  transform: rotate(-3deg);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 13px;
  background: var(--blue-soft);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 178px max(24px, calc((100vw - 1180px) / 2)) 92px;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.12fr);
  gap: 44px;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 17%, rgba(255, 217, 90, 0.45), transparent 21%),
    radial-gradient(circle at 87% 23%, rgba(217, 198, 255, 0.54), transparent 24%),
    linear-gradient(180deg, #fffaf0 0%, #fffdf7 74%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 136px;
  right: -120px;
  width: 530px;
  height: 530px;
  border: 2px dashed rgba(38, 123, 217, 0.2);
  border-radius: 50%;
}

.hero-cloud {
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 42px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(0.2px);
}

.hero-cloud::before,
.hero-cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
}

.hero-cloud::before {
  left: 24px;
  width: 66px;
  height: 66px;
}

.hero-cloud::after {
  right: 20px;
  width: 48px;
  height: 48px;
}

.cloud-one {
  top: 190px;
  left: -35px;
}

.cloud-two {
  right: 26%;
  bottom: 168px;
  transform: scale(0.7);
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 13px;
  border: 1.5px solid rgba(38, 123, 217, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 5px 15px rgba(46, 74, 104, 0.05);
}

.eyebrow span {
  color: var(--coral);
  font-size: 16px;
}

.hero h1 {
  margin: 28px 0 24px;
  font-family: var(--rounded);
  font-size: clamp(58px, 6.3vw, 94px);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.067em;
}

.scribble {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--blue);
}

.scribble::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2%;
  bottom: -5%;
  width: 106%;
  height: 20%;
  border-radius: 55% 45% 50% 44%;
  background: var(--yellow);
  transform: rotate(-2deg);
}

.hero-copy > p {
  max-width: 540px;
  margin: 0;
  color: #56626e;
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 17px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 7px 0 var(--blue-dark), 0 16px 30px rgba(38, 123, 217, 0.22);
}

.button-primary:hover {
  transform: translateY(3px) rotate(-0.5deg);
  box-shadow: 0 4px 0 var(--blue-dark), 0 12px 25px rgba(38, 123, 217, 0.2);
}

.micro-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mini-sun {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #9c7200;
  border-radius: 50%;
  background: var(--yellow-soft);
  animation: spin-slow 10s linear infinite;
}

.hero-stage {
  position: relative;
  min-width: 0;
  transform: rotate(1.3deg);
}

.app-window {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  margin-left: auto;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 34px;
  background: #f8fafc;
  box-shadow: 0 35px 90px rgba(39, 54, 76, 0.2), 0 10px 0 rgba(23, 32, 42, 0.04);
}

.window-bar {
  height: 55px;
  padding: 0 17px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #e5eaf0;
  background: rgba(255, 255, 255, 0.95);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.window-dots i:nth-child(2) {
  background: var(--yellow);
}

.window-dots i:nth-child(3) {
  background: var(--mint);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--rounded);
  font-size: 14px;
  font-weight: 850;
}

.window-brand img {
  width: 23px;
  height: 23px;
}

.avatar {
  justify-self: end;
  width: 29px;
  height: 29px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #5d3e20;
  background: var(--yellow-soft);
  font-size: 11px;
  font-weight: 850;
}

.window-body {
  min-height: 510px;
  display: flex;
}

.app-sidebar {
  width: 62px;
  padding: 14px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  color: #798594;
  border-right: 1px solid #e4eaf0;
  background: #fff;
}

.side-logo {
  width: 33px;
  height: 33px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: transparent;
}

.side-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.side-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 900;
}

.side-icon.active {
  color: var(--blue);
  background: var(--blue-soft);
}

.side-bottom {
  margin-top: auto;
  color: #8c6fb3;
  background: #f0e9ff;
}

.today-preview {
  min-width: 0;
  flex: 1;
  padding: 30px 31px 34px;
  background:
    linear-gradient(rgba(247, 250, 252, 0.88), rgba(247, 250, 252, 0.88)),
    radial-gradient(#cbd6e1 0.8px, transparent 0.8px);
  background-size: auto, 18px 18px;
}

.today-heading {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.today-heading span {
  color: #8b95a1;
  font-size: 11px;
  font-weight: 700;
}

.today-heading h2 {
  margin: 4px 0 0;
  font-family: var(--rounded);
  font-size: 30px;
  letter-spacing: -0.045em;
}

.today-heading h2 i {
  display: inline-block;
  font-style: normal;
  transform-origin: 80% 80%;
  animation: wave 2.6s ease-in-out infinite;
}

.round-add {
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 5px 0 var(--blue-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.round-add:hover {
  transform: translateY(2px) rotate(6deg);
  box-shadow: 0 3px 0 var(--blue-dark);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 13px;
}

.preview-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid #e6ebf0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(46, 61, 78, 0.06);
}

.card-label {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 850;
}

.card-label b {
  margin-left: auto;
  color: #8a95a2;
  font-size: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.coral {
  background: var(--coral);
}

.dot.yellow {
  background: var(--yellow);
}

.dot.blue {
  background: var(--blue);
}

.agenda-item {
  padding: 8px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  border-top: 1px solid #edf0f3;
  font-size: 10px;
}

.agenda-item time {
  color: #8a95a2;
  font-weight: 700;
}

.agenda-item span {
  display: grid;
}

.agenda-item b {
  font-size: 10px;
}

.agenda-item small {
  margin-top: 2px;
  color: #8a95a2;
  font-size: 8px;
}

.inbox-card {
  background: #fffaf0;
}

.inbox-card p {
  margin: 7px 0;
  overflow: hidden;
  color: #596472;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inbox-card button {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: 1px dashed #e2c85f;
  border-radius: 10px;
  color: #6f601e;
  background: var(--yellow-soft);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.inbox-card button span {
  margin-right: 3px;
  font-size: 12px;
}

.todo-card label {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #54606d;
  font-size: 9px;
}

.todo-card input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--blue);
}

.todo-card input:checked + span {
  color: #9aa3ae;
  text-decoration: line-through;
}

.note-card {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #315442;
  border-color: #d8eddf;
  background: #e9f7ef;
}

.note-face {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  font-size: 20px;
}

.note-card div:last-child {
  display: grid;
}

.note-card span {
  color: var(--mint-dark);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.note-card b {
  margin-top: 3px;
  font-family: var(--rounded);
  font-size: 10px;
}

.doodle,
.speech-bubble,
.float-pill {
  position: absolute;
  z-index: 4;
}

.doodle-star {
  top: -54px;
  right: 32px;
  color: var(--coral);
  font-size: 48px;
  transform: rotate(18deg);
  animation: bob 3.5s ease-in-out infinite;
}

.doodle-flower {
  right: -28px;
  bottom: 52px;
  width: 74px;
  height: 74px;
  animation: spin-slow 14s linear infinite;
}

.doodle-flower span {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 32px;
  height: 32px;
  border-radius: 80% 40% 70% 45%;
  background: var(--lilac);
  transform-origin: 16px 16px;
}

.doodle-flower span:nth-child(2) {
  transform: rotate(90deg) translateX(22px);
}

.doodle-flower span:nth-child(3) {
  transform: rotate(180deg) translateX(22px);
}

.doodle-flower span:nth-child(4) {
  transform: rotate(270deg) translateX(22px);
}

.doodle-flower i {
  position: absolute;
  top: 27px;
  left: 27px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
}

.speech-bubble {
  top: 62px;
  left: -33px;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: 18px 18px 5px 18px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--rounded);
  font-size: 13px;
  font-weight: 850;
  transform: rotate(-7deg);
  animation: bob 4.2s 0.6s ease-in-out infinite;
}

.float-pill {
  padding: 9px 13px;
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  font-size: 10px;
  font-weight: 800;
}

.float-pill b {
  margin-right: 5px;
}

.pill-task {
  right: -25px;
  top: 170px;
  color: #2d684d;
  background: #ddf5e7;
  transform: rotate(6deg);
}

.pill-note {
  left: 5px;
  bottom: -20px;
  color: #7d4b3d;
  background: #ffd9d1;
  transform: rotate(-4deg);
}

.marquee {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: -2%;
  width: 104%;
  overflow: hidden;
  color: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--yellow);
  transform: rotate(-1deg);
}

.marquee-track {
  width: max-content;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--rounded);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  animation: marquee 25s linear infinite;
}

.marquee-track b {
  color: var(--blue);
  font-size: 18px;
}

.section-pad {
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
}

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

.section-heading h2,
.local-copy h2,
.day-heading h2,
.hello-copy h2 {
  margin: 16px 0 20px;
  font-family: var(--rounded);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading h2 em,
.local-copy h2 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

.section-heading h2 em::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -7px;
  width: 78%;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  transform: rotate(-1deg);
}

.section-heading > p,
.day-heading > p {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.feature-section {
  position: relative;
  background: #fff;
}

.feature-section::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -50px;
  width: 150px;
  height: 150px;
  border: 28px solid var(--mint);
  border-radius: 50%;
  opacity: 0.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 590px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 42, 0.08);
  border-radius: 35px;
}

.feature-copy {
  position: relative;
  z-index: 3;
}

.number {
  width: 37px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.feature-copy h3 {
  max-width: 520px;
  margin: 20px 0 13px;
  font-family: var(--rounded);
  font-size: clamp(29px, 3.3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.feature-copy p {
  max-width: 480px;
  margin: 0;
  color: #596573;
  font-size: 16px;
  line-height: 1.65;
}

.capture-feature {
  grid-column: 1 / -1;
  min-height: 490px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  color: #4d3c05;
  background: var(--yellow-soft);
}

.capture-feature::before,
.capture-feature::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(77, 60, 5, 0.12);
  border-radius: 50%;
}

.capture-feature::before {
  right: -110px;
  bottom: -200px;
  width: 450px;
  height: 450px;
}

.capture-feature::after {
  right: -20px;
  bottom: -115px;
  width: 280px;
  height: 280px;
}

.capture-demo {
  position: relative;
  z-index: 2;
  padding: 27px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: #fffef9;
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(1.5deg);
}

.capture-demo > label {
  display: block;
  margin-bottom: 11px;
  color: #7b7048;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capture-input-row {
  display: flex;
  gap: 10px;
}

.capture-input-row input {
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  flex: 1;
  border: 2px solid #ded8bd;
  border-radius: 16px;
  background: #fff;
  outline: 0;
}

.capture-input-row input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.capture-input-row button {
  width: 56px;
  height: 56px;
  padding: 0;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.capture-input-row button:hover {
  transform: rotate(-7deg) scale(1.04);
}

.capture-input-row svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capture-result {
  position: relative;
  margin-top: 16px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid #e5e8eb;
  border-radius: 15px;
  background: #f8fafc;
}

.capture-result > span {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
}

.capture-result p {
  min-width: 0;
  margin: 0;
  display: grid;
}

.capture-result b {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.capture-result small {
  color: #8a95a1;
  font-size: 10px;
}

.capture-result i {
  margin-left: auto;
  color: var(--coral);
  font-style: normal;
  font-size: 20px;
}

.capture-result.pop {
  animation: result-pop 0.45s ease;
}

.together-feature {
  color: #49356e;
  background: #eee7ff;
}

.orbit-demo {
  position: absolute;
  right: 6%;
  bottom: -34px;
  left: 6%;
  height: 350px;
}

.orbit {
  position: absolute;
  top: 45%;
  left: 50%;
  border: 2px dashed rgba(73, 53, 110, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.orbit-one {
  width: 310px;
  height: 215px;
}

.orbit-two {
  width: 430px;
  height: 300px;
  transform: translate(-50%, -50%) rotate(17deg);
}

.orbit-kio {
  position: absolute;
  z-index: 2;
  top: 44%;
  left: 50%;
  width: 100px;
  height: 100px;
  padding: 17px;
  border: 7px solid #fff;
  border-radius: 31px;
  background: #fff;
  box-shadow: 0 15px 30px rgba(71, 48, 114, 0.2);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.orbit-kio img {
  width: 100%;
  height: 100%;
}

.orbit-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 15px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  color: var(--ink);
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--rounded);
  font-size: 13px;
  font-weight: 850;
}

.orbit-chip i {
  color: var(--blue);
  font-style: normal;
}

.chip-calendar {
  top: 15px;
  left: 9%;
  transform: rotate(-8deg);
  animation: bob 4s ease-in-out infinite;
}

.chip-todos {
  top: 98px;
  right: 3%;
  transform: rotate(6deg);
  animation: bob 4.6s 0.5s ease-in-out infinite;
}

.chip-notes {
  left: 10%;
  bottom: 38px;
  transform: rotate(4deg);
  animation: bob 3.8s 0.8s ease-in-out infinite;
}

.orbit-spark {
  position: absolute;
  right: 18%;
  bottom: 51px;
  color: var(--coral);
  font-size: 35px;
}

.arrange-feature {
  color: #225c46;
  background: #ddf5e7;
}

.arrange-demo {
  position: absolute;
  right: 7%;
  bottom: -45px;
  left: 7%;
  min-height: 340px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 28px 28px 0 0;
  background: #fff;
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.arrange-top {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrange-top b {
  font-family: var(--rounded);
  font-size: 20px;
}

.arrange-top span {
  padding: 5px 8px;
  border-radius: 7px;
  color: var(--mint-dark);
  background: #e9f7ef;
  font-size: 9px;
  font-weight: 850;
}

.arrange-list {
  display: grid;
  gap: 9px;
}

.arrange-row {
  width: 100%;
  min-height: 57px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 35px 1fr 20px;
  align-items: center;
  gap: 8px;
  border: 1px solid #e3e8ed;
  border-radius: 15px;
  text-align: left;
  background: #fff;
  box-shadow: 0 5px 12px rgba(47, 66, 57, 0.06);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.arrange-row:hover {
  z-index: 2;
  transform: translateY(-4px) rotate(1deg);
  box-shadow: 0 10px 20px rgba(47, 66, 57, 0.12);
}

.arrange-row span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 14px;
}

.row-agenda span {
  color: #805b00;
  background: var(--yellow-soft);
}

.row-inbox span {
  color: #8a4b3f;
  background: var(--coral-soft);
}

.row-todos span {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.arrange-row b {
  font-size: 12px;
}

.arrange-row i {
  color: #9aa4ae;
  font-style: normal;
  font-size: 18px;
}

.arrange-row.moving {
  animation: move-row 0.4s ease;
}

.arrange-hint {
  margin: 15px 0 0;
  color: #7c8792;
  font-size: 10px;
  text-align: center;
}

.local-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}

.local-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -150px;
  width: 500px;
  height: 500px;
  border: 90px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.local-section::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -170px;
  width: 500px;
  height: 500px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.local-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

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

.local-copy h2 {
  margin-top: 19px;
  font-size: clamp(50px, 6vw, 76px);
}

.local-copy h2 em {
  color: var(--yellow);
}

.local-copy h2 em::after {
  content: "";
  position: absolute;
  right: -13px;
  bottom: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.local-copy > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

.privacy-pills {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 750;
}

.privacy-pills b {
  margin-right: 5px;
  color: var(--yellow);
}

.local-visual {
  position: relative;
  min-height: 520px;
}

.sync-path {
  position: absolute;
  z-index: 1;
  top: 85px;
  left: 50%;
  width: 94%;
  max-width: 550px;
  transform: translateX(-50%);
}

.sync-path path:first-child {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 8;
  stroke-linecap: round;
}

.sync-dash {
  stroke: var(--yellow);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 14;
  animation: dash 3s linear infinite;
}

.device {
  position: absolute;
  padding: 15px;
  border: 4px solid var(--ink);
  background: #eef4fa;
  box-shadow: 12px 13px 0 rgba(23, 32, 42, 0.42);
}

.phone-device {
  z-index: 3;
  top: 184px;
  left: 4%;
  width: 170px;
  height: 280px;
  border-radius: 28px;
  transform: rotate(-8deg);
}

.tablet-device {
  z-index: 2;
  top: 56px;
  right: 1%;
  width: 340px;
  height: 255px;
  border-radius: 30px;
  transform: rotate(7deg);
}

.device::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 86% 15%, var(--coral) 0 7px, transparent 8px),
    linear-gradient(145deg, #fff 0%, #f7faff 100%);
}

.device-camera {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 27px;
  height: 5px;
  border-radius: 5px;
  background: var(--ink);
  transform: translateX(-50%);
}

.device-note {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 133px;
  padding: 31px 18px 14px;
  display: grid;
  gap: 11px;
  border-radius: 8px 18px 8px 8px;
  background: #fffdf7;
  box-shadow: 0 12px 22px rgba(38, 63, 89, 0.16);
  transform: translate(-50%, -50%);
}

.device-note i {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(225deg, #dce8f5 50%, transparent 51%);
}

.device-note b {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: #9aabbc;
}

.device-note b:nth-of-type(2) {
  width: 78%;
}

.device-note b:nth-of-type(3) {
  width: 56%;
}

.device-note small {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 11px;
  background: var(--blue);
  box-shadow: 0 5px 10px rgba(26, 82, 143, 0.24);
  font-size: 15px;
  font-weight: 900;
}

.phone-device .device-note {
  width: 92px;
  height: 115px;
}

.no-cloud {
  position: absolute;
  z-index: 5;
  right: 33%;
  bottom: 20px;
  padding: 12px 14px;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 17px 17px 17px 4px;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--rounded);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  transform: rotate(-4deg);
}

.no-cloud span {
  margin-left: 4px;
  font-size: 16px;
}

.local-star {
  position: absolute;
  z-index: 4;
  color: var(--yellow);
  font-size: 36px;
  animation: bob 4s ease-in-out infinite;
}

.star-a {
  top: 25px;
  left: 22%;
}

.star-b {
  right: -10px;
  bottom: 80px;
  color: var(--coral);
  font-size: 27px;
  animation-delay: 0.8s;
}

.day-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 217, 90, 0.2), transparent 20%),
    #fffaf0;
}

.day-heading {
  margin-bottom: 65px;
  text-align: center;
}

.day-steps {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: center;
}

.day-step {
  text-align: center;
}

.step-time {
  display: inline-block;
  margin-bottom: 15px;
  padding: 7px 12px;
  border: 1px solid #d7dfe6;
  border-radius: 999px;
  color: #6c7782;
  background: #fff;
  font-size: 10px;
  font-weight: 850;
}

.step-illustration {
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 270px;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 7px 8px 0 var(--ink);
}

.thought-illustration {
  display: grid;
  place-items: center;
  background: var(--lilac);
}

.thought-illustration::before,
.thought-illustration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.thought-illustration::before {
  top: -48px;
  right: -38px;
  width: 180px;
  height: 180px;
}

.thought-illustration::after {
  bottom: -64px;
  left: -44px;
  width: 170px;
  height: 170px;
}

.thought-illustration span {
  z-index: 2;
  padding: 19px 24px;
  border: 2px solid var(--ink);
  border-radius: 24px 24px 5px 24px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
  font-family: var(--rounded);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
  transform: rotate(-5deg);
}

.thought-illustration i {
  position: absolute;
  top: 33px;
  right: 35px;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--rounded);
  font-style: normal;
  font-weight: 900;
  transform: rotate(9deg);
}

.inbox-illustration {
  display: grid;
  place-items: center;
  background: var(--yellow-soft);
}

.inbox-illustration::after {
  content: "";
  position: absolute;
  bottom: -55px;
  width: 250px;
  height: 130px;
  border: 3px solid var(--ink);
  border-radius: 20px 20px 0 0;
  background: var(--blue);
}

.inbox-illustration > div {
  position: relative;
  z-index: 2;
  width: 220px;
  padding: 17px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 17px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
  text-align: left;
  transform: rotate(4deg);
}

.inbox-illustration div i {
  width: 25px;
  height: 25px;
  grid-row: 1 / 3;
  border-radius: 8px;
  background: var(--coral-soft);
}

.inbox-illustration div b {
  font-size: 12px;
}

.inbox-illustration div small {
  color: #87919c;
  font-size: 9px;
}

.inbox-illustration > span {
  position: absolute;
  z-index: 4;
  right: 38px;
  bottom: 32px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--mint-dark);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
}

.done-illustration {
  background: #bfe5ff;
}

.sunset {
  position: absolute;
  right: 45px;
  bottom: 60px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 18px rgba(255, 217, 90, 0.2);
}

.done-illustration::before,
.done-illustration::after {
  content: "";
  position: absolute;
  bottom: -55px;
  border-radius: 50% 50% 0 0;
  background: var(--mint-dark);
}

.done-illustration::before {
  left: -20px;
  width: 230px;
  height: 140px;
  transform: rotate(8deg);
}

.done-illustration::after {
  right: -60px;
  width: 250px;
  height: 120px;
  background: #69bd94;
  transform: rotate(-8deg);
}

.done-illustration > span {
  position: absolute;
  z-index: 3;
  top: 52px;
  left: 35px;
  padding: 9px 14px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--rounded);
  font-weight: 850;
  transform: rotate(-7deg);
}

.done-illustration > i {
  position: absolute;
  z-index: 4;
  right: 25px;
  top: 25px;
  color: var(--coral);
  font-style: normal;
  font-size: 32px;
  transform: rotate(12deg);
}

.day-step h3 {
  margin: 0 0 8px;
  font-family: var(--rounded);
  font-size: 23px;
  letter-spacing: -0.035em;
}

.day-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step-arrow {
  color: var(--blue);
  font-family: var(--rounded);
  font-size: 35px;
  font-weight: 900;
  text-align: center;
}

.hello-section {
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 90px;
  background: #fffaf0;
}

.hello-card {
  position: relative;
  min-height: 570px;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 44px;
  background: var(--coral-soft);
  box-shadow: 11px 12px 0 var(--ink);
}

.hello-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.8;
}

.hello-copy {
  position: relative;
  z-index: 3;
}

.hello-copy h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.hello-copy > p {
  margin: 0 0 30px;
  color: #6d514a;
  font-size: 18px;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 7px 0 #000, 0 16px 25px rgba(23, 32, 42, 0.15);
}

.button-dark:hover {
  transform: translateY(3px) rotate(0.5deg);
  box-shadow: 0 4px 0 #000, 0 11px 20px rgba(23, 32, 42, 0.14);
}

.mascot {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin: auto;
  border: 3px solid var(--ink);
  border-radius: 48% 52% 48% 52% / 55% 48% 52% 45%;
  background: var(--blue);
  box-shadow: 13px 14px 0 var(--ink);
  transform: rotate(-4deg);
}

.mascot::before {
  content: "";
  position: absolute;
  top: 13%;
  left: 14%;
  width: 31%;
  height: 15%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.23);
  transform: rotate(-18deg);
}

.mascot-face {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 150px;
  height: 85px;
  transform: translate(-50%, -50%);
}

.mascot-face i {
  position: absolute;
  top: 5px;
  width: 20px;
  height: 29px;
  border-radius: 50%;
  background: var(--ink);
}

.mascot-face i:first-child {
  left: 25px;
}

.mascot-face i:nth-child(2) {
  right: 25px;
}

.mascot-face i::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.mascot-face b {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 62px;
  height: 29px;
  border: 5px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 40px 40px;
  transform: translateX(-50%);
}

.mascot-arm {
  position: absolute;
  top: 52%;
  width: 45%;
  height: 26px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--blue);
}

.arm-left {
  left: -30%;
  transform: rotate(26deg);
}

.arm-right {
  right: -28%;
  transform-origin: left center;
  transform: rotate(-39deg);
  animation: mascot-wave 2.5s ease-in-out infinite;
}

.hello-spark {
  position: absolute;
  z-index: 4;
  font-size: 36px;
}

.spark-one {
  top: 50px;
  left: 45%;
  color: var(--blue);
  animation: bob 3s ease-in-out infinite;
}

.spark-two {
  right: 43px;
  bottom: 36px;
  color: var(--blue);
  font-size: 48px;
  animation: spin-slow 9s linear infinite;
}

.spark-three {
  bottom: 45px;
  left: 48%;
  color: var(--coral);
  transform: rotate(-12deg);
}

.site-footer {
  min-height: 150px;
  padding: 40px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  border-top: 1px solid #dce2e7;
  background: #fff;
}

.footer-brand {
  font-size: 22px;
}

.site-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: #53606d;
  font-size: 12px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--blue);
}

.copyright {
  color: #929ca6;
  font-size: 11px;
}

.icp-link {
  white-space: nowrap;
  transition: color 0.2s ease;
}

.icp-link:hover {
  color: var(--blue);
}

.capture-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.capture-modal[hidden] {
  display: none;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(23, 32, 42, 0.48);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: default;
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  padding: 42px;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: #fffdf7;
  box-shadow: 10px 11px 0 var(--ink);
  text-align: center;
  animation: modal-in 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #edf1f4;
  font-size: 22px;
  cursor: pointer;
}

.modal-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 18px;
  background: var(--blue-soft);
  font-size: 28px;
}

.modal-card h2 {
  margin: 0 0 5px;
  font-family: var(--rounded);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.modal-card > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.modal-card form {
  display: grid;
  gap: 12px;
}

.modal-card input {
  width: 100%;
  height: 58px;
  padding: 0 17px;
  border: 2px solid #dce3e9;
  border-radius: 16px;
  background: #fff;
  outline: 0;
}

.modal-card input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.modal-success {
  padding: 17px;
  display: grid;
  border-radius: 17px;
  color: #285a47;
  background: #ddf5e7;
}

.modal-success[hidden] {
  display: none;
}

.modal-success span {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--mint-dark);
  font-size: 21px;
  font-weight: 900;
}

.modal-success small {
  margin-top: 3px;
  color: #5c7d70;
}

.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.reveal-late {
  transition-delay: 0.13s;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes wave {
  0%,
  60%,
  100% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(18deg);
  }
  80% {
    transform: rotate(-8deg);
  }
  90% {
    transform: rotate(12deg);
  }
}

@keyframes bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes spin-slow {
  to {
    rotate: 360deg;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes result-pop {
  0% {
    transform: scale(0.95);
    opacity: 0.4;
  }
  65% {
    transform: scale(1.02) rotate(0.5deg);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes move-row {
  0% {
    transform: translateY(18px) rotate(0);
  }
  60% {
    transform: translateY(-5px) rotate(-1deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes mascot-wave {
  0%,
  55%,
  100% {
    transform: rotate(-39deg);
  }
  68% {
    transform: rotate(-58deg);
  }
  82% {
    transform: rotate(-28deg);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    padding-top: 160px;
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .hero-copy {
    max-width: 740px;
    text-align: center;
    justify-self: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stage {
    width: min(740px, 93%);
    margin: 0 auto 40px;
  }

  .local-inner {
    grid-template-columns: 1fr;
  }

  .local-copy {
    max-width: 680px;
    text-align: center;
    justify-self: center;
  }

  .local-copy > p {
    margin-inline: auto;
  }

  .privacy-pills {
    justify-content: center;
  }

  .local-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

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

  .step-arrow {
    transform: rotate(90deg);
  }

  .day-step {
    max-width: 430px;
    margin: 0 auto;
  }

  .hello-card {
    padding: 60px 46px;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
  }

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    padding: 10px 12px;
  }

  .nav-shell {
    min-height: 56px;
    border-radius: 18px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .menu-button {
    display: block;
  }

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

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav {
    position: absolute;
    top: 75px;
    right: 12px;
    left: 12px;
    padding: 16px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(23, 32, 42, 0.1);
    border-radius: 18px;
    background: #fffef9;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
    border-radius: 12px;
  }

  .site-nav .language-switch {
    justify-self: stretch;
    border-radius: 12px;
  }

  .site-nav a:not(.nav-cta):hover {
    background: #f4f7f9;
  }

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

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    padding: 126px 18px 80px;
    gap: 58px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(51px, 16vw, 72px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 28px;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    min-height: 52px;
  }

  .hero-stage {
    width: 100%;
    margin-bottom: 25px;
    transform: rotate(0.5deg);
  }

  .app-window {
    border-width: 5px;
    border-radius: 24px;
  }

  .window-bar {
    height: 45px;
    padding-inline: 11px;
  }

  .window-body {
    min-height: 420px;
  }

  .app-sidebar {
    display: none;
  }

  .today-preview {
    padding: 21px 17px 23px;
  }

  .today-heading {
    margin-bottom: 17px;
  }

  .today-heading h2 {
    font-size: 23px;
  }

  .round-add {
    width: 37px;
    height: 37px;
  }

  .preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .preview-card {
    padding: 11px;
    border-radius: 14px;
  }

  .card-label {
    font-size: 9px;
  }

  .agenda-item {
    grid-template-columns: 34px 1fr;
  }

  .note-face {
    width: 31px;
    height: 31px;
    font-size: 15px;
  }

  .speech-bubble {
    top: -30px;
    left: -3px;
    padding: 8px 11px;
    font-size: 9px;
  }

  .pill-task {
    right: -10px;
    top: 112px;
  }

  .pill-note {
    bottom: -19px;
    left: 9px;
  }

  .doodle-star {
    top: -42px;
    right: 8px;
    font-size: 34px;
  }

  .doodle-flower {
    display: none;
  }

  .section-pad {
    padding: 92px 18px;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .section-heading h2,
  .local-copy h2,
  .day-heading h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .section-heading > p,
  .day-heading > p,
  .local-copy > p {
    font-size: 16px;
  }

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

  .feature-card {
    min-height: 540px;
    padding: 28px;
    border-radius: 27px;
  }

  .capture-feature {
    min-height: 580px;
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .capture-demo {
    padding: 18px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .capture-input-row input {
    height: 50px;
    padding-inline: 13px;
  }

  .capture-input-row button {
    width: 50px;
    height: 50px;
  }

  .together-feature,
  .arrange-feature {
    min-height: 570px;
  }

  .orbit-demo {
    right: -8%;
    left: -8%;
    transform: scale(0.88);
  }

  .arrange-demo {
    right: 5%;
    left: 5%;
  }

  .local-inner {
    gap: 36px;
  }

  .local-visual {
    min-height: 430px;
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -70px;
  }

  .tablet-device {
    right: -25px;
  }

  .phone-device {
    left: -15px;
  }

  .day-heading {
    margin-bottom: 48px;
  }

  .day-steps {
    gap: 34px;
  }

  .step-arrow {
    font-size: 28px;
  }

  .hello-section {
    padding: 0 18px 75px;
  }

  .hello-card {
    min-height: 720px;
    padding: 46px 26px;
    grid-template-columns: 1fr;
    gap: 35px;
    border-radius: 31px;
    text-align: center;
    box-shadow: 7px 8px 0 var(--ink);
  }

  .mascot {
    width: min(255px, 80%);
  }

  .hello-copy h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .spark-one,
  .spark-three {
    left: 16px;
  }

  .site-footer {
    padding: 38px 24px;
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }

  .modal-card {
    padding: 36px 22px 25px;
    box-shadow: 7px 8px 0 var(--ink);
  }
}

@media (max-width: 420px) {
  .preview-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .agenda-card {
    grid-column: 1 / -1;
  }

  .window-body {
    min-height: 500px;
  }

  .float-pill {
    font-size: 8px;
  }

  .local-visual {
    margin-left: -30px;
    width: calc(100% + 60px);
    transform: scale(0.72);
  }

  .footer-links {
    gap: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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