:root {
  --paper: #fbfaf7;
  --paper-soft: #f4f8fc;
  --ink: #102033;
  --text: #223047;
  --muted: #647084;
  --navy: #061f4b;
  --blue: #1b61c9;
  --blue-soft: #eaf4ff;
  --sky: #2ec7e6;
  --gold: #b8944d;
  --gold-soft: #fbf3df;
  --rose: #efd4d3;
  --rose-dark: #9d5b5f;
  --mint: #eaf8f2;
  --green: #35a978;
  --line: #d8e2ee;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 32, 51, 0.12);
  --thin-shadow: 0 10px 28px rgba(16, 32, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(244,248,252,0.88)),
    repeating-linear-gradient(0deg, rgba(6,31,75,0.025) 0, rgba(6,31,75,0.025) 1px, transparent 1px, transparent 20px);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.75;
}

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

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(251, 250, 247, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

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

.brand span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 9999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(6, 31, 75, 0.16);
}

.btn-primary:hover,
.nav-cta:hover {
  background: #0f3e8a;
  border-color: #0f3e8a;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  color: var(--navy);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(6,31,75,0.24);
  border-radius: 9999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--navy);
  border-radius: 2px;
}

.menu-button {
  flex-direction: column;
  gap: 5px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 auto 0;
  z-index: 49;
  padding: 12px 22px 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--thin-shadow);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.hero {
  min-height: 620px;
  height: min(720px, calc(100svh - 132px));
  padding: 74px clamp(20px, 6vw, 76px) 46px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--paper);
  background-repeat: no-repeat;
}

.course-hero {
  background-image:
    linear-gradient(90deg, rgba(251,250,247,0.98) 0%, rgba(251,250,247,0.92) 39%, rgba(251,250,247,0.16) 67%, rgba(251,250,247,0.22) 100%),
    url("images/materials/hero-secretary-workspace-v1.png");
  background-position: center, right clamp(0px, 2vw, 32px) center;
  background-size: cover, auto min(84vh, 820px);
}

.lark-hero {
  background-image:
    linear-gradient(90deg, rgba(251,250,247,0.98) 0%, rgba(251,250,247,0.9) 42%, rgba(251,250,247,0.34) 100%),
    url("images/materials/lark-devices-collaboration-v1.png");
  background-position: center, right 4vw center;
  background-size: cover, auto min(58vh, 660px);
}

.hero-content {
  width: min(860px, 100%);
  position: relative;
  z-index: 1;
}

.ribbon {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 22px;
  padding: 7px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 3px;
  font-family: "Noto Serif JP", serif;
  font-size: 0.98rem;
  font-weight: 800;
  max-width: 100%;
  text-align: center;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  font-size: 3.65rem;
  font-weight: 800;
  line-height: 1.22;
  word-break: keep-all;
  line-break: strict;
}

.hero h1 .gold {
  color: var(--gold);
}

.mobile-only {
  display: none;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  color: var(--navy);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.pill::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 999px;
}

.mobile-hero-image {
  display: none;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.band {
  padding: 64px clamp(18px, 5vw, 72px);
}

.band.white {
  background: rgba(255,255,255,0.88);
}

.band.soft {
  background: rgba(234,244,255,0.46);
}

.container {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head.center {
  display: block;
  text-align: center;
}

.label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  line-height: 1.35;
}

.section-copy {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.navy-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px 6px 0 0;
  font-weight: 900;
  text-align: center;
}

.reference-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: center;
}

.course-accent {
  margin: 0;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-accent img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.reference-image {
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reference-image img {
  width: 100%;
  border-radius: 4px;
}

.reference-text {
  display: grid;
  gap: 16px;
}

.message-box {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--thin-shadow);
}

.message-box h2,
.message-box h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  font-size: 1.55rem;
  line-height: 1.45;
}

.message-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.price-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  background: var(--gold-soft);
  border: 1px solid #ecd8a7;
  border-radius: 8px;
}

.price-chip .amount {
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.price-chip small {
  color: var(--muted);
  font-weight: 800;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(720px, 1.45fr);
  gap: 22px;
  align-items: start;
}

#goals .section-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(720px, 1.45fr);
  gap: 22px;
  align-items: end;
}

#goals .section-copy {
  max-width: none;
  margin: 0;
  padding: 0 4px;
}

#goals .split-grid {
  align-items: stretch;
}

#goals .split-grid > .panel {
  display: grid;
  grid-template-rows: auto 1fr;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--thin-shadow);
  overflow: hidden;
}

.panel-body {
  padding: 22px;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.check-list li::before {
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.thought {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 18px;
  color: var(--ink);
  background: #fff8f8;
  border: 1px solid var(--rose);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.recommend-figure {
  width: min(245px, 72%);
  margin: 20px auto 0;
  border: 1px solid #ecd4d2;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(157, 91, 95, 0.12);
}

.goal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0;
}

.goal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 32px 20px 34px;
  background: var(--white);
  border-left: 1px solid var(--line);
  text-align: center;
}

.goal-card:first-child {
  border-left: 0;
}

.icon-tile {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  color: var(--navy);
  background: var(--blue-soft);
  border: 1px solid #cfe0f4;
  border-radius: 8px;
  font-weight: 900;
}

.icon-tile.rose {
  color: var(--rose-dark);
  background: #fff2f2;
  border-color: var(--rose);
}

.icon-tile.gold {
  color: #8b6d2e;
  background: var(--gold-soft);
  border-color: #ecd8a7;
}

.icon-tile.green {
  color: #177a55;
  background: var(--mint);
  border-color: #c7ebdc;
}

.goal-art {
  width: 128px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #e4edf6;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.08);
}

.title-line {
  display: block;
}

.goal-card h3,
.skill-card h3,
.support-item h3,
.step-card h3,
.feature-card h3,
.benefit h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: normal;
}

.goal-card p,
.skill-card p,
.support-item p,
.step-card li,
.feature-card p,
.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.75;
}

#goals .goal-grid {
  height: 100%;
}

#goals .goal-card p {
  max-width: 13.5em;
}

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

.step-card {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--thin-shadow);
}

.step-art {
  width: min(174px, 80%);
  aspect-ratio: 1;
  margin: 14px auto 4px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #e4edf6;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.08);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  margin-bottom: 16px;
}

.step-badge {
  display: flex;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: #e3727a;
  border-radius: 999px;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(227, 114, 122, 0.18);
}

.step-badge span {
  font-size: 1.45rem;
}

.step-badge small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0;
}

.month-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.45;
}

.step-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.15em;
}

.gift {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 24px 20px;
  background: #fff5f5;
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: var(--rose-dark);
  text-align: center;
  box-shadow: var(--thin-shadow);
}

.gift strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  line-height: 1.55;
}

.gift span {
  color: #7d5960;
  font-size: 0.82rem;
  font-weight: 800;
}

.gift .keep-phrase {
  display: inline-block;
}

.gift img {
  width: min(135px, 72%);
  margin: 16px auto 0;
  border: 1px solid #ecd4d2;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(157, 91, 95, 0.14);
}

.skill-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--thin-shadow);
}

.skill-card {
  display: grid;
  grid-template-rows: auto minmax(42px, auto) 1fr;
  align-items: start;
  min-width: 0;
  min-height: 244px;
  padding: 24px 14px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.skill-card:first-child {
  border-left: 0;
}

.skill-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  color: var(--navy);
  background: var(--blue-soft);
  border: 1px solid #cfe0f4;
  border-radius: 8px;
}

.skill-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skill-icon.gold {
  color: #8b6d2e;
  background: var(--gold-soft);
  border-color: #ecd8a7;
}

.skill-icon.green {
  color: #177a55;
  background: var(--mint);
  border-color: #c7ebdc;
}

.skill-icon.rose {
  color: var(--rose-dark);
  background: #fff2f2;
  border-color: var(--rose);
}

.skill-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 12px;
  font-size: clamp(0.84rem, 0.68vw, 0.94rem);
  line-height: 1.35;
  white-space: nowrap;
}

.skill-card p {
  max-width: 13em;
  margin-inline: auto;
  font-size: 0.82rem;
  line-height: 1.7;
}

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

.support-card {
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--thin-shadow);
}

.support-figure {
  width: 100%;
  margin: 0;
  border: 1px solid #e4edf6;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.08);
}

.support-item {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--thin-shadow);
}

.support-item h3 {
  margin-bottom: 5px;
}

.support-item p {
  font-size: 0.82rem;
  line-height: 1.65;
}

.cta-band {
  color: var(--white);
  background: var(--navy);
}

.cta-band .section-title,
.cta-band .section-copy,
.cta-band .label {
  color: var(--white);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.cta-box .price {
  color: var(--gold);
  font-family: "Noto Serif JP", serif;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cta-band .btn-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.cta-band .btn-primary:hover {
  background: #0f3e8a;
  border-color: #0f3e8a;
}

.cta-band .btn-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,0.42);
}

.closing-line {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  font-size: 1.18rem;
  font-weight: 800;
  text-align: center;
}

.closing-line::before,
.closing-line::after {
  width: 80px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.lark-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.lark-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--thin-shadow);
}

.lark-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.lark-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: linear-gradient(135deg, #1f66f2, #33c4a9);
  border-radius: 8px;
  font-weight: 900;
}

.lark-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.25;
}

.lark-device-frame {
  padding: 0;
  overflow: hidden;
}

.lark-device-frame img {
  border-radius: 8px;
}

.blue-pill {
  display: inline-flex;
  justify-content: center;
  min-height: 38px;
  padding: 7px 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.device-copy {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.feature-card {
  min-height: 190px;
  padding: 20px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--thin-shadow);
  text-align: center;
}

.benefit-strip {
  display: grid;
  grid-template-columns: 0.8fr repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--mint);
  border: 1px solid #c9eadc;
  border-radius: 8px;
}

.benefit-title {
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--green);
  background: rgba(255,255,255,0.45);
  font-family: "Noto Serif JP", serif;
  font-size: 1.45rem;
  font-weight: 900;
  text-align: center;
}

.benefit {
  padding: 24px 20px;
  border-left: 1px dashed rgba(53,169,120,0.38);
}

.benefit h3 {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
}

.benefit h3::before {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  content: "✓";
  background: var(--green);
  border-radius: 999px;
  font-size: 0.82rem;
}

.site-footer {
  padding: 36px clamp(18px, 5vw, 72px);
  color: rgba(255,255,255,0.66);
  background: #061936;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 92px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.footer-brand strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 700;
}

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

.copy {
  width: 100%;
  margin-top: 12px;
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
}

@media (max-width: 1050px) {
  .hero h1 {
    font-size: 3rem;
  }

  .reference-grid,
  .split-grid,
  .skill-layout,
  .lark-overview,
  .cta-box {
    grid-template-columns: 1fr;
  }

  #goals .section-head {
    grid-template-columns: 1fr;
  }

  .goal-grid,
  .steps,
  .feature-grid,
  .benefit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-actions {
    justify-content: flex-start;
  }
}

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

  .menu-button {
    display: flex;
  }

  .brand img {
    width: 92px;
  }

  .brand span {
    font-size: 0.76rem;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 44px 20px 36px;
    background-image: none;
  }

  .hero h1 {
    font-size: 1.88rem;
    line-height: 1.32;
  }

  .skill-card h3,
  .goal-card h3,
  .feature-card h3 {
    text-wrap: balance;
  }

  .mobile-only {
    display: block;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .mobile-hero-image {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    background: var(--white);
  }

  .band {
    padding: 48px 18px;
  }

  .section-head {
    display: block;
  }

  #goals .section-head {
    display: block;
  }

  .section-title {
    font-size: 1.58rem;
  }

  .goal-grid,
  .steps,
  .skill-grid,
  .feature-grid,
  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .goal-card,
  .skill-card,
  .benefit {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .goal-card:first-child,
  .skill-card:first-child {
    border-top: 0;
  }

  .goal-card {
    justify-content: flex-start;
    padding: 24px 18px;
  }

  .gift {
    border-radius: 8px;
  }

  .support-card {
    padding: 14px;
  }

  .goal-art {
    width: 124px;
  }

  .step-art {
    width: min(190px, 72%);
  }

  .price-chip,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box .price {
    font-size: 2.15rem;
  }

  .closing-line::before,
  .closing-line::after {
    display: none;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .ribbon {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.88rem;
  }

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