:root {
  --evergreen: #16302b;
  --evergreen-2: #244840;
  --grape: #694873;
  --mauve: #8b728e;
  --teal: #85b79d;
  --tea: #c0e5c8;
  --mist: #f4f7f3;
  --white: #fff;
  --ink: #14201d;
  --muted: #5d6864;
  --line: rgba(22, 48, 43, .14);
  --serif: "Noto Serif", Georgia, serif;
  --sans: "Noto Sans", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, svg { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; z-index: 100; top: 12px; left: 12px;
  padding: 10px 16px; color: var(--white); background: var(--grape);
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--grape); outline-offset: 4px; }

.site-header {
  position: sticky; z-index: 20; top: 0;
  background: rgba(244, 247, 243, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 9px 30px rgba(22,48,43,.06); }
.header-inner { height: 84px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; width: 285px; text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav a {
  position: relative; color: var(--evergreen); text-decoration: none;
  font-size: .82rem; font-weight: 650; letter-spacing: .015em;
}
.site-nav a::after {
  content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px;
  background: var(--grape); transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }
.call-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 0; color: var(--white); background: var(--grape);
  padding: 13px 19px; text-decoration: none; font-weight: 700;
  box-shadow: inset 0 0 0 1px transparent;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.call-button:hover { background: var(--evergreen); transform: translateY(-2px); }
.call-button svg { width: 18px; fill: currentColor; }
.call-button:disabled { color: rgba(255,255,255,.7); background: var(--mauve); cursor: not-allowed; transform: none; }
.call-button--header { font-size: .85rem; white-space: nowrap; }
.call-button--large { min-height: 56px; padding: 15px 24px; }

.hero {
  position: relative; min-height: 760px; overflow: hidden; color: var(--white); background: var(--evergreen);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 74% 16%, rgba(133,183,157,.24), transparent 28%), linear-gradient(118deg, transparent 55%, rgba(105,72,115,.16));
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 78px; align-items: center; padding: 118px 0 84px; }
.hero-copy { max-width: 740px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--tea); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--grape); }
.hero h1, .section-intro h2, .section-head h2, .about h2, .review-copy h2, .callout h2 {
  margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.045em; line-height: 1.08;
}
.hero h1 { max-width: 790px; font-size: clamp(3.35rem, 6.1vw, 6.2rem); }
em { color: var(--tea); font-style: italic; font-weight: 500; }
.hero-lead { max-width: 690px; margin: 30px 0 0; color: rgba(255,255,255,.73); font-size: 1.08rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.text-link {
  display: inline-flex; align-items: center; gap: 9px; color: var(--evergreen);
  text-decoration: none; font-size: .9rem; font-weight: 700; border-bottom: 1px solid currentColor;
}
.hero .text-link { color: var(--white); }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 2px); }
.text-link--light { color: var(--tea); }
.hero-card {
  position: relative; align-self: stretch; min-height: 500px; padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
}
.hero-card::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(192,229,200,.18); pointer-events: none; }
.monogram { position: absolute; top: 14px; right: 28px; color: var(--tea); font-family: var(--serif); font-size: 10.2rem; line-height: 1; letter-spacing: -.2em; opacity: .18; }
.monogram span { color: var(--mauve); }
.card-kicker { position: relative; max-width: 260px; margin: 0 0 30px; color: var(--tea); font-family: var(--serif); font-size: 1.45rem; line-height: 1.3; }
.proof-list { position: relative; }
.proof-list div { display: grid; grid-template-columns: 128px 1fr; gap: 14px; align-items: baseline; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.15); }
.proof-list strong { color: var(--white); font-family: var(--serif); font-size: 1.2rem; }
.proof-list span { color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.45; }
.micro-note { position: relative; margin: 19px 0 0; color: rgba(255,255,255,.4); font-size: .65rem; line-height: 1.45; }
.hero-line { position: absolute; z-index: 1; inset: 0 0 0 46%; opacity: .45; pointer-events: none; }
.hero-line svg { width: 100%; height: 100%; }
.hero-line path { fill: none; stroke: var(--teal); stroke-width: 2; stroke-dasharray: 8 10; vector-effect: non-scaling-stroke; }
.hero-bottom { position: absolute; z-index: 2; bottom: 24px; left: 50%; display: flex; justify-content: space-between; color: rgba(255,255,255,.35); font-size: .64rem; letter-spacing: .16em; transform: translateX(-50%); }

.clarity { padding: 132px 0; background: var(--white); }
.clarity-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.section-intro { position: sticky; top: 135px; align-self: start; }
.section-intro h2, .about h2 { color: var(--evergreen); font-size: clamp(2.4rem, 4.2vw, 4.35rem); }
.section-intro em, .about em { color: var(--grape); }
.clarity-promises { border-top: 1px solid var(--line); }
.promise { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 34px 0 37px; border-bottom: 1px solid var(--line); }
.promise > span { width: 39px; height: 39px; display: grid; place-items: center; color: var(--evergreen); background: var(--tea); border-radius: 50%; font-family: var(--serif); }
.promise h3 { margin: 0 0 7px; color: var(--evergreen); font-family: var(--serif); font-size: 1.42rem; }
.promise p { margin: 0; color: var(--muted); font-size: .92rem; }

.solutions { padding: 120px 0 80px; background: #eaf0ec; }
.section-head { display: grid; grid-template-columns: 1fr 360px; align-items: end; gap: 70px; margin-bottom: 56px; }
.section-head h2 { color: var(--evergreen); font-size: clamp(2.8rem, 5vw, 5.1rem); }
.section-head > p { margin: 0 0 8px; color: var(--muted); }
.solution-explorer { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 570px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 25px 80px rgba(22,48,43,.07); }
.solution-tabs { display: flex; flex-direction: column; background: var(--white); }
.solution-tabs button {
  flex: 1; display: flex; gap: 22px; align-items: center; width: 100%; padding: 18px 28px;
  color: var(--evergreen); background: transparent; border: 0; border-bottom: 1px solid var(--line);
  text-align: left; font-family: var(--serif); font-size: clamp(1rem, 1.7vw, 1.36rem); cursor: pointer;
  transition: color .22s, background .22s, padding-left .22s;
}
.solution-tabs button:last-child { border-bottom: 0; }
.solution-tabs button span { color: var(--mauve); font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.solution-tabs button:hover { padding-left: 34px; background: rgba(192,229,200,.25); }
.solution-tabs button[aria-selected="true"] { color: var(--white); background: var(--evergreen); }
.solution-tabs button[aria-selected="true"] span { color: var(--tea); }
.solution-panel { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 64px; color: var(--white); background: var(--grape); }
.solution-panel::before { content: ""; position: absolute; width: 360px; height: 360px; top: -170px; right: -90px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.solution-symbol { position: absolute; top: 58px; right: 58px; width: 190px; color: var(--tea); opacity: .92; }
.solution-symbol path { fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.solution-copy { position: relative; max-width: 510px; }
.panel-label { margin: 0 0 18px; color: var(--tea); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.solution-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3.65rem); font-weight: 500; line-height: 1.12; letter-spacing: -.035em; }
.solution-copy > p:not(.panel-label) { max-width: 490px; margin: 23px 0 29px; color: rgba(255,255,255,.72); }
.product-note { margin: 18px 0 0; color: var(--muted); font-size: .69rem; }

.about { padding: 132px 0; background: var(--mist); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: center; }
.portrait-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; color: var(--white); background: var(--evergreen); }
.portrait-frame::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(192,229,200,.25); }
.portrait-frame > span { position: absolute; z-index: 1; left: 30px; bottom: 15px; color: rgba(255,255,255,.07); font-family: var(--serif); font-size: clamp(10rem, 22vw, 20rem); line-height: .8; letter-spacing: -.2em; }
.portrait-frame svg { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; }
.portrait-frame path { fill: none; stroke: var(--teal); stroke-width: 2; stroke-dasharray: 7 8; vector-effect: non-scaling-stroke; }
.portrait-frame p { position: absolute; z-index: 3; top: 40px; left: 41px; margin: 0; color: var(--tea); font-size: .72rem; font-weight: 700; line-height: 1.8; letter-spacing: .16em; }
.about-portrait small { display: block; margin-top: 12px; color: var(--muted); font-size: .67rem; }
.about-lead { margin: 32px 0 18px; color: var(--evergreen); font-family: var(--serif); font-size: 1.3rem; line-height: 1.55; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--muted); }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 42px 0 0; padding-top: 24px; border-top: 1px solid var(--line); }
.about-facts div { padding-right: 18px; }
.about-facts dt { color: var(--mauve); font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.about-facts dd { margin: 7px 0 0; color: var(--evergreen); font-size: .83rem; font-weight: 650; line-height: 1.45; }

.reviews { padding: 112px 0; background: var(--tea); }
.reviews-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 92px; align-items: center; }
.rating-card { padding: 38px; color: var(--white); background: var(--evergreen); }
.rating { margin: 0; font-family: var(--serif); font-size: clamp(4rem, 8vw, 7rem); line-height: 1; letter-spacing: -.08em; }
.rating span { color: var(--teal); font-size: .22em; letter-spacing: 0; }
.stars { margin-top: 24px; color: var(--tea); letter-spacing: .22em; }
.rating-card > p:not(.rating) { color: rgba(255,255,255,.62); font-size: .78rem; }
.rating-card a { display: inline-flex; gap: 8px; margin-top: 22px; color: var(--white); font-size: .8rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--teal); }
.review-copy h2 { max-width: 710px; color: var(--evergreen); font-size: clamp(2.5rem, 4.4vw, 4.5rem); }
.review-themes { margin-top: 36px; border-top: 1px solid rgba(22,48,43,.17); }
.review-themes p { display: flex; gap: 22px; margin: 0; padding: 16px 0; border-bottom: 1px solid rgba(22,48,43,.17); color: var(--evergreen); font-family: var(--serif); font-size: 1.06rem; }
.review-themes span { color: var(--grape); font-family: var(--sans); font-size: .67rem; font-weight: 700; }
.review-copy small { display: block; margin-top: 18px; color: rgba(22,48,43,.62); font-size: .65rem; }

.callout { padding: 112px 0; color: var(--white); background: var(--grape); }
.callout-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.callout h2 { font-size: clamp(3rem, 6vw, 6rem); }
.callout-copy > p:last-child { max-width: 590px; color: rgba(255,255,255,.67); }
.contact-card { padding: 42px; color: var(--evergreen); background: var(--white); }
.contact-card > span { color: var(--mauve); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-card strong { display: block; margin: 14px 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; letter-spacing: -.04em; }
.contact-card p { margin: 0 0 30px; color: var(--muted); font-size: .78rem; }

.site-footer { padding: 64px 0 25px; color: var(--white); background: #10231f; }
.footer-main { display: grid; grid-template-columns: 1fr .8fr 1fr; gap: 50px; align-items: end; padding-bottom: 48px; }
.footer-main img { width: 270px; }
.footer-main p { margin: 0; color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-main nav { display: flex; justify-content: flex-end; gap: 20px; }
.footer-main a { color: rgba(255,255,255,.55); font-size: .72rem; text-decoration: none; }
.footer-main a:hover { color: var(--white); }
.footer-legal { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .64rem; }
.draft-badge { color: var(--tea); font-weight: 700; letter-spacing: .12em; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .header-inner { gap: 18px; }
  .brand { width: 230px; }
  .site-nav { gap: 18px; }
  .hero-grid { gap: 44px; }
  .clarity-grid, .about-grid { gap: 64px; }
  .callout-inner { gap: 60px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px, 720px); }
  .header-inner { height: 74px; }
  .brand { width: 225px; margin-right: auto; }
  .call-button--header { display: none; }
  .menu-toggle {
    display: flex; align-items: center; gap: 9px; color: var(--evergreen); background: none; border: 0; font-size: .75rem; font-weight: 700; cursor: pointer;
  }
  .menu-toggle i, .menu-toggle i::before { display: block; width: 22px; height: 2px; background: currentColor; transition: transform .2s; }
  .menu-toggle i { position: relative; }
  .menu-toggle i::before { content: ""; position: absolute; top: -7px; }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(90deg); }
  .site-nav {
    position: fixed; inset: 74px 0 auto; display: none; align-items: stretch; padding: 34px 24px 48px;
    color: var(--white); background: var(--evergreen); border-top: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 10px 0; color: var(--white); font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
  .hero { min-height: auto; }
  .hero-grid, .clarity-grid, .about-grid, .reviews-grid, .callout-inner { grid-template-columns: 1fr; }
  .hero-grid { padding: 90px 0 90px; }
  .hero-card { min-height: 410px; }
  .hero-line { inset-left: 20%; }
  .section-intro { position: static; }
  .clarity, .about { padding: 90px 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .solution-explorer { grid-template-columns: 1fr; }
  .solution-tabs { display: grid; grid-template-columns: repeat(2, 1fr); }
  .solution-tabs button { min-height: 76px; border-right: 1px solid var(--line); }
  .solution-panel { min-height: 510px; }
  .about-portrait { max-width: 510px; }
  .reviews-grid { gap: 54px; }
  .rating-card { max-width: 460px; }
  .callout-inner { gap: 50px; }
  .contact-card { max-width: 540px; }
  .footer-main { grid-template-columns: 1fr; gap: 26px; }
  .footer-main nav { justify-content: flex-start; flex-wrap: wrap; }
  .footer-legal { flex-direction: column; }
  .mobile-call {
    position: fixed; z-index: 19; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 17px; color: var(--white); background: var(--grape); text-decoration: none; font-size: .78rem; font-weight: 700; box-shadow: 0 10px 35px rgba(22,48,43,.28);
  }
  .mobile-call svg { width: 18px; fill: currentColor; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .brand { width: 206px; }
  .menu-toggle span { display: none; }
  .hero-grid { padding-top: 72px; }
  .hero h1 { font-size: clamp(2.75rem, 13.5vw, 4.2rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-card { min-height: 435px; padding: 27px; }
  .proof-list div { grid-template-columns: 115px 1fr; }
  .hero-bottom { display: none; }
  .clarity, .about, .reviews, .callout { padding: 76px 0; }
  .section-intro h2, .about h2, .review-copy h2 { font-size: 2.45rem; }
  .promise { grid-template-columns: 40px 1fr; gap: 17px; }
  .solutions { padding: 76px 0 55px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 2.75rem; }
  .solution-tabs { display: flex; flex-direction: row; overflow-x: auto; scrollbar-width: thin; }
  .solution-tabs button { flex: 0 0 auto; min-height: 58px; padding: 13px 18px; font-size: .94rem; white-space: nowrap; border-right: 1px solid var(--line); border-bottom: 0; }
  .solution-tabs button:hover { padding-left: 18px; }
  .solution-panel { min-height: 500px; padding: 38px 27px; }
  .solution-symbol { top: 39px; right: 29px; width: 145px; }
  .solution-copy h3 { font-size: 2.12rem; }
  .about-grid { gap: 48px; }
  .about-facts { grid-template-columns: 1fr; gap: 18px; }
  .rating-card, .contact-card { padding: 29px; }
  .callout h2 { font-size: 3.25rem; }
  .footer-main img { width: 245px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
