:root {
  --bg: #f9fafb;
  --ink: #1a1a24;
  --muted: #565d6a;
  --blue: #0a74da;
  --blue-soft: #e7f0ff;
  --cyan: #17b7d6;
  --violet: #7c5cff;
  --green: #10b981;
  --red: #d1453b;
  --amber: #f59e0b;
  --line: #dfe6ef;
  --panel: #ffffff;
  --shadow-soft: 0 18px 48px rgba(25, 39, 62, 0.06);
  --shadow-strong: 0 28px 72px rgba(25, 39, 62, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Heebo, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 62%, #ffffff 100%);
  background-size: auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  align-content: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(10, 116, 218, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(16, 185, 129, 0.08), transparent 34%),
    var(--bg);
}

.loader.is-visible {
  display: grid;
}

.loader__mark {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
}

.loader__mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(10, 116, 218, 0.16));
}

.loader__mark span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 3px solid rgba(10, 116, 218, 0.16);
  border-top-color: var(--blue);
  animation: spin 0.82s linear infinite;
}

.loader p {
  color: var(--muted);
  font-weight: 800;
}

.nav {
  position: fixed;
  top: 18px;
  right: clamp(16px, 4vw, 56px);
  left: clamp(16px, 4vw, 56px);
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(227, 232, 238, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(26, 26, 36, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand,
.nav__actions,
.nav__links {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav__links {
  justify-content: center;
  gap: 8px;
}

.nav__links a,
.plain-link {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
}

.nav__links a:hover,
.plain-link:hover {
  color: var(--ink);
  background: #f1f5fb;
}

.nav__actions {
  justify-self: end;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  place-items: center;
  gap: 5px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.plain-link {
  color: var(--ink);
  font-weight: 900;
}

.button,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s ease;
}

.button {
  padding: 0 22px;
  background: linear-gradient(135deg, #0a74da, #2563eb);
  color: #fff;
  box-shadow: 0 14px 28px rgba(10, 116, 218, 0.16);
}

.button:hover {
  background: linear-gradient(135deg, #0860b8, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(10, 116, 218, 0.2);
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.ghost {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.ghost:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(25, 39, 62, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 132px clamp(22px, 6vw, 96px) 86px;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__shade {
  z-index: -1;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 58%, #ffffff 100%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin-inline: auto;
  padding-top: 0;
}

.kicker {
  color: var(--blue);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 900;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(3.2rem, 7.2vw, 6.2rem);
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
}

.lead {
  width: min(680px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.55;
  font-weight: 700;
}

.hero-trust-pill {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: min(620px, 100%);
  margin: 28px auto 0;
  padding: 9px 14px;
  border: 1px solid rgba(184, 196, 211, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #344054;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(26, 26, 36, 0.06);
  backdrop-filter: blur(14px);
}

.hero-trust-pill span {
  color: rgba(86, 93, 106, 0.62);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero__metrics {
  position: relative;
  right: auto;
  bottom: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.hero__mockup {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  min-height: auto;
  margin: clamp(46px, 6vw, 70px) auto 0;
  align-self: stretch;
}

.app-window {
  position: relative;
  inset: auto;
  width: min(1000px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(169, 184, 205, 0.76);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
  box-shadow: var(--shadow-strong);
}

.app-window__bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(169, 184, 205, 0.48);
  background: rgba(255, 255, 255, 0.72);
}

.app-window__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-window__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d8e1ee;
}

.app-window__dots span:nth-child(1) {
  background: #78d7c1;
}

.app-window__dots span:nth-child(2) {
  background: #f3bf63;
}

.app-window__dots span:nth-child(3) {
  background: #eb7b75;
}

.app-window__bar b {
  margin-inline-start: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.app-window__screen {
  height: 482px;
  overflow: hidden;
}

.app-window__screen img {
  display: block;
  width: 112%;
  max-width: none;
  transform: translateX(4%) translateY(-2%);
}

.app-window--demo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 255, 0.9)),
    #fff;
}

.app-window__screen--demo {
  height: clamp(420px, 45vw, 560px);
  display: grid;
  place-items: center;
  padding: 28px;
  background: #fbfcff;
}

.demo-editor {
  width: min(520px, 100%);
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(184, 196, 211, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(25, 39, 62, 0.06);
}

.demo-editor__top,
.demo-editor__input,
.demo-editor__row,
.demo-editor__privacy {
  display: flex;
  align-items: center;
}

.demo-editor__top {
  justify-content: space-between;
  color: var(--muted);
  font-weight: 900;
}

.demo-editor__top strong {
  color: var(--ink);
}

.demo-editor__input {
  gap: 10px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid rgba(10, 116, 218, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 116, 218, 0.08), rgba(255, 255, 255, 0.92));
}

.demo-editor__input span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(10, 116, 218, 0.1);
}

.demo-editor__input b {
  color: var(--ink);
  font-size: 1rem;
}

.demo-editor__row {
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(223, 230, 239, 0.9);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.demo-editor__row--active {
  border-color: rgba(10, 116, 218, 0.22);
  background: rgba(231, 240, 255, 0.6);
}

.demo-editor__row i {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 2px solid #aeb8c7;
  border-radius: 999px;
}

.demo-editor__row em {
  margin-inline-start: auto;
  color: var(--blue);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
}

.demo-editor__privacy {
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.demo-editor__privacy span {
  padding: 7px 10px;
  border: 1px solid rgba(184, 196, 211, 0.74);
  border-radius: 999px;
  background: #fff;
  color: rgba(52, 64, 84, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero__metrics span,
.proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(184, 196, 211, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.mobile-showcase,
.mobile-strip,
.mobile-dock {
  display: none;
}

.mobile-showcase__rail {
  position: relative;
  min-height: 390px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(184, 196, 211, 0.86);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.78)),
    radial-gradient(circle at 20% 0%, rgba(10, 116, 218, 0.15), transparent 42%);
  box-shadow: 0 24px 54px rgba(26, 26, 36, 0.13);
}

.mobile-showcase__phone {
  position: absolute;
  display: block;
  border: 1px solid rgba(184, 196, 211, 0.8);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(26, 26, 36, 0.16);
}

.mobile-showcase__phone--main {
  width: 640px;
  max-width: none;
  top: 42px;
  right: 50%;
  transform: translateX(50%);
}

.mobile-showcase__phone--float {
  width: 330px;
  max-width: none;
  left: -58px;
  bottom: 28px;
}

.mobile-showcase__chips {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.mobile-showcase__chips::-webkit-scrollbar {
  display: none;
}

.mobile-showcase__chips span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(184, 196, 211, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.statement {
  padding: clamp(70px, 10vw, 128px) clamp(22px, 8vw, 144px);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.88));
  border-block: 1px solid var(--line);
}

.statement__inner {
  max-width: 980px;
}

.statement p {
  color: var(--red);
  font-size: clamp(1.08rem, 1.7vw, 1.4rem);
  font-weight: 900;
}

.statement h2,
.story__copy h2,
.detail__copy h2,
.benefits__header h2,
.final h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 1.05;
  font-weight: 900;
  text-wrap: balance;
}

.statement h2 {
  font-size: clamp(2.2rem, 5vw, 5.5rem);
}

.story {
  padding: clamp(26px, 5vw, 72px) 0;
}

.story__step {
  min-height: 112svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(60px, 8vw, 110px) clamp(22px, 7vw, 116px);
}

.story__step--soft {
  background: rgba(255, 255, 255, 0.58);
}

.story__copy,
.product-frame {
  position: sticky;
  top: 128px;
}

.story__copy {
  align-self: start;
  padding-top: 6vh;
}

.story__label {
  color: var(--blue);
  font-weight: 900;
}

.story__copy > p:last-child,
.detail__copy > p,
.benefit p {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.7;
  font-weight: 700;
}

.product-frame {
  position: relative;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(184, 196, 211, 0.84);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: var(--shadow-soft);
  padding-top: 44px;
}

.product-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 50%, #78d7c1 0 4px, transparent 4.5px),
    radial-gradient(circle at 21px 50%, #f3bf63 0 4px, transparent 4.5px),
    radial-gradient(circle at 37px 50%, #eb7b75 0 4px, transparent 4.5px);
}

.product-frame figcaption {
  position: absolute;
  top: 12px;
  right: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-frame--narrow {
  max-width: 680px;
  max-height: 660px;
  justify-self: center;
}

.product-frame img {
  display: block;
  width: 100%;
}

.product-frame--narrow img {
  width: 108%;
  max-width: none;
  transform: translateX(4%) translateY(-2%);
}

.detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(82px, 10vw, 140px) clamp(22px, 7vw, 116px);
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-block: 1px solid var(--line);
}

.anti-features {
  padding: clamp(82px, 10vw, 136px) clamp(22px, 7vw, 116px);
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-top: 1px solid var(--line);
}

.anti-features__header {
  max-width: 760px;
}

.anti-features__header h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1.05;
  font-weight: 900;
  text-wrap: balance;
}

.anti-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(32px, 5vw, 54px);
}

.anti-feature {
  min-height: 172px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 20px;
  border: 1px solid rgba(223, 230, 239, 0.96);
  border-radius: 18px;
  background: #f3f4f6;
  box-shadow: none;
  opacity: 0.6;
  filter: grayscale(1);
}

.anti-feature span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 196, 211, 0.78);
  border-radius: 999px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 900;
}

.anti-feature p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(86, 93, 106, 0.55);
}

.anti-feature--quiet {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(10, 116, 218, 0.08), 0 18px 46px rgba(10, 116, 218, 0.08);
  opacity: 1;
  filter: none;
}

.anti-feature--quiet p {
  text-decoration: none;
}

.anti-feature--quiet span {
  border-color: rgba(10, 116, 218, 0.2);
  background: var(--blue);
  color: #fff;
}

.detail__copy {
  max-width: 620px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 185, 129, 0.24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(255, 255, 255, 0.78));
  color: var(--ink);
}

.trust-note strong {
  font-size: 0.98rem;
}

.trust-note span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.detail__stack {
  position: relative;
  min-height: 720px;
}

.detail__image {
  position: absolute;
  display: block;
  border: 1px solid rgba(184, 196, 211, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(26, 26, 36, 0.07);
}

.detail__image--google {
  width: min(370px, 45%);
  right: 0;
  top: 0;
}

.detail__image--time {
  width: min(620px, 76%);
  left: 8%;
  top: 18%;
}

.detail__image--reminder {
  width: min(520px, 58%);
  right: 22%;
  bottom: 2%;
}

.benefits {
  padding: clamp(84px, 10vw, 144px) clamp(22px, 7vw, 116px);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.benefits__header {
  max-width: 860px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 5vw, 58px);
}

.benefit {
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 34px rgba(26, 26, 36, 0.04);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 116, 218, 0.22);
  box-shadow: 0 20px 46px rgba(25, 39, 62, 0.08);
}

.benefit--wide {
  grid-column: span 5;
  background: #fff;
}

.benefit--calendar {
  grid-column: span 3;
  background: #fff;
}

.benefit--reminder {
  grid-column: span 4;
  background: #fff;
}

.benefit--projects {
  grid-column: span 12;
  min-height: 220px;
  background: #fff;
}

.benefit span {
  color: var(--blue);
  font-size: 1.55rem;
  font-weight: 900;
}

.benefit:nth-child(2) span {
  color: var(--green);
}

.benefit:nth-child(3) span {
  color: var(--amber);
}

.benefit:nth-child(4) span {
  color: var(--red);
}

.benefit h3 {
  margin-top: 26px;
  font-size: 1.3rem;
  font-weight: 900;
}

.mini-task-list,
.mini-calendar,
.mini-chip-row,
.mini-folders {
  margin-top: 26px;
}

.mini-task-list {
  display: grid;
  gap: 10px;
}

.mini-task-list i {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(10,116,218,0.25), rgba(10,116,218,0.06));
}

.mini-task-list i:nth-child(2) {
  width: 78%;
}

.mini-task-list i:nth-child(3) {
  width: 58%;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mini-calendar b {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(23, 183, 214, 0.14);
}

.mini-calendar b:nth-child(5) {
  background: var(--cyan);
  box-shadow: 0 8px 18px rgba(23, 183, 214, 0.14);
}

.mini-chip-row,
.mini-folders {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-chip-row em,
.mini-folders i {
  font-style: normal;
  padding: 8px 11px;
  border: 1px solid rgba(184, 196, 211, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 430px;
  padding: clamp(74px, 9vw, 118px) clamp(22px, 7vw, 116px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 183, 214, 0.24), transparent 42%),
    linear-gradient(315deg, rgba(124, 92, 255, 0.22), transparent 44%),
    #121521;
}

.final .kicker,
.final h2 {
  color: #fff;
}

.final .kicker {
  opacity: 0.78;
}

.final h2 {
  max-width: 780px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav__links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__mockup {
    min-height: 520px;
  }

  .app-window {
    width: 100%;
  }

  .story__step,
  .detail {
    grid-template-columns: 1fr;
  }

  .story__copy,
  .product-frame {
    position: relative;
    top: auto;
  }

  .story__step {
    min-height: auto;
  }

  .detail__stack {
    min-height: 620px;
  }

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

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

  .benefit,
  .benefit--calendar,
  .benefit--reminder {
    grid-column: auto;
  }

  .benefit--wide,
  .benefit--projects {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 58%, #ffffff 100%);
    background-size: auto;
  }

  .landing {
    width: 100%;
    overflow-x: clip;
  }

  .nav {
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 70px;
    padding: 12px 18px;
    border: 0;
    border-bottom: 1px solid rgba(223, 230, 239, 0.9);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
    direction: ltr;
    overflow: visible;
  }

  .brand span,
  .plain-link,
  .nav__links {
    display: none;
  }

  .nav.is-open .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(223, 230, 239, 0.96);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(25, 39, 62, 0.08);
    backdrop-filter: blur(18px);
    direction: rtl;
  }

  .nav.is-open .nav__links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px;
    color: var(--ink);
    font-size: 0.94rem;
  }

  .brand {
    order: 3;
    margin-left: auto;
    margin-right: 0;
    direction: rtl;
    justify-self: auto;
  }

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

  .nav__actions {
    order: 1;
    justify-self: auto;
    direction: rtl;
  }

  .button--small {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.84rem;
    box-shadow: 0 8px 18px rgba(10, 116, 218, 0.12);
  }

  .menu-button {
    order: 2;
    display: grid;
    direction: rtl;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 124px 18px 56px;
    overflow: visible;
    text-align: center;
  }

  .hero__mockup {
    display: none;
  }

  .hero__shade {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 72%, #ffffff 100%);
  }

  .hero__copy {
    width: 100%;
    padding-top: 0;
  }

  .kicker {
    display: none;
  }

  .hero h1 {
    max-width: 318px;
    margin: 0 auto;
    font-size: clamp(2.06rem, 10vw, 2.72rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
  }

  .lead {
    max-width: 316px;
    margin: 19px auto 0;
    font-size: 0.98rem;
    line-height: 1.64;
    font-weight: 700;
  }

  .hero-trust-pill {
    display: inline-flex;
    max-width: 315px;
    margin: 18px auto 0;
    padding: 7px 11px;
    color: rgba(52, 64, 84, 0.82);
    font-size: 0.74rem;
    line-height: 1.48;
    font-weight: 800;
    box-shadow: none;
  }

  .hero__actions {
    justify-content: center;
    margin-top: 26px;
    display: flex;
    gap: 10px;
  }

  .hero__actions .button,
  .hero__actions .ghost {
    width: auto;
    min-height: 48px;
    border-radius: 16px;
    padding: 0 20px;
  }

  .hero__actions .button {
    box-shadow: 0 12px 26px rgba(10, 116, 218, 0.16);
  }

  .hero__actions .ghost {
    display: none;
  }

  .hero__metrics {
    display: none;
  }

  .mobile-showcase {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .mobile-showcase__rail {
    min-height: 330px;
    margin-top: 52px;
    border-radius: 28px;
    contain: paint;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: 0 16px 38px rgba(25, 39, 62, 0.07);
  }

  .mobile-showcase__phone--main {
    position: relative;
    display: block;
    width: 90%;
    max-width: 380px;
    margin: 0 auto;
    top: 34px;
    right: auto;
    transform: none;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(25, 39, 62, 0.08);
  }

  .mobile-showcase__chips {
    margin-top: 14px;
    justify-content: center;
  }

  .mobile-showcase__chips span {
    padding: 7px 10px;
    color: rgba(26, 26, 36, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: none;
  }

  .mobile-showcase__phone--float {
    display: none;
  }

  .mobile-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 16px 36px;
  }

  .mobile-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 76px;
    padding: 13px 12px;
    border: 1px solid rgba(184, 196, 211, 0.78);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(26, 26, 36, 0.04);
  }

  .mobile-strip__item b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
    font-size: 1rem;
  }

  .mobile-strip__item span {
    display: block;
    font-weight: 900;
    color: var(--ink);
  }

  .mobile-strip__item p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
    font-weight: 700;
  }

  .statement,
  .story__step,
  .detail,
  .anti-features,
  .benefits,
  .final {
    padding-right: 16px;
    padding-left: 16px;
  }

  .statement {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .statement h2,
  .story__copy h2,
  .detail__copy h2,
  .benefits__header h2,
  .final h2 {
    font-size: clamp(2rem, 10vw, 3.05rem);
    line-height: 1.04;
  }

  .story {
    padding-top: 0;
  }

  .story__step {
    gap: 22px;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .story__copy {
    padding-top: 0;
  }

  .story__copy > p:last-child,
  .detail__copy > p,
  .benefit p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .product-frame {
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(26, 26, 36, 0.06);
    width: 100%;
    max-width: 100%;
  }

  .product-frame img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .product-frame--narrow img {
    width: 112%;
    max-width: none;
    transform: translateX(5%) translateY(-2%);
  }

  .detail__stack {
    min-height: 520px;
    margin-top: 8px;
  }

  .detail__image--google {
    width: 48%;
    right: 0;
  }

  .detail__image--time {
    width: 92%;
    left: 0;
    top: 19%;
  }

  .detail__image--reminder {
    width: 74%;
    right: 4%;
    bottom: 4%;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .anti-features {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .anti-features__header h2 {
    font-size: clamp(2rem, 10vw, 3.05rem);
    line-height: 1.06;
  }

  .anti-features__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .anti-feature {
    min-height: 116px;
    padding: 18px;
    border-radius: 18px;
  }

  .anti-feature p {
    font-size: 1rem;
  }

  .benefit {
    grid-column: auto;
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

  .benefit--wide,
  .benefit--projects {
    grid-column: auto;
  }

  .benefit h3 {
    margin-top: 18px;
  }

  .final {
    align-items: flex-start;
    flex-direction: column;
    min-height: 380px;
    padding-top: 64px;
    padding-bottom: 96px;
  }

  .final .button {
    width: 100%;
  }

  .mobile-dock {
    display: none;
  }
}

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

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

 . v i d e o - c o n t a i n e r   { 
     w i d t h :   1 0 0 % ; 
     m a x - w i d t h :   9 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
     a s p e c t - r a t i o :   1 6 / 9 ; 
     b a c k g r o u n d :   # f 1 f 5 f 9 ; 
     b o r d e r - r a d i u s :   2 0 p x ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 1 6 9 ,   1 8 4 ,   2 0 5 ,   0 . 4 ) ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - s t r o n g ) ; 
     o v e r f l o w :   h i d d e n ; 
     p o s i t i o n :   r e l a t i v e ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . v i d e o - p l a c e h o l d e r   { 
     t e x t - a l i g n :   c e n t e r ; 
     c o l o r :   v a r ( - - m u t e d ) ; 
     f o n t - w e i g h t :   8 0 0 ; 
     p a d d i n g :   4 0 p x ; 
 } 
 
 . v i d e o - p l a c e h o l d e r   p   { 
     f o n t - s i z e :   0 . 9 r e m ; 
     f o n t - w e i g h t :   5 0 0 ; 
     m a r g i n - t o p :   1 0 p x ; 
 } 
 
 . h e r o - v i d e o   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     o b j e c t - f i t :   c o v e r ; 
     d i s p l a y :   b l o c k ; 
 } 
  
 