:root {
  --bg: #fffdfd;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --surface-pink: #ffecec;
  --line: #dbdbdb;
  --text: #1c1c1c;
  --muted: #5f5f5f;
  --brand: #e85353;
  --brand-dark: #d94444;
  --brand-soft: #ffe9e9;
  --accent: #2465e6;
  --accent-light: #6f9fff;
  --highlight: #fff200;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.25rem;
  --space-xl: 1.5rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3.75rem;
  --space-section: 6.25rem;
  --text-xs: 0.75rem;
  --text-sm: 1rem;
  --text-md: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.75rem;
  --text-4xl: 2rem;
  --text-5xl: 2.25rem;
  --text-4xl-plus: 2rem;
  --text-feature-number: 3.75rem;
  --text-kicker-min: 3.25rem;
  --text-kicker-max: 7.5rem;
  --text-kicker-xs: 2.5rem;
  --text-display-sm: 3.5rem;
  --text-display-md: 4.25rem;
  --text-display-lg: 5rem;
  --container-gutter: 2rem;
  --container: min(68.75rem, calc(100% - var(--container-gutter)));
  --section-y: var(--space-section);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 224, 224, 0.65), transparent 26%),
    radial-gradient(circle at 8% 18%, rgba(255, 230, 230, 0.65), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(0.75rem);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(232, 83, 83, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
}

.site-logo {
  width: 6.75rem;
}

.hero {
  height: 37.5rem;
  padding: var(--space-xs) 0 0;
  overflow: hidden;
  background: url("./img/hero_bg.webp") center top / cover no-repeat;
}

.hero-mobile-brand {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22.5rem, 0.98fr);
  align-items: center;
  gap: var(--space-lg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  padding-top: 3.75rem;
}

.hero-title {
  margin: 0;
}

.accent {
  display: block;
  width: min(22.5rem, 100%);
}

.hero-subtitle {
  margin: 2rem 0 0;
  font-size: var(--text-2xl);
  font-weight: 700;
}

.hero-logo {
  width: min(26.25rem, 100%);
  margin: var(--space-md) 0 2.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.pill {
  display: grid;
  place-items: center;
  width: 8.875rem;
  aspect-ratio: 1;
  padding: var(--space-lg) var(--space-sm);
  border: 1px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff7474 100%);
  color: #fff;
  text-align: center;
}

.pill-label {
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1.2;
}

.pill-value {
  margin-top: var(--space-xs);
  color: var(--highlight);
  font-family: "Roboto", sans-serif;
  font-size: var(--text-display-md);
  font-weight: 700;
  line-height: 1;
}

.pill-value span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: var(--text-3xl);
  font-weight: 700;
}

.pill-value-compact {
  font-size: var(--text-3xl);
  line-height: 1.2;
}

.hero-note {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-photo-wrap {
  width: 100%;
}

.hero-photo {
  width: min(37.5rem, 100%);
  height: auto;
  margin-left: auto;
}

.cta-band {
  padding: var(--space-2xl) 0;
  background: var(--brand);
  color: #fff;
}

.cta-band .container {
  display: grid;
  justify-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.cta-title {
  margin: 0;
  font-size: var(--text-3xl);
  line-height: 1.4;
  font-weight: 600;
}

.cta-lead {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 500;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  width: 100%;
  max-width: 42.5rem;
}

.cta-input {
  flex: 1 1 22.5rem;
  min-width: 0;
  height: 3rem;
  padding: 0 var(--space-md);
  border: 1px solid #999;
  border-radius: 0.25rem;
  background: #fff;
  color: var(--text);
  caret-color: var(--text);
  font: inherit;
}

.cta-input::placeholder {
  color: #777;
  opacity: 1;
}

.cta-input:-webkit-autofill,
.cta-input:-webkit-autofill:hover,
.cta-input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  box-shadow: 0 0 0 1000px #fff inset;
}

.cta-button {
  width: 9.375rem;
  height: 3rem;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 0.25rem;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0.75rem 1.5rem rgba(36, 101, 230, 0.22);
}

.cta-message {
  min-height: 1.25rem;
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
}

.cta-caption,
.highlight-note,
.feature-note,
.flow-body .flow-note,
.footer-links,
.footer-bottom {
  font-size: var(--text-xs);
}

section {
  padding: var(--section-y) 0;
}

.section-soft,
.section-white {
  background: #fff;
}

.section-pink {
  background: var(--surface-pink);
}

.section-worry,
.section-flow {
  background: var(--surface-soft);
}

.section-title {
  position: relative;
  z-index: 1;
  margin: -2rem 0 3rem;
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  line-height: 1.35;
  font-weight: 600;
  text-align: center;
}

.section-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(var(--text-kicker-min), 10vw, var(--text-kicker-max));
  line-height: 0.92;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
}

.section-what .section-kicker,
.section-faq .section-kicker {
  color: #ffe8e8;
}

.section-flow .section-kicker,
.section-features .section-kicker {
  color: #fff;
}

.section-lead {
  max-width: 47.5rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 2;
  text-align: center;
}

.declaration {
  display: grid;
}

.problem-hero {
  display: grid;
  grid-template-columns: minmax(0, 37.5rem);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-section);
}

.problem-copy {
  width: 37.5rem;
  max-width: 100%;
}

.problem-copy p {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.speech,
.bridge-note-bubble {
  margin: 0 auto;
}

.speech-bubble-image {
  height: auto;
  margin: 0 auto;
}

.speech .speech-bubble-image {
  width: min(37.5rem, 100%);
}

.bridge-note-bubble .speech-bubble-image {
  width: min(31.25rem, 100%);
}

.highlight-box {
  display: grid;
  justify-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-section);
  text-align: center;
}

.section-worry .highlight-box {
  margin-bottom: 0;
}

.section-what .highlight-box {
  margin-bottom: var(--space-2xl);
}

.slash {
  font-size: var(--text-3xl);
  font-weight: 700;
}

.section-worry .slash {
  font-size: var(--text-4xl);
}

.highlight-stack {
  position: relative;
  display: grid;
  gap: var(--space-xs);
}

.highlight-phone {
  position: absolute;
  top: 50%;
  right: -7.5rem;
  width: 9.375rem;
  transform: translateY(-50%);
}

.highlight-phone-02 {
  right: -8.5rem;
}

.highlight-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  color: #fff;
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 600;
  line-height: calc(1.9em + 0.5rem);
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
}

.highlight-line span {
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, var(--brand) 15%, #ff7474 85%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  overflow-wrap: normal;
  word-break: normal;
}

.highlight-note {
  margin: 0;
  color: var(--muted);
}

.card-panel {
  padding: var(--space-3xl);
  border: 2px solid #999;
  border-radius: 0.75rem;
  background: #fff;
}

.subheading {
  margin: 0 0 1.5rem;
  font-size: var(--text-5xl);
  font-weight: 600;
  text-align: center;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.subheading-bar {
  width: 7.375rem;
  height: 0.25rem;
  margin: 0 auto var(--space-xl);
  border-radius: 999px;
  background: var(--brand);
}

.structure-flow {
  display: grid;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.section-what .structure-flow {
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.structure-block {
  display: grid;
  gap: var(--space-lg);
}

.section-what .structure-block {
  gap: var(--space-xs);
}

.structure-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.structure-title {
  margin: 0;
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl-plus));
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.section-what .structure-title {
  font-size: var(--text-2xl);
}

.structure-title-image {
  width: 3.25rem;
  flex: 0 0 auto;
}

.structure-main-image {
  width: 100%;
}

.structure-block-traditional .structure-title {
  color: #333;
}

.structure-block-yameta .structure-title {
  color: var(--brand);
}

.period-grid,
.worry-grid,
.feature-grid,
.flow-grid {
  display: grid;
}

.period-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.period-card {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  text-align: center;
}

.period-head {
  display: grid;
  min-height: 7.75rem;
  place-items: center;
  padding: var(--space-lg);
  background: var(--brand);
  color: #fff;
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.5;
}

.period-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9.75rem;
  gap: var(--space-xs);
  background: var(--brand-soft);
  color: #000;
}

.period-number {
  font-family: "Roboto", sans-serif;
  font-size: var(--text-display-lg);
  font-weight: 700;
  line-height: 1;
}

.period-unit {
  font-size: var(--text-5xl);
  font-weight: 700;
}

.worry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
  margin-top: 3rem;
}

.worry-card {
  padding: var(--space-xl);
  background: #fff;
  text-align: center;
}

.worry-photo {
  width: 8.75rem;
  height: 8.75rem;
  margin: 0 auto 1.75rem;
  object-fit: contain;
}

.worry-card h3,
.feature-card h3,
.flow-card h3 {
  margin: 0 0 0.75rem;
  font-size: var(--text-2xl);
  line-height: 1.45;
  font-weight: 700;
}

.worry-card p,
.feature-card p,
.flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.9;
}

.bridge-divider {
  width: 2px;
  height: 5rem;
  margin: 0 auto var(--space-lg);
  background: #999;
}

.section-worry .bridge-divider {
  margin: 1.25rem auto 0;
}

.bridge-note {
  display: grid;
  grid-template-columns: minmax(0, 31.25rem);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.declaration > .card-panel {
  margin-bottom: var(--space-sm);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  background: #fff;
}

.feature-number {
  position: absolute;
  top: -1.5rem;
  left: var(--space-xs);
  margin: 0;
  color: var(--brand);
  font-family: "Josefin Sans", sans-serif;
  font-size: var(--text-feature-number);
  font-weight: 500;
  line-height: 1;
}

.feature-image {
  width: 100%;
  margin: 0 0 1.5rem;
}

.feature-card h3 {
  position: relative;
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.feature-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.75rem;
  width: 3.75rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--brand);
  transform: translateX(-50%);
}

.feature-note {
  margin-top: auto;
  padding-top: var(--space-sm);
  line-height: 1.6;
}

.flow-grid {
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.flow-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 31.25rem;
  align-items: start;
  gap: var(--space-2xl);
  padding: var(--space-2xl);
  border: 1px solid #ededed;
  background: #fff;
}

.flow-content {
  display: grid;
  align-content: start;
  gap: var(--space-lg);
}

.flow-step {
  display: inline-flex;
}

.flow-head {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm) var(--space-2xs);
  border: 2px solid currentColor;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-family: "Josefin Sans", sans-serif;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.flow-body h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

.flow-body p {
  font-size: var(--text-md);
}

.flow-body .flow-note {
  margin-top: var(--space-sm);
  line-height: 1.7;
}

.flow-image {
  width: 31.25rem;
  max-width: 100%;
  justify-self: end;
}

.faq {
  max-width: 68.75rem;
  margin: var(--space-2xl) auto 0;
}

.faq-item {
  border: 1px solid #b9b9b9;
  background: #fff;
}

.faq-item + .faq-item {
  margin-top: var(--space-md);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-lg);
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

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

.faq-summary-label {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.faq-q,
.faq-a {
  display: inline-flex;
  flex: 0 0 var(--space-xl);
  align-items: center;
  justify-content: center;
  width: var(--space-xl);
  font-family: "Josefin Sans", sans-serif;
  font-size: var(--text-xl);
  font-weight: 700;
}

.faq-a {
  color: var(--brand);
}

.faq-answer {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-lg);
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.85;
}

.faq-toggle {
  display: inline-flex;
  flex: 0 0 var(--space-lg);
  align-items: center;
  justify-content: center;
  width: var(--space-lg);
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
}

.site-footer {
  padding-top: var(--space-3xl);
  text-align: center;
}

.footer-logo {
  width: 17.5rem;
  margin: 0 auto var(--space-xl);
}

.footer-links {
  margin: 0 0 1rem;
}

.footer-bottom {
  padding: var(--space-xs) var(--space-md);
  background: #484848;
  color: #fff;
}

.page-main {
  background: var(--bg);
}

.page-section {
  padding: var(--space-section) 0;
}

.page-heading {
  margin-bottom: var(--space-2xl);
}

.terms-content {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: var(--space-3xl);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #fff;
  line-height: 1.9;
}

.terms-content h2 {
  margin: var(--space-2xl) 0 var(--space-sm);
  font-size: var(--text-xl);
  font-weight: 700;
}

.terms-content h2:first-of-type {
  margin-top: 0;
}

.terms-content p,
.terms-content ul,
.terms-content ol {
  margin: 0;
  color: var(--muted);
}

.terms-content ul,
.terms-content ol {
  padding-left: var(--space-xl);
}

.terms-content li + li,
.terms-content li ol {
  margin-top: var(--space-2xs);
}

.legal-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-list div {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--line);
}

.legal-list dt {
  font-weight: 700;
}

.legal-list dd {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 960px) {
  :root {
    --space-section: 5rem;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-top: 1.5rem;
  }

  .hero-grid,
  .problem-hero,
  .worry-grid,
  .feature-grid,
  .flow-grid,
  .period-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    text-align: center;
  }

  .accent,
  .hero-logo {
    margin-inline: auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    justify-content: center;
    padding-top: 1.25rem;
  }

  .hero-photo-wrap {
    display: grid;
    justify-items: center;
  }

  .hero-photo {
    margin-left: 0;
  }

  .problem-copy {
    width: 100%;
  }

  .problem-copy p {
    text-align: center;
  }

  .card-panel {
    padding: var(--space-3xl) var(--space-lg);
  }

  .highlight-phone {
    display: none;
  }

  .structure-flow {
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
  }

  .structure-title {
    font-size: var(--text-2xl);
  }

  .structure-title-image {
    width: 2.5rem;
  }

  .flow-card {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .flow-step {
    justify-content: center;
  }

  .flow-body h3 {
    text-align: center;
  }

  .flow-content,
  .flow-image {
    width: 100%;
  }

  .flow-image {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  :root {
    --container-gutter: 1.5rem;
    --space-section: 2.25rem;
    --space-xl: 1.25rem;
    --space-2xl: 1.75rem;
    --space-3xl: 2.5rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.75rem;
    --text-5xl: 1.75rem;
    --text-display-sm: 3.5rem;
  }

  .site-header {
    display: none;
  }

  .page-body .site-header {
    display: block;
  }

  .hero {
    padding: var(--space-lg) 0 var(--space-2xl);
    background-position: center top;
  }

  .hero-mobile-brand {
    display: block;
  }

  .hero-mobile-logo {
    width: 6.25rem;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-copy {
    width: calc(100% + (var(--container-gutter) / 2));
    margin-right: calc((var(--container-gutter) / 2) * -1);
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-header .container {
    padding: var(--space-sm) 0;
  }

  .site-logo {
    width: 6rem;
  }

  .hero-subtitle {
    margin-top: var(--space-sm);
    font-size: var(--text-md);
  }

  .accent {
    width: min(19rem, 100%);
  }

  .hero-logo {
    width: min(21rem, 100%);
    margin-top: var(--space-xs);
    margin-bottom: var(--space-lg);
  }

  .hero-badges {
    --hero-badge-gap: var(--space-xs);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--hero-badge-gap);
    width: 100%;
    justify-content: stretch;
  }

  .pill {
    width: 100%;
    min-width: 0;
    padding: var(--space-sm) var(--space-xs);
  }

  .pill-label {
    font-size: var(--text-sm);
  }

  .pill-value {
    font-size: var(--text-display-sm);
  }

  .pill-value span {
    font-size: var(--text-2xl);
  }

  .pill-value-compact {
    font-size: var(--text-xl);
  }

  .hero-visual {
    padding-top: 0;
  }

  .hero-photo {
    width: min(37.5rem, 100%);
  }

  .hero-note {
    font-weight: 700;
    color: var(--text);
  }

  .cta-band {
    padding: var(--space-2xl) 0;
  }

  .cta-title {
    font-size: var(--text-xl);
  }

  .section-kicker {
    font-size: var(--text-display-sm);
  }

  .section-title {
    margin-bottom: var(--space-2xl);
  }

  .problem-hero {
    margin-bottom: var(--space-section);
  }

  .problem-copy p {
    font-size: var(--text-lg);
  }

  .problem-copy br {
    display: none;
  }

  .highlight-box {
    gap: var(--space-xs);
  }

  .slash {
    font-size: var(--text-xl);
  }

  .section-worry .slash {
    font-size: var(--text-xl);
  }

  .highlight-line {
    font-size: clamp(var(--text-md), 4.4vw, 1.125rem);
    line-height: 2.4;
  }

  .highlight-line span {
    padding: 0.375rem 0.625rem;
  }

  .subheading {
    font-size: clamp(var(--text-2xl), 7vw, var(--text-3xl));
  }

  .section-lead {
    font-size: var(--text-sm);
    text-align: left;
  }

  .bridge-divider,
  .section-worry .bridge-divider {
    height: 3rem;
  }

  .period-head {
    min-height: 0;
    font-size: var(--text-md);
  }

  .period-body {
    min-height: 6rem;
  }

  .period-number {
    font-size: var(--text-display-sm);
  }

  .period-unit {
    font-size: var(--text-3xl);
  }

  .worry-card,
  .feature-card,
  .flow-card {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .worry-card {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    text-align: left;
  }

  .worry-photo {
    width: 5rem;
    height: 5rem;
    margin: 0;
  }

  .worry-card h3 {
    margin: 0;
    font-size: var(--text-xl);
  }

  .worry-card br {
    display: none;
  }

  .flow-body h3 {
    font-size: var(--text-2xl);
  }

  .flow-content {
    gap: var(--space-xs);
  }

  .flow-body,
  .flow-body p,
  .faq-summary-label,
  .faq-answer {
    font-size: var(--text-sm);
  }

  .feature-card p.feature-note {
    font-size: var(--text-xs);
  }

  .bridge-note {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: var(--space-sm);
  }

  .cta-input,
  .cta-button {
    width: 100%;
  }

  .faq-summary-label {
    align-items: flex-start;
    font-size: var(--text-sm);
  }

  .faq-item summary,
  .faq-answer {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .footer-logo {
    width: 14rem;
  }

  .terms-content {
    padding: var(--space-xl);
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
    padding: var(--space-md) 0;
  }
}

@media (max-width: 360px) {
  .highlight-line {
    font-size: clamp(0.9375rem, 4.4vw, var(--text-md));
    line-height: 2.4;
  }

  .highlight-line span {
    padding-right: var(--space-xs);
    padding-left: var(--space-xs);
  }
}

@media (max-width: 320px) {
  :root {
    --container-gutter: 1rem;
  }

  .section-white,
  .section-white * {
    min-width: 0;
  }

  .section-white {
    overflow-x: clip;
  }

  .section-white :where(p, h2, h3, div) {
    overflow-wrap: anywhere;
  }

  .section-white .card-panel {
    padding-right: var(--space-md);
    padding-left: var(--space-md);
  }

  .section-white .highlight-line,
  .section-white .speech,
  .section-white .bridge-note-bubble,
  .section-white .speech-bubble-image {
    width: 100%;
  }

  .section-white .highlight-line {
    overflow-wrap: normal;
  }

  .section-white .subheading {
    overflow-wrap: normal;
  }

  .section-kicker {
    font-size: var(--text-kicker-xs);
  }

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

  .pill {
    width: 100%;
  }
}
