:root {
  --ink: #141210;
  --ink-soft: #1d1a16;
  --panel: #252019;
  --bone: #eee7da;
  --bone-deep: #dfd5c4;
  --paper: #f8f3e9;
  --brass: #d2a44c;
  --brass-dark: #664d14;
  --sand: #cfc0a7;
  --muted: #a9987d;
  --line-dark: rgba(207, 192, 167, 0.2);
  --line-light: rgba(20, 18, 16, 0.18);
  --en: "Anton", Impact, sans-serif;
  --min: "Zen Old Mincho", "Yu Mincho", serif;
  --got: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --content: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--sand);
  font-family: var(--got);
  font-size: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.sec-bone :focus-visible {
  outline-color: var(--ink);
}

.sec-bone .trial-offer :focus-visible,
.sec-bone .form-wrap :focus-visible {
  outline-color: var(--brass);
}

html,
body {
  overflow-x: clip;
}

::selection {
  background: var(--brass);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(100% - 44px, var(--content));
  margin-inline: auto;
}

.sec-bone {
  background: var(--bone);
  color: #353028;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(20, 18, 16, 0.9);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(20, 18, 16, 0.97);
  box-shadow: 0 12px 34px rgba(8, 7, 6, 0.22);
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.logo {
  width: fit-content;
  color: var(--paper);
  font-family: var(--en);
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo-sub {
  display: block;
  margin-top: 5px;
  color: var(--brass);
  font-family: var(--got);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav a {
  position: relative;
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  padding: 10px 22px;
  border: 1px solid var(--brass);
  background: var(--brass);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: transparent;
  color: var(--brass);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  padding: clamp(58px, 8vw, 110px) 0 clamp(92px, 11vw, 150px);
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(207, 192, 167, 0.05) 50% 50.1%, transparent 50.2%),
    radial-gradient(circle at 82% 22%, #312a20 0, var(--ink) 46%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(12.5% - 1px), rgba(207, 192, 167, 0.035) 12.5%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
}

.over {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--brass);
  color: var(--brass);
}

.hero-title,
h2 {
  margin: 0;
  font-family: var(--min);
  font-weight: 700;
  letter-spacing: 0.025em;
}

.hero-title {
  color: var(--paper);
  font-size: clamp(45px, 6.3vw, 82px);
  line-height: 1.22;
}

.hero-title em {
  color: var(--brass);
  font-style: normal;
}

.hero-lead {
  max-width: 35em;
  margin: 30px 0 0;
  color: var(--paper);
  font-family: var(--min);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.9;
}

.hero-lead strong {
  color: var(--brass);
}

.hero-sub {
  max-width: 44em;
  margin: 14px 0 0;
  color: var(--sand);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-actions .btn-brass {
  flex-direction: column;
}

.btn-brass {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--ink);
}

.btn-brass:hover {
  background: #e0b75f;
}

.btn-ghost {
  border-color: rgba(207, 192, 167, 0.56);
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
}

.hero-facts li::before {
  content: "●";
  margin-right: 8px;
  color: var(--brass);
  font-size: 7px;
  vertical-align: 2px;
}

.hero-visual {
  position: relative;
  width: min(100%, 405px);
  justify-self: end;
}

.photo-frame {
  position: relative;
  margin: 0 18px 18px 0;
}

.photo-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  border: 1px solid rgba(210, 164, 76, 0.72);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(210, 164, 76, 0.04), rgba(20, 18, 16, 0.24));
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 28%;
  filter: contrast(1.05) saturate(0.8) sepia(0.14);
}

.photo-cap {
  margin: 26px 0 0;
  color: var(--brass);
  font-family: var(--en);
  font-size: 22px;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: right;
}

.photo-cap span {
  color: var(--muted);
  font-family: var(--got);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-en {
  position: absolute;
  right: -0.02em;
  bottom: -0.14em;
  margin: 0;
  color: rgba(207, 192, 167, 0.07);
  font-family: var(--en);
  font-size: clamp(72px, 13vw, 190px);
  letter-spacing: 0.015em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cred {
  border-block: 1px solid rgba(210, 164, 76, 0.28);
  background: var(--panel);
}

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

.cred-item {
  position: relative;
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 25px 18px;
  text-align: left;
}

.cred-item + .cred-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  height: 52%;
  width: 1px;
  background: var(--line-dark);
}

.cred-item strong {
  color: var(--brass);
  font-family: var(--en);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.cred-item span {
  color: var(--sand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.concerns,
.sample,
.price,
.listen,
.entry {
  padding: clamp(84px, 11vw, 150px) 0;
}

.split-heading,
.price-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.68fr);
  align-items: end;
  gap: clamp(48px, 8vw, 110px);
}

h2 {
  color: inherit;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.42;
  text-wrap: balance;
}

.nb {
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass-dark);
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.22em;
}

.eyebrow-light {
  color: var(--brass);
}

.section-intro,
.price-head > p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 2.05;
}

.section-intro strong {
  color: var(--brass-dark);
}

.concern-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(56px, 8vw, 92px);
  border-top: 1px solid var(--line-light);
  box-shadow: inset 1px 0 0 var(--line-light);
}

.concern-list article {
  min-height: 210px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.concern-list h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--min);
  font-size: clamp(18px, 2.2vw, 24px);
}

.concern-list p {
  margin: 0;
  color: #5e5548;
  font-size: 13px;
}

.answer-line {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: end;
  gap: 30px;
  margin-top: clamp(64px, 9vw, 110px);
  padding-top: 28px;
  border-top: 4px solid var(--ink);
}

.answer-line p {
  margin: 0 0 8px;
  font-family: var(--min);
  font-size: clamp(20px, 2.4vw, 30px);
}

.answer-line strong {
  color: var(--ink);
  font-family: var(--min);
  font-size: clamp(35px, 6vw, 72px);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.method {
  position: relative;
  padding: clamp(88px, 12vw, 160px) 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  align-items: start;
  gap: clamp(56px, 9vw, 120px);
}

.method h2,
.audience h2,
.flow-section h2,
.message h2,
.faq-section h2 {
  color: var(--paper);
}

.method-lead {
  margin: 30px 0 0;
  color: var(--sand);
  font-size: 14px;
  line-height: 2.05;
}

.method-points {
  margin: 46px 0 0;
  border-top: 1px solid var(--line-dark);
}

.method-points div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.method-points dt {
  color: var(--paper);
  font-family: var(--min);
  font-size: 15px;
  font-weight: 700;
}

.method-points dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.method-angles {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: var(--sand);
  font-size: 13.5px;
  line-height: 1.9;
}

.method-angles strong {
  color: var(--paper);
}

.method-example {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(210, 164, 76, 0.5);
  background: var(--ink);
  box-shadow: 24px 24px 0 rgba(210, 164, 76, 0.08);
}

.method-example-label {
  margin: 0 0 22px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.method-voice p,
.method-reply-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.method-voice blockquote,
.method-reply blockquote {
  margin: 0;
  font-family: var(--min);
  font-weight: 700;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}

.method-voice blockquote {
  color: var(--sand);
  font-size: clamp(20px, 2.2vw, 28px);
}

.method-reply {
  margin-top: 30px;
  padding: 26px 0 0;
  border-top: 1px solid rgba(210, 164, 76, 0.4);
}

.method-reply-label {
  color: var(--brass);
}

.method-reply blockquote {
  color: var(--paper);
  font-size: clamp(22px, 2.6vw, 34px);
}

.method-reply > p:last-child {
  margin: 20px 0 0;
  color: var(--sand);
  font-size: 13.5px;
  line-height: 1.9;
}

.method-example-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11.5px;
}

.audience-lead {
  max-width: 40em;
  margin: 22px 0 0;
  color: var(--sand);
  font-size: 14px;
  line-height: 2;
}

.feedback-console {
  border: 1px solid rgba(210, 164, 76, 0.5);
  background: var(--ink);
  box-shadow: 24px 24px 0 rgba(210, 164, 76, 0.08);
}

.console-top {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.console-status {
  color: var(--brass);
}

.console-status::before {
  content: "●";
  margin-right: 8px;
  font-size: 7px;
  vertical-align: 2px;
}

.console-screen {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(210, 164, 76, 0.12), transparent 45%),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(207, 192, 167, 0.05) 32px),
    var(--panel);
}

.visual-label {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.feedback-wave {
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.feedback-wave i {
  width: 5px;
  height: 22%;
  background: var(--brass);
}

.feedback-wave i:nth-child(2n) { height: 68%; }
.feedback-wave i:nth-child(3n) { height: 100%; }
.feedback-wave i:nth-child(5n) { height: 46%; }

.console-screen p {
  margin: 0;
  color: var(--paper);
  font-family: var(--min);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.85;
  text-align: center;
}

.console-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.console-steps li {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 10px 22px;
  border-top: 1px solid var(--line-dark);
}

.console-steps li > span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.console-steps strong {
  color: var(--paper);
  font-size: 13px;
}

.console-steps small {
  color: var(--muted);
  font-size: 10px;
}

.console-note {
  margin: 0;
  padding: 11px 22px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 10px;
}

.feedback-example {
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}

.example-intro {
  margin: 0;
  color: var(--brass-dark);
  font-size: 13px;
  font-weight: 700;
}

.example-voice {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  align-items: end;
  gap: clamp(32px, 6vw, 80px);
  margin-top: 28px;
}

.example-voice p {
  margin: 0 0 10px;
  color: #675e50;
  font-size: 12px;
}

.example-voice blockquote,
.example-reply blockquote {
  margin: 0;
  font-family: var(--min);
  font-weight: 700;
  text-wrap: balance;
}

.example-voice blockquote {
  color: var(--ink);
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.55;
}

.example-reply {
  width: min(88%, 900px);
  margin: clamp(48px, 7vw, 80px) 0 0 auto;
  padding: clamp(36px, 6vw, 72px);
  background: var(--ink);
  color: var(--sand);
}

.reply-label {
  margin: 0 0 24px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
}

.example-reply blockquote {
  color: var(--paper);
  font-size: clamp(25px, 3.8vw, 44px);
  line-height: 1.65;
}

.example-reply > p:last-child {
  max-width: 38em;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.example-next {
  width: min(72%, 720px);
  margin: clamp(56px, 8vw, 92px) 0 0;
  color: var(--ink);
  font-family: var(--min);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.55;
}

.example-next span {
  display: block;
  margin-bottom: 10px;
  color: var(--brass-dark);
  font-family: var(--got);
  font-size: 14px;
}

.example-note {
  width: min(88%, 900px);
  margin: 20px 0 0 auto;
  color: #766b5a;
  font-size: 10px;
}

.sample-angles {
  margin-top: 28px;
  color: #51493e;
  font-family: var(--min);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 2;
}

.sample-angles strong {
  color: var(--brass-dark);
}

.plan-list-title {
  margin: 0;
  color: var(--brass-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.audience {
  padding: clamp(86px, 12vw, 155px) 0;
  background: #191612;
}

.audience-list {
  margin-top: 64px;
  border-top: 1px solid var(--line-dark);
}

.audience-list article {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  align-items: center;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.audience-list h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--min);
  font-size: 18px;
}

.audience-list article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.audience-note {
  margin: 28px 0 0;
  color: var(--sand);
  font-size: 12px;
}

.price-head > p {
  color: #5f5649;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: 34px;
  margin-top: clamp(58px, 8vw, 90px);
}

.trial-offer {
  position: sticky;
  top: 102px;
  padding: clamp(34px, 5vw, 52px);
  background: var(--ink);
  color: var(--sand);
  box-shadow: 18px 18px 0 rgba(135, 105, 31, 0.16);
}

.trial-tag {
  display: inline-block;
  margin: 0 0 32px;
  padding: 5px 10px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.trial-label {
  margin: 0;
  color: var(--paper);
  font-family: var(--min);
  font-size: 22px;
  font-weight: 700;
}

.trial-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 9px;
  color: var(--paper);
}

.trial-price > span {
  color: var(--brass);
  font-family: var(--en);
  font-size: 22px;
}

.trial-price strong {
  font-family: var(--en);
  font-size: clamp(56px, 7vw, 76px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
}

.trial-price small {
  color: var(--muted);
  font-size: 10px;
}

.trial-offer ul {
  margin: 34px 0;
  padding: 22px 0;
  border-block: 1px solid var(--line-dark);
  list-style: none;
}

.trial-offer li {
  padding: 5px 0;
  font-size: 12px;
}

.trial-offer li::before {
  content: "●";
  margin-right: 10px;
  color: var(--brass);
  font-size: 7px;
  vertical-align: 2px;
}

.trial-offer .btn {
  width: 100%;
}

.limited-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.plan-list {
  border-top: 4px solid var(--ink);
}

.plan-list > .plan-list-title {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.plan-list > article {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.plan-list article h3,
.face-plan h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--min);
  font-size: 19px;
}

.plan-list article div > p,
.face-plan > div > p:last-child {
  margin: 4px 0 0;
  color: #6b6153;
  font-size: 11px;
}

.plan-price {
  margin: 0;
  color: var(--ink);
  text-align: right;
}

.plan-price strong {
  display: block;
  font-family: var(--en);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.plan-price small {
  display: block;
  color: #6b6153;
  font-size: 12px;
}

.plan-price .unit-price {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 8px;
  border: 1px solid rgba(135, 105, 31, 0.35);
  border-radius: 999px;
  background: rgba(210, 164, 76, 0.08);
  color: var(--brass-dark);
  font-family: var(--got);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.plan-list article > a,
.face-prices > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brass-dark);
  color: var(--brass-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.plan-list article > a:hover,
.face-prices > a:hover {
  background: var(--brass-dark);
  color: var(--paper);
}

.reco-chip {
  display: inline-block;
  margin-right: 10px;
  padding: 2px 7px;
  background: var(--brass);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: 3px;
}

.recommended {
  background: rgba(210, 164, 76, 0.1);
  padding-inline: 18px !important;
  margin-inline: -18px;
}

.face-plan {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  margin-top: 54px;
  padding: 30px;
  border: 1px solid var(--line-light);
}

.face-plan .plan-list-title {
  margin-bottom: 10px;
}

.face-prices {
  min-width: 180px;
  text-align: right;
}

.face-prices p {
  margin: 0 0 12px;
  color: #5f5649;
  font-size: 12px;
}

.face-prices strong {
  margin-left: 8px;
  color: var(--ink);
  font-family: var(--en);
  font-size: 22px;
  font-weight: 400;
}

.face-prices small {
  margin-left: 4px;
  color: #74695a;
}

.face-prices > a {
  display: inline-block;
  margin-top: 10px;
}

.price-note {
  margin-top: 34px;
  color: #675e50;
  font-size: 11px;
}

.flow-section {
  padding: clamp(86px, 12vw, 155px) 0;
  background: var(--ink-soft);
}

.flow-list {
  margin-top: 62px;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) 1.3fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
}

.flow-list h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--min);
  font-size: 19px;
}

.flow-list p {
  margin: 0;
  color: var(--sand);
  font-size: 13.5px;
  line-height: 1.9;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 68px;
  padding: 32px;
  border: 1px solid rgba(210, 164, 76, 0.4);
}

.inline-cta p {
  margin: 0;
}

.inline-cta strong {
  display: block;
  color: var(--paper);
  font-family: var(--min);
  font-size: 18px;
}

.inline-cta span {
  color: var(--muted);
  font-size: 11px;
}

.inline-cta .btn {
  flex-shrink: 0;
}

.spotify-box {
  margin-top: 60px;
}

.spotify-box iframe {
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 0;
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.stream-links a {
  padding: 8px 0;
  border-bottom: 1px solid var(--brass-dark);
  color: var(--brass-dark);
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: min(100% - 44px, 1000px);
  margin-top: 48px;
}

.media-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--ink);
}

.message {
  padding: clamp(86px, 12vw, 155px) 0;
  background: #191612;
}

.message-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(56px, 10vw, 130px);
}

.message-heading {
  position: sticky;
  top: 120px;
}

.message h2 {
  font-size: clamp(30px, 4.2vw, 50px);
}

.message-sign {
  margin: 34px 0 0;
  color: var(--brass);
  font-family: var(--en);
  font-size: 28px;
  letter-spacing: 0.12em;
  text-align: right;
}

.message-body {
  padding-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.message-body p {
  margin: 0;
  color: var(--sand);
  font-family: var(--min);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2.35;
}

.message-body p + p {
  margin-top: 1.7em;
}

.faq-section {
  padding: clamp(86px, 12vw, 145px) 0;
  background: var(--ink-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(54px, 9vw, 112px);
}

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

.faq details {
  border-bottom: 1px solid var(--line-dark);
}

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  color: var(--paper);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

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

.faq summary::before {
  content: "Q";
  color: var(--brass);
  font-family: var(--en);
  font-size: 20px;
  font-weight: 400;
}

.faq summary::after {
  content: "+";
  color: var(--brass);
  font-family: var(--en);
  font-size: 22px;
  font-weight: 400;
  text-align: right;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 38px 24px 44px;
  color: var(--muted);
  font-size: 13px;
}

.entry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(56px, 9vw, 110px);
}

.entry-copy {
  position: sticky;
  top: 120px;
}

.entry-copy h2 {
  font-size: clamp(36px, 4vw, 50px);
}

.entry-copy > p {
  margin: 20px 0 0;
  color: #5e5549;
  font-size: 14px;
  line-height: 1.95;
}

.entry-copy .entry-lead {
  margin-top: 22px;
  color: var(--ink);
  font-family: var(--min);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.6;
}

.plan-summary {
  display: none;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.45);
}

.js .plan-summary {
  display: block;
}

.plan-summary-title {
  margin: 0 0 6px;
  color: var(--brass-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.plan-summary-name {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--min);
  font-size: 18px;
  font-weight: 700;
}

.plan-summary dl {
  margin: 0;
}

.plan-summary dl > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line-light);
}

.plan-summary dt {
  color: #6b6153;
  font-size: 12px;
  font-weight: 700;
}

.plan-summary dd {
  margin: 0;
  color: #3a342c;
  font-size: 13px;
  line-height: 1.8;
}

.form-contact {
  margin: 14px 0 0;
  color: var(--sand);
  font-size: 12.5px;
}

.form-contact a {
  border-bottom: 1px solid var(--brass);
  color: var(--brass);
}

.entry-copy ul {
  margin: 30px 0 0;
  padding: 20px 0;
  border-block: 1px solid var(--line-light);
  list-style: none;
}

.entry-copy li {
  padding: 5px 0;
  color: #4e463c;
  font-size: 12px;
}

.entry-copy li::before {
  content: "●";
  margin-right: 10px;
  color: var(--brass-dark);
  font-size: 7px;
  vertical-align: 2px;
}

.form-wrap {
  padding: clamp(30px, 5vw, 56px);
  border-top: 4px solid var(--brass-dark);
  background: var(--ink);
  color: var(--sand);
  box-shadow: 18px 18px 0 rgba(135, 105, 31, 0.12);
}

.form-grid {
  display: grid;
  gap: 22px;
}

.field label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.field label span {
  padding: 1px 5px;
  background: var(--brass);
  color: var(--ink);
  font-size: 8px;
  letter-spacing: 0.05em;
}

.field label small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(207, 192, 167, 0.55);
  border-radius: 0;
  background: var(--ink-soft);
  color: var(--paper);
  font-size: 16px;
}

.field textarea {
  min-height: 125px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9c8f79;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-wrap .btn {
  width: 100%;
  flex-direction: column;
  margin-top: 26px;
}

.form-wrap .btn:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
}

.form-status.ok,
.form-status.ng {
  display: block;
}

.form-status.ok {
  border: 1px solid rgba(210, 164, 76, 0.55);
  background: rgba(210, 164, 76, 0.12);
  color: var(--brass);
}

.form-status.ng {
  border: 1px solid rgba(203, 118, 104, 0.55);
  background: rgba(203, 118, 104, 0.1);
  color: #e2aa9e;
}

.form-status a,
.noscript-note a {
  border-bottom: 1px solid currentColor;
}

.form-note,
.noscript-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
}

footer {
  padding: 58px 0 86px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 34px;
}

.footer-inner > div > p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: var(--sand);
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.1em;
}

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

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-align: right;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.63fr);
    gap: 52px;
  }

  .hero-title {
    font-size: clamp(45px, 7vw, 68px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cred-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .feedback-console {
    width: min(100%, 720px);
  }

  .price-layout {
    grid-template-columns: 1fr;
  }

  .trial-offer {
    position: static;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 68px;
  }

  .wrap {
    width: min(100% - 36px, var(--content));
  }

  .nav {
    min-height: 66px;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .global-nav {
    justify-self: end;
    gap: 16px;
  }

  .global-nav a {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual {
    order: -1;
    width: min(58%, 260px);
    justify-self: center;
  }

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

  .cred-item:nth-child(3)::before {
    display: none;
  }

  .cred-item:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .split-heading,
  .price-head,
  .message-grid,
  .faq-layout,
  .entry-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-intro,
  .price-head > p {
    max-width: 43em;
  }

  .answer-line {
    grid-template-columns: 1fr;
  }

  .audience-list article {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .flow-list li {
    grid-template-columns: minmax(170px, 0.7fr) 1.3fr;
  }

  .message-heading,
  .entry-copy {
    position: static;
  }

  .message-body {
    padding-top: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
    font-size: 14px;
  }

  .wrap {
    width: min(100% - 30px, var(--content));
  }

  .site-header .nav-cta {
    display: none;
  }

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

  .hero-title {
    font-size: clamp(39px, 11vw, 48px);
    letter-spacing: 0;
  }

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

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero-visual {
    width: min(50%, 210px);
  }

  .cred-item {
    min-height: 112px;
    padding: 20px 10px;
  }

  .cred-item strong {
    font-size: 28px;
  }

  .cred-item span {
    font-size: 9px;
  }

  .concern-list {
    grid-template-columns: 1fr;
  }

  .concern-list article {
    min-height: 0;
  }

  .method-points div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .feedback-console {
    box-shadow: 10px 10px 0 rgba(210, 164, 76, 0.08);
  }

  .console-screen {
    min-height: 280px;
    padding: 38px 20px;
  }

  .console-steps li {
    grid-template-columns: 48px 1fr;
  }

  .console-steps small {
    grid-column: 2;
    margin-top: -13px;
  }

  .example-voice {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .example-voice blockquote {
    font-size: clamp(28px, 9vw, 40px);
  }

  .example-reply,
  .example-note,
  .example-next {
    width: 100%;
  }

  .audience-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .plan-list > article {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 12px;
    min-height: 0;
  }

  .plan-list article > a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .face-plan {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 12px;
    margin-top: 0;
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .face-plan > div:first-child .plan-list-title {
    display: none;
  }

  .face-prices {
    display: contents;
  }

  .face-prices p {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin: 0;
    text-align: right;
  }

  .face-prices strong {
    margin-left: 0;
  }

  .face-prices > a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .face-plan {
    grid-template-columns: 1fr;
  }

  .face-prices {
    min-width: 0;
    text-align: left;
  }

  .flow-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inline-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .inline-cta .btn {
    width: 100%;
  }

  .spotify-box iframe {
    height: 430px;
  }

  .form-wrap {
    box-shadow: 9px 9px 0 rgba(135, 105, 31, 0.12);
  }

  footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    min-height: 68px;
    padding-bottom: env(safe-area-inset-bottom);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid rgba(20, 18, 16, 0.3);
    background: var(--brass);
    color: var(--ink);
    box-shadow: 0 -8px 28px rgba(8, 7, 6, 0.25);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
  }

  .mobile-cta span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .mobile-cta strong {
    font-family: var(--en);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 26px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy .over {
    margin-bottom: 16px;
  }

  .photo-cap {
    margin-top: 12px;
  }
}

.form-status-detail {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
}

@media (max-width: 560px) {
  .message h2 {
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .photo-cap {
    font-size: 17px;
    letter-spacing: 0.06em;
  }

  .photo-cap span {
    font-size: 8px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}
.faq-layout > div h2 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media (min-width: 781px) {
  .faq-layout {
    grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
  }
}
.message h2 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media (min-width: 781px) {
  .message-grid {
    grid-template-columns: minmax(460px, 0.95fr) 1.05fr;
  }
}