@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Old+Mincho:wght@500;700&family=Cormorant+Garamond:wght@500;600;700&family=Noto+Sans+JP:wght@400;500;700;800&family=Noto+Serif+JP:wght@500;600;700&display=swap");

:root {
  --font-sans: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-serif-jp: "Zen Old Mincho", "Noto Serif JP", serif;
  --font-serif-latin: "Cormorant Garamond", "Noto Serif JP", serif;
  --bg-top: #0f1210;
  --bg-bottom: #efe4d8;
  --bg-soft: #f7f0e6;
  --surface: rgba(255, 249, 241, 0.82);
  --surface-strong: rgba(255, 252, 247, 0.95);
  --surface-dark: rgba(18, 21, 19, 0.88);
  --surface-dark-strong: #181c1a;
  --ink: #1b1714;
  --ink-soft: #6b625c;
  --ink-inverse: #f6eee4;
  --line: rgba(27, 23, 20, 0.12);
  --line-strong: rgba(246, 238, 228, 0.12);
  --accent: #ba6f41;
  --accent-strong: #dd9565;
  --sage: #415a52;
  --gold: #d4b189;
  --shadow: 0 26px 80px rgba(15, 18, 16, 0.12);
  --shadow-deep: 0 30px 100px rgba(8, 10, 9, 0.45);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  line-break: strict;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 177, 137, 0.18), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(186, 111, 65, 0.16), transparent 18%),
    linear-gradient(180deg, var(--bg-top) 0%, #171c1a 28%, #e8dbc9 28%, var(--bg-bottom) 100%);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  text-wrap: pretty;
}

body.home-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 177, 137, 0.22), transparent 18%),
    radial-gradient(circle at 92% 16%, rgba(65, 90, 82, 0.12), transparent 16%),
    linear-gradient(180deg, #f8f3ec 0%, #f6f1e8 38%, #efe5d8 100%);
}

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

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

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

code {
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: rgba(27, 23, 20, 0.08);
  font-size: 0.9em;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.72;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

.ambient-a {
  top: -40px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: rgba(212, 177, 137, 0.18);
}

.ambient-b {
  top: 280px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: rgba(186, 111, 65, 0.16);
  animation-duration: 22s;
}

.ambient-c {
  bottom: 60px;
  left: 48%;
  width: 240px;
  height: 240px;
  background: rgba(65, 90, 82, 0.12);
  animation-duration: 18s;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(15, 18, 16, 0.68);
  border: 1px solid rgba(255, 244, 232, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(8, 10, 9, 0.22);
  color: var(--ink-inverse);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--accent-strong));
  color: #211713;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--font-serif-latin);
  font-size: 1.24rem;
  font-weight: 700;
  text-wrap: balance;
}

.brand-copy span:last-child {
  font-size: 0.78rem;
  color: rgba(246, 238, 228, 0.72);
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  color: rgba(246, 238, 228, 0.88);
}

.site-nav a {
  position: relative;
}

.site-nav .header-cta {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 177, 137, 0.92), rgba(186, 111, 65, 0.96));
  color: #1d1410;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(8, 10, 9, 0.22);
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section {
  padding: 74px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
  padding-top: 54px;
}

.home-page .hero-copy {
  color: var(--ink);
  padding: 18px 0 0;
}

.hero-copy h1,
.section-heading h2,
.feature-tile h2,
.price-card h3,
.case-card h3,
.faq-item h3,
.contact-side h3,
.gift-panel h2,
.results-head h3,
.panel h2 {
  margin: 0;
  font-family: var(--font-serif-jp);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
  text-wrap: balance;
  hanging-punctuation: first allow-end last;
}

.home-page .hero-copy h1 {
  max-width: 10em;
  font-size: clamp(2.7rem, 6.2vw, 5.2rem);
  margin-top: 14px;
  line-height: 1.12;
}

.hero-text,
.section-heading p,
.feature-tile p,
.panel p,
.price-card p,
.contact-side p,
.faq-item p,
.case-card p {
  color: var(--ink-soft);
  text-wrap: pretty;
}

.home-page .hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.eyebrow,
.price-kicker,
.summary-label,
.stage-label,
.phone-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--sage);
  white-space: nowrap;
}

.home-page .eyebrow {
  color: var(--accent);
}

.eyebrow::before,
.price-kicker::before,
.summary-label::before,
.phone-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero-pills,
.hero-actions,
.hero-metrics,
.trust-grid,
.segment-list,
.feature-strip,
.pricing-grid,
.case-grid,
.autopilot-grid,
.faq-grid,
.contact-grid,
.demo-grid,
.roi-grid,
.results-grid,
.setup-grid {
  display: grid;
  gap: 18px;
}

.hero-pills {
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  margin-top: 10px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(246, 238, 228, 0.08);
  border: 1px solid rgba(246, 238, 228, 0.12);
  color: rgba(246, 238, 228, 0.92);
  font-size: 0.86rem;
  white-space: nowrap;
}

.home-page .site-header {
  background: rgba(255, 251, 245, 0.86);
  border-color: rgba(27, 23, 20, 0.08);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(27, 23, 20, 0.08);
}

.home-page .brand-copy span:last-child {
  color: rgba(27, 23, 20, 0.58);
}

.home-page .site-nav {
  color: var(--ink-soft);
}

.home-page .hero-pill {
  background: rgba(255, 252, 247, 0.9);
  border-color: rgba(27, 23, 20, 0.08);
  color: var(--ink);
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-items: center;
  margin-top: 28px;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}

.button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff7f0;
  box-shadow: 0 16px 36px rgba(186, 111, 65, 0.28);
}

.button.secondary {
  background: rgba(255, 249, 241, 0.08);
  border-color: rgba(255, 244, 232, 0.16);
  color: inherit;
}

.home-page .button.secondary {
  background: rgba(255, 252, 247, 0.92);
  border-color: rgba(27, 23, 20, 0.1);
  color: var(--ink);
}

.button.is-disabled {
  opacity: 0.76;
}

.panel,
.feature-tile,
.price-card,
.trust-card,
.metric-card,
.result-card,
.results-shell,
.stage-window {
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.panel,
.feature-tile,
.price-card,
.metric-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
}

.metric-card {
  padding: 22px;
  background: rgba(255, 249, 241, 0.08);
  border-color: rgba(255, 244, 232, 0.14);
  box-shadow: none;
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: rgba(212, 177, 137, 0.88);
}

.metric-card strong {
  display: block;
  color: var(--ink-inverse);
  font-size: 1.15rem;
  font-family: var(--font-serif-jp);
  line-height: 1.2;
  text-wrap: balance;
}

.metric-card p {
  margin: 10px 0 0;
  color: rgba(246, 238, 228, 0.72);
  font-size: 0.92rem;
}

.home-page .metric-card {
  background: rgba(255, 252, 247, 0.86);
  border-color: rgba(27, 23, 20, 0.08);
  box-shadow: 0 18px 30px rgba(27, 23, 20, 0.06);
}

.home-page .metric-label,
.home-page .metric-card strong,
.home-page .metric-card p {
  color: var(--ink);
}

.home-page .metric-card p {
  color: var(--ink-soft);
}

.hero-stage {
  position: relative;
}

.stage-window {
  height: 100%;
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(20, 24, 22, 0.96), rgba(16, 19, 18, 0.94)),
    linear-gradient(135deg, rgba(212, 177, 137, 0.12), transparent 60%);
  border-color: rgba(255, 244, 232, 0.08);
  box-shadow: var(--shadow-deep);
  color: var(--ink-inverse);
}

.stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.stage-label {
  color: rgba(212, 177, 137, 0.88);
}

.stage-dots {
  display: inline-flex;
  gap: 8px;
}

.stage-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(246, 238, 228, 0.24);
}

.stage-body {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.stage-phone {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.08), rgba(255, 249, 241, 0.03));
  border: 1px solid rgba(255, 244, 232, 0.08);
}

.phone-screen {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.94);
  color: var(--ink);
}

.phone-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(186, 111, 65, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.84rem;
}

.phone-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(27, 23, 20, 0.05);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.phone-message.accent {
  background: linear-gradient(135deg, rgba(186, 111, 65, 0.18), rgba(212, 177, 137, 0.16));
  color: var(--ink);
}

.phone-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.phone-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(65, 90, 82, 0.1);
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 700;
}

.stage-stack {
  display: grid;
  gap: 14px;
}

.signal-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 249, 241, 0.06);
  border: 1px solid rgba(255, 244, 232, 0.08);
}

.signal-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(212, 177, 137, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.signal-card strong {
  display: block;
  font-family: var(--font-serif-jp);
  font-size: 1.45rem;
  line-height: 1.2;
}

.signal-card p {
  margin: 10px 0 0;
  color: rgba(246, 238, 228, 0.7);
  font-size: 0.9rem;
}

.trust-strip {
  padding-top: 28px;
}

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

.trust-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 241, 0.68);
  color: var(--ink);
}

.trust-card strong {
  display: block;
  font-family: var(--font-serif-jp);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.16;
}

.trust-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.home-page .trust-card strong {
  font-size: clamp(1.38rem, 2.4vw, 1.92rem);
}

.segment-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.segment-copy {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.segment-list {
  grid-auto-flow: column;
  grid-auto-columns: max-content;
}

.segment-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(27, 23, 20, 0.06);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-mail {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-weight: 700;
}

.contact-mail a {
  color: var(--ink);
}

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

.feature-tile,
.panel,
.price-card,
.result-card,
.results-shell {
  padding: 28px;
}

.feature-tile h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  margin-top: 14px;
}

.feature-tile p {
  margin: 14px 0 0;
}

.gift-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  gap: 22px;
}

.gift-panel h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-top: 14px;
}

.gift-panel p {
  margin: 14px 0 0;
}

.gift-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.gift-preview {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(24, 28, 26, 0.96), rgba(29, 34, 31, 0.94));
  color: var(--ink-inverse);
  box-shadow: var(--shadow-deep);
}

.gift-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--accent-strong));
  color: #201612;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gift-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(246, 238, 228, 0.82);
}

.gift-list li + li {
  margin-top: 10px;
}

.gift-preview p {
  margin: 18px 0 0;
  color: rgba(246, 238, 228, 0.72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  margin-top: 12px;
}

.section-heading p {
  margin: 14px 0 0;
}

.demo-grid {
  grid-template-columns: 0.84fr 1.16fr;
  align-items: start;
}

.form-panel {
  position: relative;
}

.form-panel,
.roi-form,
.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(27, 23, 20, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 252, 247, 0.86);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(186, 111, 65, 0.18);
  border-color: rgba(186, 111, 65, 0.35);
}

.results-shell {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(18, 21, 19, 0.96), rgba(20, 24, 22, 0.92));
  color: var(--ink-inverse);
  border-color: rgba(255, 244, 232, 0.08);
  box-shadow: var(--shadow-deep);
}

.results-head h3 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.results-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.result-card {
  background: rgba(255, 249, 241, 0.05);
  border: 1px solid rgba(255, 244, 232, 0.08);
  border-radius: 24px;
  box-shadow: none;
}

.result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.result-head h3 {
  margin: 0;
  font-family: var(--font-serif-jp);
  font-size: 1.4rem;
  line-height: 1.2;
}

.ghost-button {
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 244, 232, 0.16);
  background: rgba(255, 249, 241, 0.06);
  color: var(--ink-inverse);
  cursor: pointer;
}

.result-card textarea {
  min-height: 190px;
  background: rgba(255, 252, 247, 0.06);
  border-color: rgba(255, 244, 232, 0.12);
  color: rgba(246, 238, 228, 0.92);
}

.roi-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: stretch;
}

.roi-summary {
  display: grid;
  align-content: center;
  gap: 14px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(24, 28, 26, 0.96), rgba(29, 34, 31, 0.94));
  color: var(--ink-inverse);
  border-color: rgba(255, 244, 232, 0.08);
  box-shadow: var(--shadow-deep);
}

.roi-summary strong {
  font-family: var(--font-serif-latin);
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;
}

.roi-summary .summary-label,
.roi-summary .summary-note {
  color: rgba(246, 238, 228, 0.76);
}

.summary-note {
  margin: 0;
}

.summary-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212, 177, 137, 0.16), rgba(186, 111, 65, 0.12));
}

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

.price-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(24, 28, 26, 0.97), rgba(29, 34, 31, 0.94));
  color: var(--ink-inverse);
  border-color: rgba(255, 244, 232, 0.08);
  box-shadow: var(--shadow-deep);
  transform: translateY(-8px);
}

.price-card.featured p,
.price-card.featured .price-kicker {
  color: rgba(246, 238, 228, 0.74);
}

.price-value {
  margin: 0;
  font-family: var(--font-serif-latin);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1;
}

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

.case-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.case-card li + li {
  margin-top: 10px;
}

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

.step-no {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 177, 137, 0.26), rgba(186, 111, 65, 0.16));
  color: var(--accent);
  font-weight: 800;
}

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

.contact-grid {
  grid-template-columns: 1fr 0.88fr;
  align-items: start;
}

.contact-side {
  min-height: 100%;
}

.contact-aside-stack {
  display: grid;
  gap: 12px;
  margin: 18px 0 20px;
}

.contact-mini {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(27, 23, 20, 0.05);
}

.contact-mini strong {
  display: block;
  font-family: var(--font-serif-jp);
  font-size: 1.4rem;
  line-height: 1.2;
}

.contact-mini p {
  margin: 6px 0 0;
}

.status-text {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 700;
}

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

.static-hero .hero-copy {
  max-width: 860px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.template-stack,
.legal-stack {
  display: grid;
  gap: 18px;
}

.plain-list {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.plain-list li + li {
  margin-top: 12px;
}

.legal-card {
  padding: 0;
  overflow: hidden;
}

.legal-list {
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.legal-list div:last-child {
  border-bottom: 0;
}

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

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

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

.setup-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 42px;
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, 24px, 0) scale(1.06);
  }
}

@media (max-width: 1120px) {
  .hero,
  .demo-grid,
  .roi-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .feature-strip,
  .pricing-grid,
  .case-grid,
  .autopilot-grid,
  .faq-grid,
  .setup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-panel,
  .stage-body,
  .segment-rail {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .segment-list {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .home-page .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 28px;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .site-nav .header-cta {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .hero-pills,
  .hero-metrics,
  .results-grid,
  .trust-grid,
  .feature-strip,
  .pricing-grid,
  .case-grid,
  .autopilot-grid,
  .faq-grid,
  .setup-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .gift-actions,
  .setup-actions,
  .footer-links {
    justify-content: flex-start;
  }

  .price-card.featured {
    transform: none;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (max-width: 560px) {
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 18px), var(--max-width));
  }

  .home-page .hero-copy h1 {
    font-size: 2.35rem;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .feature-tile,
  .panel,
  .price-card,
  .result-card,
  .results-shell,
  .static-hero .hero-copy {
    padding: 22px;
  }
}
