@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg-top: #f4f3ef;
  --bg-mid: #eff2f4;
  --bg-base: #f7f7f5;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-solid: #ffffff;
  --surface-soft: #f9fafb;
  --ink-strong: #1a1f2b;
  --ink: #2d3748;
  --ink-muted: #566174;
  --brand: #d4af37;
  --brand-strong: #b99327;
  --brand-soft: #f4e8bf;
  --accent: #6d5c96;
  --line: #d8dde6;
  --line-soft: #e3e7ee;
  --glow: rgba(109, 92, 150, 0.2);
  --shadow-soft: 0 6px 16px rgba(26, 31, 43, 0.06);
  --shadow-lift: 0 20px 48px rgba(26, 31, 43, 0.14);
  --focus: #3a6ea5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.64;
  background:
    radial-gradient(56rem 32rem at -8% -14%, rgba(109, 92, 150, 0.14), transparent 68%),
    radial-gradient(52rem 30rem at 108% -8%, rgba(212, 175, 55, 0.12), transparent 70%),
    linear-gradient(165deg, var(--bg-top) 0%, var(--bg-mid) 42%, var(--bg-base) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 56%, transparent);
  outline-offset: 2px;
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(145, 154, 170, 0.2);
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--surface-solid) 78%, #f4f5f8 22%);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  color: var(--ink-strong);
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(130deg, #d9ba58 0%, #8a73bf 100%);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  min-width: 0;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(145, 154, 170, 0.34);
  background: color-mix(in oklab, var(--surface-solid) 86%, #eef1f6 14%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-line {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink-strong) 86%, #4a556d 14%);
  transition:
    transform 180ms ease,
    opacity 160ms ease;
}

.nav-links-main {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  min-width: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  padding: 11px 18px;
  font-size: 0.94rem;
  min-height: 44px;
  transition:
    transform 160ms ease,
    box-shadow 180ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #1d1a12;
  background: linear-gradient(135deg, var(--brand) 0%, #ead27c 100%);
  border-color: rgba(141, 114, 30, 0.38);
  box-shadow: 0 10px 20px rgba(189, 152, 40, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 100%);
  box-shadow: 0 14px 24px rgba(176, 137, 26, 0.3);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink-strong);
  background: color-mix(in oklab, var(--surface-solid) 84%, #edeff4 16%);
}

.button-secondary:hover {
  background: color-mix(in oklab, var(--surface-solid) 58%, #eceef4 42%);
}

.kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent) 78%, #3a4253 22%);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink-strong);
  letter-spacing: -0.016em;
}

.hero {
  position: relative;
  padding: clamp(58px, 9.5vw, 104px) 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  right: -7rem;
  top: 1rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(109, 92, 150, 0.2), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -9rem;
  top: -2rem;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 3px 8px;
  font-size: 0.49rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand) 60%, #ffffff 40%);
  color: color-mix(in srgb, var(--brand-strong) 75%, #312a18 25%);
  background: color-mix(in srgb, var(--brand-soft) 70%, white 30%);
}

.hero .kicker::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
}

.hero h1 {
  margin-bottom: 14px;
  line-height: 1.05;
  font-size: clamp(2.18rem, 5vw, 4.4rem);
  max-width: 16ch;
}

.hero-accent {
  display: block;
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.hero p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
  max-width: 58ch;
}

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

.hero-proof {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-proof li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand) 70%, transparent);
  background: color-mix(in srgb, var(--brand-soft) 60%, white 40%);
}

.hero-panel {
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 95% 8%, rgba(212, 175, 55, 0.15), transparent 45%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(249, 249, 253, 0.9));
  color: var(--ink);
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(151, 159, 176, 0.28);
  position: relative;
  overflow: hidden;
}

.hero-panel h2 {
  font-size: 1.52rem;
  margin-bottom: 10px;
}

.hero-panel p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.pill-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pill {
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.84);
  padding: 8px 10px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--ink) 90%, #5d6480 10%);
}

.hero-panel-preview {
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid rgba(145, 154, 170, 0.3);
  background: linear-gradient(135deg, #f0edf8 0%, #f6f2e7 100%);
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
}

.hero-panel-preview span {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 55%, white), color-mix(in srgb, var(--accent) 65%, #5b4c85));
  animation: panel-bars 1.8s ease-in-out infinite;
}

.hero-panel-preview span:nth-child(1) { height: 20px; animation-delay: 0ms; }
.hero-panel-preview span:nth-child(2) { height: 34px; animation-delay: 120ms; }
.hero-panel-preview span:nth-child(3) { height: 28px; animation-delay: 240ms; }
.hero-panel-preview span:nth-child(4) { height: 42px; animation-delay: 360ms; }
.hero-panel-preview span:nth-child(5) { height: 24px; animation-delay: 480ms; }
.hero-panel-preview span:nth-child(6) { height: 38px; animation-delay: 600ms; }
.hero-panel-preview span:nth-child(7) { height: 18px; animation-delay: 720ms; }
.hero-panel-preview span:nth-child(8) { height: 30px; animation-delay: 840ms; }

.trust-strip {
  padding: 20px 0 22px;
  border-top: 1px solid rgba(151, 160, 178, 0.18);
  border-bottom: 1px solid rgba(151, 160, 178, 0.2);
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.7), rgba(241, 244, 248, 0.68));
}

.trust-strip-inner {
  display: grid;
  gap: 10px;
}

.trust-strip h2 {
  margin: 0;
  font-size: clamp(1.24rem, 1.85vw, 1.6rem);
  line-height: 1.28;
  max-width: 42ch;
}

.trust-strip-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.trust-strip-links li {
  position: relative;
  padding-left: 0.86rem;
}

.trust-strip-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.49rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 62%, #2a9587 38%);
}

.trust-strip-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(151, 160, 178, 0.34);
  transition: color 160ms ease, border-color 160ms ease;
}

.trust-strip-links a:hover {
  color: var(--ink-strong);
  border-color: rgba(109, 92, 150, 0.4);
}

.trust-strip-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.trust-strip-note a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 0.12em;
}

.section {
  padding: clamp(48px, 7vw, 80px) 0;
}

.section-soft {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.58), rgba(237, 239, 244, 0.58));
  border-block: 1px solid rgba(151, 160, 178, 0.26);
}

.section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.84rem, 3.3vw, 3rem);
  line-height: 1.12;
  max-width: 20ch;
}

.section-lead {
  margin: 0;
  max-width: 72ch;
  color: var(--ink-muted);
}

.value-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  border-radius: 0;
  padding: 10px 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(156, 164, 180, 0.26);
  background: transparent;
  box-shadow: none;
}

.value-media {
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid rgba(151, 160, 178, 0.3);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(165deg, #f1f4f8, #e9eef4);
}

.value-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.value-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(151, 160, 178, 0.34);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(135deg, rgba(109, 92, 150, 0.18), rgba(212, 175, 55, 0.2));
  display: inline-block;
  margin-bottom: 12px;
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
}

.value-card p {
  margin: 0;
  color: var(--ink-muted);
}

.testimonials-section {
  background: linear-gradient(175deg, rgba(241, 245, 250, 0.7), rgba(245, 247, 250, 0.74));
  border-block: 1px solid rgba(151, 160, 178, 0.18);
}

.user-voices {
  margin-top: 22px;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.voice-feature {
  border-radius: 12px;
  border: 1px solid rgba(151, 160, 178, 0.24);
  border-left: 4px solid color-mix(in srgb, var(--accent) 56%, var(--brand) 44%);
  background:
    radial-gradient(circle at 96% 8%, rgba(212, 175, 55, 0.14), transparent 38%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.82), rgba(249, 251, 255, 0.78));
  padding: 16px 18px;
}

.voice-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent) 72%, #56627a 28%);
}

.voice-feature blockquote,
.voice-note blockquote {
  margin: 8px 0 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
}

.voice-feature blockquote {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.32;
}

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

.voice-note {
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(151, 160, 178, 0.24);
}

.voice-note blockquote {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.42;
}

.voice-meta {
  margin: 10px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.voice-context {
  margin: 3px 0 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.proof-disclosure {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

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

.benefit-list li {
  border-radius: 0;
  padding: 0 0 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(152, 161, 178, 0.28);
  box-shadow: none;
}

.benefit-list h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.benefit-list p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.step-grid {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  border-top: 3px solid rgba(153, 162, 179, 0.28);
  background: transparent;
  padding: 14px 0 8px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brand-soft);
  color: #7b6220;
  margin-bottom: 12px;
}

.step-card h3 {
  margin: 0 0 6px;
  font-size: 1.06rem;
}

.step-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.outcome-list {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.outcome-item {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(151, 160, 178, 0.24);
}

.outcome-media {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(151, 160, 178, 0.24);
}

.outcome-media img {
  width: 100%;
  height: 164px;
  object-fit: cover;
  object-position: center;
}

.outcome-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.outcome-copy p {
  margin: 0;
  color: var(--ink-muted);
}

.section-gallery {
  background: linear-gradient(170deg, rgba(248, 248, 250, 0.9), rgba(243, 245, 249, 0.86));
  border-block: 1px solid rgba(151, 160, 178, 0.2);
}

.feature-gallery {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(151, 160, 178, 0.28);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.feature-media {
  border-bottom: 1px solid rgba(156, 164, 180, 0.28);
  background: linear-gradient(165deg, #f4f6f8, #eef1f5);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.feature-copy {
  padding: 14px 16px 16px;
}

.feature-copy h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.feature-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.cta-banner {
  border-radius: 24px;
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 175, 55, 0.32), transparent 40%),
    linear-gradient(135deg, #0f1c31 0%, #1c2436 52%, #1a2a44 100%);
  border: 1px solid rgba(105, 129, 166, 0.42);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  box-shadow: 0 18px 36px rgba(10, 17, 30, 0.35);
}

.cta-banner h3 {
  margin: 0;
  font-size: clamp(1.52rem, 2.2vw, 2.2rem);
  color: #f6f8fc;
}

.cta-banner p {
  margin: 0;
  color: rgba(225, 232, 246, 0.84);
}

.newsletter {
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(151, 160, 178, 0.28);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 251, 0.86));
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px 28px;
  align-items: center;
}

.newsletter-copy h3 {
  margin: 0;
  font-size: clamp(1.56rem, 2.5vw, 2.12rem);
}

.newsletter-copy p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  max-width: 62ch;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.field,
.select {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(151, 160, 178, 0.46);
  background: #ffffff;
  color: var(--ink-strong);
  padding: 11px 12px;
  font: inherit;
}

.note {
  margin: 0;
  font-size: 0.87rem;
  color: var(--ink-muted);
  grid-column: 1 / -1;
}

.footer {
  margin-top: 12px;
  padding: 34px 0;
  border-top: 1px solid rgba(151, 160, 178, 0.24);
  background: rgba(247, 248, 251, 0.56);
}

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

.footer-links a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--ink-strong);
  text-decoration: underline;
}

.small {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.page {
  padding: clamp(50px, 8vw, 76px) 0;
}

.page-hero {
  margin-bottom: 24px;
}

.page h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.3vw, 3.2rem);
  line-height: 1.08;
}

.page-lead {
  margin: 0;
  max-width: 72ch;
  color: var(--ink-muted);
}

.page h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: clamp(1.32rem, 2.7vw, 1.92rem);
}

.page p,
.page li {
  color: var(--ink);
}

.page ul,
.page ol {
  padding-left: 22px;
}

.page .panel {
  border-radius: 16px;
  border: 1px solid rgba(153, 162, 179, 0.28);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.page .panel p,
.page .panel li {
  color: var(--ink-muted);
}

.content-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-gap-sm {
  margin-top: 12px;
}

.page-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-page {
  padding: clamp(34px, 6vw, 58px) 0 50px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(20px, 3vw, 30px);
  align-items: stretch;
}

.contact-main {
  max-width: 680px;
}

.contact-main h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1.03;
  max-width: 13ch;
}

.contact-accent {
  color: color-mix(in srgb, #2a9587 74%, var(--accent) 26%);
  font-style: italic;
  font-weight: 500;
}

.contact-lead {
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.65vw, 1.25rem);
  max-width: 33ch;
}

.contact-support-card {
  margin-top: 30px;
  border-radius: 12px;
  border: 1px solid rgba(151, 160, 178, 0.26);
  border-left: 4px solid rgba(42, 149, 135, 0.45);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
  padding: clamp(18px, 2.6vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.contact-support-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.7vw, 2.6rem);
}

.contact-support-card p {
  margin: 7px 0 0;
  color: var(--ink-muted);
}

.contact-email-link {
  margin-top: 12px;
  display: inline-block;
  font-size: clamp(1.05rem, 1.5vw, 1.62rem);
  font-weight: 700;
  color: var(--ink-strong);
  text-decoration: none;
  border-bottom: 2px solid color-mix(in srgb, #2a9587 40%, transparent);
}

.contact-email-link:hover {
  border-bottom-color: color-mix(in srgb, #2a9587 75%, #1f3540 25%);
}

.contact-email-cta {
  background: linear-gradient(140deg, #2a9587 0%, #238577 100%);
  border-color: rgba(29, 117, 108, 0.54);
  color: #f7fffd;
  box-shadow: 0 12px 22px rgba(34, 132, 120, 0.26);
  gap: 8px;
}

.contact-email-cta:hover {
  background: linear-gradient(140deg, #258678 0%, #1d756a 100%);
  box-shadow: 0 14px 24px rgba(31, 118, 108, 0.34);
}

.contact-details-card {
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid rgba(151, 160, 178, 0.24);
  border-left: 4px solid rgba(109, 92, 150, 0.38);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: none;
  padding: clamp(18px, 2.4vw, 26px);
}

.contact-details-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
}

.contact-detail-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-detail-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.contact-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: color-mix(in srgb, #2a9587 78%, #5e889f 22%);
}

.contact-detail-list strong {
  color: var(--ink);
}

.contact-meta-note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(151, 160, 178, 0.24);
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.contact-visual {
  position: relative;
}

.contact-visual-stage {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(145, 154, 170, 0.26);
  overflow: hidden;
  background: linear-gradient(150deg, rgba(226, 238, 242, 0.92), rgba(233, 242, 239, 0.9));
}

.contact-lifestyle-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 26, 31, 0.08) 0%, rgba(12, 26, 31, 0.22) 100%),
    radial-gradient(42rem 20rem at 90% 14%, rgba(42, 149, 135, 0.22), transparent 58%);
}

.contact-proof-ribbon {
  margin: 12px 0 0;
  border-left: 4px solid rgba(42, 149, 135, 0.7);
  padding: 8px 0 0 12px;
}

.contact-proof-ribbon blockquote {
  margin: 0;
  color: var(--ink-strong);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.45;
}

.contact-proof-ribbon figcaption {
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: color-mix(in srgb, #2a9587 66%, #5d6f87 34%);
  font-weight: 700;
}

.contact-chip {
  position: absolute;
  top: clamp(16px, 2.2vw, 24px);
  right: clamp(16px, 2.2vw, 24px);
  border-radius: 999px;
  border: 1px solid rgba(152, 161, 178, 0.34);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(7px);
  box-shadow: 0 8px 16px rgba(26, 31, 43, 0.08);
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--ink);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(140deg, #3fb5a2 0%, #2a9587 100%);
  box-shadow: 0 0 0 5px rgba(42, 149, 135, 0.2);
}

.method-page {
  padding: 0 0 50px;
}

.method-hero {
  position: relative;
  padding: clamp(62px, 10vw, 110px) 0 54px;
  background:
    radial-gradient(56rem 24rem at 84% 0%, rgba(150, 178, 208, 0.2), transparent 72%),
    linear-gradient(180deg, rgba(227, 236, 246, 0.88), rgba(237, 241, 246, 0.84));
  border-bottom: 1px solid rgba(151, 160, 178, 0.2);
}

.method-hero-inner {
  text-align: center;
  max-width: 840px;
}

.method-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.06;
}

.method-hero-accent {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: color-mix(in srgb, var(--accent) 74%, #59627b 26%);
}

.method-hero-lead {
  margin: 16px auto 0;
  max-width: 64ch;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
}

.method-callout {
  margin: 24px auto 0;
  max-width: 690px;
  border-radius: 999px;
  border: 1px solid rgba(151, 160, 178, 0.3);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.88rem;
}

.method-callout-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(145, 154, 170, 0.48);
  background:
    radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.74), transparent 46%),
    linear-gradient(145deg, rgba(109, 92, 150, 0.3), rgba(212, 175, 55, 0.36));
  flex: 0 0 auto;
}

.method-studio-proof {
  padding: clamp(36px, 6vw, 56px) 0;
  background: linear-gradient(180deg, rgba(243, 248, 252, 0.86), rgba(238, 243, 249, 0.82));
  border-bottom: 1px solid rgba(151, 160, 178, 0.2);
}

.method-studio-proof-inner {
  display: grid;
  gap: 18px;
}

.method-studio-proof-copy h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
}

.method-studio-proof-copy p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  max-width: 66ch;
}

.method-studio-proof-media {
  margin: 0;
  border-radius: 22px;
  border: 1px solid rgba(145, 154, 170, 0.26);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.method-studio-proof-media picture {
  display: block;
}

.method-studio-proof-media img {
  display: block;
  width: 100%;
  height: auto;
}

.method-studio-proof-media figcaption {
  padding: 10px 12px 12px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.method-studio-proof-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.method-studio-proof-notes li {
  margin: 0;
  padding-top: 10px;
  border-top: 2px solid rgba(109, 92, 150, 0.24);
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.method-studio-proof-notes strong {
  display: block;
  color: var(--ink-strong);
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.method-flow {
  padding: clamp(42px, 6vw, 64px) 0 clamp(28px, 5vw, 44px);
  background: linear-gradient(180deg, rgba(235, 240, 247, 0.72), rgba(239, 243, 248, 0.74));
  border-bottom: 1px solid rgba(151, 160, 178, 0.2);
}

.method-flow-kicker {
  margin-bottom: 10px;
}

.method-flow-title {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.method-flow-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.method-flow-item {
  position: relative;
  border-top: 2px solid rgba(109, 92, 150, 0.36);
  padding: 22px 8px 0;
}

.method-flow-number {
  position: absolute;
  top: -13px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(146, 155, 172, 0.34);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}

.method-flow-item h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.method-flow-item p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.method-step-shot {
  margin: 14px 0 0;
  border-radius: 14px;
  border: 1px solid rgba(145, 154, 170, 0.26);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
}

.method-step-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.method-step-shot figcaption {
  margin: 0;
  padding: 8px 10px 10px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.method-routine {
  padding: clamp(38px, 6vw, 62px) 0;
  background: linear-gradient(180deg, rgba(246, 249, 252, 0.88), rgba(243, 247, 251, 0.9));
}

.method-routine-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.method-routine-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 2.7rem);
}

.method-routine-copy > p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  max-width: 62ch;
}

.method-routine-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.method-routine-list li {
  border-left: 2px solid rgba(42, 149, 135, 0.34);
  padding-left: 11px;
}

.method-routine-list span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--brand) 60%, #4f5b72 40%);
}

.method-routine-list p {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.method-routine-media {
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(145, 154, 170, 0.26);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.method-routine-media img {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 312px);
  object-fit: cover;
  object-position: center;
}

.method-routine-media figcaption {
  padding: 10px 12px 12px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.method-guides {
  padding: clamp(46px, 7vw, 72px) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 248, 251, 0.9));
}

.method-guides-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.method-practices-card,
.method-ideas-card {
  border-radius: 12px;
  border: 1px solid rgba(151, 160, 178, 0.22);
  box-shadow: none;
  padding: 20px 18px 16px;
}

.method-practices-card {
  background: transparent;
}

.method-practices-card h2,
.method-ideas-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
}

.method-practices-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.method-practices-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(151, 160, 178, 0.2);
  padding-bottom: 10px;
}

.status-ok,
.status-caution {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.status-ok {
  border: 1px solid rgba(46, 151, 133, 0.26);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.82), transparent 44%),
    linear-gradient(140deg, rgba(50, 170, 151, 0.5), rgba(31, 125, 121, 0.66));
}

.status-caution {
  border: 1px solid rgba(184, 83, 106, 0.24);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.82), transparent 44%),
    linear-gradient(140deg, rgba(231, 120, 143, 0.5), rgba(184, 83, 106, 0.7));
}

.method-ideas-card {
  color: #f2f6ff;
  background:
    radial-gradient(circle at 88% 0%, rgba(45, 181, 164, 0.18), transparent 40%),
    linear-gradient(160deg, #0f1f38 0%, #0b1a2f 100%);
  border-color: rgba(98, 126, 166, 0.36);
}

.method-ideas-card h2 {
  color: #f7f9ff;
}

.idea-item {
  border-radius: 14px;
  border: 1px solid rgba(130, 157, 192, 0.3);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.idea-item + .idea-item {
  margin-top: 10px;
}

.idea-item-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(137, 167, 205, 0.34);
  width: 64px;
  height: 64px;
}

.idea-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.idea-item-copy {
  min-width: 0;
}

.idea-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: color-mix(in srgb, var(--brand) 60%, #f4f6ff 40%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.idea-item p {
  margin: 0;
  color: rgba(224, 235, 252, 0.85);
  font-size: 0.9rem;
}

.method-cta-strip {
  padding: 38px 0 12px;
  background: linear-gradient(180deg, rgba(234, 239, 246, 0.8), rgba(238, 242, 248, 0.84));
  border-top: 1px solid rgba(151, 160, 178, 0.2);
}

.method-proof {
  padding: 20px 0 10px;
  background: linear-gradient(180deg, rgba(242, 246, 252, 0.8), rgba(236, 241, 249, 0.75));
}

.proof-ribbon {
  border-left: 4px solid color-mix(in srgb, var(--accent) 56%, var(--brand) 44%);
  padding: 10px 0 10px 14px;
}

.proof-ribbon-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: color-mix(in srgb, var(--accent) 74%, #4f5b72 26%);
  font-weight: 800;
}

.proof-ribbon-quote {
  margin: 6px 0 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink-strong);
  font-size: clamp(1.04rem, 1.4vw, 1.26rem);
  line-height: 1.4;
}

.proof-ribbon-meta {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.method-evidence {
  padding: clamp(38px, 6vw, 62px) 0 12px;
  background: linear-gradient(180deg, rgba(239, 244, 250, 0.76), rgba(235, 240, 247, 0.8));
}

.method-evidence-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.method-evidence-copy h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.6rem);
}

.method-evidence-copy > p {
  margin: 10px 0 0;
  color: var(--ink-muted);
}

.method-evidence-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.method-evidence-list li {
  color: var(--ink-muted);
  border-bottom: 1px solid rgba(151, 160, 178, 0.22);
  padding-bottom: 10px;
}

.method-evidence-list a {
  margin-left: 4px;
  color: color-mix(in srgb, var(--brand) 70%, #24324a 30%);
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

.method-evidence-list a:hover {
  color: var(--ink-strong);
}

.method-evidence-note {
  margin: 14px 0 0;
  font-size: 0.94rem;
  color: var(--ink);
}

.method-evidence-quote {
  border-left: 4px solid color-mix(in srgb, var(--accent) 56%, var(--brand) 44%);
  padding: 10px 0 10px 14px;
}

.method-evidence-quote h3 {
  margin: 8px 0 0;
  font-size: clamp(1.34rem, 2.1vw, 1.9rem);
}

.method-evidence-steps {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.method-evidence-steps li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.method-evidence-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 62%, #2a9587 38%);
}

.method-cta-inner {
  text-align: center;
}

.method-cta-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
}

.method-cta-inner .page-actions {
  margin-top: 16px;
  justify-content: center;
}

.faq-page {
  padding: 0 0 50px;
}

.faq-hero {
  position: relative;
  padding: clamp(64px, 10vw, 112px) 0 48px;
  background:
    radial-gradient(48rem 24rem at 12% 0%, rgba(212, 175, 55, 0.12), transparent 70%),
    radial-gradient(54rem 24rem at 92% -8%, rgba(109, 92, 150, 0.14), transparent 74%),
    linear-gradient(180deg, rgba(222, 239, 235, 0.76), rgba(229, 241, 238, 0.7));
  border-bottom: 1px solid rgba(151, 160, 178, 0.2);
}

.faq-hero-inner {
  text-align: center;
  max-width: 860px;
}

.faq-hero h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4.7vw, 4.1rem);
  line-height: 1.07;
}

.faq-hero-lead {
  margin: 18px auto 0;
  max-width: 58ch;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.58;
}

.faq-scenarios {
  padding: 28px 0 14px;
  background: linear-gradient(180deg, rgba(232, 240, 237, 0.4), rgba(234, 241, 239, 0.36));
}

.faq-scenario-card {
  border-radius: 12px;
  border: 1px solid rgba(151, 160, 178, 0.28);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  align-items: stretch;
}

.faq-scenario-media {
  min-height: 100%;
}

.faq-scenario-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.faq-scenario-copy {
  padding: clamp(16px, 2.8vw, 28px);
}

.faq-scenario-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.36rem, 2.35vw, 2.14rem);
  max-width: 20ch;
}

.faq-scenario-copy p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 58ch;
}

.faq-scenario-copy ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.faq-scenario-copy li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.faq-scenario-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 68%, #2a9587 32%);
}

.faq-inline-testimonial {
  margin-top: 16px;
  border-left: 4px solid color-mix(in srgb, var(--accent) 56%, var(--brand) 44%);
  background: transparent;
  padding: 10px 0 10px 14px;
}

.faq-inline-testimonial .testimonial-quote {
  padding: 0;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink-strong);
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.45;
}

.faq-inline-testimonial .testimonial-attribution {
  margin: 8px 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent) 70%, #4f5b72 30%);
  font-weight: 700;
}

.faq-section {
  padding: clamp(38px, 6vw, 60px) 0 34px;
  background: linear-gradient(180deg, rgba(233, 239, 236, 0.52), rgba(237, 242, 240, 0.5));
}

.faq-shell {
  width: min(980px, 92vw);
}

.faq-section-head {
  margin-bottom: clamp(12px, 2.2vw, 18px);
}

.faq-section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.12rem);
  line-height: 1.16;
}

.faq-accordion {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(153, 162, 179, 0.28);
}

.faq-item {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(153, 162, 179, 0.3);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.faq-item[open] {
  border-color: rgba(145, 154, 170, 0.5);
  background: color-mix(in srgb, var(--surface-solid) 70%, #edf1f6 30%);
  box-shadow: inset 3px 0 0 0 color-mix(in srgb, var(--brand) 58%, #d3d9e5 42%);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  padding: 20px 18px;
}

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

.faq-question {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.1rem, 1.48vw, 1.42rem);
  line-height: 1.18;
  color: var(--ink-strong);
  letter-spacing: -0.014em;
}

.faq-chevron {
  width: 14px;
  height: 14px;
  border-right: 1.8px solid color-mix(in srgb, var(--ink-muted) 78%, #8a92a7 22%);
  border-bottom: 1.8px solid color-mix(in srgb, var(--ink-muted) 78%, #8a92a7 22%);
  transform: rotate(45deg);
  transition: transform 180ms ease;
  flex: 0 0 auto;
  margin-right: 4px;
}

.faq-item[open] .faq-chevron {
  transform: rotate(-135deg) translateY(-2px);
  border-color: color-mix(in srgb, var(--ink) 68%, var(--accent) 32%);
}

.faq-answer {
  border-top: 1px solid rgba(153, 162, 179, 0.2);
  padding: 12px 18px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 76ch;
}

.faq-answer a {
  font-weight: 700;
  color: var(--ink);
}

.faq-answer a:hover {
  color: var(--ink-strong);
}

.faq-cta-strip {
  padding: 30px 0 10px;
  background: linear-gradient(180deg, rgba(236, 241, 239, 0.78), rgba(238, 243, 241, 0.8));
  border-top: 1px solid rgba(151, 160, 178, 0.18);
}

.faq-cta-inner {
  text-align: center;
}

.faq-cta-inner .page-actions {
  margin-top: 10px;
  justify-content: center;
}

.callout {
  margin: 16px 0;
  border-left: 4px solid var(--brand);
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-strong);
  max-width: 74ch;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-radius: 14px;
  border: 1px solid rgba(153, 162, 179, 0.3);
  background: rgba(255, 255, 255, 0.84);
  padding: 12px 14px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-strong);
}

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

.faq-list p {
  margin: 10px 0 0;
  color: var(--ink-muted);
}

.legal-content {
  display: grid;
  gap: 12px;
}

.legal-section {
  border-radius: 14px;
  border: 1px solid rgba(153, 162, 179, 0.28);
  background: rgba(255, 255, 255, 0.84);
  padding: 16px;
}

.legal-section h2 {
  margin-bottom: 8px;
}

.legal-section p {
  margin: 0;
  color: var(--ink-muted);
}

.legal-section ul {
  margin: 0;
}

.hero,
.section,
.page-hero,
.panel,
.faq-list details,
.legal-section {
  animation: fade-up 520ms ease both;
}

.hero { animation-delay: 80ms; }
.section:nth-of-type(2) { animation-delay: 120ms; }
.section:nth-of-type(3) { animation-delay: 160ms; }
.section:nth-of-type(4) { animation-delay: 200ms; }
.section:nth-of-type(5) { animation-delay: 240ms; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-bars {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.75;
  }
  50% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .content-grid,
  .step-grid,
  .value-grid,
  .feature-gallery,
  .cta-banner,
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

  .cta-banner {
    text-align: left;
  }

  .feature-media {
    aspect-ratio: 16 / 9;
  }

  .method-flow-list,
  .method-studio-proof-notes,
  .method-routine-grid,
  .method-guides-grid,
  .method-evidence-grid,
  .user-voices,
  .step-grid,
  .feature-gallery {
    grid-template-columns: 1fr;
  }

  .outcome-item {
    grid-template-columns: 1fr;
  }

  .contact-main {
    max-width: 100%;
  }

  .contact-visual {
    display: block;
    margin-top: 14px;
  }

  .contact-visual-stage {
    min-height: clamp(320px, 62vw, 520px);
    border-radius: 24px;
  }

  .faq-shell {
    width: min(920px, 92vw);
  }

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

  .faq-scenario-media img {
    min-height: 220px;
    max-height: 320px;
  }
}

.proof-ribbon .proof-disclosure,
.faq-inline-testimonial .proof-disclosure,
.contact-proof-ribbon .proof-disclosure {
  margin: 7px 0 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

@media (max-width: 760px) {
  .topbar-inner {
    padding: 11px 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .topbar.nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .topbar.nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(151, 160, 178, 0.24);
  }

  .topbar.nav-ready .nav-links {
    display: none;
  }

  .topbar.nav-ready.nav-open .nav-links {
    display: flex;
  }

  .nav-links-main {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    min-width: 0;
  }

  .nav-links-main a {
    display: block;
    width: 100%;
    font-size: 0.95rem;
    padding: 8px 2px;
  }

  .nav-links .button {
    width: 100%;
    align-self: stretch;
    max-width: none;
    justify-content: center;
  }

  .nav-cta {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 0.92rem;
    margin-top: 2px;
    box-shadow: 0 8px 16px rgba(189, 152, 40, 0.22);
  }

  .hero {
    padding-top: 42px;
  }

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

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

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 18px 0 20px;
  }

  .trust-strip h2 {
    font-size: 1.16rem;
  }

  .trust-strip-links {
    gap: 6px 12px;
  }

  .trust-strip-links a,
  .trust-strip-note {
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button,
  .page-actions .button,
  .cta-banner .button {
    width: auto;
  }

  .feature-media {
    aspect-ratio: 4 / 3;
  }

  .method-callout {
    border-radius: 14px;
    display: flex;
  }

  .method-studio-proof-media {
    border-radius: 16px;
  }

  .method-flow-item {
    padding-top: 18px;
  }

  .method-flow-item h3 {
    font-size: 1.28rem;
  }

  .method-routine-copy h2 {
    font-size: 1.88rem;
  }

  .method-routine-media {
    border-radius: 18px;
  }

  .method-routine-media img {
    height: clamp(200px, 56vw, 280px);
  }

  .method-evidence-copy h2 {
    font-size: 1.8rem;
  }

  .method-practices-card,
  .method-ideas-card {
    border-radius: 18px;
    padding: 17px 14px;
  }

  .idea-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 8px;
  }

  .idea-item-media {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }

  .contact-page {
    padding-top: 28px;
  }

  .contact-support-card {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 12px;
    padding: 16px 14px;
  }

  .contact-email-link {
    font-size: 1.18rem;
  }

  .contact-email-cta {
    width: 100%;
    justify-content: center;
  }

  .contact-details-card {
    border-radius: 12px;
    padding: 16px 14px;
  }

  .contact-visual {
    margin-top: 10px;
  }

  .contact-visual-stage {
    min-height: clamp(300px, 72vw, 430px);
    border-radius: 18px;
  }

  .contact-chip {
    top: 12px;
    right: 12px;
    font-size: 0.74rem;
    padding: 7px 10px;
  }

  .contact-proof-ribbon blockquote {
    font-size: 0.95rem;
  }

  .contact-proof-ribbon figcaption {
    font-size: 0.74rem;
  }

  .faq-hero {
    padding-top: 48px;
  }

  .faq-scenarios {
    padding: 18px 0 6px;
  }

  .faq-scenario-card {
    border-radius: 18px;
  }

  .faq-scenario-copy {
    padding: 14px;
  }

  .faq-scenario-copy h2 {
    font-size: 1.28rem;
  }

  .faq-scenario-copy li {
    font-size: 0.9rem;
  }

  .testimonial-proofline {
    font-size: 0.88rem;
  }

  .faq-item {
    border-radius: 0;
  }

  .faq-item summary {
    padding: 14px 12px;
  }

  .faq-question {
    font-size: 1.06rem;
  }

  .faq-answer {
    padding: 10px 12px 14px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .faq-section-head {
    margin-bottom: 10px;
  }

  .faq-section-head h2 {
    font-size: 1.4rem;
  }

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

@media (max-width: 430px) {
  .nav-links-main a {
    font-size: 0.92rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
