:root {
  --ink: #17332f;
  --ink-soft: #49645f;
  --green: #163f3a;
  --mint: #d8e8dd;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --coral: #e97855;
  --line: rgba(23, 51, 47, 0.17);
  --shadow: 0 24px 60px rgba(26, 57, 52, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 7%, rgba(233, 120, 85, 0.12), transparent 26rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 99;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--green);
  transform: translateY(-160%);
}

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

.site-header {
  width: min(1180px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
}

.brand em { color: var(--coral); font-style: normal; font-weight: 650; }

.brand-logo {
  width: clamp(175px, 18vw, 220px);
  height: auto;
  display: block;
}

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 12%;
  color: white;
  background: var(--green);
  font-family: Georgia, serif;
  font-size: 1.28rem;
  font-style: italic;
}

nav { display: flex; align-items: center; gap: 2rem; }

nav a {
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:not(.nav-action):hover { color: var(--coral); }

.nav-action {
  padding: 0.72rem 1.15rem;
  color: white;
  background: var(--green);
  border-radius: 999px;
}

.menu-button { display: none; }

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 670px;
  margin: 0 auto;
  padding: 72px 0 64px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.explainer-player {
  width: min(100%, 405px);
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.explainer-control {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(22, 63, 58, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.explainer-control::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(22, 63, 58, 0.42);
  border-radius: 50%;
  animation: explainer-pulse 2.1s ease-out infinite;
}

.explainer-icon {
  margin-left: 3px;
  font-size: 1rem;
  line-height: 1;
}

.explainer-player:hover .explainer-control,
.explainer-player:focus-visible .explainer-control {
  background: var(--coral);
  transform: scale(1.04);
}

.explainer-player:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 7px;
  border-radius: 4px;
}

.explainer-player.is-playing .explainer-control::before { animation: none; opacity: 0; }
.explainer-player.is-playing .explainer-icon { margin-left: 0; letter-spacing: -0.12em; }

.explainer-copy { min-width: 0; display: grid; gap: 0.12rem; }
.explainer-kicker { color: var(--coral); font-size: 0.64rem; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.explainer-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: 600; }
.explainer-status { color: var(--ink-soft); font-size: 0.72rem; }
.explainer-progress { width: min(210px, 48vw); height: 2px; margin-top: 0.28rem; overflow: hidden; background: rgba(22, 63, 58, 0.17); border-radius: 999px; }
.explainer-progress span { width: var(--audio-progress); height: 100%; display: block; background: var(--coral); transition: width 180ms linear; }

@keyframes explainer-pulse {
  0% { opacity: 0.78; transform: scale(0.86); }
  72%, 100% { opacity: 0; transform: scale(1.34); }
}

.eyebrow {
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span { width: 24px; height: 2px; background: var(--coral); }

h1 {
  max-width: 670px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6.2vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

h1 i { color: var(--coral); font-weight: 400; }

.hero-lede {
  max-width: 590px;
  margin: 2rem 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.72rem; }

.button {
  width: min(100%, 405px);
  min-height: 52px;
  padding: 0.82rem 1.05rem 0.82rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--green);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateX(3px); }
.button-primary { color: white; background: var(--green); }
.button-primary:hover { background: #0c312c; }
.button-secondary { background: transparent; }
.button-secondary:hover { background: rgba(255, 255, 255, 0.48); }
.button span { font-size: 1.2rem; }

.fine-print { margin: 1rem 0 0; color: #71827e; font-size: 0.75rem; }

.hero-scene {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 13% 4% 8% 13%;
  border-radius: 48% 52% 56% 44% / 45% 48% 52% 55%;
  background: var(--mint);
  transform: rotate(-5deg);
}

.orbit { position: absolute; border: 1px solid rgba(22, 63, 58, 0.19); border-radius: 50%; }
.orbit-one { width: 450px; height: 450px; }
.orbit-two { width: 345px; height: 345px; }

.profile-card {
  position: relative;
  z-index: 2;
  width: min(345px, 74%);
  min-height: 330px;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 7px;
  box-shadow: var(--shadow);
  transform: rotate(2.3deg);
}

.profile-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 63px;
  width: 44px;
  height: 5px;
  border-radius: 10px;
  background: var(--coral);
}

.profile-topline { display: flex; align-items: center; justify-content: space-between; }

.avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-family: Georgia, serif;
  font-size: 1rem;
}

.avatar-coral { background: var(--coral); }
.avatar-green { background: var(--green); }

.verified {
  padding: 0.34rem 0.6rem;
  color: var(--green);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
}

.verified b { margin-right: 0.2rem; }
.profile-role { margin: 0 0 0.55rem; color: var(--coral); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.profile-card h2 { margin: 0 0 0.6rem; font-family: Georgia, serif; font-size: 1.85rem; font-weight: 500; }
.profile-card p:not(.profile-role) { margin: 0; color: var(--ink-soft); font-size: 0.82rem; line-height: 1.6; }
.profile-footer { padding-top: 1rem; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 0.71rem; font-weight: 800; }

.mini-card {
  position: absolute;
  z-index: 3;
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--paper);
  border: 1px solid rgba(23, 51, 47, 0.1);
  border-radius: 5px;
  box-shadow: 0 15px 35px rgba(26, 57, 52, 0.13);
}

.mini-card .avatar { width: 38px; height: 38px; font-size: 0.75rem; }
.mini-card strong, .mini-card small { display: block; }
.mini-card strong { margin-bottom: 0.18rem; font-family: Georgia, serif; font-size: 0.82rem; }
.mini-card small { color: var(--ink-soft); font-size: 0.59rem; }
.mini-law { top: 17%; left: -2%; transform: rotate(-3deg); }
.mini-match { right: -4%; bottom: 20%; transform: rotate(2deg); }
.match-icon { width: 36px; height: 36px; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; }

.trust-note {
  position: absolute;
  z-index: 3;
  right: 5%;
  top: 9%;
  font-family: Georgia, serif;
  font-size: 0.86rem;
  line-height: 1.25;
  transform: rotate(5deg);
}

.trust-note span { color: var(--coral); font-size: 1.4rem; font-style: italic; }

.trust-strip {
  padding: 1.7rem max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: white;
  background: var(--green);
}

.trust-strip p { margin: 0; font-family: Georgia, serif; font-size: 1.05rem; }
.trust-strip ul { margin: 0; padding: 0; display: flex; gap: 2rem; list-style: none; }
.trust-strip li { font-size: 0.75rem; font-weight: 700; }
.trust-strip li span { margin-right: 0.35rem; color: #ef9a7f; font-family: Georgia, serif; font-style: italic; }

.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section-kicker { margin: 0 0 1rem; color: var(--coral); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.section h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.55rem, 4.6vw, 4.8rem); font-weight: 500; letter-spacing: -0.045em; line-height: 0.98; }
.section h2 i { color: var(--coral); font-weight: 400; }

.section-intro { padding: 120px 0 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: start; }
.intro-copy { padding-top: 1.7rem; }
.intro-copy p { margin: 0 0 1.25rem; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.intro-copy p:first-child { color: var(--ink); font-size: 1.22rem; }

.steps { padding-bottom: 120px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.steps article { min-height: 230px; padding: 2.1rem 2.5rem 1rem 0; border-right: 1px solid var(--line); }
.steps article + article { padding-left: 2.5rem; }
.steps article:last-child { border-right: 0; }
.step-number { color: var(--coral); font-family: Georgia, serif; font-size: 1rem; font-style: italic; }
.steps h3 { margin: 3rem 0 0.7rem; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.steps p { max-width: 280px; margin: 0; color: var(--ink-soft); font-size: 0.85rem; line-height: 1.7; }

.two-sides { width: 100%; padding: 110px max(24px, calc((100% - 1180px) / 2)); background: var(--paper); }
.two-sides-heading { max-width: 700px; margin-bottom: 3rem; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.audience-card { min-height: 500px; padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-direction: column; border-radius: 7px; }
.legal-card { color: white; background: var(--green); }
.care-card { color: var(--ink); background: var(--mint); }
.card-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; opacity: 0.72; }
.audience-card h3 { max-width: 430px; margin: 3rem 0 1rem; font-family: Georgia, serif; font-size: clamp(2rem, 3.3vw, 3.25rem); font-weight: 500; line-height: 1; }
.audience-card p { max-width: 490px; margin: 0; font-size: 0.92rem; line-height: 1.7; opacity: 0.82; }
.audience-card ul { margin: 2rem 0 0; padding: 0; list-style: none; }
.audience-card li { padding: 0.7rem 0; border-bottom: 1px solid currentColor; font-size: 0.8rem; font-weight: 700; opacity: 0.85; }
.audience-card a { margin-top: auto; padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 800; text-decoration: none; }
.audience-card a:hover span { transform: translateX(4px); }
.audience-card a span { transition: transform 160ms ease; }

.profile-showcase { padding: 120px 0; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 9vw; align-items: center; }
.showcase-copy > p:not(.section-kicker) { max-width: 480px; margin: 1.7rem 0; color: var(--ink-soft); line-height: 1.75; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.feature-list span { padding: 0.85rem 0.4rem 0.85rem 0; border-bottom: 1px solid var(--line); font-size: 0.75rem; font-weight: 750; }
.profile-detail-card { position: relative; padding: clamp(2rem, 5vw, 4rem); background: var(--paper); border: 1px solid rgba(23,51,47,0.1); box-shadow: var(--shadow); }
.profile-detail-card::before { content: ""; position: absolute; z-index: -1; inset: -22px 28px 22px -22px; background: var(--mint); border-radius: 7px; }
.detail-header { margin-bottom: 2.4rem; display: flex; justify-content: space-between; align-items: flex-start; }
.avatar-large { width: 72px; height: 72px; font-size: 1.25rem; }
.profile-detail-card h3 { margin: 0 0 0.35rem; font-family: Georgia, serif; font-size: 2.3rem; font-weight: 500; }
.profile-detail-card > p:not(.profile-role):not(.sample-tag) { color: var(--ink-soft); font-size: 0.86rem; line-height: 1.75; }
.sample-tag { position: absolute; top: 1rem; left: 50%; color: #82918e; font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; }
.tag-row { margin: 1.5rem 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag-row span { padding: 0.35rem 0.65rem; background: var(--mint); border-radius: 999px; font-size: 0.65rem; font-weight: 750; }
blockquote { margin: 2rem 0 0; padding: 1.2rem 0 0 1.2rem; border-top: 1px solid var(--line); border-left: 3px solid var(--coral); font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.55; }
blockquote cite { margin-top: 0.6rem; display: block; color: var(--ink-soft); font-family: Inter, sans-serif; font-size: 0.62rem; font-style: normal; }

.pricing { padding: 110px 0; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 8vw, 7rem); align-items: end; }
.pricing-heading > p:not(.section-kicker) { max-width: 510px; margin: 1.7rem 0 0; color: var(--ink-soft); line-height: 1.75; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.price-card { min-height: 330px; padding: 2rem; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper); }
.price-card-featured { border-color: var(--green); background: var(--mint); }
.price-card > span { color: var(--coral); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.price { margin: 1.4rem 0 1rem; }
.price strong, .price small { display: block; }
.price strong { font-family: Georgia, serif; font-size: 3.1rem; font-weight: 500; letter-spacing: -0.05em; }
.price small { margin-top: 0.15rem; color: var(--ink-soft); font-size: 0.64rem; font-weight: 750; letter-spacing: 0.07em; text-transform: uppercase; }
.price-card > p:not(.price) { margin: 0; color: var(--ink-soft); font-size: 0.78rem; line-height: 1.65; }
.price-card a { margin-top: auto; padding-top: 2rem; display: flex; justify-content: space-between; color: var(--green); font-size: 0.78rem; font-weight: 850; text-decoration: none; }
.pricing-note { grid-column: 1 / -1; margin: 0; padding-top: 1.2rem; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: 0.66rem; line-height: 1.6; text-align: center; }

.principles { width: 100%; padding: 110px max(24px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; color: white; background: #132f2b; }
.principles h2 { font-size: clamp(2.4rem, 3.8vw, 4rem); }
.principle-list { border-top: 1px solid rgba(255,255,255,0.24); }
.principle-list p { margin: 0; padding: 1.5rem 0; display: grid; grid-template-columns: 40px 160px 1fr; gap: 0.4rem; border-bottom: 1px solid rgba(255,255,255,0.24); color: rgba(255,255,255,0.67); font-size: 0.75rem; line-height: 1.55; }
.principle-list p span { color: #ef9a7f; font-family: Georgia, serif; font-style: italic; }
.principle-list p strong { color: white; }

.closing-cta { padding: 120px 24px; text-align: center; color: white; background: var(--coral); }
.closing-cta .section-kicker { color: white; opacity: 0.75; }
.closing-cta h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 500; letter-spacing: -0.05em; line-height: 0.95; }
.closing-cta h2 i { color: var(--green); font-weight: 400; }
.closing-actions { max-width: 420px; margin: 2.5rem auto 0; display: grid; gap: 0.7rem; }
.button-light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button-outline-light { color: white; border-color: white; }

footer { padding: 3rem max(24px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; color: white; background: var(--green); border-top: 1px solid rgba(255,255,255,0.16); }
.footer-brand { padding: 0.55rem 0.8rem; color: white; background: var(--cream); border-radius: 4px; }
footer p { margin: 0; color: rgba(255,255,255,0.62); font-family: Georgia, serif; }
footer div { display: flex; flex-wrap: wrap; gap: 0.7rem 1.3rem; }
footer div a { font-size: 0.75rem; font-weight: 750; text-decoration: none; }
.footer-operator { grid-column: 1 / -1; padding-top: 1rem; color: rgba(255,255,255,0.78); font-family: inherit; font-size: 0.68rem; font-weight: 750; letter-spacing: 0.08em; line-height: 1.55; text-transform: uppercase; }
footer small { grid-column: 1 / -1; padding-top: 1.7rem; color: rgba(255,255,255,0.48); font-size: 0.62rem; }

@media (max-width: 900px) {
  nav { position: absolute; z-index: 20; top: 72px; right: 20px; left: 20px; padding: 1.4rem; display: none; flex-direction: column; align-items: stretch; gap: 1rem; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
  nav.is-open { display: flex; }
  .menu-button { width: 42px; height: 42px; padding: 10px; display: grid; place-content: center; gap: 6px; border: 0; background: transparent; }
  .menu-button span { width: 22px; height: 2px; background: var(--ink); }
  .hero { padding-top: 55px; grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .explainer-player { margin-right: auto; margin-left: auto; justify-content: center; text-align: left; }
  .eyebrow, .hero-actions { align-items: center; justify-content: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-scene { min-height: 470px; }
  .trust-strip { flex-direction: column; text-align: center; }
  .section-intro, .profile-showcase, .pricing, .principles { grid-template-columns: 1fr; gap: 3rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .profile-detail-card { margin: 0 24px; }
}

@media (max-width: 600px) {
  .site-header, .hero { width: min(100% - 30px, 1180px); }
  .site-header { min-height: 72px; }
  h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .hero { padding-top: 42px; gap: 2rem; }
  .hero-scene { min-height: 420px; transform: scale(0.88); margin: -20px -30px; }
  .mini-law { left: 0; }
  .mini-match { right: 0; }
  .trust-strip ul { flex-direction: column; gap: 0.65rem; }
  .section { width: min(100% - 30px, 1180px); }
  .section-intro { padding: 85px 0 60px; }
  .steps { padding-bottom: 85px; grid-template-columns: 1fr; }
  .steps article, .steps article + article { min-height: 0; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps h3 { margin-top: 1.2rem; }
  .two-sides, .principles { width: 100%; padding: 80px 20px; }
  .audience-card { min-height: 470px; }
  .profile-showcase { padding: 85px 0; }
  .feature-list { grid-template-columns: 1fr; }
  .pricing { padding: 85px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 300px; }
  .principle-list p { grid-template-columns: 32px 1fr; }
  .principle-list p strong { grid-column: 2; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .explainer-control::before { animation: none; opacity: 0.45; }
}
