:root {
  --ink: #221814;
  --muted: #75635d;
  --paper: #fffdf8;
  --peach: #f28b5f;
  --peach-dark: #b95738;
  --warm-dark: #9f6418;
  --pink: #ffd7e7;
  --mint: #c9efe2;
  --aqua: #bdeff4;
  --lemon: #ffe78f;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overflow-x: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.72;
  background: #393939;
}

a {
  color: inherit;
}

.desktop {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.24)),
    url("./assets/desktop-bg-lite.jpg") center / cover;
}

.desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.32), transparent 28%);
  pointer-events: none;
}

.app-window {
  position: absolute;
  inset: 24px 36px 70px 36px;
  z-index: 5;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.52);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.brand {
  color: var(--peach);
  font-size: 25px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}

nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

nav a {
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
}

nav a:hover {
  background: rgba(242, 139, 95, 0.14);
  color: var(--ink);
}

.window-body {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: auto;
  scroll-padding-bottom: 96px;
  padding: clamp(16px, 2.2vw, 28px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.window-body::-webkit-scrollbar {
  display: none;
}

.view {
  position: relative;
  display: grid;
  min-height: calc(100vh - 150px);
  margin-bottom: clamp(18px, 3vw, 34px);
  overflow-y: visible;
  overflow-x: hidden;
  scroll-margin-top: clamp(16px, 2.2vw, 28px);
  scroll-margin-bottom: 96px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.view::-webkit-scrollbar {
  display: none;
}

.view::before {
  content: "MIMAMORI";
  position: absolute;
  left: 24px;
  bottom: 10px;
  z-index: 0;
  color: rgba(242, 139, 95, 0.14);
  font-size: clamp(64px, 13vw, 150px);
  font-weight: 900;
  line-height: 0.85;
  pointer-events: none;
}

.view > * {
  position: relative;
  z-index: 1;
}

.section-nav {
  position: absolute;
  right: clamp(18px, 2.8vw, 34px);
  z-index: 12;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.96), transparent 42%),
    rgba(255, 231, 143, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(75, 45, 34, 0.16);
  color: var(--peach-dark);
  cursor: pointer;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.section-prev {
  bottom: calc(clamp(18px, 2.6vw, 34px) + 56px);
}

.section-next {
  bottom: clamp(18px, 2.6vw, 34px);
}

.section-nav[hidden] {
  display: none;
}

.section-nav::before {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.section-prev::before {
  transform: translateY(3px) rotate(225deg);
}

.section-nav:hover,
.section-nav:focus-visible {
  outline: none;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.98), transparent 42%),
    rgba(255, 215, 231, 0.92);
  transform: translateY(-3px);
}

.section-nav.is-tapped {
  animation: nextTap 520ms cubic-bezier(0.16, 1.25, 0.3, 1) both;
}

@keyframes nextTap {
  0% {
    transform: translateY(0) scale(1);
  }
  42% {
    transform: translateY(8px) scale(1.08);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

body.animations-ready .view .page-kicker,
body.animations-ready .view h1,
body.animations-ready .view h2,
body.animations-ready .view .lead,
body.animations-ready .view .section-head > p,
body.animations-ready .view .care-message,
body.animations-ready .view .hero-phone,
body.animations-ready .view .hero-balloons > span,
body.animations-ready .view .feature-flow span,
body.animations-ready .view .pdf-preview-button,
body.animations-ready .view .pdf-list-mockup,
body.animations-ready .view .sample-card {
  opacity: 1;
  transform: none;
  transition:
    opacity 900ms ease,
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

body.animations-ready .view.section-visible .page-kicker,
body.animations-ready .view.section-visible h1,
body.animations-ready .view.section-visible h2,
body.animations-ready .view.section-visible .lead,
body.animations-ready .view.section-visible .section-head > p,
body.animations-ready .view.section-visible .care-message,
body.animations-ready .view.section-visible .hero-phone,
body.animations-ready .view.section-visible .pdf-preview-button,
body.animations-ready .view.section-visible .pdf-list-mockup,
body.animations-ready .view.section-visible .sample-card {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

body.animations-ready .view.section-visible .hero-phone,
body.animations-ready .view.section-visible .pdf-preview-button,
body.animations-ready .view.section-visible .pdf-list-mockup,
body.animations-ready .view.section-visible .sample-card {
  animation: none;
}

body.animations-ready .view.section-visible .hero-balloons > span,
body.animations-ready .view.section-visible .feature-flow span {
  animation: balloon-pop 980ms cubic-bezier(0.16, 1.32, 0.3, 1) both;
}

body.animations-ready .view.section-visible .hero-balloons > span:nth-child(1),
body.animations-ready .view.section-visible .feature-flow span:nth-child(1) {
  animation-delay: 260ms;
  transition-delay: 180ms;
}

body.animations-ready .view.section-visible .hero-balloons > span:nth-child(2),
body.animations-ready .view.section-visible .feature-flow span:nth-child(2) {
  animation-delay: 420ms;
  transition-delay: 300ms;
}

body.animations-ready .view.section-visible .hero-balloons > span:nth-child(3),
body.animations-ready .view.section-visible .feature-flow span:nth-child(3) {
  animation-delay: 580ms;
  transition-delay: 420ms;
}

body.animations-ready .view.section-visible .hero-balloons > span:nth-child(4) {
  animation-delay: 740ms;
  transition-delay: 540ms;
}

.feature-grid article:nth-child(1) {
  --feature-index: 1;
}

.feature-grid article:nth-child(2) {
  --feature-index: 2;
}

.feature-grid article:nth-child(3) {
  --feature-index: 3;
}

.feature-grid article:nth-child(4) {
  --feature-index: 4;
}

.feature-grid article:nth-child(5) {
  --feature-index: 5;
}

.feature-grid article:nth-child(6) {
  --feature-index: 6;
}

.feature-grid article:nth-child(7) {
  --feature-index: 7;
}

.feature-grid article:nth-child(8) {
  --feature-index: 8;
}

.view.is-active {
  animation: none;
}

.hero-panel,
.two-col,
.monitor-section,
.screen-gallery,
.info-grid {
  display: grid;
}

.content-section:not(.two-col):not(.monitor-section) {
  display: grid;
}

.hero-panel {
  position: relative;
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(18px, 3.2vw, 38px);
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 215, 231, 0.48), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(201, 239, 226, 0.54), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 240, 226, 0.42));
}

.hero-copy,
.hero-phone {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  justify-self: center;
  width: min(100%, 620px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warm-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.page-kicker {
  display: block;
  width: fit-content;
  margin: 0 0 14px !important;
  color: var(--warm-dark) !important;
  font-size: 14px !important;
  font-weight: 900;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
  text-align: left;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 span + span {
  padding-left: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.35;
}

.lead,
.content-section p,
.feature-grid p,
.text-card,
.info-grid p,
.window-footer p {
  color: var(--muted);
}

.lead {
  max-width: 620px;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.7;
}

.lead p {
  margin: 0 0 16px;
}

.lead p:last-child {
  margin-bottom: 0;
}

.hero-inline-mobile-image {
  display: none;
}

.hero-balloons {
  position: absolute;
  inset: 4% 1% 4% auto;
  z-index: 2;
  width: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.hero-balloons > span {
  position: relative;
  display: inline-flex;
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 26px rgba(75, 45, 34, 0.1);
  opacity: 1;
  animation: none;
  isolation: isolate;
}

.hero-balloons > span b {
  display: block;
  padding-left: 0;
  font: inherit;
}

.hero-balloons > span::before,
.hero-balloons > span::after {
  content: none;
}

.hero-balloons > span::before {
  left: 10px;
  top: -7px;
  width: 22px;
  height: 22px;
  box-shadow:
    23px -6px 0 3px var(--cloud-color),
    51px -3px 0 -1px var(--cloud-color),
    76px 8px 0 -6px var(--cloud-color);
}

.hero-balloons > span::after {
  left: 10px;
  bottom: -7px;
  width: 20px;
  height: 20px;
  box-shadow:
    24px 5px 0 1px var(--cloud-color),
    52px 5px 0 -2px var(--cloud-color),
    78px -2px 0 -6px var(--cloud-color),
    -7px -18px 0 -7px var(--cloud-color),
    91px -19px 0 -10px var(--cloud-color);
}

.balloon-med,
.balloon-med::after {
  --cloud-color: rgba(255, 215, 231, 0.72);
  background: rgba(255, 215, 231, 0.72);
}

.balloon-med {
  transform: none;
  animation-delay: 120ms;
}

.balloon-med::before {
  animation-delay: 60ms;
}

.balloon-pdf,
.balloon-pdf::after {
  --cloud-color: rgba(255, 231, 143, 0.66);
  background: rgba(255, 231, 143, 0.66);
}

.balloon-pdf {
  transform: none;
  animation-delay: 300ms;
}

.balloon-pdf::before {
  animation-delay: 240ms;
}

.balloon-graph,
.balloon-graph::after {
  --cloud-color: rgba(201, 239, 226, 0.72);
  background: rgba(201, 239, 226, 0.72);
}

.balloon-graph {
  transform: none;
  animation-delay: 480ms;
}

.balloon-graph::before {
  animation-delay: 420ms;
}

.balloon-family,
.balloon-family::after {
  --cloud-color: rgba(189, 239, 244, 0.68);
  background: rgba(189, 239, 244, 0.68);
}

.balloon-family {
  transform: none;
  animation-delay: 660ms;
}

.balloon-family::before {
  animation-delay: 600ms;
}

@keyframes balloon-pop {
  0% {
    opacity: 0;
    scale: 0.42;
  }
  54% {
    opacity: 1;
    scale: 1.08;
  }
  74% {
    scale: 0.96;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

@keyframes balloon-burst {
  0% {
    opacity: 0;
    transform: scale(0.38);
  }
  26% {
    opacity: 0.28;
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-balloons > span,
  .feature-flow span,
  .view.section-visible .hero-phone,
  .view.section-visible .pdf-preview-button,
  .view.section-visible .pdf-list-mockup,
  .view.section-visible .graph-card,
  .view.section-visible .sample-card,
  .footer-icon {
    animation: none;
  }

  .hero-balloons > span,
  .feature-flow span,
  .view .page-kicker,
  .view h1,
  .view h2,
  .view .lead,
  .view .section-head > p,
  .view .hero-phone,
  .view .feature-grid article,
  .view .pdf-preview-button,
  .view .pdf-list-mockup,
  .view .graph-card,
  .view .sample-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--peach);
  color: #fff;
  box-shadow: 0 18px 36px rgba(242, 139, 95, 0.28);
}

.button.light {
  border: 1px solid rgba(185, 87, 56, 0.24);
  background: rgba(255, 255, 255, 0.66);
  color: var(--peach-dark);
}

.button.full {
  width: 100%;
}

.hero-phone {
  min-height: min(66vh, 590px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 112px 8px 0;
  isolation: isolate;
}

.hero-mockup-image {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: min(70vh, 640px);
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(75, 45, 34, 0.2));
}

.marquee {
  overflow: hidden;
  margin: 22px 0;
  border-radius: 999px;
  background: rgba(34, 24, 20, 0.92);
}

.marquee div {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 12px 16px;
}

.marquee span {
  color: #fff8ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.content-section,
.screen-gallery,
.info-grid {
  padding: 42px 0;
}

.two-col,
.monitor-section,
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
}

.monitor-section {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: left;
}

.section-head {
  max-width: none;
  margin-bottom: 0;
}

.section-head > p {
  margin-bottom: 0;
  font-size: clamp(14px, 1.35vw, 17px);
}

.care-message {
  position: relative;
  overflow: hidden;
  width: min(100%, 720px);
  margin: 20px 0 0;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.94) 0 19%, transparent 20%),
    radial-gradient(circle at 31% 9%, rgba(255, 255, 255, 0.86) 0 23%, transparent 24%),
    radial-gradient(circle at 55% 18%, rgba(255, 255, 255, 0.9) 0 24%, transparent 25%),
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.82) 0 21%, transparent 22%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.78), rgba(255, 244, 233, 0.56));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 44px rgba(75, 45, 34, 0.08);
}

.care-message::before,
.care-message::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.care-message::before {
  width: 190px;
  height: 72px;
  left: 9%;
  bottom: -28px;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(1px);
}

.care-message::after {
  width: 250px;
  height: 96px;
  right: -32px;
  top: -34px;
  background: rgba(201, 239, 226, 0.22);
  filter: blur(8px);
}

.care-message p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.78;
}

.care-message p + p {
  margin-top: 6px;
}

.feature-flow {
  position: absolute;
  top: clamp(16px, 2.4vw, 26px);
  right: clamp(16px, 2.8vw, 34px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.feature-flow span {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 231, 143, 0.66);
  color: #111111;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 26px rgba(75, 45, 34, 0.1);
  opacity: 1;
  animation: none;
}

.feature-flow span:nth-child(1) {
  background: rgba(255, 215, 231, 0.72);
  animation-delay: 120ms;
}

.feature-flow span:nth-child(2) {
  background: rgba(201, 239, 226, 0.72);
  animation-delay: 300ms;
}

.feature-flow span:nth-child(3) {
  background: rgba(189, 239, 244, 0.68);
  animation-delay: 480ms;
}

.text-card,
.feature-grid article,
.info-grid article {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 248, 239, 0.42)),
    rgba(255, 253, 248, 0.34);
  box-shadow: 0 20px 56px rgba(75, 45, 34, 0.1);
  backdrop-filter: blur(16px);
}

.text-card,
.info-grid article {
  padding: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: feature;
}

.feature-grid article {
  position: relative;
  min-height: 0;
  overflow: visible;
  padding: clamp(14px, 1.55vw, 22px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 231, 143, 0.34);
  pointer-events: none;
}

.feature-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(75, 45, 34, 0.16);
}

.feature-grid article:nth-child(1) {
  min-height: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 231, 143, 0.74), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 229, 201, 0.56)),
    rgba(255, 253, 248, 0.42);
}

.feature-grid article:nth-child(6),
.feature-grid article:nth-child(8) {
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 239, 226, 0.78), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(240, 255, 250, 0.46)),
    rgba(255, 253, 248, 0.36);
}

.feature-grid article:nth-child(7) {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 215, 231, 0.72), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 246, 250, 0.48)),
    rgba(255, 253, 248, 0.36);
}

.feature-grid span {
  display: inline-flex;
  width: auto;
  min-width: 42px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(36, 24, 20, 0.9);
  color: var(--peach-dark);
  color: #fffaf0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

#features h2 {
  max-width: min(760px, calc(100% - 260px));
  font-size: clamp(24px, 3vw, 38px);
}

.screen-gallery h2 {
  max-width: 760px;
  font-size: clamp(24px, 3vw, 38px);
}

#features {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: clamp(12px, 2vw, 22px);
  padding: clamp(18px, 2.7vw, 34px);
}

#features h3 {
  margin-bottom: 8px;
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.35;
}

#features p {
  margin-bottom: 0;
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.55;
}

.feature-jump {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 6px 10px 6px 8px;
  background: rgba(255, 255, 255, 0.58);
  color: #4a302b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(75, 45, 34, 0.1);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-jump svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.feature-jump span {
  min-width: 0;
  height: auto;
  margin: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
}

.feature-jump:hover {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(75, 45, 34, 0.14);
  transform: translateY(-2px);
}

.feature-jump-graph {
  background: rgba(201, 239, 226, 0.58);
}

.feature-jump-pdf {
  background: rgba(255, 215, 231, 0.58);
}

#features .section-head > p,
.screen-gallery .section-head > p,
.sample-copy > p {
  color: var(--muted);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.55;
}

.screen-gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(10px, 1.6vw, 18px);
  align-items: start;
  padding: clamp(26px, 4vw, 46px);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 231, 143, 0.38), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(201, 239, 226, 0.44), transparent 32%),
    rgba(255, 255, 255, 0.28);
}

#mockups {
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 0.92fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  gap: clamp(8px, 1.4vw, 18px);
}

.pdf-copy {
  max-width: 760px;
}

#mockups .pdf-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  max-width: 620px;
  padding-top: clamp(10px, 2vw, 24px);
}

.pdf-mockups {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  justify-content: stretch;
  align-items: end;
  gap: clamp(16px, 3vw, 28px);
}

#mockups .pdf-mockups {
  display: contents;
}

.pdf-real-layout {
  width: 100%;
  justify-self: stretch;
  align-items: center;
  margin-top: -20px;
}

.pdf-mockups img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(51, 65, 85, 0.12);
}

.pdf-mockups .pdf-list-mockup {
  width: min(100%, 650px);
  max-height: min(68vh, 600px);
  justify-self: flex-start;
  align-self: end;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  transform: translate(-12px, 14px);
}

#mockups .pdf-list-mockup {
  grid-column: 2;
  grid-row: 1;
  border-radius: 0;
  box-shadow: none;
}

.graph-section {
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.graph-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  max-width: 840px;
  padding-top: clamp(10px, 2vw, 24px);
}

.graph-notes {
  display: grid;
  gap: 6px;
  max-width: 840px;
  margin-top: clamp(14px, 2vw, 22px);
}

.graph-notes p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  padding: 10px 12px;
  color: #5c5148;
  font-size: clamp(10px, 0.72vw, 11px);
  line-height: 1.5;
}

.graph-notes p:nth-child(1) {
  background: rgba(255, 215, 231, 0.34);
}

.graph-notes p:nth-child(2) {
  background: rgba(201, 239, 226, 0.38);
}

.graph-mockups {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(220px, 0.78fr);
  align-items: center;
  justify-items: stretch;
  gap: clamp(14px, 2vw, 22px);
}

.graph-card {
  position: relative;
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 0;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.graph-card picture {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.graph-preview-button {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.graph-preview-button:focus-visible {
  outline: 3px solid rgba(242, 139, 95, 0.58);
  outline-offset: 5px;
}

.graph-lp-mockup {
  width: 100%;
  height: min(82vh, 760px);
  max-height: min(82vh, 760px);
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(75, 45, 34, 0.14));
  transform: none;
}

.graph-card-main .graph-lp-mockup {
  width: 100%;
  height: 100%;
  max-height: none;
}

.graph-click-mark {
  position: absolute;
  right: clamp(14px, 4vw, 42px);
  bottom: clamp(14px, 4vw, 42px);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--peach-dark);
  box-shadow: 0 12px 26px rgba(75, 45, 34, 0.18);
  animation: pdf-loupe-float 1.8s ease-in-out infinite;
  pointer-events: none;
}

.graph-click-mark::before,
.graph-click-mark::after {
  content: "";
  position: absolute;
}

.graph-click-mark::before {
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.graph-click-mark::after {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(11px, 12px) rotate(45deg);
}

.graph-card-sub {
  align-self: center;
  justify-self: center;
}

.graph-card-sub .graph-lp-mockup {
  width: min(100%, 640px);
  height: min(82vh, 760px);
  max-height: min(82vh, 760px);
}

.pdf-preview-button {
  --pdf-lift: 0px;
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 226px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 231, 143, 0.56), transparent 36%),
    radial-gradient(circle at 74% 78%, rgba(201, 239, 226, 0.48), transparent 34%),
    rgba(255, 253, 248, 0.24);
  cursor: pointer;
  box-shadow: 0 20px 46px rgba(75, 45, 34, 0.12);
}

#mockups .pdf-preview-button {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  margin-right: -8px;
  margin-bottom: clamp(10px, 3vh, 34px);
}

.pdf-preview-button:focus-visible {
  outline: 3px solid rgba(242, 139, 95, 0.58);
  outline-offset: 5px;
}

.pdf-paper-preview {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 210 / 297;
  overflow: hidden;
  border: 1px solid rgba(210, 214, 220, 0.92);
  border-radius: 2px;
  background: #ffffff;
  object-fit: cover;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 24px rgba(51, 65, 85, 0.14),
    10px 12px 0 rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.pdf-icon-paper {
  position: relative;
  width: 124px;
  height: 164px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(210, 214, 220, 0.92);
  border-radius: 5px;
  background: #ffffff;
  color: var(--peach-dark);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 26px rgba(51, 65, 85, 0.16),
    9px 10px 0 rgba(255, 255, 255, 0.44);
}

.pdf-icon-fold {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(244, 248, 250, 0.1) 0 50%, #eef2f5 50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.pdf-icon-label {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(242, 139, 95, 0.14);
  color: var(--peach-dark);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pdf-icon-lines,
.pdf-icon-lines::before,
.pdf-icon-lines::after {
  position: absolute;
  left: 22px;
  right: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(117, 99, 93, 0.22);
  content: "";
}

.pdf-icon-lines {
  bottom: 35px;
}

.pdf-icon-lines::before {
  left: 0;
  right: 0;
  bottom: 12px;
}

.pdf-icon-lines::after {
  left: 0;
  right: 18px;
  bottom: -12px;
}

.pdf-click-mark {
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--peach-dark);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 8px 12px rgba(75, 45, 34, 0.18));
  animation: pdf-loupe-float 1.8s ease-in-out infinite;
}

.pdf-click-mark::before,
.pdf-click-mark::after {
  content: "";
  position: absolute;
}

.pdf-click-mark::before {
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
  transform: translate(-4px, -4px);
}

.pdf-click-mark::after {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(11px, 12px) rotate(45deg);
}

@keyframes pdf-loupe-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
}

.pdf-modal.is-open {
  display: grid;
}

.pdf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 24, 20, 0.48);
  backdrop-filter: blur(8px);
}

.graph-modal .pdf-modal-backdrop {
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
}

.pdf-modal-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 980px);
  height: min(88vh, 1120px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 30px 100px rgba(34, 24, 20, 0.32);
}

.pdf-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 87, 56, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(75, 45, 34, 0.14);
}

.pdf-modal-document {
  width: 100%;
  height: auto;
  border: 0;
  display: block;
  object-fit: contain;
  background: #fff;
  transform: translateY(0);
  transition: transform 760ms cubic-bezier(0.2, 0.82, 0.2, 1);
  will-change: transform;
}

.pdf-modal-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #fff;
}

.pdf-modal-next {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.96), transparent 42%),
    rgba(255, 231, 143, 0.92);
  box-shadow:
    0 16px 34px rgba(75, 45, 34, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transform: translateX(-50%);
}

.pdf-modal-next::before {
  content: "";
  width: 13px;
  height: 13px;
  border-right: 3px solid var(--peach-dark);
  border-bottom: 3px solid var(--peach-dark);
  transform: translateY(-3px) rotate(45deg);
}

.pdf-modal.is-at-bottom .pdf-modal-next::before {
  transform: translateY(3px) rotate(225deg);
}

.graph-modal-panel {
  width: min(82vw, 760px);
  height: min(78vh, 620px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.74);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.34);
}

.graph-modal-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.4vw, 30px) clamp(10px, 1.5vw, 18px) clamp(34px, 5vh, 58px);
  background: rgba(0, 0, 0, 0.34);
}

.graph-modal-document {
  display: block;
  width: min(100%, 720px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(75, 45, 34, 0.14));
  transform: translateY(0);
  transition: transform 760ms cubic-bezier(0.2, 0.82, 0.2, 1);
  will-change: transform;
}

.graph-modal-next {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.9), transparent 42%),
    rgba(201, 239, 226, 0.9);
}

.sample-section {
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(10px, 1.6vw, 18px);
  padding: clamp(18px, 2.7vw, 34px);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 215, 231, 0.48), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(201, 239, 226, 0.56), transparent 34%),
    rgba(255, 255, 255, 0.24);
}

.sample-copy {
  max-width: 760px;
}

.sample-copy h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.22;
}

.sample-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.55;
}

.sample-notes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 14px;
}

.sample-card {
  position: relative;
  width: min(100%, 720px);
  align-self: center;
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(210px, 0.44fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: clamp(16px, 2vw, 22px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 248, 239, 0.46)),
    rgba(255, 253, 248, 0.38);
  box-shadow: 0 22px 58px rgba(75, 45, 34, 0.12);
  backdrop-filter: blur(16px);
}

.sample-card::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 231, 143, 0.44), rgba(255, 215, 231, 0.18) 48%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
}

.sample-preview {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.sample-preview img {
  width: min(100%, 240px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 20px 44px rgba(51, 65, 85, 0.16);
}

.sample-card h3,
.sample-card p,
.sample-card a {
  position: relative;
  z-index: 1;
}

.sample-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-block: 4px;
}

.sample-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(11px, 0.9vw, 12px);
  line-height: 1.58;
  text-align: center;
}

.sample-notes p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 12px;
  padding: 7px 9px;
  color: var(--muted);
  font-size: clamp(9px, 0.72vw, 10px);
  line-height: 1.5;
  text-align: left;
}

.sample-button {
  width: auto;
  min-width: 168px;
  min-height: 44px;
  display: inline-flex;
  align-self: center;
  margin: 0 auto;
  padding: 0 20px;
}

.sample-notes p:nth-child(1) {
  background: rgba(255, 231, 143, 0.34);
}

.sample-notes p:nth-child(2) {
  background: rgba(201, 239, 226, 0.38);
}

.sample-notes p:nth-child(3) {
  background: rgba(255, 215, 231, 0.34);
}

.sample-notes p:nth-child(4) {
  background: rgba(189, 239, 244, 0.34);
}

.install-guide {
  width: min(100%, 980px);
  justify-self: center;
  display: grid;
  gap: clamp(14px, 1.8vw, 20px);
  margin-top: clamp(2px, 0.8vw, 8px);
  padding: clamp(16px, 2vw, 24px) 0 0;
  background: transparent;
}

.install-guide-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.install-guide-copy .page-kicker {
  margin-bottom: 0;
}

.install-guide-copy h3 {
  margin: 0;
  color: #2d211b;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
}

.install-guide-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.72;
}

.install-browser-group {
  display: grid;
  gap: clamp(18px, 2.2vw, 24px);
}

.install-browser-panel {
  display: grid;
  gap: clamp(10px, 1.3vw, 14px);
}

.install-browser-label {
  width: fit-content;
  margin: 0 auto;
  border-radius: 999px;
  padding: 7px 14px;
  color: #7d5730;
  background: rgba(255, 231, 143, 0.5);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
}

.install-step {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 8px;
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.install-step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  border-radius: 999px;
  color: #7d5730;
  background: rgba(255, 231, 143, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.install-phone {
  position: relative;
  overflow: hidden;
  width: min(100%, 210px);
  aspect-ratio: 10 / 14;
  justify-self: center;
  display: grid;
  align-items: end;
  border: 8px solid #171717;
  border-radius: 28px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 246, 238, 0.98), rgba(251, 229, 204, 0.98));
  box-shadow: 0 18px 34px rgba(51, 35, 25, 0.18);
}

.install-phone::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 56px;
  height: 12px;
  border-radius: 999px;
  background: #171717;
  transform: translateX(-50%);
}

.install-browser-bar {
  position: absolute;
  top: 28px;
  left: 14px;
  right: 14px;
  overflow: hidden;
  border-radius: 999px;
  padding: 7px 10px;
  color: #6d5a4c;
  background: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.install-chrome-top {
  position: absolute;
  top: 28px;
  left: 14px;
  right: 14px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  align-items: center;
  gap: 8px;
}

.install-chrome-top span {
  overflow: hidden;
  border-radius: 999px;
  padding: 7px 10px;
  color: #6d5a4c;
  background: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.install-chrome-top strong {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #245f83;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 16px rgba(75, 45, 34, 0.14);
}

.install-chrome-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-phone-page {
  position: absolute;
  inset: 62px 16px 58px;
  display: grid;
  gap: 8px;
  align-content: start;
}

.install-phone-page span {
  display: block;
  height: 34px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 137, 87, 0.72), rgba(255, 231, 143, 0.48));
}

.install-phone-page span:nth-child(2) {
  height: 58px;
  background:
    linear-gradient(90deg, rgba(189, 239, 244, 0.7), rgba(201, 239, 226, 0.46));
}

.install-safari-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: center;
  gap: 8px;
  border-radius: 18px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -10px 26px rgba(75, 45, 34, 0.1);
}

.install-safari-bar span {
  height: 8px;
  border-radius: 999px;
  background: rgba(117, 99, 93, 0.18);
}

.install-safari-bar strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #245f83;
  background: rgba(189, 239, 244, 0.78);
  box-shadow: 0 10px 18px rgba(36, 95, 131, 0.16);
}

.install-safari-bar svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-safari-more-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 42px;
  align-items: center;
  gap: 8px;
  border-radius: 18px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -10px 26px rgba(75, 45, 34, 0.1);
}

.install-safari-more-bar span {
  height: 8px;
  border-radius: 999px;
  background: rgba(117, 99, 93, 0.18);
}

.install-safari-more-bar strong {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 14px;
  background: rgba(189, 239, 244, 0.78);
  box-shadow: 0 10px 18px rgba(36, 95, 131, 0.16);
}

.install-safari-more-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #245f83;
}

.install-sheet {
  display: grid;
  gap: 8px;
  align-self: end;
  border-radius: 22px 22px 16px 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -14px 28px rgba(75, 45, 34, 0.12);
}

.install-sheet-handle {
  width: 44px;
  height: 5px;
  justify-self: center;
  border-radius: 999px;
  background: rgba(117, 99, 93, 0.22);
}

.install-sheet-row {
  height: 24px;
  border-radius: 9px;
  background: rgba(117, 99, 93, 0.11);
}

.install-sheet-row.muted {
  width: 72%;
}

.install-sheet-row.selected {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  color: #3f3029;
  background: rgba(255, 231, 143, 0.7);
  font-size: 11px;
}

.install-sheet-row.selected span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.install-sheet-row.selected svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-home-grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 48px;
  gap: 14px 12px;
  align-content: center;
  padding: 30px 8px 16px;
}

.install-home-grid span,
.install-home-grid img {
  width: 48px;
  height: 48px;
  justify-self: center;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 215, 231, 0.42));
  box-shadow: 0 10px 18px rgba(75, 45, 34, 0.1);
}

.install-home-grid span:nth-child(2),
.install-home-grid span:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(201, 239, 226, 0.5));
}

.install-home-grid img {
  object-fit: cover;
  background: #ff875b;
  box-shadow: 0 12px 24px rgba(255, 137, 87, 0.28);
}

.install-step h4 {
  margin: 0;
  color: #2d211b;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.35;
  text-align: center;
}

.install-step p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(11px, 0.95vw, 12px);
  line-height: 1.6;
  text-align: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.contact-actions .button {
  min-height: 44px;
  padding-inline: 20px;
}

.policy-link {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.8;
  text-align: center;
}

.policy-link a {
  color: #9a5528;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-root,
.policy-page {
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.policy-page {
  scrollbar-width: auto;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 246, 205, 0.82), transparent 32%),
    radial-gradient(circle at 84% 6%, rgba(232, 248, 241, 0.72), transparent 30%),
    linear-gradient(135deg, #fff7d6 0%, #ffe2bb 44%, #f8c46d 100%);
  color: var(--ink);
}

.policy-page::-webkit-scrollbar {
  display: initial;
}

.policy-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0;
}

.policy-document {
  border: 1px solid rgba(139, 86, 45, 0.16);
  border-radius: 22px;
  padding: clamp(24px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(101, 62, 35, 0.14);
  backdrop-filter: blur(18px);
}

.policy-document h1 {
  margin: 8px 0 8px;
  color: #2d211b;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.18;
}

.policy-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.policy-document section {
  margin-top: 30px;
}

.policy-document h2 {
  margin: 0 0 12px;
  color: #2d211b;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.45;
}

.policy-document p,
.policy-document li {
  color: #4b3a31;
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.9;
}

.policy-document ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 1.4em;
}

.policy-document a {
  color: #9a5528;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.policy-actions .button {
  min-height: 44px;
}

.info-grid {
  padding-top: 28px;
}

.window-footer {
  padding: 8px 0 24px;
  text-align: center;
}

.window-footer p {
  display: inline-block;
  margin: 0;
  border: 1px solid rgba(185, 87, 56, 0.18);
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.desktop-toolbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(210px, 320px) 1fr minmax(120px, 170px);
  align-items: center;
  gap: 14px;
  padding: 7px 20px;
  background:
    linear-gradient(90deg, rgba(255, 214, 112, 0.94), rgba(244, 188, 91, 0.9)),
    rgba(244, 188, 91, 0.82);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.toolbar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.62);
  color: #2f3d3a;
  font-size: 12px;
  text-decoration: none;
}

.toolbar-search::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: url("./assets/search.png") center / contain no-repeat;
}

.toolbar-center {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
}

.toolbar-center a {
  display: grid;
  place-items: center;
  gap: 4px;
  color: #2f3d3a;
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
}

.view:focus,
.view:focus-visible,
.view:target,
.toolbar-center a:focus {
  outline: none;
}

.toolbar-center a:focus-visible .footer-icon {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 0 3px rgba(255, 255, 255, 0.58),
    0 8px 18px rgba(75, 45, 34, 0.18);
}

.toolbar-center a.is-active .footer-icon {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  transform: translateY(-3px) scale(1.04);
}

.footer-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 238, 218, 0.78)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 8px 18px rgba(75, 45, 34, 0.18);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #4a302b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.72));
}

.toolbar-center a:nth-child(2) .footer-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(201, 239, 226, 0.88));
}

.footer-sample {
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.08)),
    url("./assets/mimamori-icon.png") center / cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(75, 45, 34, 0.2);
}

.toolbar-center a:nth-child(4) .footer-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(201, 239, 226, 0.88));
}

.toolbar-center a:nth-child(5) .footer-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 215, 231, 0.88));
}

.toolbar-center a:nth-child(6) .footer-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(189, 239, 244, 0.88));
}

.toolbar-center a:hover .footer-icon {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(75, 45, 34, 0.24);
  transform: translateY(-4px) scale(1.05);
}

.toolbar-center small {
  font-size: 9px;
}

.toolbar-clock {
  color: #2f3d3a;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 1180px) {
  .desktop-toolbar {
    grid-template-columns: 1fr minmax(120px, 170px);
  }

  .toolbar-search {
    display: none;
  }

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

  .graph-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .graph-mockups {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 18px;
    padding-inline: 10px;
  }

  .graph-lp-mockup,
  .graph-card-main .graph-lp-mockup,
  .graph-card-sub .graph-lp-mockup {
    height: auto;
    max-height: none;
  }

  .graph-card-main .graph-lp-mockup {
    width: 100%;
  }

  .graph-card-sub .graph-lp-mockup {
    width: 100%;
  }

  .graph-card-main {
    width: min(100%, 720px);
  }

  .graph-card-sub {
    width: min(100%, 540px);
  }
}

@media (max-width: 940px) {
  body.animations-ready .view .page-kicker,
  body.animations-ready .view h1,
  body.animations-ready .view h2,
  body.animations-ready .view .lead,
  body.animations-ready .view .section-head > p,
  body.animations-ready .view .hero-phone,
  body.animations-ready .view .hero-balloons > span,
  body.animations-ready .view .feature-flow span,
  body.animations-ready .view .pdf-preview-button,
  body.animations-ready .view .pdf-list-mockup,
  body.animations-ready .view .sample-card {
    opacity: 1;
    transform: none;
  }

  body {
    font-size: 17px;
    line-height: 1.78;
  }

  html,
  body {
    height: auto;
    min-height: 100%;
    overflow: hidden;
    overflow-x: hidden;
  }

  .desktop {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100vw;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    overflow-x: hidden;
    padding: 10px 8px 78px;
  }

  .app-window {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    height: calc(100svh - 88px);
    min-height: 0;
    overflow: hidden;
  }

  .window-body {
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px;
    scroll-padding-top: 14px;
    scroll-padding-bottom: 112px;
    -webkit-overflow-scrolling: touch;
  }

  .view {
    display: grid;
    min-height: calc(100svh - 112px);
    margin-bottom: 18px;
    overflow: visible;
    scroll-margin-top: 14px;
    scroll-margin-bottom: 112px;
  }

  .section-nav {
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .section-prev {
    bottom: 74px;
  }

  .section-next {
    bottom: 18px;
  }

  .hero-panel,
  .two-col,
  .monitor-section,
  .info-grid,
  .screen-gallery {
    grid-template-columns: 1fr;
  }

  .screen-gallery {
    align-content: start;
    gap: 18px;
    padding: 24px 20px;
  }

  #mockups {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    gap: 18px;
  }

  .graph-section {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: start;
    height: auto;
    min-height: auto;
    overflow: visible;
    gap: 18px;
  }

  .graph-copy,
  .graph-mockups {
    grid-column: 1;
    grid-row: auto;
  }

  .graph-mockups {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: 16px;
  }

  .graph-card {
    width: min(100%, 560px);
    padding: 0;
  }

  .graph-card-main {
    width: min(100%, 620px);
    align-self: start;
    justify-self: center;
  }

  .graph-card-sub {
    width: min(100%, 500px);
    align-self: start;
    justify-self: center;
  }

  .graph-lp-mockup {
    width: 100%;
    height: auto;
    max-height: none;
    transform: none;
  }

  .graph-card-main .graph-lp-mockup {
    height: auto;
    max-height: none;
  }

  .graph-card-sub .graph-lp-mockup {
    height: auto;
    max-height: none;
  }

  #mockups .pdf-copy,
  #mockups .pdf-preview-button,
  #mockups .pdf-list-mockup {
    grid-column: 1;
    grid-row: auto;
  }

  #mockups .pdf-mockups {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    margin-top: 4px;
  }

  #mockups .pdf-list-mockup {
    width: min(100%, 460px);
    max-height: min(44vh, 430px);
    justify-self: center;
    align-self: center;
    transform: none;
  }

  #mockups .pdf-preview-button {
    width: clamp(128px, 24vw, 176px);
    justify-self: center;
    align-self: center;
    margin: 12px 0 0;
  }

  .hero-copy {
    justify-self: stretch;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-flow {
    position: static;
    margin-top: 12px;
  }

  #features h2 {
    max-width: none;
  }

  .hero-phone {
    min-height: auto;
    flex-direction: column;
    padding: 0;
  }

  .hero-mockup-image {
    width: min(100%, 680px);
    max-height: 560px;
  }

  .hero-balloons {
    position: relative;
    inset: auto;
    z-index: 1;
    width: min(100%, 560px);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 8px auto 0;
    padding: 0;
  }
}

@media (min-width: 760px) and (max-width: 940px) {
  .screen-gallery {
    padding: 34px 30px;
  }

  #mockups {
    grid-template-columns: minmax(210px, 0.46fr) minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 26px;
    row-gap: 22px;
  }

  #mockups .pdf-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 760px;
    padding-top: 0;
  }

  #mockups .pdf-mockups {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    gap: 26px;
    margin-top: 0;
  }

  #mockups .pdf-preview-button {
    grid-column: 1;
    grid-row: 1;
    width: clamp(168px, 22vw, 210px);
    align-self: center;
    justify-self: center;
    margin: 0;
  }

  #mockups .pdf-list-mockup {
    grid-column: 2;
    grid-row: 1;
    width: min(100%, 560px);
    max-height: min(56vh, 620px);
    align-self: center;
    justify-self: center;
  }

  .graph-section {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    gap: 24px;
  }

  .graph-copy {
    max-width: 820px;
    padding-top: 0;
  }

  .graph-notes {
    max-width: 820px;
    margin-top: 14px;
  }

  .graph-mockups {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    justify-items: center;
    gap: 22px;
  }

  .graph-card-main,
  .graph-card-sub {
    align-self: start;
    justify-self: center;
  }

  .graph-card-main {
    width: min(100%, 680px);
  }

  .graph-card-sub {
    width: min(100%, 560px);
  }

  .graph-lp-mockup,
  .graph-card-main .graph-lp-mockup,
  .graph-card-sub .graph-lp-mockup {
    height: auto;
    max-height: none;
  }

  .graph-card-main .graph-lp-mockup {
    width: 100%;
  }

  .graph-card-sub .graph-lp-mockup {
    width: 100%;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
    line-height: 1.82;
  }

  .window-body {
    padding: 12px;
  }

  .hero-panel {
    min-height: calc(100svh - 112px);
    align-content: start;
    gap: 18px;
    padding: 24px 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
    justify-self: center;
    margin-bottom: 0;
  }

  .hero-copy h1 {
    order: 2;
    justify-self: center;
    margin-bottom: 0;
    text-align: center;
  }

  .hero-phone {
    order: 3;
  }

  .hero-copy .lead {
    order: 4;
    justify-self: center;
    line-height: 1.86;
  }

  .hero-actions {
    order: 5;
    justify-content: center;
  }

  h1 {
    font-size: clamp(34px, 11.8vw, 46px);
  }

  h2 {
    font-size: 31px;
  }

  .content-section p,
  .hero-copy .lead,
  .sample-copy p,
  .section-head > p {
    color: #51443d;
    font-size: 16px;
    line-height: 1.82;
  }

  .lead p {
    margin-bottom: 20px;
  }

  .hero-balloons {
    position: relative;
    inset: auto;
    display: flex;
    width: min(100%, 320px);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 8px auto 0;
    padding-right: 0;
    padding-inline: 0;
  }

  .hero-balloons > span {
    position: relative;
    width: 68px;
    height: 68px;
    min-width: 68px;
    min-height: 68px;
    flex-basis: 68px;
    padding: 0;
    font-size: 11px;
  }

  .balloon-med,
  .balloon-pdf,
  .balloon-graph,
  .balloon-family {
    inset: auto;
  }

  .balloon-med,
  .balloon-pdf,
  .balloon-graph,
  .balloon-family {
    transform: none;
  }

  .hero-phone {
    position: relative;
    padding: 0;
  }

  .hero-mockup-image {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .hero-inline-mobile-image {
    display: block;
    width: 100%;
    max-width: 430px;
    max-height: none;
    margin: 16px auto 0;
    border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(75, 45, 34, 0.16));
  }

  .sample-section {
    padding: 24px 18px;
  }

  .graph-section {
    padding: 24px 0;
  }

  .sample-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sample-card-icon {
    display: grid;
    min-height: 132px;
    place-items: center;
  }

  .sample-preview {
    display: grid;
    min-width: 132px;
    min-height: 132px;
    place-items: center;
    padding: 4px;
  }

  .sample-preview img {
    box-sizing: border-box;
    width: clamp(104px, 34vw, 132px);
    height: clamp(104px, 34vw, 132px);
    padding: 6px;
    object-fit: contain;
  }

  .sample-button {
    width: auto;
  }

  .install-guide {
    padding: 28px 0 0;
  }

  .install-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .install-step {
    grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
  }

  .install-browser-group {
    gap: 24px;
  }

  .install-browser-label {
    margin-inline: 0;
  }

  .install-step-number {
    top: 10px;
    left: 10px;
  }

  .install-phone {
    grid-row: 1 / span 2;
    width: min(100%, 148px);
    border-width: 6px;
    border-radius: 22px;
    padding: 8px;
  }

  .install-phone::before {
    width: 42px;
    height: 9px;
  }

  .install-browser-bar {
    top: 22px;
    left: 10px;
    right: 10px;
    padding: 5px 7px;
    font-size: 7px;
  }

  .install-chrome-top {
    top: 22px;
    left: 10px;
    right: 10px;
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 6px;
  }

  .install-chrome-top span {
    padding: 5px 7px;
    font-size: 7px;
  }

  .install-chrome-top strong {
    width: 22px;
    height: 22px;
  }

  .install-chrome-top svg {
    width: 15px;
    height: 15px;
  }

  .install-phone-page {
    inset: 48px 12px 46px;
    gap: 6px;
  }

  .install-phone-page span {
    height: 24px;
    border-radius: 9px;
  }

  .install-phone-page span:nth-child(2) {
    height: 40px;
  }

  .install-safari-bar {
    grid-template-columns: 1fr 32px 1fr;
    gap: 6px;
    border-radius: 14px;
    padding: 5px 7px;
  }

  .install-safari-bar strong {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .install-safari-bar svg {
    width: 20px;
    height: 20px;
  }

  .install-sheet {
    gap: 6px;
    border-radius: 18px 18px 12px 12px;
    padding: 8px;
  }

  .install-sheet-row {
    height: 18px;
  }

  .install-sheet-row.selected {
    height: 34px;
    font-size: 9px;
  }

  .install-home-grid {
    grid-auto-rows: 34px;
    gap: 10px 8px;
    padding: 26px 4px 12px;
  }

  .install-home-grid span,
  .install-home-grid img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .install-step h4,
  .install-step p {
    text-align: left;
  }

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

  .feature-grid article:nth-child(1) {
    grid-column: auto;
  }

  .feature-grid article {
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 244, 0.58)),
      rgba(255, 253, 248, 0.62);
  }

  #features {
    gap: 18px;
    padding: 24px 18px;
  }

  #features h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.42;
  }

  #features p {
    color: #51443d;
    font-size: 14px;
    line-height: 1.72;
  }

  .pdf-copy p,
  .graph-copy > p,
  .screen-gallery .section-head > p,
  .graph-notes p {
    color: #51443d;
    font-size: 15px;
    line-height: 1.78;
  }

  .graph-notes {
    gap: 10px;
  }

  .graph-notes p {
    border-color: rgba(255, 255, 255, 0.68);
    padding: 11px 12px;
    background: rgba(255, 255, 255, 0.58);
  }

  .view .page-kicker {
    margin: 0 0 10px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.08em !important;
  }

  .view h2,
  .screen-gallery h2,
  #features h2,
  .sample-copy h2,
  .graph-copy h2,
  .pdf-copy h2 {
    color: #2f2521;
    font-size: 29px;
    line-height: 1.3;
  }

  .view .section-head > p,
  .content-section p,
  .sample-copy p,
  .pdf-copy p,
  .graph-copy > p {
    color: #51443d;
    font-size: 15px;
    line-height: 1.78;
  }

  .feature-jump {
    display: none;
  }

  .pdf-mockups {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pdf-mockups img,
  .pdf-list-mockup,
  .pdf-paper-preview {
    width: min(100%, 320px);
    justify-self: center;
    transform: none;
  }

  .pdf-preview-button {
    width: 136px;
    justify-self: center;
    transform: none;
  }

  #mockups .pdf-preview-button {
    margin-top: 18px;
  }

  .pdf-click-mark {
    right: -10px;
    bottom: 10px;
    width: 42px;
    height: 42px;
  }

  #mockups .pdf-list-mockup {
    width: min(100%, 430px);
    max-height: 330px;
    justify-self: center;
  }

  .pdf-preview-button {
    --pdf-lift: 0px;
  }

  .graph-mockups {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    justify-items: stretch;
  }

  .graph-card {
    width: 100%;
    justify-self: center;
  }

  .graph-card-main {
    width: 100%;
    align-self: center;
    justify-self: center;
  }

  .graph-card-sub {
    width: 100%;
    align-self: center;
    justify-self: center;
  }

  .graph-lp-mockup,
  .graph-card-main .graph-lp-mockup {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .graph-card-sub .graph-lp-mockup {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .pdf-modal-panel {
    width: min(94vw, 520px);
    max-height: min(84vh, 760px);
    border-radius: 14px;
  }

  .pdf-modal-stage {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pdf-modal-stage::-webkit-scrollbar {
    display: none;
  }

  .graph-modal-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 46px;
  }

  .pdf-modal-document {
    transform: none !important;
    transition: none;
  }

  .pdf-modal-next {
    display: none;
  }

  .desktop-toolbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 62px;
    grid-template-columns: 1fr;
    gap: 0;
    border: 0;
    border-radius: 0;
    padding: 9px 0 calc(9px + env(safe-area-inset-bottom));
    background:
      linear-gradient(90deg, rgba(255, 214, 112, 0.96), rgba(244, 188, 91, 0.94)),
      rgba(244, 188, 91, 0.88);
    box-shadow: 0 -14px 34px rgba(75, 45, 34, 0.16);
    backdrop-filter: blur(16px);
  }

  .toolbar-search {
    display: none;
  }

  .toolbar-clock {
    display: none;
  }

  .toolbar-center {
    display: flex;
    width: 100%;
    max-width: 344px;
    min-width: 0;
    justify-content: center;
    gap: clamp(5px, 1.8vw, 8px);
    overflow: visible;
    padding: 0 8px;
    margin: 0 auto;
    box-sizing: border-box;
    background: transparent;
    backdrop-filter: none;
  }

  .toolbar-center a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    min-width: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    gap: 0;
    font-size: 0;
    line-height: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .toolbar-center a.is-active,
  .toolbar-center a.is-tapped,
  .toolbar-center a:active {
    background: rgba(255, 255, 255, 0.32);
    box-shadow: none;
  }

  .footer-icon {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    animation: none;
    transform: none;
  }

  .toolbar-center a.is-active .footer-icon {
    outline: 0;
    box-shadow: none;
    transform: none;
  }

  .toolbar-center a.is-tapped .footer-icon,
  .toolbar-center a:active .footer-icon {
    box-shadow: none;
    animation: none;
  }

  .footer-icon svg {
    width: 22px;
    height: 22px;
    stroke: #4a302b;
  }

  .toolbar-center a:nth-child(2) .footer-icon {
    background: transparent;
  }

  .toolbar-center a:nth-child(3) .footer-icon {
    background: transparent;
  }

  .toolbar-center a:nth-child(4) .footer-icon {
    background: transparent;
  }

  .toolbar-center a:nth-child(5) .footer-icon {
    background: transparent;
  }

  .toolbar-center a:nth-child(6) .footer-icon {
    background: transparent;
  }

  .footer-sample {
    flex: 0 0 38px;
    background: url("./assets/mimamori-icon.png") center / cover !important;
    opacity: 1;
  }

  .toolbar-center small {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

}

@media (max-width: 420px) {
  .hero-mockup-image {
    width: min(100%, 360px);
  }
}
