:root {
  --gutter: max(clamp(20px, 5vw, 72px), calc((100% - 1420px) / 2));
  --ink: #172d3f;
  --muted: #637381;
  --line: #dce8df;
  --paper: #fbfffb;
  --mint: #eaf7ea;
  --mint-strong: #d8f0dc;
  --red: #c62828;
  --red-deep: #9d1e24;
  --teal: #07998e;
  --gold: #f2c94c;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(23, 45, 63, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC",
    "Microsoft JhengHei", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px var(--gutter);
  background: rgba(251, 255, 251, 0.9);
  border-bottom: 1px solid rgba(220, 232, 223, 0.85);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 20px;
  font-weight: 850;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  color: #405366;
  font-size: 15px;
  font-weight: 700;
}

.header-cta,
.primary-button,
.secondary-button,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 850;
}

.header-cta,
.primary-button,
.price-card a {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(198, 40, 40, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.header-cta:hover,
.primary-button:hover,
.price-card a:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(198, 40, 40, 0.24);
}

.secondary-button {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.header-cta {
  gap: 8px;
  padding: 0 20px;
  font-size: 14px;
}

.cta-icon {
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 4.5vw, 58px);
  align-items: center;
  min-height: 84vh;
  padding: 122px var(--gutter) 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 255, 251, 0.98) 0%, rgba(251, 255, 251, 0.9) 48%, rgba(234, 247, 234, 0.72) 100%),
    var(--mint);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy .eyebrow {
  font-size: 18px;
}

#hero-title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(40px, 4.1vw, 60px);
}

h2 {
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text,
.section-copy p,
.product-copy p,
.process-list p,
.feature-card p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-lede {
  width: min(600px, 100%);
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 850;
  line-height: 1.5;
}

.hero-text {
  width: min(520px, 100%);
  margin-bottom: 0;
  color: #42586c;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions[hidden] {
  display: none;
}

.audience-hint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.primary-button,
.secondary-button {
  min-width: 158px;
  padding: 0 24px;
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.hero-media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(58vh, 540px);
  height: auto;
  justify-self: stretch;
  overflow: hidden;
  border-radius: 10px;
  background: var(--mint-strong);
  box-shadow: var(--shadow);
}

.hero-lifestyle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02);
  transition: transform 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero:hover .hero-lifestyle {
  transform: scale(1.06);
}

.section,
.product-band,
.audience-band,
.story-section,
.journal-section {
  padding: clamp(56px, 6.5vw, 92px) var(--gutter);
}

.image-story-section,
.product-band,
.audience-band {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.section-copy,
.product-copy {
  max-width: 720px;
}

.image-panel,
.lifestyle-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint-strong);
  box-shadow: var(--shadow);
}

.image-panel {
  aspect-ratio: 3 / 2;
}

.lifestyle-frame {
  aspect-ratio: 16 / 9;
}

.image-panel img,
.lifestyle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.image-panel:hover img,
.lifestyle-frame:hover img {
  transform: scale(1.045);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
  background: var(--white);
}

.story-copy {
  position: sticky;
  top: 110px;
}

.story-copy p,
.section-heading p,
.subscription-copy li,
.subscription-note p,
.journal-heading p,
.journal-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.story-moments {
  display: grid;
  gap: 18px;
}

.story-moments article {
  position: relative;
  min-height: 150px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f3fbf4 100%);
  box-shadow: 0 14px 42px rgba(23, 45, 63, 0.06);
}

.story-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.story-card-title h3 {
  margin-bottom: 0;
}

.story-icon {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-strong);
}

.quiet-icon::before,
.sos-story-icon::before,
.care-icon::before {
  content: "";
  display: block;
}

.quiet-icon::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid var(--teal);
}

.sos-story-icon::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(198, 40, 40, 0.12);
}

.care-icon::before {
  width: 18px;
  height: 15px;
  border-radius: 12px 12px 4px 4px;
  border: 4px solid var(--gold);
  border-top: 0;
  transform: rotate(45deg);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price-card,
.process-list li,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(23, 45, 63, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.price-card:hover,
.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(23, 45, 63, 0.12);
}

.story-moments article {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.story-moments article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(23, 45, 63, 0.1);
}

.audience-list span {
  transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.audience-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 40, 40, 0.4);
  color: var(--ink);
}

.faq-list details[open] {
  border-color: rgba(198, 40, 40, 0.28);
}

.faq-list details[open] p {
  animation: fade-up 0.32s ease both;
}

.compare-table tbody tr {
  transition: background 0.24s ease;
}

.compare-table tbody tr:hover {
  background: rgba(234, 247, 234, 0.5);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy > *,
.hero-media {
  animation: fade-up 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-media {
  animation-delay: 0.14s;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.feature-card {
  min-height: 0;
  padding: 0 0 20px;
  overflow: hidden;
}

.feature-card h3,
.feature-card p {
  padding-inline: 28px;
}

.feature-photo {
  aspect-ratio: 1 / 1;
  height: auto;
  margin-bottom: 24px;
  background-image: url("assets/feature-photo.png");
  background-size: 200% 200%;
  background-repeat: no-repeat;
}

.feature-sos .feature-photo {
  background-position: left top;
}

.feature-fall .feature-photo {
  background-position: right top;
}

.feature-notice .feature-photo {
  background-position: left bottom;
}

.feature-circle .feature-photo {
  background-position: right bottom;
}

.product-band {
  background: #f8fbf7;
  border-block: 1px solid var(--line);
  color: var(--ink);
}

.product-band .eyebrow {
  color: var(--red);
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  padding: clamp(56px, 6.5vw, 92px) var(--gutter);
  background: #fff4ec;
  border-block: 1px solid #f6ddc9;
  color: var(--ink);
}

.video-section .eyebrow {
  color: var(--red);
  font-size: 18px;
}

.video-steps[hidden],
.process-section[hidden] {
  display: none;
}

.video-cta {
  padding: 34px;
  border: 1px solid #f2d3b8;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(194, 87, 31, 0.12);
}

.video-cta h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.video-cta p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.video-cta .primary-button {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(198, 40, 40, 0.18);
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.8;
}

.video-intro h2 {
  max-width: 620px;
}

.video-intro > p:not(.eyebrow):not(.video-note) {
  max-width: 600px;
  color: #5b6a63;
  font-size: 18px;
  line-height: 1.8;
}

.video-note {
  margin: 20px 0 0;
  color: #f4d77a;
  font-size: 14px;
  font-weight: 800;
}

.video-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.video-steps li {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(216, 240, 220, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.video-steps span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-weight: 950;
}

.video-steps strong,
.video-steps small {
  display: block;
}

.video-steps strong {
  margin-bottom: 12px;
  font-size: 17px;
}

.video-steps small {
  color: #c9ded1;
  font-size: 14px;
  line-height: 1.65;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding: 30px;
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

.audience-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-block: clamp(46px, 6vw, 72px);
  text-align: center;
  background: var(--mint);
  border-block: 1px solid var(--line);
}

.audience-band .eyebrow {
  margin: 0;
}

.audience-list {
  justify-content: center;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list span {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: #405366;
  font-size: 16px;
  font-weight: 850;
}

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

.subscription-section {
  background: #fffdf8;
}

.subscription-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-bottom: 24px;
}

.subscription-copy,
.subscription-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(23, 45, 63, 0.06);
}

.subscription-copy {
  padding: 32px;
}

.subscription-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.subscription-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: #102233;
}

.subscription-note p {
  color: #c9ded1;
}

.subscription-note .note-label {
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 950;
}

.price-card {
  padding: 30px;
}

.price-card.highlighted {
  border-color: rgba(198, 40, 40, 0.36);
  box-shadow: 0 24px 70px rgba(198, 40, 40, 0.12);
}

.plan-name {
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 950;
}

.price {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 950;
}

.price span {
  margin-left: 3px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.price-card ul {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding-left: 20px;
  color: #405366;
  line-height: 1.5;
}

.price-card a {
  width: 100%;
  margin-top: 8px;
}

.journal-section {
  background: var(--mint);
  border-block: 1px solid var(--line);
}

.journal-heading {
  width: min(820px, 100%);
  margin-bottom: 30px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journal-carousel {
  position: relative;
}

.journal-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.journal-track::-webkit-scrollbar {
  display: none;
}

.journal-track .journal-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
}

.journal-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.journal-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.journal-dots button.active {
  width: 22px;
  background: var(--red-deep);
}

.journal-card {
  display: block;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(23, 45, 63, 0.06);
  color: inherit;
  text-decoration: none;
}

.journal-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 14px;
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 26px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.faq-list p {
  margin: 16px 0 0;
}

.site-footer {
  display: block;
  padding: 40px var(--gutter) 28px;
  background: #0d1c2a;
  color: var(--white);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px 40px;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 229, 221, 0.16);
}

.site-footer .footer-copyright {
  margin: 0;
  color: #8fa6b6;
  font-size: 13px;
}

.journal-page {
  width: min(880px, calc(100% - 44px));
  margin: 0 auto;
  padding: 132px 0 84px;
}

.journal-page-head {
  margin-bottom: 40px;
}

.journal-page h1 {
  max-width: none;
  font-size: clamp(28px, 3vw, 40px);
}

.journal-lede {
  max-width: none;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.journal-entries {
  display: grid;
  gap: 14px;
}

.journal-entry {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(23, 45, 63, 0.06);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.journal-entry:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(23, 45, 63, 0.1);
}

.journal-entry[open] {
  border-color: rgba(198, 40, 40, 0.28);
}

.journal-entry summary {
  display: grid;
  gap: 10px;
  padding: 26px 28px;
  cursor: pointer;
  list-style: none;
}

.journal-entry summary::-webkit-details-marker {
  display: none;
}

.entry-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.entry-tag {
  color: var(--red);
}

.entry-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.entry-excerpt {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.journal-entry[open] .entry-excerpt {
  display: none;
}

.entry-body {
  padding: 0 28px 28px;
  animation: fade-up 0.34s ease both;
}

.entry-body p {
  margin: 0 0 16px;
  color: #405366;
  font-size: 17px;
  line-height: 1.85;
  text-wrap: pretty;
}

.entry-body p:last-child {
  margin-bottom: 0;
}

.is-upcoming {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.62);
}

.journal-cta {
  margin-top: 40px;
  padding: 34px;
  border-radius: 10px;
  background: var(--mint);
  border: 1px solid var(--line);
  text-align: center;
}

.journal-cta h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.journal-cta p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
}

.journal-cta .primary-button {
  display: inline-flex;
}

.privacy-page {
  width: min(860px, calc(100% - 44px));
  margin: 0 auto;
  padding: 148px 0 96px;
}

.privacy-page h1 {
  max-width: 720px;
}

.privacy-page section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.privacy-page section:last-of-type {
  border-bottom: 1px solid var(--line);
}

.privacy-page section h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.privacy-page section p,
.privacy-updated {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.privacy-page a {
  color: var(--red-deep);
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

#compare-title {
  white-space: nowrap;
  font-size: clamp(20px, 2vw, 32px);
}

.compare-section .section-heading {
  width: 100%;
}

.compare-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.compare-table-wrap {
  overflow-x: auto;
}

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

.compare-table th,
.compare-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.6;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.compare-table tbody th {
  width: 24%;
  color: var(--ink);
  font-weight: 850;
}

.compare-table td {
  color: #405366;
}

.compare-table .is-us {
  background: var(--mint);
  color: var(--ink);
  font-weight: 850;
}

.compare-table thead .is-us {
  color: var(--red);
  border-radius: 8px 8px 0 0;
}

.compare-table tbody tr:last-child .is-us {
  border-radius: 0 0 8px 8px;
}

.site-footer p {
  margin: 8px 0 0;
  color: #aac0cf;
}

.footer-links {
  flex-wrap: wrap;
  gap: 14px 26px;
  color: #d8e5dd;
  font-size: 15px;
  font-weight: 750;
}

.footer-links a {
  transition: color 0.22s ease;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding-top: 110px;
    padding-right: var(--gutter);
    background:
      linear-gradient(180deg, rgba(251, 255, 251, 0.98) 0%, rgba(251, 255, 251, 0.92) 54%, rgba(234, 247, 234, 0.72) 100%),
      var(--mint);
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: none;
    height: auto;
    justify-self: auto;
    border-radius: 10px;
  }

  .image-story-section,
  .story-section,
  .product-band,
  .video-section,
  .audience-band,
  .process-list,
  .pricing-grid,
  .subscription-layout,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-track .journal-card {
    flex: 0 0 calc(50% - 9px);
  }

  .story-copy {
    position: static;
  }

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

  .video-steps {
    grid-template-columns: 1fr;
  }

  .video-steps li {
    min-height: 0;
  }

  .video-steps span {
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .journal-track .journal-card {
    flex: 0 0 85%;
  }

  .site-header {
    min-height: 64px;
  }

  .header-cta {
    padding: 0 16px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  #hero-title {
    white-space: normal;
    font-size: 40px;
  }

  #compare-title {
    white-space: normal;
    font-size: 26px;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    padding-inline: 20px;
  }

  .compare-table th,
  .compare-table td {
    padding: 16px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-actions a {
    width: 100%;
  }

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

  .section,
  .product-band,
  .video-section,
  .audience-band,
  .image-story-section,
  .story-section,
  .journal-section {
    padding-inline: 20px;
  }


  .site-footer {
    padding-inline: 20px;
  }

  .footer-top {
    flex-direction: column;
  }
}

.journal-more {
  margin: 18px 0 0;
}

.journal-carousel .journal-more {
  margin-top: 24px;
  text-align: center;
}

.journal-more a {
  color: var(--red-deep);
  font-weight: 850;
  border-bottom: 1px solid rgba(157, 30, 36, 0.35);
  transition: color 0.22s ease, border-color 0.22s ease;
}

.journal-more a:hover {
  color: var(--red);
  border-color: var(--red);
}

/* ---------- 服務條款與隱私政策 ---------- */

.legal-page {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 132px 0 96px;
}

.legal-head {
  max-width: 900px;
}

.legal-head h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.24;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.legal-updated {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.legal-note {
  margin: 0;
  white-space: nowrap;
  overflow-x: auto;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--mint);
  border: 1px solid var(--line);
  color: #43584b;
  font-size: 16px;
  line-height: 1.75;
}

.legal-lang {
  display: flex;
  gap: 8px;
  margin-top: 26px;
}

.lang-btn {
  padding: 9px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lang-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.lang-btn.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 104px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.legal-toc-title {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.legal-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.legal-toc-list[hidden] {
  display: none;
}

.legal-toc-list a {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.legal-toc-list a:hover {
  color: var(--red-deep);
}

.legal-body {
  min-width: 0;
  max-width: 780px;
}

.legal-part {
  margin: 0 0 14px;
  padding-top: 8px;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.01em;
}

.legal-body .legal-part:not(:first-of-type) {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 2px solid var(--line);
}

.legal-lede {
  margin: 0 0 12px;
  color: #43584b;
  font-size: 17.5px;
  line-height: 1.85;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-section h3 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.01em;
  scroll-margin-top: 104px;
}

.legal-section h4 {
  margin: 26px 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.legal-section h4:first-of-type {
  margin-top: 18px;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.85;
  text-wrap: pretty;
}

.legal-body p {
  margin: 0 0 12px;
}

.legal-body ul,
.legal-body ol.legal-ordered {
  margin: 0 0 12px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-body strong {
  color: var(--ink);
}

.legal-body a {
  color: var(--red-deep);
  font-weight: 800;
  border-bottom: 1px solid rgba(157, 30, 36, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-body a:hover {
  color: var(--red);
  border-color: var(--red);
}

.legal-callout {
  margin: 0 0 18px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--mint);
  border: 1px solid var(--line);
}

.legal-callout p:last-child,
.legal-callout ul:last-child {
  margin-bottom: 0;
}

.legal-callout--warn {
  background: #fdf0ef;
  border-color: rgba(198, 40, 40, 0.28);
}

.legal-callout--warn strong {
  color: var(--red-deep);
}

.legal-callout--good {
  background: var(--mint-strong);
  border-color: rgba(7, 153, 142, 0.26);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 440px;
}

.legal-table th,
.legal-table td {
  padding: 13px 16px;
  text-align: left;
  font-size: 15.5px;
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.legal-table thead th {
  background: var(--mint);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 940px) {
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .legal-note {
    white-space: normal;
  }

  .legal-page {
    width: calc(100% - 36px);
    padding-top: 108px;
  }

  .journal-page {
    width: calc(100% - 36px);
    padding-top: 108px;
  }
}

/* App download band (anchor target for every 早鳥 CTA). The header is fixed,
   so the anchor needs room above it or the buttons land underneath. */
.download-band {
  scroll-margin-top: 96px;
  padding: 36px 0 40px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.download-title {
  margin: 0 0 16px;
  text-align: center;
  font-weight: 850;
  font-size: 18px;
}
