@font-face {
  font-family: "Material Symbols Local";
  src: url("/lp/assets/material-symbols-600-subset.woff2") format("woff2");
  font-display: block;
  font-style: normal;
  font-weight: 600;
}

:root {
  color-scheme: light;
  --ink: #092147;
  --ink-soft: #41536d;
  --teal: #10b9be;
  --teal-dark: #008d92;
  --teal-pale: #ecfafa;
  --line: #cfe1e8;
  --white: #fff;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--white);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

button,
a,
summary {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

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

button {
  border: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffca3a;
  outline-offset: 3px;
}

.material-symbols {
  display: inline-block;
  font-family: "Material Symbols Local";
  font-style: normal;
  font-weight: 600;
  font-feature-settings: "liga";
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Progressive, once-only scroll reveals. Elements stay visible when JavaScript is unavailable. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 780ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 780ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal="left"] {
  transform: translate3d(-48px, 0, 0);
}

.reveal-ready [data-reveal="right"] {
  transform: translate3d(48px, 0, 0);
}

.reveal-ready [data-reveal="scale"] {
  transform: scale(0.96);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Hero — source frame: 864 × 634 */
.hero {
  position: relative;
  height: 634px;
  overflow: hidden;
  background:
    linear-gradient(152deg, rgba(255, 255, 255, 0) 0 53%, rgba(224, 248, 249, 0.78) 72%, rgba(65, 207, 210, 0.88) 100%),
    #fff;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 190px;
  height: 205px;
  background: #79dde0;
  clip-path: polygon(100% 0, 100% 100%, 15% 43%);
  content: "";
  opacity: 0.94;
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: 6px;
  bottom: 40px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 2px, transparent 2px 7px);
  content: "";
  opacity: 0.75;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 864px);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 318px minmax(0, 1fr);
}

.hero-copy-block {
  position: relative;
  z-index: 6;
  padding: 19px 0 0 21px;
}

.brand-lockup {
  display: inline-flex;
  height: 55px;
  align-items: center;
  gap: 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-lockup img {
  width: 66px;
  height: 66px;
  margin-left: -9px;
  object-fit: contain;
}

.brand-tagline {
  margin: 0 0 0 6px;
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 29px 0 0 5px;
  font-size: 41px;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.35;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero-description {
  margin: 11px 0 0 7px;
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  width: 294px;
  gap: 10px;
  margin: 17px 0 0 0;
}

.store-downloads {
  display: grid;
  gap: 6px;
}

.store-downloads-label {
  margin: 0 0 0 2px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.store-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.store-badge {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 58px;
  padding: 8px 9px;
  border: 1px solid #1d2738;
  border-radius: 10px;
  background: #050b14;
  color: #fff;
  cursor: not-allowed;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  text-align: center;
  box-shadow: 0 9px 20px rgba(9, 33, 71, 0.14);
}

.store-badge-platform {
  color: #a8edf0;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.store-badge-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.05;
}

.store-badge-copy small {
  color: #d5dce7;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.store-badge-copy strong {
  margin-top: 3px;
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.store-badge[aria-disabled="true"] {
  opacity: 0.88;
}

.cta-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.015em;
  line-height: 1.2;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.cta-button:hover {
  box-shadow: 0 10px 22px rgba(0, 143, 148, 0.2);
  transform: translateY(-2px);
}

.cta-button-secondary {
  min-height: 41px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--teal-dark);
}

.play-icon {
  margin-right: 5px;
  font-size: 23px;
}

.hero-facts {
  display: grid;
  width: 307px;
  margin: 27px 0 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  list-style: none;
}

.hero-facts li {
  display: flex;
  height: 91px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #d5e4e9;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  text-align: center;
}

.hero-facts li > .material-symbols {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 30px;
}

.fact-device-icons {
  display: inline-flex;
  height: 31px;
  align-items: center;
  gap: 2px;
  margin-bottom: 5px;
  color: var(--teal);
}

.fact-device-icons .material-symbols:first-child {
  font-size: 25px;
}

.fact-device-icons .material-symbols:last-child {
  font-size: 30px;
}

.hero-facts strong {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-devices {
  position: relative;
  height: 100%;
  margin: 0;
}

.hero-devices::before,
.hero-devices::after {
  position: absolute;
  z-index: 0;
  font-family: "Material Symbols Local";
  font-feature-settings: "liga";
  line-height: 1;
  content: "\e155";
}

.hero-devices::before {
  top: 31px;
  left: 205px;
  color: rgba(16, 185, 190, 0.22);
  font-size: 76px;
  transform: rotate(-18deg);
}

.hero-devices::after {
  top: 51px;
  right: 55px;
  color: #ffca32;
  content: "\e3e4";
  font-size: 61px;
  transform: rotate(12deg);
}

.device-phone {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1179 / 2556;
  border: 5px solid #111820;
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 13px 27px rgba(9, 33, 71, 0.22);
  transform-origin: center;
}

.device-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone-history {
  z-index: 1;
  top: 109px;
  left: 210px;
  width: 211px;
  border-width: 4px;
  border-radius: 32px;
  transform: rotate(2.5deg);
}

.hero-phone-home {
  z-index: 3;
  top: 78px;
  left: 30px;
  width: 235px;
  transform: rotate(-6.5deg);
}

.hero-phone-detail {
  z-index: 4;
  top: 183px;
  right: 22px;
  width: 180px;
  border-width: 4px;
  border-radius: 31px;
  transform: rotate(12deg);
}

/* Three steps — source frame: y 634–1026 */
.steps-section {
  height: 392px;
  padding: 20px 17px 26px;
  border-bottom: 1px solid #dce8ec;
  background: linear-gradient(90deg, #fff 0%, #f7fdfd 50%, #fff 100%);
}

.steps-grid {
  display: grid;
  width: min(100%, 812px);
  height: 346px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
}

.step-card {
  position: relative;
  height: 346px;
  overflow: hidden;
  border: 1px solid #9ee5e7;
  border-radius: 5px;
  background: rgba(238, 251, 251, 0.84);
}

.step-heading {
  display: flex;
  height: 61px;
  align-items: center;
  gap: 13px;
  padding: 10px 21px;
}

.step-number {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.step-heading h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.step-summary {
  display: grid;
  height: 109px;
  align-items: center;
  padding: 2px 18px 7px 12px;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
}

.step-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid #8ddfe2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal);
  font-size: 36px;
}

.step-summary p {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.85;
}

.step-connector {
  align-self: start;
  margin-top: 94px;
  color: var(--teal);
  font-size: 31px;
  text-align: center;
}

.step-screen {
  position: absolute;
  right: 13px;
  bottom: 0;
  left: 13px;
  height: 176px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 33, 71, 0.08);
  border-radius: 12px 12px 0 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(9, 33, 71, 0.09);
}

.step-screen img {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
}

.step-screen-home img {
  top: -102px;
}

.step-screen-history img {
  top: -62px;
}

.step-screen-report img {
  top: -12px;
}

/* Feature showcase — source frame: y 1026–1391 */
.benefits-section {
  height: 365px;
  overflow: hidden;
  background: #fff;
}

.benefits-inner {
  display: grid;
  width: min(100%, 864px);
  height: 100%;
  margin-inline: auto;
  padding: 45px 29px 0;
  grid-template-columns: 291px minmax(0, 1fr);
}

.benefits-copy h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.32;
}

.benefits-copy ul {
  display: grid;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.benefits-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.3px;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
}

.benefits-copy li .material-symbols {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 17px;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 20;
}

.showcase {
  position: relative;
  width: 515px;
  height: 320px;
  margin-top: -39px;
}

.showcase-stage {
  position: absolute;
  inset: 0;
}

.showcase-phone {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1179 / 2556;
  border: 2px solid #17202b;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(9, 33, 71, 0.13);
  transition: transform 240ms ease, opacity 240ms ease;
}

.showcase-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-phone:nth-child(1) {
  z-index: 1;
  top: 26px;
  left: 31px;
  width: 126px;
  transform: rotate(4deg);
}

.showcase-phone:nth-child(2) {
  z-index: 2;
  top: 12px;
  left: 95px;
  width: 128px;
  transform: rotate(-1deg);
}

.showcase-phone:nth-child(3) {
  z-index: 5;
  top: 0;
  left: 145px;
  width: 139px;
}

.showcase-phone:nth-child(4) {
  z-index: 3;
  top: 22px;
  left: 262px;
  width: 126px;
  transform: rotate(1.5deg);
}

.showcase-phone:nth-child(5) {
  z-index: 1;
  top: 45px;
  left: 363px;
  width: 109px;
  transform: rotate(3deg);
}

.showcase-arrow {
  position: absolute;
  z-index: 10;
  top: 137px;
  display: grid;
  width: 32px;
  height: 32px;
  cursor: pointer;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 7px 15px rgba(0, 141, 146, 0.18);
}

.showcase-arrow:hover {
  background: var(--teal-dark);
}

.showcase-arrow .material-symbols {
  font-size: 24px;
}

.showcase-prev {
  left: -8px;
}

.showcase-next {
  right: 2px;
}

.showcase-dots {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: -7px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0;
}

.showcase-dot {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding: 0;
  background: transparent;
}

.showcase-dot::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6d8dc;
  content: "";
  transform: translate(-50%, -50%);
}

.showcase-dot[aria-current="true"]::after {
  background: var(--teal);
}

/* Trust strip */
.trust-section {
  height: 164px;
  padding: 10px 17px 18px;
  background: #fff;
}

.trust-strip {
  display: grid;
  width: min(100%, 830px);
  min-height: 136px;
  margin-inline: auto;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid #a7e4e5;
  border-radius: 12px;
  background: linear-gradient(105deg, #e8fafa 0%, #ccf2f2 100%);
  color: var(--ink);
  grid-template-columns: 228px minmax(0, 1fr) auto;
  gap: 22px;
  box-shadow: 0 10px 24px rgba(10, 92, 100, 0.09);
}

.trust-illustration {
  height: 96px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(167, 228, 229, 0.85);
  border-radius: 11px;
  background: #fff;
}

.trust-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.trust-copy {
  min-width: 0;
}

.trust-copy h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  text-wrap: balance;
}

.trust-copy p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.65;
}

.trust-copy-nowrap {
  white-space: nowrap;
}

.trust-platform-badge {
  display: flex;
  min-width: 126px;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 12px;
  border: 1px solid #8ddfe2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal-dark);
  text-align: center;
}

.trust-platform-label {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
}

.trust-platform-status {
  margin-top: 7px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* Free / Plus plan comparison */
.plans-section {
  padding: 48px 32px 56px;
  border-top: 1px solid #e3edef;
  border-bottom: 1px solid #dce8ec;
  background: linear-gradient(180deg, #f7fdfd 0%, #edfafa 100%);
}

.plans-inner {
  width: min(100%, 830px);
  margin-inline: auto;
}

.plans-heading {
  text-align: center;
}

.plans-eyebrow {
  margin: 0;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.plans-heading h2 {
  margin: 8px 0 0;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.plans-heading > p:last-child {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.plans-body {
  display: grid;
  margin-top: 27px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) 246px;
  gap: 16px;
}

.plan-comparison {
  overflow: hidden;
  border: 1px solid #b9dfe3;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 92, 100, 0.08);
}

.plan-table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.plan-feature-column {
  width: 52%;
}

.plan-free-column {
  width: 22%;
}

.plan-plus-column {
  width: 26%;
}

.plan-table thead th {
  height: 57px;
  padding: 8px 10px;
  border-bottom: 1px solid #b9dfe3;
  background: #f4f9fa;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.plan-table thead th:first-child {
  padding-left: 17px;
  text-align: left;
}

.plan-table thead th:last-child {
  background: var(--teal);
  color: #fff;
}

.plan-table thead th span,
.plan-table thead th strong {
  display: block;
}

.plan-table thead th strong {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 900;
}

.plan-table tbody tr + tr {
  border-top: 1px solid #e1ebee;
}

.plan-table tbody tr:nth-child(even) {
  background: #fbfefe;
}

.plan-table tbody th,
.plan-table tbody td {
  height: 45px;
  padding: 7px 10px;
  vertical-align: middle;
}

.plan-table tbody th {
  padding-left: 17px;
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
}

.plan-table tbody td {
  border-left: 1px solid #e1ebee;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.plan-table tbody td:last-child {
  background: rgba(16, 185, 190, 0.045);
  color: var(--ink);
}

.availability {
  color: var(--teal-dark);
  font-size: 22px;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.plan-limit {
  display: inline-block;
  line-height: 1.35;
}

.plan-limit strong,
.plan-unlimited {
  color: var(--teal-dark);
  font-weight: 900;
}

.plan-unavailable {
  color: #8795a8;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.plus-offer {
  padding: 18px 17px 17px;
  border: 1px solid #65d2d5;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 141, 146, 0.12);
}

.plus-offer-heading {
  position: relative;
  padding-top: 4px;
}

.plus-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.plus-offer-heading p {
  margin: 0;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
}

.plus-offer-heading h3 {
  margin: 5px 0 0;
  padding-right: 50px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.plus-prices {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.plus-price-row {
  position: relative;
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid #d5e7ea;
  border-radius: 8px;
  background: #f8fbfc;
}

.plus-price-row > span {
  font-size: 10px;
  font-weight: 850;
}

.plus-price-row strong {
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.plus-price-row strong b {
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.plus-price-row.is-recommended {
  min-height: 66px;
  padding-bottom: 22px;
  border-color: var(--teal);
  background: #eafafa;
}

.plus-price-row small {
  position: absolute;
  right: 10px;
  bottom: 6px;
  color: var(--teal-dark);
  font-size: 8px;
  font-weight: 900;
  line-height: 1.3;
}

.plus-saving,
.plus-household {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-size: 9.5px;
  font-weight: 850;
  line-height: 1.45;
}

.plus-household {
  margin-top: 5px;
  color: var(--ink);
}

.plus-saving .material-symbols,
.plus-household .material-symbols {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 17px;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 20;
}

.trial-note {
  display: grid;
  gap: 3px;
  margin-top: 11px;
  padding: 10px 11px;
  border-radius: 8px;
  background: #f0f6f8;
}

.trial-note strong {
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 900;
  line-height: 1.45;
}

.trial-note span {
  color: var(--ink-soft);
  font-size: 8.5px;
  font-weight: 650;
  line-height: 1.55;
}

/* FAQ — source frame: y 1515–1695 */
.faq-section {
  height: 180px;
  padding: 16px 32px 15px;
  background: #fff;
}

.faq-section h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: center;
}

.faq-title-line {
  display: block;
  width: 39px;
  height: 3px;
  margin: 6px auto 15px;
  border-radius: 999px;
  background: var(--teal);
}

.faq-grid {
  display: grid;
  width: min(100%, 800px);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.faq-column {
  overflow: hidden;
  border: 1px solid #d4e0e8;
  border-radius: 6px;
  background: #fff;
}

.faq-column details + details {
  border-top: 1px solid #d4e0e8;
}

.faq-column summary {
  display: flex;
  min-height: 31px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 15px 5px 23px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.4;
  list-style: none;
}

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

.faq-column summary b {
  margin-right: 6px;
  font-size: 11px;
}

.faq-column summary > .material-symbols {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 15px;
  transition: transform 160ms ease;
}

.faq-column details[open] summary > .material-symbols {
  transform: rotate(180deg);
}

.faq-column details p {
  margin: 0;
  padding: 0 23px 10px;
  color: var(--ink-soft);
  font-size: 9.5px;
  line-height: 1.6;
}

.site-footer {
  padding: 8px 17px 28px;
  background: #fff;
}

.site-footer-inner {
  display: flex;
  width: min(100%, 830px);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #dce8ec;
  color: var(--ink-soft);
  font-size: 10.5px;
  font-weight: 700;
}

.site-footer-inner p {
  margin: 0;
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer-links a {
  transition: color 150ms ease;
}

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

/* Spacious desktop composition. The original 864px art direction remains intact below 1200px. */
@media (min-width: 1200px) {
  .hero {
    height: 760px;
  }

  .hero::before {
    width: 250px;
    height: 260px;
  }

  .hero::after {
    right: 18px;
    bottom: 48px;
    width: 68px;
    height: 68px;
  }

  .hero-inner {
    width: min(calc(100% - 64px), 1200px);
    grid-template-columns: 430px minmax(0, 1fr);
  }

  .hero-copy-block {
    padding: 31px 0 0 12px;
  }

  .brand-lockup {
    height: 68px;
    font-size: 42px;
  }

  .brand-lockup img {
    width: 82px;
    height: 82px;
    margin-left: -11px;
  }

  .brand-tagline {
    margin-left: 8px;
    font-size: 14px;
  }

  .hero h1 {
    margin: 37px 0 0 7px;
    font-size: 51px;
    line-height: 1.32;
  }

  .hero-description {
    margin: 15px 0 0 9px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    width: 370px;
    gap: 13px;
    margin-top: 24px;
  }

  .store-downloads {
    gap: 7px;
  }

  .store-downloads-label {
    font-size: 12px;
  }

  .store-badges {
    gap: 10px;
  }

  .cta-button {
    min-height: 56px;
    font-size: 19px;
  }

  .store-badge {
    min-height: 67px;
    padding: 9px 11px;
    border-radius: 12px;
    gap: 3px;
  }

  .store-badge-platform {
    font-size: 8px;
  }

  .store-badge-copy small {
    font-size: 8px;
  }

  .store-badge-copy strong {
    margin-top: 4px;
    font-size: 16px;
  }

  .cta-button-secondary {
    min-height: 50px;
  }

  .hero-facts {
    width: 382px;
    margin-top: 31px;
    gap: 12px;
  }

  .hero-facts li {
    height: 104px;
    border-radius: 11px;
  }

  .hero-facts li > .material-symbols {
    margin-bottom: 7px;
    font-size: 35px;
  }

  .fact-device-icons {
    height: 36px;
    margin-bottom: 7px;
  }

  .fact-device-icons .material-symbols:first-child {
    font-size: 29px;
  }

  .fact-device-icons .material-symbols:last-child {
    font-size: 35px;
  }

  .hero-facts strong {
    font-size: 13px;
  }

  .hero-devices::before {
    top: 33px;
    left: 286px;
    font-size: 92px;
  }

  .hero-devices::after {
    top: 61px;
    right: 86px;
    font-size: 72px;
  }

  .device-phone {
    border-width: 6px;
    border-radius: 43px;
  }

  .hero-phone-home {
    top: 94px;
    left: 48px;
    width: 285px;
  }

  .hero-phone-history {
    top: 134px;
    left: 300px;
    width: 258px;
    border-width: 5px;
    border-radius: 39px;
  }

  .hero-phone-detail {
    top: 220px;
    right: 28px;
    width: 222px;
    border-width: 5px;
    border-radius: 38px;
  }

  .steps-section {
    height: 560px;
    padding: 68px 24px 72px;
  }

  .steps-grid {
    width: min(100%, 1180px);
    height: 420px;
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  }

  .step-card {
    height: 420px;
    border-radius: 8px;
  }

  .step-heading {
    height: 78px;
    gap: 17px;
    padding: 13px 27px;
  }

  .step-number {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 24px;
  }

  .step-heading h3 {
    font-size: 25px;
  }

  .step-summary {
    height: 135px;
    padding: 3px 27px 10px 18px;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .step-icon {
    width: 80px;
    height: 80px;
    font-size: 44px;
  }

  .step-summary p {
    font-size: 13.5px;
    line-height: 1.9;
  }

  .step-connector {
    margin-top: 156px;
    font-size: 40px;
  }

  .step-screen {
    right: 18px;
    left: 18px;
    height: 225px;
    border-radius: 16px 16px 0 0;
  }

  .step-screen-home img {
    top: -142px;
  }

  .step-screen-history img {
    top: -87px;
  }

  .step-screen-report img {
    top: -18px;
  }

  .benefits-section {
    height: 520px;
  }

  .benefits-inner {
    width: min(calc(100% - 64px), 1200px);
    padding: 92px 36px 0;
    grid-template-columns: 390px minmax(0, 1fr);
  }

  .benefits-copy h2 {
    font-size: 36px;
    line-height: 1.35;
  }

  .benefits-copy ul {
    gap: 13px;
    margin-top: 24px;
  }

  .benefits-copy li {
    gap: 13px;
    font-size: 14px;
    line-height: 1.7;
  }

  .benefits-copy li .material-symbols {
    font-size: 21px;
  }

  .showcase {
    width: 680px;
    height: 410px;
    margin-top: -51px;
    margin-left: 14px;
  }

  .showcase-stage {
    width: 515px;
    height: 320px;
    inset: 0 auto auto 0;
    transform: scale(1.27);
    transform-origin: top left;
  }

  .showcase-arrow {
    top: 177px;
    width: 42px;
    height: 42px;
  }

  .showcase-arrow .material-symbols {
    font-size: 30px;
  }

  .showcase-prev {
    left: -18px;
  }

  .showcase-next {
    right: 5px;
  }

  .showcase-dots {
    bottom: -2px;
  }

  .showcase-dot {
    width: 30px;
    height: 30px;
  }

  .showcase-dot::after {
    width: 10px;
    height: 10px;
  }

  .trust-section {
    height: 210px;
    padding: 25px 24px;
  }

  .trust-strip {
    width: min(100%, 1160px);
    min-height: 160px;
    padding: 20px 26px;
    border-radius: 14px;
    grid-template-columns: 320px minmax(0, 1fr) auto;
    gap: 30px;
  }

  .trust-illustration {
    height: 116px;
    border-radius: 13px;
  }

  .trust-copy h2 {
    font-size: 23px;
  }

  .trust-copy p {
    margin-top: 8px;
    font-size: 13px;
  }

  .trust-platform-badge {
    min-width: 160px;
    min-height: 94px;
    border-radius: 14px;
  }

  .trust-platform-label {
    font-size: 18px;
  }

  .trust-platform-status {
    margin-top: 9px;
    padding: 5px 13px;
    font-size: 11px;
  }

  .plans-section {
    padding: 72px 32px 78px;
  }

  .plans-inner {
    width: min(100%, 1120px);
  }

  .plans-eyebrow {
    font-size: 12px;
  }

  .plans-heading h2 {
    margin-top: 10px;
    font-size: 36px;
  }

  .plans-heading > p:last-child {
    margin-top: 12px;
    font-size: 14px;
  }

  .plans-body {
    margin-top: 36px;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
  }

  .plan-comparison,
  .plus-offer {
    border-radius: 14px;
  }

  .plan-table thead th {
    height: 70px;
    padding: 11px 14px;
    font-size: 14px;
  }

  .plan-table thead th:first-child,
  .plan-table tbody th {
    padding-left: 24px;
  }

  .plan-table thead th strong {
    font-size: 17px;
  }

  .plan-table tbody th,
  .plan-table tbody td {
    height: 54px;
    padding-block: 9px;
  }

  .plan-table tbody th {
    font-size: 13px;
  }

  .plan-table tbody td {
    font-size: 12.5px;
  }

  .availability {
    font-size: 27px;
  }

  .plan-unavailable {
    font-size: 26px;
  }

  .plus-offer {
    padding: 26px 25px 24px;
  }

  .plus-badge {
    padding: 5px 12px;
    font-size: 10px;
  }

  .plus-offer-heading p {
    font-size: 14px;
  }

  .plus-offer-heading h3 {
    margin-top: 7px;
    padding-right: 70px;
    font-size: 21px;
  }

  .plus-prices {
    gap: 10px;
    margin-top: 20px;
  }

  .plus-price-row {
    min-height: 67px;
    padding: 12px 15px;
    border-radius: 10px;
  }

  .plus-price-row.is-recommended {
    min-height: 83px;
    padding-bottom: 27px;
  }

  .plus-price-row > span {
    font-size: 13px;
  }

  .plus-price-row strong {
    font-size: 14px;
  }

  .plus-price-row strong b {
    font-size: 31px;
  }

  .plus-price-row small {
    right: 14px;
    bottom: 8px;
    font-size: 10px;
  }

  .plus-saving,
  .plus-household {
    gap: 8px;
    margin-top: 13px;
    font-size: 12px;
  }

  .plus-household {
    margin-top: 7px;
  }

  .plus-saving .material-symbols,
  .plus-household .material-symbols {
    font-size: 21px;
  }

  .trial-note {
    gap: 4px;
    margin-top: 15px;
    padding: 13px 15px;
    border-radius: 10px;
  }

  .trial-note strong {
    font-size: 12px;
  }

  .trial-note span {
    font-size: 10.5px;
  }

  .faq-section {
    height: auto;
    min-height: 300px;
    padding: 48px 32px 52px;
  }

  .faq-section h2 {
    font-size: 28px;
  }

  .faq-title-line {
    width: 54px;
    height: 4px;
    margin: 9px auto 24px;
  }

  .faq-grid {
    width: min(100%, 1120px);
    gap: 56px;
  }

  .faq-column {
    border-radius: 8px;
  }

  .faq-column summary {
    min-height: 50px;
    padding: 10px 20px 10px 27px;
    font-size: 13px;
  }

  .faq-column summary b {
    margin-right: 8px;
    font-size: 14px;
  }

  .faq-column summary > .material-symbols {
    font-size: 20px;
  }

  .faq-column details p {
    padding: 0 27px 15px;
    font-size: 12px;
  }

  .site-footer {
    padding: 0 24px 38px;
  }

  .site-footer-inner {
    width: min(100%, 1160px);
    padding-top: 24px;
    font-size: 12px;
  }
}

@media (max-width: 799px) {
  .hero,
  .steps-section,
  .benefits-section,
  .trust-section,
  .faq-section {
    height: auto;
  }

  .hero {
    min-height: 1040px;
  }

  .hero::before {
    width: 180px;
    height: 150px;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy-block {
    padding: 17px 18px 0;
  }

  .brand-lockup {
    font-size: 29px;
  }

  .brand-tagline {
    margin-top: 2px;
  }

  .hero h1 {
    margin-top: 27px;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.3;
  }

  .hero-description {
    font-size: 12px;
  }

  .hero-actions,
  .hero-facts {
    width: min(100%, calc(100vw - 36px));
  }

  .hero-facts {
    margin-top: 20px;
  }

  .hero-facts li {
    height: 84px;
  }

  .hero-devices {
    height: 520px;
    margin-top: 20px;
  }

  .hero-devices::before {
    top: -12px;
    left: 48%;
  }

  .hero-devices::after {
    top: 16px;
    right: 20px;
  }

  .hero-phone-home {
    top: 5px;
    left: 50%;
    width: 214px;
    transform: translateX(-56%) rotate(-5deg);
  }

  .hero-phone-history {
    top: 65px;
    left: 8px;
    width: 174px;
    transform: rotate(-8deg);
  }

  .hero-phone-detail {
    top: 94px;
    right: -5px;
    width: 160px;
    transform: rotate(11deg);
  }

  .steps-section {
    padding: 32px 18px;
  }

  .steps-grid {
    height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-card {
    height: 410px;
  }

  .step-connector {
    display: none;
  }

  .step-heading {
    padding-inline: 22px;
  }

  .step-summary {
    padding-inline: 22px;
    grid-template-columns: 72px 1fr;
  }

  .step-summary p {
    font-size: 12px;
  }

  .step-screen {
    height: 236px;
    right: 22px;
    left: 22px;
  }

  .step-screen-home img {
    top: -136px;
  }

  .step-screen-history img {
    top: -82px;
  }

  .step-screen-report img {
    top: -16px;
  }

  .benefits-section {
    padding: 52px 18px 24px;
  }

  .benefits-inner {
    display: block;
    padding: 0;
  }

  .benefits-copy h2 {
    font-size: 27px;
  }

  .benefits-copy li {
    font-size: 11px;
    white-space: normal;
  }

  .showcase {
    width: 100%;
    max-width: 515px;
    height: 325px;
    margin: 35px auto 0;
    transform-origin: top center;
  }

  .showcase-stage {
    left: 50%;
    width: 515px;
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .showcase-arrow {
    top: 105px;
  }

  .showcase-prev {
    left: 0;
  }

  .showcase-next {
    right: 0;
  }

  .showcase-dots {
    bottom: 26px;
  }

  .trust-section {
    padding: 12px 18px 30px;
  }

  .trust-strip {
    width: min(100%, 560px);
    height: auto;
    min-height: 0;
    padding: 18px;
    border-radius: 16px;
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }

  .trust-illustration {
    width: 100%;
    height: clamp(96px, 17vw, 122px);
    justify-self: center;
    border-radius: 12px;
  }

  .trust-copy {
    text-align: left;
  }

  .trust-copy h2 {
    font-size: clamp(18px, 5.15vw, 20px);
    line-height: 1.4;
  }

  .trust-copy p {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.7;
  }

  .trust-platform-badge {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    justify-content: space-between;
    flex-direction: row;
    padding: 9px 12px 9px 15px;
    border-radius: 11px;
    text-align: left;
  }

  .trust-platform-label {
    font-size: 15px;
  }

  .trust-platform-status {
    margin-top: 0;
    font-size: 9.5px;
  }

  .plans-section {
    padding: 46px 18px 52px;
  }

  .plans-heading h2 {
    font-size: 27px;
  }

  .plans-heading > p:last-child {
    font-size: 11px;
  }

  .plans-body {
    margin-top: 25px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .plan-feature-column {
    width: 48%;
  }

  .plan-free-column,
  .plan-plus-column {
    width: 26%;
  }

  .plan-table thead th {
    height: 61px;
    padding-inline: 7px;
    font-size: 10px;
  }

  .plan-table thead th:first-child,
  .plan-table tbody th {
    padding-left: 11px;
  }

  .plan-table thead th strong {
    font-size: 12px;
  }

  .plan-table tbody th,
  .plan-table tbody td {
    height: 54px;
    padding: 8px 7px;
  }

  .plan-table tbody th {
    font-size: 10.5px;
  }

  .plan-table tbody td {
    font-size: 9.5px;
  }

  .plus-offer {
    padding: 22px 20px 20px;
  }

  .plus-badge {
    font-size: 9px;
  }

  .plus-offer-heading p {
    font-size: 12px;
  }

  .plus-offer-heading h3 {
    font-size: 18px;
  }

  .plus-price-row {
    min-height: 62px;
  }

  .plus-price-row.is-recommended {
    min-height: 75px;
  }

  .plus-price-row > span {
    font-size: 11px;
  }

  .plus-price-row strong {
    font-size: 12px;
  }

  .plus-price-row strong b {
    font-size: 27px;
  }

  .plus-saving,
  .plus-household {
    font-size: 10.5px;
  }

  .trial-note strong {
    font-size: 10.5px;
  }

  .trial-note span {
    font-size: 9.5px;
  }

  .faq-section {
    padding: 28px 18px 36px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-column summary {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .faq-column details p {
    padding: 0 14px 14px;
    font-size: 10.5px;
  }

  .site-footer {
    padding: 0 18px 28px;
  }

  .site-footer-inner {
    flex-direction: column-reverse;
    gap: 14px;
    padding-top: 20px;
    text-align: center;
  }

  .site-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
  }
}

@media (max-width: 370px) {
  .hero {
    min-height: 1060px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-facts strong {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

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