﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap");

:root {
  --page-bg: #f4f5f7;
  --shell: #ffffff;
  --ink: #08080b;
  --muted: #73717a;
  --soft-text: #8a8792;
  --line: #e6e8ec;
  --panel: #f2f3f5;
  --lavender: #d9d2f2;
  --lavender-soft: #f3f4f6;
  --blue: #2365ff;
  --yellow: #ffbb19;
  --white: #ffffff;
  --radius-lg: 30px;
  --shadow-soft: 0 34px 90px rgba(31, 28, 42, 0.08);
  --shadow-card: 0 20px 50px rgba(24, 22, 33, 0.09);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 55% 0%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.4) 25%, rgba(255, 255, 255, 0) 52%),
    var(--page-bg);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell {
  width: min(1810px, calc(100% - 86px));
  margin: 54px auto;
  overflow: hidden;
  border: 1px solid #ececef;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 40px 120px rgba(28, 26, 37, 0.07);
}

.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 102px 0;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 132px;
  height: auto;
}

.top-download,
.mini-download {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #050506;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 24px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.top-download {
  min-width: 134px;
  padding: 0 22px;
}

.top-download:hover,
.mini-download:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 30px rgba(0, 0, 0, 0.16);
}

.top-download:focus-visible,
.mini-download:focus-visible,
.store-badge:focus-visible,
.round-arrow:focus-visible,
.review-controls button:focus-visible,
.footer-main a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 3px solid rgba(35, 101, 255, 0.34);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 1040px;
  padding: 100px 80px 34px;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 42% 29%, rgba(232, 234, 239, 0.5), rgba(232, 234, 239, 0) 24%),
    radial-gradient(circle at 62% 23%, rgba(236, 238, 243, 0.6), rgba(236, 238, 243, 0) 32%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0 58px auto;
  width: calc(100% - 116px);
  height: 760px;
  color: #e4e6ea;
  pointer-events: none;
}

.hero-lines path {
  stroke: currentColor;
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  padding: 0 22px;
  border: 1px solid #dfe2e7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #34313a;
  font-size: 12px;
  font-weight: 500;
}

.hero h1,
.feature-intro h2,
.steps h2,
.reviews h2,
.download-panel h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
}

.hero h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.12;
}

.editorial-italic {
  display: inline-block;
  font-family: "Poppins", Arial, sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
}

.hero-copy > p:not(.eyebrow) {
  width: min(520px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.store-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.store-badge {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* The official App Store badge PNG has more internal padding than the Google
   Play one (its pill fills ~85.5% of the canvas vs ~89.8%), so at equal heights
   the App Store logo reads as smaller. Give it a slightly larger box height so
   the two badges look the same visual size. */
.app-store-badge-image {
  width: auto;
  height: 56px;
}

.hero-device {
  position: relative;
  z-index: 3;
  width: min(612px, 90%);
  margin: 56px auto 0;
}

.hero-device img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 38px 46px rgba(14, 12, 19, 0.18));
}

.float-item {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 999px;
  pointer-events: none;
  animation: float-drift 5.6s ease-in-out infinite;
}

.float-item svg {
  width: 23px;
  height: 23px;
}

.float-left {
  top: 286px;
  left: 126px;
  color: #8b76e8;
}

.float-right {
  top: 426px;
  right: 156px;
  color: #2365ff;
  animation-delay: -1.4s;
}

.float-study {
  width: 54px;
  height: 54px;
  border: 1px solid #ebe8f0;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(22, 20, 32, 0.08);
}

.float-book {
  top: 470px;
  left: 338px;
  color: #8b76e8;
  animation-delay: -2.1s;
}

.float-pencil {
  top: 628px;
  left: 210px;
  color: #e5a622;
  animation-delay: -0.8s;
}

.float-calc {
  top: 330px;
  right: 360px;
  color: #2365ff;
  animation-delay: -3.2s;
}

.float-cards {
  top: 618px;
  right: 276px;
  color: #2baa5e;
  animation-delay: -4s;
}

.feature-intro {
  padding: 12px 102px 98px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) 64px minmax(420px, 1.28fr);
  gap: 46px;
  align-items: start;
  margin-bottom: 74px;
}

.intro-grid p {
  width: min(330px, 100%);
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.52;
}

.round-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #070708;
  color: #fff;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08), 0 12px 24px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.round-arrow:hover {
  transform: translateY(2px);
}

.round-arrow svg {
  width: 22px;
  height: 22px;
}

.feature-intro h2,
.steps h2,
.reviews h2,
.download-panel h2 {
  font-size: 52px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.showcase-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.showcase-card .icon-bubble {
  position: absolute;
  z-index: 4;
  top: 32px;
  right: 32px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #070708;
  color: #fff;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08), 0 12px 24px rgba(0, 0, 0, 0.18);
}

.showcase-card .icon-bubble svg {
  width: 23px;
  height: 23px;
}

.showcase-card h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: #0b0b0e;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
}

.showcase-card p {
  position: relative;
  z-index: 3;
  max-width: 240px;
  margin: 12px 0 0;
  color: #6b6872;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.capture-card {
  padding: 92px 34px 34px;
  background: #f0eef4;
}

.capture-card h3,
.capture-card p {
  margin-left: auto;
  text-align: right;
}

.capture-card img {
  position: absolute;
  bottom: -198px;
  left: -110px;
  width: 398px;
  transform: rotate(-8deg);
  transform-origin: center;
}

.explains-card {
  padding: 92px 34px 34px;
  background: var(--lavender);
}

.explains-card h3,
.explains-card p {
  max-width: 260px;
  margin-left: auto;
  text-align: right;
}

.explains-card img {
  position: absolute;
  right: 24px;
  bottom: -292px;
  width: 318px;
  filter: drop-shadow(0 25px 38px rgba(29, 25, 44, 0.18));
}

.chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #373344;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(31, 28, 42, 0.1);
}

.chip-one {
  left: 34px;
  bottom: 146px;
  padding: 0 16px;
}

.chip-two {
  left: 60px;
  bottom: 94px;
  padding: 0 14px;
}

.ai-card {
  padding: 92px 34px 34px;
  background:
    linear-gradient(180deg, rgba(16, 16, 18, 0.16), rgba(10, 10, 12, 0.45)),
    linear-gradient(145deg, #c8c5c0 0%, #7c7c7f 52%, #efece6 100%);
}

.ai-card h3,
.ai-card p {
  margin-left: auto;
  color: #fff;
  text-align: right;
  text-shadow: 0 1px 15px rgba(0, 0, 0, 0.26);
}

.ai-card p {
  color: rgba(255, 255, 255, 0.78);
}

.ai-card img {
  position: absolute;
  right: -250px;
  bottom: -128px;
  width: 672px;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.24));
}

.steps {
  padding: 2px 102px 104px;
}

.steps-head {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(300px, 1.05fr);
  gap: 84px;
  align-items: start;
  margin-bottom: 52px;
}

.steps-head p {
  width: min(480px, 100%);
  margin: 20px 0 0 auto;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.92fr);
  gap: 52px;
  align-items: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 140px;
  padding: 28px 72px 26px 28px;
  border-radius: 18px;
  background: var(--lavender-soft);
}

.step-card span {
  position: absolute;
  top: 24px;
  right: 22px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #e7e9ee;
  color: #565c68;
  font-size: 12px;
  font-weight: 600;
}

.step-card h3 {
  margin: 0 0 12px;
  color: #111116;
  font-size: 16px;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  color: #67646f;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.steps-phone {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 26px;
}

.steps-phone::before {
  content: none;
}

.steps-phone img {
  position: relative;
  z-index: 2;
  width: 356px;
  height: auto;
  filter: none;
}

/* Kept in normal flow (above the phone) so the copy never overlaps the
   phone image at narrow column widths. */
.steps-note {
  width: min(340px, 100%);
  text-align: center;
}

.steps-note p {
  margin: 0 0 16px;
  color: #77737d;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.mini-download {
  padding: 0 20px;
  min-width: 134px;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(560px, 1.2fr);
  gap: 72px;
  align-items: center;
  margin: 0 12px;
  padding: 76px 102px;
  background: var(--panel);
}

.reviews h2 {
  max-width: 440px;
}

.review-controls {
  display: flex;
  gap: 18px;
  margin-top: 44px;
}

.review-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #7e7a85;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.review-controls button:first-child svg {
  transform: rotate(180deg);
}

.review-controls button:hover {
  transform: translateY(-1px);
  background: #fff;
  color: #101014;
}

.review-controls svg {
  width: 20px;
  height: 20px;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.review-card {
  min-height: 236px;
  padding: 34px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(26, 23, 35, 0.04);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.reviewer h3 {
  margin: 0 0 5px;
  color: #16151a;
  font-size: 15px;
  font-weight: 600;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--yellow);
}

.stars svg {
  width: 17px;
  height: 17px;
}

.review-card p {
  margin: 0;
  color: #696672;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
}

.demo {
  padding: 0 102px 104px;
  text-align: center;
}

.demo-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.08;
}

.demo-head p {
  width: min(480px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.demo-frame {
  width: min(860px, 100%);
  margin: 44px auto 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid #e6e8ec;
  background: #0a0a0c;
  box-shadow: var(--shadow-soft);
}

.demo-video {
  display: block;
  width: 100%;
  height: auto;
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(420px, 1.1fr);
  min-height: 360px;
  margin: 100px 102px 82px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--panel);
}

.download-copy {
  position: relative;
  z-index: 3;
  padding: 58px 0 54px 70px;
}

.download-copy p {
  margin: 0 0 52px;
  color: #36333c;
  font-size: 13px;
  font-weight: 500;
}

.download-copy h2 {
  max-width: 360px;
  margin-bottom: 28px;
}

.download-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.download-actions > span {
  max-width: 240px;
  color: #615e68;
  font-size: 13px;
  font-weight: 400;
}

.download-phone {
  position: absolute;
  right: 76px;
  bottom: 0;
  width: 440px;
  height: auto;
  transform: none;
  filter: drop-shadow(0 28px 48px rgba(20, 18, 28, 0.22));
}

.site-footer {
  padding: 0 102px 52px;
}

.footer-main {
  display: grid;
  grid-template-columns: 190px 1fr 94px;
  gap: 40px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid #ebe8ef;
}

.footer-brand img {
  width: 154px;
  height: auto;
}

.footer-main nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.footer-main nav a,
.footer-bottom a {
  color: #36333b;
  font-size: 12px;
  font-weight: 500;
  transition: color 180ms ease;
}

.footer-main nav a:hover,
.footer-bottom a:hover {
  color: var(--blue);
}

.footer-icons {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.footer-icons span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #08080b;
  color: #fff;
}

.footer-icons svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  color: #77747c;
  font-size: 12px;
  font-weight: 500;
}

.legal-links {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.legal-page {
  min-height: 100vh;
  padding-bottom: 52px;
}

.legal-shell {
  width: min(1080px, calc(100% - 72px));
  margin: 54px auto;
  border: 1px solid #ececef;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 40px 120px rgba(28, 26, 37, 0.07);
  overflow: hidden;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 64px 0;
}

.legal-topbar img {
  width: 132px;
  height: auto;
}

.legal-topbar nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.legal-topbar a,
.legal-content a {
  color: #111116;
  font-size: 13px;
  font-weight: 500;
}

.legal-topbar a:hover,
.legal-content a:hover {
  color: var(--blue);
}

.legal-content {
  padding: 72px 64px 76px;
}

.legal-content h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.08;
}

.legal-effective {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 15px;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid #ebe8ef;
}

.legal-content h2 {
  margin: 0 0 14px;
  color: #111116;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  color: #5f5c66;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
  margin-top: 14px;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.coming-soon-note {
  color: #98959e;
  font-weight: 400;
}

body.motion-ready .hero-copy,
body.motion-ready .hero-device,
body.motion-ready .topbar,
body.motion-ready .steps,
body.motion-ready .download-panel,
body.motion-ready .site-footer {
  opacity: 0;
  transform: translateY(28px);
}

body.motion-ready .topbar,
body.motion-ready .hero-copy,
body.motion-ready .hero-device,
body.motion-ready .steps.is-visible,
body.motion-ready .download-panel.is-visible,
body.motion-ready .site-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.motion-ready .topbar {
  transition-delay: 80ms;
}

body.motion-ready .hero-copy {
  transition-delay: 180ms;
}

body.motion-ready .hero-device {
  transition-delay: 320ms;
}

body.motion-ready .step-card {
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

body.motion-ready .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(32, 28, 42, 0.08);
  background: #eef0f4;
}

@keyframes float-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@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;
  }

  body.motion-ready .hero-copy,
  body.motion-ready .hero-device,
  body.motion-ready .topbar,
  body.motion-ready .steps,
  body.motion-ready .download-panel,
  body.motion-ready .site-footer {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1220px) {
  .page-shell {
    width: min(100% - 40px, 1160px);
  }

  .topbar,
  .feature-intro,
  .steps,
  .site-footer {
    padding-left: 56px;
    padding-right: 56px;
  }

  .hero {
    min-height: 960px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .feature-intro h2,
  .steps h2,
  .reviews h2,
  .download-panel h2 {
    font-size: 46px;
  }

  .float-left {
    left: 70px;
  }

  .float-right {
    top: 438px;
    right: 76px;
  }

  .float-book {
    top: 468px;
    left: 210px;
  }

  .float-pencil {
    top: 626px;
    left: 132px;
  }

  .float-calc {
    top: 342px;
    right: 222px;
  }

  .float-cards {
    top: 612px;
    right: 152px;
  }

  .showcase-card {
    min-height: 390px;
  }

  .capture-card img {
    width: 342px;
    bottom: -172px;
  }

  .explains-card img {
    width: 282px;
  }

  .ai-card img {
    right: -266px;
    width: 620px;
  }

  .demo {
    padding-left: 56px;
    padding-right: 56px;
  }

  .demo-head h2 {
    font-size: 46px;
  }

  .reviews {
    grid-template-columns: 1fr;
    margin: 0;
    padding: 68px 56px;
  }

  .reviews h2 {
    max-width: 620px;
  }

  .download-panel {
    margin-left: 56px;
    margin-right: 56px;
  }

  .download-phone {
    right: 16px;
    bottom: 0;
    width: 390px;
  }

  .footer-main nav {
    gap: 24px;
  }
}

@media (max-width: 920px) {
  .page-shell {
    width: calc(100% - 24px);
    margin: 24px auto;
    border-radius: 24px;
  }

  .topbar {
    padding: 32px 30px 0;
  }

  .brand-link img {
    width: 116px;
  }

  .top-download {
    min-width: 122px;
  }

  .hero {
    min-height: 820px;
    padding: 74px 30px 20px;
  }

  .hero-lines {
    inset: 0 20px auto;
    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-device {
    width: min(500px, 94%);
  }

  .float-study {
    display: grid;
    width: 42px;
    height: 42px;
  }

  .float-left {
    top: 430px;
    left: 38px;
  }

  .float-book {
    top: 520px;
    left: 116px;
  }

  .float-calc {
    top: 452px;
    right: 68px;
  }

  .float-right {
    top: 590px;
    right: 44px;
  }

  .float-pencil,
  .float-cards {
    display: none;
  }

  .feature-intro,
  .steps,
  .site-footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .intro-grid,
  .steps-head,
  .steps-layout,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 26px;
    margin-bottom: 42px;
  }

  .intro-grid p {
    width: 100%;
    max-width: 560px;
  }

  .feature-intro h2,
  .steps h2,
  .reviews h2,
  .download-panel h2 {
    font-size: 38px;
  }

  .showcase-grid,
  .review-list,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    min-height: 430px;
  }

  .capture-card img {
    width: 390px;
  }

  .explains-card img {
    right: 50px;
    width: 300px;
  }

  .ai-card img {
    right: -210px;
    bottom: -260px;
    width: 650px;
  }

  .steps-head p {
    margin-left: 0;
  }

  .steps-phone img {
    width: 320px;
  }

  .demo {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 74px;
  }

  .demo-head h2 {
    font-size: 38px;
  }

  .reviews {
    padding: 58px 30px;
  }

  .download-panel {
    margin: 70px 30px 58px;
    min-height: 560px;
  }

  .download-copy {
    padding: 42px 34px 0;
  }

  .download-copy p {
    margin-bottom: 34px;
  }

  .download-phone {
    position: absolute;
    right: auto;
    left: 50%;
    bottom: 0;
    width: min(400px, 82%);
    margin: 0;
    transform: translateX(-50%);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-main nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-icons {
    justify-content: flex-start;
  }

  .legal-shell {
    width: calc(100% - 24px);
    margin: 24px auto;
    border-radius: 24px;
  }

  .legal-topbar,
  .legal-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .legal-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .topbar {
    padding: 24px 20px 0;
  }

  .brand-link img {
    width: 105px;
  }

  .top-download {
    min-width: auto;
    min-height: 38px;
    padding: 0 16px;
    font-size: 11px;
  }

  .hero {
    min-height: 724px;
    padding: 56px 20px 0;
  }

  .hero-lines {
    opacity: 0.64;
  }

  .eyebrow {
    min-height: 32px;
    padding: 0 16px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 14px;
  }

  .store-row {
    margin-top: 22px;
  }

  .store-badge {
    min-height: auto;
  }

  .app-store-badge-image {
    width: auto;
    height: 51px;
  }

  .hero-device {
    width: 390px;
    max-width: 106%;
    margin-top: 40px;
  }

  .feature-intro,
  .steps,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-intro {
    padding-top: 46px;
    padding-bottom: 70px;
  }

  .feature-intro h2,
  .steps h2,
  .reviews h2,
  .download-panel h2 {
    font-size: 32px;
  }

  .round-arrow {
    width: 44px;
    height: 44px;
  }

  .showcase-card {
    min-height: 402px;
    border-radius: 24px;
  }

  .showcase-card h3 {
    font-size: 23px;
  }

  .showcase-card p {
    font-size: 13px;
  }

  .capture-card,
  .explains-card,
  .ai-card {
    padding: 78px 24px 24px;
  }

  .showcase-card .icon-bubble {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }

  .capture-card img {
    bottom: -154px;
    left: -112px;
    width: 338px;
  }

  .explains-card img {
    right: 10px;
    bottom: -270px;
    width: 270px;
  }

  .chip {
    display: none;
  }

  .ai-card img {
    right: -205px;
    bottom: -106px;
    width: 572px;
  }

  .steps {
    padding-bottom: 74px;
  }

  .steps-head {
    gap: 12px;
    margin-bottom: 32px;
  }

  .step-card {
    min-height: 128px;
    padding: 24px 62px 22px 22px;
  }

  .steps-phone img {
    width: 292px;
  }

  .demo {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 64px;
  }

  .demo-head h2 {
    font-size: 32px;
  }

  .demo-frame {
    margin-top: 32px;
    border-radius: 18px;
  }

  .reviews {
    padding: 46px 20px;
  }

  .review-controls {
    margin-top: 28px;
  }

  .review-card {
    min-height: auto;
    padding: 26px;
  }

  .download-panel {
    margin: 58px 20px 44px;
    border-radius: 24px;
    min-height: 520px;
  }

  .download-copy {
    padding: 34px 24px 0;
  }

  .download-copy p {
    margin-bottom: 26px;
  }

  .download-actions {
    gap: 10px;
  }

  .download-phone {
    width: min(342px, 86%);
    max-width: 86%;
  }

  .site-footer {
    padding-bottom: 36px;
  }

  .footer-main {
    padding-bottom: 28px;
  }

  .footer-main nav {
    gap: 18px 24px;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
  }

  .legal-shell {
    width: 100%;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .legal-topbar {
    align-items: flex-start;
    padding: 24px 20px 0;
  }

  .legal-topbar img {
    width: 105px;
  }

  .legal-topbar nav {
    gap: 16px;
  }

  .legal-content {
    padding: 52px 20px 58px;
  }

  .legal-content h1 {
    font-size: 34px;
  }

  .legal-content h2 {
    font-size: 19px;
  }
}
