:root {
  --ink: #18211f;
  --muted: #5e6965;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dfe5dc;
  --green: #165c4a;
  --green-dark: #0d3d32;
  --gold: #b88a2c;
  --coral: #c96d4c;
  --sky: #dcebef;
  --shadow: 0 24px 70px rgba(24, 33, 31, 0.14);
}

.host-emphasis {
  color: #a54a3f;
  font-weight: 800;
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dd {
  overflow-wrap: anywhere;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

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

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

p,
blockquote {
  margin: 0;
}

h2,
h3 {
  margin: 0;
  line-height: 1.22;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 5vw, 52px);
}

h3 {
  font-size: 22px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 48px);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 12px 30px rgba(24, 33, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  font-size: 13px;
  font-weight: 800;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  padding: 8px 0;
}

.header-cta {
  min-width: 98px;
  padding: 10px 18px;
  color: #fff;
  text-align: center;
  background: var(--coral);
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 61, 50, 0.94) 0%, rgba(13, 61, 50, 0.76) 42%, rgba(13, 61, 50, 0.24) 72%, rgba(13, 61, 50, 0.08) 100%),
    linear-gradient(0deg, rgba(24, 33, 31, 0.38), rgba(24, 33, 31, 0.08));
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 50px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7.2vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 34px rgba(201, 109, 76, 0.32);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary.dark {
  color: var(--green-dark);
  border-color: var(--line);
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 10px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.hero-stats dd {
  font-size: 18px;
  font-weight: 900;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding-top: 58px;
  background: var(--surface);
}

.intro-grid,
.details-layout,
.faq-layout,
.host-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-grid p:last-child,
.concept-copy,
.details-copy p,
.host p {
  color: var(--muted);
  font-size: 18px;
}

.concept-copy p + p {
  margin-top: 22px;
}

.concept-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-weight: 800;
}

.worries {
  background: var(--paper);
}

.check-grid,
.tag-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.check-grid p,
.tag-list span {
  min-height: 72px;
  padding: 18px 18px 18px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(24, 33, 31, 0.05);
  font-weight: 800;
}

.check-grid p {
  position: relative;
}

.check-grid p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.message-band {
  margin-top: 28px;
  padding: 24px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 20px;
}

.benefits,
.plans,
.recommend {
  background: var(--surface);
}

.feature-grid,
.voice-grid,
.reason-grid,
.plan-cards,
.bonus-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.feature-card,
.reason-grid article,
.voice-card,
.plan-card,
.bonus-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(24, 33, 31, 0.06);
}

.feature-card {
  min-height: 300px;
  padding: 28px;
}

.feature-card .icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.feature-image {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card p,
.reason-grid p {
  margin-top: 16px;
  color: var(--muted);
}

.details {
  color: #fff;
  background: var(--green-dark);
}

.details .section-kicker,
.details .text-link {
  color: #dfbd6b;
}

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

.details-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-list article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.detail-list span {
  color: #dfbd6b;
  font-size: 12px;
  font-weight: 900;
}

.detail-list h3 {
  margin-top: 6px;
}

.detail-list p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.detail-media {
  margin: 18px 0 0;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(3, 24, 19, 0.28);
}

.detail-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  border-radius: 7px;
}

.detail-media-narrow {
  max-width: 520px;
}

.trade-report-preview {
  margin: 22px 0 0;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(3, 24, 19, 0.28);
}

.trade-report-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.trade-report-preview figcaption {
  padding: 9px 6px 3px;
  color: #53625e;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 44px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.photo-strip p:not(.section-kicker) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.voice {
  background: var(--paper);
}

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

.voice-card {
  margin: 0;
  overflow: hidden;
}

.voice-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.voice-card blockquote {
  padding: 20px 20px 0;
  color: var(--muted);
}

.voice-card figcaption {
  padding: 18px 20px 22px;
  color: var(--green);
  font-weight: 900;
}

.initial-voices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.initial-voices article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(24, 33, 31, 0.06);
}

.initial-voices h3 {
  color: var(--green);
  font-size: 19px;
}

.initial-voices p {
  margin-top: 12px;
  color: var(--muted);
}

.reasons {
  background: var(--sky);
}

.reason-grid article {
  padding: 28px;
}

.host {
  background: var(--surface);
}

.host-photo {
  margin: 0;
  position: sticky;
  top: 110px;
}

.host-photo img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.host .lead {
  margin: 18px 0;
  color: var(--green);
  font-weight: 900;
}

.host p + p {
  margin-top: 16px;
}

.profile-link {
  margin-top: 18px;
  font-size: 14px;
}

.profile-link a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.host-message {
  margin-top: 26px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
}

.host-message p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.plan-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.plan-table th,
.plan-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.plan-table thead th {
  color: #fff;
  background: var(--green);
}

.plan-table tbody th {
  width: 32%;
  background: #f5f8f4;
}

.plan-cards {
  grid-template-columns: repeat(2, 1fr);
}

.plan-card {
  padding: 28px;
}

.plan-card.featured {
  border-color: rgba(184, 138, 44, 0.7);
  box-shadow: var(--shadow);
}

.plan-name {
  color: var(--green);
  font-weight: 900;
}

.price {
  margin-top: 8px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
}

.price span {
  display: inline-block;
  margin-left: 4px;
  color: var(--muted);
  font-size: 15px;
}

.plan-card .button {
  width: 100%;
  margin-top: 22px;
}

.notes {
  margin: 24px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 14px;
}

.term-rationale {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(184, 138, 44, 0.45);
  border-radius: 8px;
  background: #fffaf0;
}

.term-rationale h3 {
  color: var(--green);
  font-size: 20px;
}

.term-rationale p {
  margin-top: 12px;
  color: var(--muted);
}

.growth-roadmap {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(22, 92, 74, 0.2);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 20px 54px rgba(24, 33, 31, 0.1);
}

.growth-roadmap figcaption {
  padding: clamp(24px, 4vw, 40px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(184, 138, 44, 0.32), transparent 32%),
    linear-gradient(135deg, var(--green-dark), var(--green));
}

.growth-roadmap figcaption span,
.growth-roadmap figcaption strong,
.growth-roadmap figcaption small {
  display: block;
}

.growth-roadmap figcaption span {
  color: #e2c174;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.growth-roadmap figcaption strong {
  margin-top: 7px;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.35;
}

.growth-roadmap figcaption small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.roadmap-stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-stages > li {
  position: relative;
  min-width: 0;
  padding: 28px 22px 30px;
}

.roadmap-stages > li + li {
  border-left: 1px solid var(--line);
}

.roadmap-stages > li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 47px;
  right: -8px;
  width: 14px;
  height: 14px;
  content: "";
  transform: rotate(45deg);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff;
}

.roadmap-period {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 14px;
  border-bottom: 3px solid rgba(22, 92, 74, 0.18);
}

.roadmap-period span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.roadmap-period strong {
  color: var(--green-dark);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.25;
}

.roadmap-stage-copy .roadmap-goal {
  min-height: 3.4em;
  margin-top: 17px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.7;
}

.roadmap-stage-copy ul {
  margin: 14px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.roadmap-stage-copy li {
  position: relative;
  padding-left: 17px;
}

.roadmap-stage-copy li + li {
  margin-top: 6px;
}

.roadmap-stage-copy li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.roadmap-stages > .roadmap-milestone {
  background: #fffaf0;
}

.roadmap-milestone:not(:last-child)::after {
  background: #fffaf0;
}

.milestone-label {
  display: inline-flex;
  margin-top: 18px;
  padding: 5px 10px;
  color: #fff;
  border-radius: 999px;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.roadmap-support {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 2fr);
  gap: 22px;
  align-items: center;
  padding: 24px clamp(22px, 4vw, 36px);
  color: #fff;
  background: var(--green-dark);
}

.support-lead span,
.support-lead strong {
  display: block;
}

.support-lead span {
  color: #e2c174;
  font-size: 12px;
  font-weight: 900;
}

.support-lead strong {
  margin-top: 2px;
  font-size: 17px;
}

.roadmap-support ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-support li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.roadmap-support li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #e2c174;
  font-weight: 900;
}

.flow {
  background: var(--paper);
}

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

.flow-list li {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.flow-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
  font-weight: 900;
}

.flow-list p {
  margin-top: 12px;
  color: var(--muted);
}

.tag-list {
  grid-template-columns: repeat(4, 1fr);
}

.tag-list span {
  min-height: 0;
  padding: 14px 16px;
}

.bonus {
  background: var(--sky);
}

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

.bonus-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  padding: 22px;
  align-items: center;
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.bonus-card span {
  color: var(--gold);
  font-weight: 900;
}

.bonus-card p {
  margin-top: 12px;
  color: var(--muted);
}

.small {
  font-size: 14px;
}

.faq {
  background: var(--surface);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.faq-answer.is-open {
  display: block;
}

.final-cta {
  background: var(--paper);
}

.final-panel {
  padding: clamp(30px, 6vw, 62px);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), #2d5a4c 58%, #724635);
  box-shadow: var(--shadow);
}

.final-panel-with-photo {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.final-panel p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.final-photo {
  margin: 0;
  justify-self: end;
}

.final-photo img {
  display: block;
  width: min(100%, 280px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(3, 24, 19, 0.28);
}

.risk-note {
  padding: 34px 0;
  color: #6b5c48;
  background: #f1eadc;
  font-size: 13px;
}

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

.tiktok-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.tiktok-layout p:not(.section-kicker) {
  margin-top: 16px;
  color: var(--muted);
}

.tiktok-layout .button {
  margin-top: 24px;
}

.tiktok-embed-wrap {
  display: grid;
  justify-items: center;
  min-height: 360px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.tiktok-embed-wrap .tiktok-embed {
  width: 100%;
}

.site-footer {
  padding: 30px 0 90px;
  color: #fff;
  background: var(--ink);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    padding-bottom: 2px;
  }

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

  html {
    scroll-padding-top: 112px;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    max-width: 238px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(13, 61, 50, 0.92), rgba(13, 61, 50, 0.52));
  }

  .hero-inner {
    padding-top: 130px;
  }

  .hero-portrait {
    position: relative;
    top: auto;
    right: auto;
    width: min(390px, calc(100% - 36px));
    margin: 116px auto -76px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 6px;
  }

  .hero-stats div {
    padding: 11px 9px;
  }

  .hero-stats dd {
    font-size: 14px;
    line-height: 1.35;
    word-break: keep-all;
  }

  .intro-grid,
  .details-layout,
  .faq-layout,
  .host-layout,
  .photo-strip,
  .tiktok-layout,
  .final-panel-with-photo {
    grid-template-columns: 1fr;
  }

  .final-photo {
    justify-self: start;
  }

  .details-copy,
  .host-photo {
    position: static;
  }

  .feature-grid,
  .reason-grid,
  .plan-cards,
  .flow-list,
  .check-grid,
  .tag-list,
  .voice-grid,
  .initial-voices {
    grid-template-columns: 1fr;
  }

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

  .roadmap-stages > li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .roadmap-stages > li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .roadmap-stages > li:nth-child(2)::after {
    display: none;
  }

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

  .bonus-card {
    grid-template-columns: 150px 1fr;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-cta .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 100px;
  }

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

  .hero h1 {
    font-size: 39px;
  }

  .hero-portrait {
    width: min(330px, calc(100% - 32px));
    border-width: 8px;
    border-radius: 14px;
    margin-top: 110px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .feature-card,
  .reason-grid article,
  .flow-list li,
  .plan-card {
    padding: 22px;
  }

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

  .bonus-card {
    grid-template-columns: 1fr;
  }

  .bonus-card img {
    max-height: 280px;
  }

  .price {
    font-size: 34px;
  }

  .roadmap-stages,
  .roadmap-support {
    grid-template-columns: 1fr;
  }

  .roadmap-stages > li + li,
  .roadmap-stages > li:nth-child(3),
  .roadmap-stages > li:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .roadmap-stages > li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -8px;
    transform: translateX(50%) rotate(135deg);
  }

  .roadmap-stages > li:nth-child(2)::after {
    display: block;
  }

  .roadmap-stage-copy .roadmap-goal {
    min-height: 0;
  }

  .roadmap-support ul {
    grid-template-columns: 1fr;
  }
}

/* Natural variant: warmer, more personal, less corporate. */
:root {
  --ink: #26342f;
  --muted: #65736e;
  --paper: #f6fbf8;
  --surface: #fffef9;
  --line: #d9e5dc;
  --green: #2d6b58;
  --green-dark: #234d42;
  --gold: #b88a2c;
  --coral: #d47b61;
  --sky: #e7f2f4;
  --shadow: 0 12px 30px rgba(38, 52, 47, 0.08);
}

body {
  background:
    linear-gradient(90deg, rgba(45, 107, 88, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(45, 107, 88, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.site-header {
  min-height: 68px;
  color: var(--ink);
  background: rgba(255, 254, 249, 0.94);
  box-shadow: 0 8px 22px rgba(38, 52, 47, 0.08);
  backdrop-filter: blur(14px);
}

.brand-mark {
  background: #fff5e7;
}

.header-cta,
.button-primary {
  background: #d47b61;
  box-shadow: none;
}

.button-secondary {
  border-color: rgba(45, 107, 88, 0.32);
  background: rgba(255, 254, 249, 0.9);
}

.hero {
  min-height: 82vh;
  color: var(--ink);
  background: #fffef9;
}

.hero-media {
  inset: auto 0 0;
  height: 58%;
  opacity: 0.68;
}

.hero-media img {
  object-position: center 42%;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(255, 254, 249, 0.98) 0%, rgba(255, 254, 249, 0.93) 44%, rgba(255, 254, 249, 0.58) 100%);
}

.hero-inner {
  width: min(980px, calc(100% - 36px));
  padding-top: 118px;
}

.eyebrow,
.section-kicker {
  color: var(--coral);
  letter-spacing: 0.06em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(45px, 8vw, 82px);
  line-height: 1.08;
}

.hero-copy {
  max-width: 730px;
  color: var(--muted);
  font-size: 18px;
}

.hero-note {
  max-width: 680px;
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 5px solid #e2c174;
  border-radius: 0 8px 8px 0;
  color: #4f5c57;
  background: rgba(255, 245, 231, 0.92);
  font-weight: 800;
}

.hero-portrait {
  position: absolute;
  z-index: 2;
  top: 148px;
  right: clamp(28px, 7vw, 136px);
  width: clamp(280px, 27vw, 470px);
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 12px solid rgba(255, 254, 249, 0.96);
  border-radius: 18px;
  background: #fffef9;
  box-shadow: 0 18px 46px rgba(38, 52, 47, 0.16);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-stats div,
.feature-card,
.reason-grid article,
.voice-card,
.plan-card,
.bonus-card,
.flow-list li,
.initial-voices article {
  box-shadow: 0 8px 20px rgba(38, 52, 47, 0.06);
}

.hero-stats div {
  color: var(--ink);
  background: rgba(255, 254, 249, 0.92);
}

.hero-stats dt {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 8vw, 98px) 0;
}

.intro,
.benefits,
.plans,
.recommend,
.host,
.tiktok-section {
  background: rgba(255, 254, 249, 0.86);
}

.worries,
.flow,
.final-cta {
  background: rgba(231, 242, 244, 0.72);
}

.message-band {
  color: var(--ink);
  background: #fff5e7;
  border: 1px dashed rgba(212, 123, 97, 0.45);
}

.check-grid p,
.tag-list span {
  box-shadow: none;
  border-style: dashed;
}

.feature-card,
.reason-grid article,
.voice-card,
.plan-card,
.bonus-card,
.initial-voices article,
.flow-list li {
  border-color: rgba(45, 107, 88, 0.18);
}

.feature-card .icon,
.flow-list span {
  color: var(--green-dark);
  background: #fff1de;
  border: 1px solid rgba(184, 138, 44, 0.38);
}

.details {
  background: #274f44;
}

.detail-list article {
  background: rgba(255, 254, 249, 0.09);
}

.photo-strip,
.host-message {
  background: rgba(255, 254, 249, 0.1);
}

.host-message {
  color: var(--ink);
  background: #fff5e7;
}

.host-message p {
  color: var(--muted);
}

.table-wrap {
  box-shadow: 0 8px 20px rgba(38, 52, 47, 0.05);
}

.term-rationale {
  background: #fff7ea;
}

.growth-roadmap figcaption {
  background: #2d6b58;
}

.final-panel {
  color: var(--ink);
  background: #fff5e7;
  border: 1px dashed rgba(212, 123, 97, 0.45);
}

.final-panel p:not(.section-kicker) {
  color: var(--muted);
}

.button-secondary.dark {
  color: var(--green-dark);
  border-color: rgba(45, 107, 88, 0.32);
}

.final-photo img {
  border-color: rgba(45, 107, 88, 0.16);
}

.hero {
  min-height: 86vh;
  overflow: hidden;
  background: linear-gradient(90deg, #fffef9 0%, #fffdf7 48%, #ede8dd 100%);
}

.hero-media {
  inset: 0;
  height: auto;
  opacity: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(1.08) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 254, 249, 0.99) 0%, rgba(255, 254, 249, 0.96) 38%, rgba(255, 254, 249, 0.50) 61%, rgba(255, 254, 249, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 254, 249, 0.54) 0%, rgba(255, 254, 249, 0.05) 58%, rgba(255, 254, 249, 0.10) 100%);
}

.hero-inner {
  width: min(760px, calc(100% - 36px));
}

.hero-foreground {
  position: absolute;
  right: clamp(12px, 4vw, 64px);
  bottom: clamp(18px, 5vw, 78px);
  z-index: 1;
  width: min(30vw, 380px);
  min-width: 240px;
  margin: 0;
  opacity: 0.94;
  filter: drop-shadow(0 22px 36px rgba(31, 40, 35, 0.20));
  pointer-events: none;
}

.hero-foreground::before {
  content: "";
  position: absolute;
  inset: 12% 2% 0;
  border-radius: 42% 42% 22% 22%;
  background: rgba(255, 254, 249, 0.44);
  filter: blur(18px);
  z-index: -1;
}

.hero-foreground img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  object-fit: cover;
}

.hero h1 {
  max-width: 680px;
}

.hero-copy {
  max-width: 650px;
  color: #4e5d58;
}

.hero-portrait {
  display: none;
}

@media (max-width: 860px) {
  .hero {
    min-height: 92vh;
  }

  .hero-media img {
    object-fit: cover;
    object-position: 58% 46%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 254, 249, 0.98) 0%, rgba(255, 254, 249, 0.86) 48%, rgba(255, 254, 249, 0.28) 100%);
  }

  .hero-inner {
    padding-top: 122px;
  }

  .hero-foreground {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: min(88vw, 360px);
    min-width: 0;
    margin: 28px auto 0;
  }
}
