:root {
  --bg: #FFFCFA;
  --bg-warm: #FFF3EF;
  --bg-cool: #EEF9FA;
  --surface: #FFFFFF;
  --surface-soft: #F5F1EC;
  --surface-warm: #FFF0EA;
  --surface-cool: #EAF8FA;
  --text: #2B2B2B;
  --text-strong: #172535;
  --muted: #6F737A;
  --line: #E9DED8;
  --primary: #FF513F;
  --primary-dark: #D94232;
  --secondary: #073D63;
  --blue: #0D4F7A;
  --teal: #14BFC6;
  --pink: #D33682;
  --indigo: #332288;
  --yellow: #FFA70B;
  --line-green: #06C755;
  --radius-card: 14px;
  --radius-small: 10px;
  --shadow: 0 18px 44px rgba(7, 61, 99, 0.10);
  --shadow-soft: 0 10px 26px rgba(7, 61, 99, 0.07);
  --container: 1120px;
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  line-break: strict;
}

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

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

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

h1,
h2,
h3,
p,
li,
summary,
td,
th,
a,
span,
strong {
  overflow-wrap: break-word;
}

.container {
  width: calc(100% - 32px);
  width: min(100% - 32px, var(--container));
  max-width: var(--container);
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}

main,
section,
header,
footer {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 252, 250, 0.92);
  border-bottom: 1px solid rgba(233, 222, 216, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-header .brand {
  grid-column: 1;
}

.brand img {
  width: 148px;
  height: auto;
}

.nav {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius-small);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary);
  background: var(--surface-warm);
}

.mobile-menu-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-button {
  flex: 0 0 auto;
  width: auto;
  height: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 81, 63, 0.22);
  border-radius: 12px;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(255, 81, 63, 0.18);
  cursor: pointer;
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 120;
}

.mobile-menu-bars {
  display: grid;
  gap: 4px;
}

.mobile-menu-bars span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #FFFFFF;
}

.mobile-menu-label {
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
}

.mobile-menu-panel {
  position: fixed;
  top: 64px;
  right: 16px;
  width: 190px;
  display: none;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  z-index: 110;
}

.mobile-menu-toggle:checked ~ .mobile-menu-panel {
  display: grid;
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 50;
  cursor: default;
}

.mobile-menu-toggle:checked ~ .mobile-menu-backdrop {
  display: block;
}

.mobile-menu-panel a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.mobile-menu-panel a:hover {
  color: var(--primary);
  background: var(--surface-warm);
}

.header-cta {
  min-height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 12px;
  color: #FFFFFF;
  background: var(--primary);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(255, 81, 63, 0.20);
  white-space: nowrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #FFFFFF;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(255, 81, 63, 0.22);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 81, 63, 0.34);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  min-width: 0;
  max-width: 360px;
}

.hero-store-links {
  margin: 28px 0 0;
}

.download-store-links {
  max-width: none;
}

.store-badge-link {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-badge-link img {
  width: auto;
  height: 44px;
  max-width: 100%;
  object-fit: contain;
}

.store-badge-link-google img {
  height: 54px;
}

.store-badge-coming-soon {
  width: 146px;
  height: 44px;
  padding: 5px 14px 4px;
  border: 1px solid #555555;
  border-radius: 7px;
  color: #FFFFFF;
  background: #2D2D2D;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  opacity: 0.78;
  cursor: default;
  user-select: none;
}

.store-badge-platform {
  font-size: 0.64rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.store-badge-status {
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: auto;
  display: block;
  padding: 48px 0 40px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7F3 55%, #F2FBFC 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(252, 251, 249, 0), var(--bg));
  pointer-events: none;
}

.hero-media {
  position: relative;
  z-index: 2;
  width: 220px;
  max-width: calc(100% - 96px);
  width: min(100% - 96px, 220px);
  margin: 28px auto 0;
  overflow: visible;
  pointer-events: none;
}

.hero-media::after {
  display: none;
}

.hero-screen {
  position: relative;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  border: 8px solid #111111;
  border-radius: 34px;
  background: #111111;
  box-shadow: var(--shadow);
  aspect-ratio: 1206 / 2622;
  line-height: 0;
}

.hero-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.hero-screen::after,
.phone-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1.5%;
  left: 7.5%;
  width: 20%;
  height: 4%;
  border-radius: 2px;
  background: #FCFBF9;
  pointer-events: none;
}

.hero-screen-main {
  width: 100%;
  opacity: 1;
  transform: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  text-align: left;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--text-strong);
  font-size: 3.35rem;
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 330px;
  margin: 22px 0 0;
  color: #3F454D;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
}

@media (max-width: 759px) {
  body {
    line-height: 1.62;
  }

  .hero {
    padding: 40px 0 34px;
  }

  .hero-screen {
    border-width: 5px;
    border-radius: 26px;
  }

  .hero-screen img {
    border-radius: 20px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-lead,
  .store-badges,
  .section-heading {
    width: 100%;
    max-width: none;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-store-links {
    justify-content: center;
    margin-top: 22px;
  }

  .store-badge-link {
    max-width: 156px;
  }

  .summary-band {
    padding: 12px 0 24px;
  }

  .summary-item,
  .pain-card,
  .routine-card {
    padding: 14px;
  }

  .section {
    padding: 48px 0;
  }

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

  .section-heading h2,
  .download-section h2 {
    line-height: 1.25;
  }

  .section-heading p:not(.eyebrow),
  .download-section p,
  .pain-card p,
  .routine-card p,
  .detail-row p,
  .feature-copy p,
  .plan-note {
    margin-top: 8px;
    line-height: 1.62;
  }

  .feature-card {
    gap: 16px;
    padding: 18px;
  }

  .phone-pair {
    width: 100%;
    max-width: 312px;
    width: min(100%, 312px);
    gap: 8px;
  }

  .check-list {
    gap: 7px;
    margin-top: 12px;
  }

  .check-list li {
    line-height: 1.55;
  }

  .detail-row {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .faq-list summary {
    min-height: 52px;
    padding: 14px;
    line-height: 1.42;
  }

  .faq-list details p {
    padding: 0 14px 16px;
    line-height: 1.62;
  }

  .download-section {
    padding: 48px 0;
  }
}

.summary-band {
  position: relative;
  z-index: 3;
  padding: 18px 0 32px;
  background: var(--bg);
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
}

.summary-item,
.pain-card,
.feature-card,
.routine-card,
.plan-card,
.faq-list details {
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(7, 61, 99, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.summary-item {
  padding: 16px;
}

.summary-label {
  display: block;
  margin-bottom: 2px;
  color: var(--secondary);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
}

.summary-item:nth-child(1) .summary-label,
.summary-item:nth-child(4) .summary-label {
  color: var(--primary-dark);
}

.summary-item:nth-child(2) .summary-label {
  color: var(--teal);
}

.summary-item strong {
  display: block;
  color: var(--text-strong);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
}

.summary-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
}

.section {
  padding: 64px 0;
}

.section-warm {
  background: var(--bg-warm);
}

.section-cool {
  background: var(--bg-cool);
}

.section-compare {
  background: #FFF9F4;
}

.section-pricing {
  background: var(--bg-cool);
}

.section-heading {
  max-width: 720px;
  margin: 0 0 28px;
}

.section-heading h2,
.download-section h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.download-section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.85;
}

.pain-grid,
.routine-grid,
.pricing-grid,
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 0;
}

.pain-card {
  padding: 18px;
}

.pain-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--surface-warm);
}

.pain-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-icon-schedule {
  color: var(--primary-dark);
  background: rgba(255, 81, 63, 0.10);
}

.pain-icon-box {
  color: var(--teal);
  background: rgba(20, 191, 198, 0.12);
}

.pain-icon-deadline {
  color: var(--secondary);
  background: rgba(7, 61, 99, 0.09);
}

.pain-icon-shopping {
  color: var(--primary-dark);
  background: rgba(255, 81, 63, 0.10);
}

.pain-card h3,
.feature-copy h3,
.detail-row h3,
.routine-card h3,
.plan-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 600;
}

.pain-card p,
.routine-card p,
.detail-row p,
.feature-copy p,
.plan-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-width: 0;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.feature-card-home {
  border-color: rgba(255, 81, 63, 0.24);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF6F2 62%, #F3FBFC 100%);
}

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

.feature-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 9px;
  color: var(--secondary);
  background: var(--surface-cool);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #424951;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: rotate(-45deg);
}

.phone-frame {
  position: relative;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  border: 8px solid #111111;
  border-radius: 34px;
  background: #111111;
  box-shadow: var(--shadow);
  aspect-ratio: 1206 / 2622;
  line-height: 0;
}

.phone-frame {
  width: 176px;
  max-width: calc(100% - 64px);
  width: min(52vw, 176px);
  justify-self: center;
}

.phone-pair {
  width: 100%;
  max-width: 360px;
  width: min(100%, 360px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  justify-self: center;
  align-items: start;
  min-width: 0;
}

.phone-pair .phone-frame {
  width: 100%;
  max-width: 100%;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  background: #FFFFFF;
}

.detail-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.detail-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(79, 111, 143, 0.18);
}

.detail-row:last-child {
  border-bottom: 0;
}

.detail-number {
  width: 42px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
}

.routine-card {
  padding: 18px;
}

.routine-time {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 10px;
  color: var(--primary-dark);
  background: var(--surface-warm);
  font-size: 0.84rem;
  font-weight: 600;
}

.compare-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.94rem;
  line-height: 1.75;
}

.compare-table thead th {
  color: var(--secondary);
  background: var(--surface-cool);
  font-weight: 600;
}

.compare-table tbody th {
  width: 110px;
  color: var(--text-strong);
  font-weight: 600;
}

.compare-table tbody td:nth-child(3) {
  color: #303844;
  font-weight: 500;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 759px) {
  .compare-table-wrap {
    overflow: visible;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .compare-table {
    border-collapse: separate;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tbody tr {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .compare-table tbody tr:last-child {
    border-bottom: 0;
  }

  .compare-table tbody th,
  .compare-table tbody td {
    padding: 0;
    border-bottom: 0;
  }

  .compare-table tbody th {
    width: 100%;
    margin-bottom: 12px;
    font-size: 1.05rem;
  }

  .compare-table tbody td + td {
    margin-top: 12px;
  }

  .compare-table tbody td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .compare-table tbody td:nth-child(2)::before {
    content: "よくある管理";
  }

  .compare-table tbody td:nth-child(3)::before {
    content: "FaMemo";
  }
}

@media (max-width: 759px) {
  .phone-frame {
    border-width: 5px;
    border-radius: 26px;
  }

  .phone-frame img {
    border-radius: 20px;
  }

}

.reassurance-section {
  background:
    linear-gradient(180deg, #FFFCFA 0%, #FFF9F5 100%),
    var(--bg);
  border-top: 1px solid rgba(233, 222, 216, 0.58);
  border-bottom: 1px solid rgba(233, 222, 216, 0.58);
  overflow: hidden;
}

.reassurance-heading {
  max-width: 760px;
}

.reassurance-section .reassurance-heading {
  margin-bottom: 22px;
}

.reassurance-heading h2,
.reassurance-heading p {
  overflow-wrap: anywhere;
}

.reassurance-mobile-break {
  display: none;
}

.reassurance-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 12px;
  padding: 0 12px;
  border: 1px solid rgba(248, 95, 130, 0.20);
  border-radius: 999px;
  color: #CF4A69;
  background: rgba(255, 241, 244, 0.86);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.reassurance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.reassurance-points {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  min-width: 0;
}

.reassurance-point-card {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(7, 61, 99, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(7, 61, 99, 0.055);
}

.reassurance-point-card {
  padding: 19px;
}

.reassurance-point-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  margin-bottom: 14px;
}

.reassurance-point-number {
  color: rgba(7, 61, 99, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
}

.reassurance-point-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #C94D66;
  background: rgba(255, 241, 244, 0.95);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

.reassurance-point-icon span {
  display: block;
  line-height: 1;
}

.reassurance-point-card:nth-child(2) .reassurance-point-icon,
.reassurance-point-card:nth-child(6) .reassurance-point-icon {
  color: #315B72;
  background: rgba(234, 248, 250, 0.92);
}

.reassurance-point-card:nth-child(3) .reassurance-point-icon {
  color: #08777D;
  background: rgba(20, 191, 198, 0.10);
}

.reassurance-point-card:nth-child(5) .reassurance-point-icon {
  color: #9B5B00;
  background: rgba(255, 167, 11, 0.10);
}

.reassurance-point-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
}

.reassurance-point-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.72;
}

.reassurance-safety-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(7, 61, 99, 0.09);
  border-radius: 16px;
  background: rgba(234, 248, 250, 0.78);
}

.reassurance-safety-mark {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--secondary);
  background: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.reassurance-safety-note p {
  min-width: 0;
  margin: 0;
  color: #4C5B66;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 759px) {
  .reassurance-mobile-break {
    display: block;
  }

  .reassurance-layout,
  .reassurance-points {
    width: 100%;
    max-width: 100%;
  }

  .reassurance-point-card,
  .reassurance-safety-note {
    max-width: 100%;
  }

  .reassurance-label {
    margin-bottom: 10px;
  }

  .reassurance-point-card {
    padding: 16px;
  }

  .reassurance-point-head {
    margin-bottom: 12px;
  }

  .reassurance-point-card p,
  .reassurance-safety-note p {
    overflow-wrap: anywhere;
  }

  .reassurance-safety-note {
    gap: 10px;
    padding: 14px;
  }

}

@media (min-width: 520px) {
  .reassurance-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 519px) {
  .reassurance-point-card,
  .reassurance-safety-note {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 900px) {
  .reassurance-safety-note {
    margin-top: 18px;
  }
}

@media (min-width: 1040px) {
  .reassurance-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-grid {
  align-items: stretch;
}

.plan-card {
  position: relative;
  padding: 22px 18px;
}

.plan-card-featured {
  border-color: rgba(255, 81, 63, 0.32);
  background: #FFF6F2;
}

.plan-label {
  margin: 0 0 8px;
  color: var(--secondary);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 10px;
  padding: 0 10px;
  border-radius: 9px;
  color: #FFFFFF;
  background: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 0;
}

.plan-price strong {
  color: var(--primary);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-price span {
  color: var(--text-strong);
  font-weight: 600;
}

.pricing-family-unit {
  display: block;
  color: var(--text-strong);
  font-size: 1.08rem;
  font-weight: 700;
}

.pricing-demo-lead {
  display: block;
  margin-top: 6px;
}

.plan-price-demo strong {
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  color: var(--text-strong);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.faq-list summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.faq-list details p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  font-weight: 400;
}

.download-section {
  padding: 56px 0;
  background: linear-gradient(180deg, #FFF7F3 0%, #F0FAFB 100%);
  border-top: 1px solid var(--line);
}

.download-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  min-width: 0;
}

.download-actions {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.site-footer {
  padding: 34px 0 38px;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.footer-brand img {
  width: 128px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  min-width: 0;
}

.footer-links a,
.copyright {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.copyright {
  margin: 0;
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(circle at 82% 4%, rgba(20, 191, 198, 0.08), transparent 24rem),
    var(--bg);
}

.legal-header-inner {
  min-height: 68px;
}

.legal-back-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.legal-back-link:hover {
  color: var(--primary-dark);
  border-color: rgba(255, 81, 63, 0.3);
  background: var(--surface-warm);
}

.legal-main {
  padding-bottom: 72px;
}

.legal-container {
  max-width: 860px;
}

.legal-hero {
  padding: 64px 0 42px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 243, 239, 0.72), rgba(238, 249, 250, 0.68));
}

.legal-hero .eyebrow {
  margin: 0 0 10px;
}

.legal-hero h1 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.legal-hero-compact {
  padding-bottom: 58px;
}

.legal-effective-date {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.legal-introduction {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 81, 63, 0.15);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.legal-introduction p {
  margin: 0;
}

.legal-content-wrap {
  padding-top: 36px;
}

.legal-toc {
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.legal-toc summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.legal-toc summary::-webkit-details-marker {
  display: none;
}

.legal-toc summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--surface-warm);
  font-size: 1.25rem;
  line-height: 1;
}

.legal-toc[open] summary::after {
  content: "−";
}

.legal-toc nav {
  padding: 2px 20px 22px;
  border-top: 1px solid var(--line);
}

.legal-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 28px;
  margin: 16px 0 0;
  padding-left: 1.6em;
}

.legal-toc li {
  padding-left: 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-toc a {
  display: inline-block;
  padding: 3px 0;
  color: var(--secondary);
  text-decoration: underline;
  text-decoration-color: rgba(7, 61, 99, 0.22);
  text-underline-offset: 3px;
}

.legal-toc a:hover {
  color: var(--primary-dark);
  text-decoration-color: currentColor;
}

.legal-document {
  padding: 8px 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.legal-section {
  scroll-margin-top: 94px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  color: var(--text-strong);
  font-size: 1.28rem;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-section ol,
.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.6em;
}

.legal-section p + ol,
.legal-section p + ul {
  margin-top: 14px;
}

.legal-section ol + p,
.legal-section ul + p {
  margin-top: 16px;
}

.legal-section li {
  padding-left: 0.28em;
}

.legal-section li > ol {
  gap: 7px;
  margin-top: 10px;
}

.legal-subsection {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #FFFCFA;
}

.legal-subsection h3 {
  margin: 0 0 16px;
  color: var(--secondary);
  font-size: 1.05rem;
  line-height: 1.5;
}

.legal-subsection p {
  margin-top: 16px;
}

.legal-subsection p + ol {
  margin-top: 14px;
}

.legal-contact-section p:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.legal-contact-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-contact-section a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(13, 79, 122, 0.28);
  text-underline-offset: 3px;
}

.legal-inline-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(13, 79, 122, 0.28);
  text-underline-offset: 3px;
}

.legal-inline-link:hover {
  color: var(--primary-dark);
  text-decoration-color: currentColor;
}

.legal-end {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: right;
  font-weight: 600;
}

.legal-page-top {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 28px 0 0 auto;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-page-top:hover {
  color: var(--primary-dark);
}

@media (max-width: 759px) {
  .legal-hero {
    padding: 44px 0 30px;
  }

  .legal-hero-compact {
    padding-bottom: 40px;
  }

  .legal-introduction {
    margin-top: 24px;
    padding: 18px;
  }

  .legal-content-wrap {
    padding-top: 24px;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding: 0 18px 22px;
  }

  .legal-section {
    padding: 28px 0;
  }

  .legal-section h2 {
    margin-bottom: 16px;
    font-size: 1.15rem;
  }

  .legal-section,
  .legal-introduction {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .legal-subsection {
    margin-top: 22px;
    padding: 18px;
  }

  .legal-subsection h3 {
    font-size: 1rem;
  }

  .summary-band {
    padding: 12px 0 24px;
  }

  .summary-item,
  .pain-card,
  .routine-card {
    padding: 14px;
  }

  .summary-item p {
    line-height: 1.55;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    width: 100%;
    max-width: none;
    margin-bottom: 22px;
  }

  .section-heading h2,
  .download-section h2 {
    line-height: 1.25;
  }

  .section-heading p:not(.eyebrow),
  .download-section p,
  .pain-card p,
  .routine-card p,
  .detail-row p,
  .feature-copy p,
  .plan-note {
    margin-top: 8px;
    line-height: 1.62;
  }

  .pain-card h3,
  .feature-copy h3,
  .detail-row h3,
  .routine-card h3,
  .plan-card h3 {
    line-height: 1.35;
  }

  .feature-card {
    gap: 16px;
    padding: 18px;
  }

  .phone-pair {
    width: 100%;
    max-width: 312px;
    width: min(100%, 312px);
    gap: 8px;
  }

  .check-list {
    gap: 7px;
    margin-top: 12px;
  }

  .check-list li {
    line-height: 1.55;
  }

  .detail-row {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .faq-list summary {
    min-height: 52px;
    padding: 14px;
    line-height: 1.42;
  }

  .faq-list details p {
    padding: 0 14px 16px;
    line-height: 1.62;
  }

  .download-section {
    padding: 48px 0;
  }
}

@media (min-width: 520px) {
  .store-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

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

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

}

@media (min-width: 760px) {
  .container {
    width: calc(100% - 48px);
    width: min(100% - 48px, var(--container));
    max-width: var(--container);
  }

  .nav {
    display: flex;
  }

  .mobile-menu-button,
  .mobile-menu-panel,
  .mobile-menu-backdrop {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .brand img {
    width: 166px;
  }

  .hero {
    min-height: 780px;
    display: grid;
    align-items: center;
    padding: 76px 0 56px;
    background:
      linear-gradient(90deg, #FFFFFF 0%, rgba(252, 251, 249, 0.98) 52%, var(--bg-warm) 100%),
      var(--bg);
  }

  .hero-media {
    position: absolute;
    top: 72px;
    right: 24px;
    right: max(24px, calc((100% - var(--container)) / 2));
    width: 310px;
    max-width: 28vw;
    width: min(28vw, 310px);
    height: auto;
    margin: 0;
    overflow: visible;
  }

  .hero-media::after {
    display: none;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-lead {
    max-width: 550px;
    margin-left: 0;
    margin-right: 0;
    margin-inline: 0;
    font-size: 1.2rem;
  }

  .hero-store-links {
    margin-left: 0;
    margin-right: 0;
    margin-inline: 0;
  }

  .hero-screen-main {
    width: 100%;
  }

  .section {
    padding: 86px 0;
  }

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

  .section-heading h2,
  .download-section h2 {
    font-size: 2.55rem;
  }

  .feature-card {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 260px);
    align-items: center;
    gap: 28px;
    padding: 26px;
  }

  .feature-card:nth-child(even) {
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  }

  .feature-card.feature-card-schedule {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  }

  .feature-card.feature-card-shopping {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  }

  .feature-card:nth-child(even) .feature-copy {
    order: 2;
  }

  .feature-card:nth-child(even) .phone-frame,
  .feature-card:nth-child(even) .phone-pair {
    order: 1;
  }

  .phone-frame {
    width: 238px;
    max-width: 100%;
    width: min(100%, 238px);
  }

  .detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }

  .detail-row {
    grid-template-columns: 54px 1fr;
    padding: 22px 0;
  }

  .routine-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .download-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    align-items: center;
  }

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

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

@media (min-width: 1040px) {
  .header-inner {
    min-height: 74px;
  }

  .hero h1 {
    font-size: 5.6rem;
  }

  .hero-media {
    top: 72px;
    width: 310px;
    max-width: 28vw;
    width: min(28vw, 310px);
  }

  .hero-screen-main {
    width: 100%;
  }

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

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

  .feature-card-home {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
  }

}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px);
    width: min(100% - 24px, var(--container));
    max-width: var(--container);
  }

  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 128px;
  }

  .header-cta {
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .button {
    padding: 0 16px;
  }

  .section-heading h2,
  .download-section h2 {
    font-size: 1.82rem;
  }

  .plan-price strong {
    font-size: 2.15rem;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

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

  .fade-up,
  .fade-up.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .faq-list summary::after {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
