:root {
  --green-900: #174f45;
  --green-800: #247565;
  --green-700: #328f7c;
  --green-600: #46b199;
  --green-500: #62c6ad;
  --green-100: #e8f7f3;
  --ink: #2b2150;
  --ink-soft: #48405f;
  --muted: #6f7782;
  --line: #dce9e5;
  --paper: #f8fbfa;
  --white: #ffffff;
  --blue: #376f74;
  --amber: #b2702d;
  --shadow: 0 18px 45px rgba(36, 31, 72, 0.12);
  --header-height: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.mobile-only {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 0;
  color: var(--ink);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  line-height: 1;
  font-weight: 700;
}

.site-header .brand {
  align-self: stretch;
  padding: 0 30px;
  background: var(--white);
  border-radius: 0 0 28px 0;
  box-shadow: 0 12px 32px rgba(36, 31, 72, 0.08);
}

.brand-logo {
  width: 152px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 50px;
  padding: 6px 8px 6px 28px;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(36, 31, 72, 0.08);
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-contact {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--green-600);
  border: 1px solid var(--green-600);
  border-radius: 999px;
  opacity: 1;
}

.nav-contact:hover {
  color: var(--white);
  background: var(--green-700);
  border-color: var(--green-700);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-left: -8px;
  padding: 0 16px;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid rgba(70, 177, 153, 0.6);
  border-radius: 999px;
  opacity: 1;
}

.nav-cta:hover {
  color: var(--green-800);
  background: var(--green-100);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  color: var(--white);
  background: #102b2f;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  z-index: -2;
  background-image: url("assets/back.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.68) saturate(1.08);
  transform: scale(1.02);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 20, 25, 0.62) 0%, rgba(6, 20, 25, 0.42) 42%, rgba(6, 20, 25, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 20, 25, 0.08) 0%, rgba(6, 20, 25, 0.14) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 350px);
  gap: 0;
  align-items: stretch;
  min-height: 760px;
  padding: 0;
}

.hero-main {
  display: grid;
  align-content: center;
  gap: 30px;
  justify-self: center;
  width: min(1100px, calc(100% - 64px));
  min-width: 0;
  padding: calc(var(--header-height) + 72px) 0 36px;
}

.hero-upper {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 0.98fr);
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-500);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #74ddc7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
}

.hero h1 {
  max-width: 480px;
  margin: 0;
  color: var(--white);
  font-size: 32px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.72);
}

.hero h1 span {
  display: block;
  color: #68d4bc;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.72);
}

.hero h1 .hero-title-line {
  color: var(--white);
  font-size: clamp(23px, 2.05vw, 26px);
  white-space: nowrap;
}

.hero-title-logo {
  width: min(220px, 100%);
  height: auto;
  margin-top: 14px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.62));
}

.hero-lead {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.82;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
}

.button-primary {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 14px 30px rgba(70, 177, 153, 0.28);
}

.button-primary:hover {
  background: var(--green-700);
}

.button-secondary {
  color: var(--green-600);
  background: var(--white);
  border-color: rgba(70, 177, 153, 0.38);
}

.hero .button-secondary {
  color: var(--green-700);
  background: var(--white);
  border-color: rgba(70, 177, 153, 0.6);
  box-shadow: 0 14px 30px rgba(14, 35, 24, 0.16);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-screenshot {
  margin: 0;
  width: min(100%, 520px);
  justify-self: center;
  overflow: hidden;
  background: #f3f3f5;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-screenshot img {
  width: 100%;
  aspect-ratio: 3018 / 1647;
  object-fit: cover;
  object-position: center top;
}

.hero-form-card {
  width: 100%;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 42px) 24px 34px;
  color: var(--ink);
  background: rgba(236, 250, 246, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-right: 0;
  border-radius: 0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-form-card h2 {
  margin: 0 0 24px;
  color: #05070b;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
}

.lead-form {
  display: grid;
  gap: 10px;
}

.lead-form label {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  min-height: 50px;
}

.lead-form label > span:first-child {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--green-600);
  border-radius: 8px 0 0 8px;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
}

.lead-form input[type="email"],
.lead-form input[type="text"],
.lead-form input[type="tel"] {
  min-width: 0;
  width: 100%;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 0 8px 8px 0;
  outline: none;
  font-size: 14px;
}

.lead-form input::placeholder {
  color: #8a9099;
}

.lead-form input:focus {
  box-shadow: inset 0 0 0 2px rgba(70, 177, 153, 0.48);
}

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

.form-split label {
  grid-template-columns: 94px minmax(0, 1fr);
}

.form-consent {
  display: flex !important;
  min-height: auto !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px;
  margin: 14px 0 4px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.form-consent input {
  width: 20px;
  height: 20px;
  accent-color: var(--green-600);
}

.form-consent span {
  display: inline !important;
  padding: 0 !important;
  color: inherit !important;
  background: transparent !important;
  border-radius: 0 !important;
  font-size: inherit !important;
  font-weight: 500 !important;
}

.form-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  min-height: 50px;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid rgba(70, 177, 153, 0.6);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.form-submit:hover {
  color: var(--green-800);
  background: var(--green-100);
}

.contact-page {
  background: var(--paper);
}

.contact-page-main {
  padding-top: var(--header-height);
}

.contact-hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 88px 0;
  background:
    linear-gradient(135deg, rgba(232, 247, 243, 0.92), rgba(255, 255, 255, 0.92)),
    url("assets/back.png") center / cover;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
  gap: 64px;
  align-items: center;
}

.contact-page-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-page-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.9;
}

.contact-form-card {
  justify-self: stretch;
  background: rgba(236, 250, 246, 0.96);
}

.hero-copy {
  min-width: 0;
}

.hero-trust {
  margin-top: 0;
  text-align: center;
}

.hero-trust p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #7c8594;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.trust-logos.is-placeholder {
  gap: 16px;
}

.trust-logos.is-placeholder span {
  display: inline-flex;
  width: 156px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.proof-strip {
  padding: 44px 0 54px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.proof-grid article {
  padding: 0 18px 0 0;
  border-right: 1px solid var(--line);
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-kicker {
  color: var(--green-600);
  font-size: 12px;
  font-weight: 700;
}

.proof-grid h2 {
  margin: 8px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.proof-grid p,
.section-copy p,
.section-heading p,
.feature-card p,
.workflow-steps p,
.price-note,
.security-band p,
.contact-inner p,
.comparison-row p,
.product-note p,
.trust-metrics span,
.mid-cta p,
.answer-inner p {
  margin: 0;
  color: var(--muted);
}

section:not(.hero):not(.proof-strip):not(.mid-cta) {
  padding: 92px 0;
}

main > section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.about,
.voices {
  background: var(--white);
}

.challenges,
.workflow {
  background: var(--paper);
}

.about-layout {
  display: block;
}

.capability-grid article,
.challenge-card,
.voice-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.challenge-card span {
  color: var(--green-600);
  font-size: 13px;
  font-weight: 700;
}

.challenge-grid,
.capability-grid,
.voice-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.challenge-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.challenge-card h3,
.capability-grid h3,
.voice-grid h3 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.42;
  font-weight: 700;
}

.challenge-card p,
.capability-grid p,
.voice-grid p {
  margin: 0;
  color: var(--muted);
}

.challenge-card .solution {
  position: relative;
  margin-top: auto;
  padding: 18px 18px 18px 42px;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(70, 177, 153, 0.26);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.7;
}

.challenge-card .solution::before {
  content: "→";
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--green-600);
  font-weight: 800;
}

.capability-grid article {
  min-height: 190px;
  box-shadow: 0 12px 34px rgba(36, 31, 72, 0.06);
}

.capability-grid h3 {
  margin-top: 0;
  color: var(--green-900);
}

section.doc-cta:not(.hero) {
  padding: 72px 0;
}

.doc-cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 79, 69, 0.98) 0%, rgba(70, 177, 153, 0.94) 100%);
}

.doc-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px;
  align-items: center;
}

.doc-cta .eyebrow,
.doc-cta h2,
.doc-cta p {
  color: var(--white);
}

.doc-cta h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.doc-cta p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.doc-cta .button-primary {
  margin-top: 28px;
  color: var(--green-700);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(14, 35, 24, 0.22);
}

.doc-cta .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.doc-cta .contact-actions {
  justify-content: flex-start;
}

.doc-cta .contact-actions .button {
  min-height: 50px;
  margin-top: 0;
}

.doc-cta .contact-actions .button-primary {
  color: var(--white);
  background: var(--green-600);
  border-color: var(--green-600);
  box-shadow: 0 14px 30px rgba(14, 35, 24, 0.2);
}

.doc-cta .contact-actions .button-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
}

.doc-cta .contact-actions .button-secondary {
  color: var(--green-700);
  background: var(--white);
  border-color: rgba(70, 177, 153, 0.5);
}

.doc-preview {
  margin: 0;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(14, 35, 24, 0.22);
}

.doc-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.doc-preview-header img {
  width: 176px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.doc-preview-header span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
}

.doc-preview-shot {
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  object-position: left top;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.doc-preview figcaption {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.doc-stack-preview {
  position: relative;
  --doc-stack-offset: 16px;
  --doc-stack-width: calc(100% - (var(--doc-stack-offset) * 2));
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.doc-stack-preview::before,
.doc-stack-preview::after {
  position: absolute;
  aspect-ratio: 1765 / 994;
  content: "";
  border-radius: 0;
  box-shadow: 0 22px 54px rgba(14, 35, 24, 0.2);
}

.doc-stack-preview::before {
  z-index: 0;
  top: 0;
  left: calc(var(--doc-stack-offset) * 2);
  width: var(--doc-stack-width);
  background: #dff1ed;
}

.doc-stack-preview::after {
  z-index: 1;
  top: var(--doc-stack-offset);
  left: var(--doc-stack-offset);
  width: var(--doc-stack-width);
  background: #ffffff;
}

.doc-stack-preview .doc-preview-shot {
  position: relative;
  z-index: 2;
  width: var(--doc-stack-width);
  margin-top: calc(var(--doc-stack-offset) * 2);
  aspect-ratio: 1765 / 994;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 76px rgba(14, 35, 24, 0.36);
}

.doc-stack-preview figcaption {
  position: relative;
  z-index: 3;
  margin-top: 18px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.feature-grid-under {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.voices {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.voice-grid article {
  min-height: 260px;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  box-shadow: 0 12px 34px rgba(36, 31, 72, 0.06);
}

.voice-photo {
  width: 148px;
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 34%, rgba(70, 177, 153, 0.28) 0 17%, transparent 18%),
    radial-gradient(ellipse at 50% 92%, rgba(70, 177, 153, 0.2) 0 36%, transparent 37%),
    linear-gradient(135deg, rgba(70, 177, 153, 0.13), rgba(43, 33, 80, 0.06));
  box-shadow: inset 0 0 0 1px rgba(70, 177, 153, 0.16);
}

.voice-body {
  min-width: 0;
}

.voice-grid p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.voice-grid span {
  display: block;
  margin-top: 18px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
}

.doc-cta-final {
  background:
    linear-gradient(135deg, rgba(23, 79, 69, 1) 0%, rgba(36, 117, 101, 1) 100%);
}

.split-layout,
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.security-band h2,
.contact-inner h2,
.mid-cta h2,
.answer-inner h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p {
  margin-top: 22px;
  font-size: 17px;
}

.about .section-copy p {
  max-width: 580px;
  font-size: 15.5px;
  line-height: 2;
}

.about-copy {
  width: min(760px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.about .about-copy p {
  margin-right: auto;
  margin-left: auto;
}

.top-players h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.about-cross {
  margin: 34px 0 30px;
  color: var(--green-600);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.tech-team {
  margin-top: 0;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.player-grid-tech {
  width: min(760px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.player-card {
  display: block;
  min-height: 300px;
  padding: 22px;
  color: inherit;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(36, 31, 72, 0.08);
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.player-grid-tech .player-card {
  min-height: 280px;
}

.player-card:hover,
.player-card:focus-visible {
  box-shadow: 0 24px 58px rgba(36, 31, 72, 0.14);
  transform: translateY(-4px);
}

.player-card:focus-visible {
  outline: 2px solid rgba(70, 177, 153, 0.55);
  outline-offset: 4px;
}

.player-company {
  display: block;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.player-card h4 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.player-photo {
  position: relative;
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 0 16px;
  background:
    radial-gradient(circle at 50% 34%, rgba(70, 177, 153, 0.32) 0 18%, transparent 19%),
    radial-gradient(ellipse at 50% 86%, rgba(70, 177, 153, 0.24) 0 34%, transparent 35%),
    linear-gradient(135deg, rgba(70, 177, 153, 0.12), rgba(43, 33, 80, 0.08));
  border: 1px dashed rgba(70, 177, 153, 0.48);
  border-radius: 999px;
}

.player-photo-image {
  object-fit: cover;
  object-position: center;
  background: transparent;
  border: 0;
}

.player-photo-image::after {
  content: none;
}

.player-photo::after {
  position: absolute;
  right: -6px;
  bottom: 8px;
  padding: 2px 7px;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid rgba(70, 177, 153, 0.3);
  border-radius: 999px;
  content: "PHOTO";
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.player-photo.player-photo-image::after {
  content: none;
}

.player-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.85;
}

.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
}

.trust .section-copy p {
  margin-top: 0;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-metrics article {
  min-height: 152px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(14, 35, 24, 0.08);
}

.trust-metrics strong {
  display: block;
  color: var(--green-600);
  font-size: 27px;
  line-height: 1.12;
}

.trust-metrics span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.comparison {
  background: var(--paper);
}

.comparison-list {
  display: grid;
  gap: 12px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-row span {
  color: var(--ink-soft);
  font-weight: 700;
}

.comparison-row.is-strong {
  border-color: rgba(70, 177, 153, 0.4);
  box-shadow: var(--shadow);
}

.comparison-row.is-strong span {
  color: var(--green-600);
}

.mid-cta {
  padding: 40px 0;
  background: linear-gradient(135deg, #2b2150 0%, var(--green-600) 100%);
  color: var(--white);
}

.mid-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.mid-cta .eyebrow,
.mid-cta h2,
.mid-cta p {
  color: var(--white);
}

.mid-cta h2 {
  font-size: 34px;
}

.mid-cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.mid-cta .button-primary {
  background: var(--white);
  color: var(--green-600);
  box-shadow: 0 16px 36px rgba(43, 33, 80, 0.22);
}

.product {
  background: var(--white);
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 38px;
}

.product-view {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: center;
}

.product-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-shot img {
  width: 100%;
  aspect-ratio: 3016 / 1646;
  object-fit: cover;
  object-position: center top;
}

.feature-screen-image[hidden] {
  display: none;
}

.feature-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  aspect-ratio: 3016 / 1646;
  color: var(--green-700);
  background:
    linear-gradient(135deg, rgba(232, 247, 243, 0.95), rgba(255, 255, 255, 0.92));
}

.feature-placeholder[hidden] {
  display: none;
}

.feature-placeholder span {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-note {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.product-note h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
}

.features {
  background: #f2f8f6;
}

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

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

.feature-card {
  min-height: 112px;
  padding: 16px 18px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

button.feature-card {
  color: inherit;
  appearance: none;
}

.feature-card:hover,
.feature-card.is-active {
  background: #f7fffc;
  border-color: rgba(70, 177, 153, 0.55);
  box-shadow: 0 14px 34px rgba(70, 177, 153, 0.14);
}

.feature-card.is-active {
  transform: translateY(-2px);
}

.feature-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 8px;
}

.feature-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.workflow {
  background: var(--white);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.workflow-steps li {
  position: relative;
  min-height: 220px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-steps span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
}

.workflow-steps h3 {
  margin: 16px 0 12px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.pricing {
  background: #1c1737;
  color: var(--white);
}

.pricing .section-copy h2,
.pricing .section-copy p {
  color: var(--white);
}

.pricing .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.price-panel {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.price-label {
  display: inline-block;
  color: var(--green-600);
  font-size: 13px;
  font-weight: 700;
}

.price {
  margin: 12px 0 4px;
  color: var(--ink);
  line-height: 1;
}

.price strong {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: 0;
}

.price span {
  margin-left: 8px;
  color: var(--ink-soft);
  font-weight: 600;
}

.price-panel .button {
  width: 100%;
  margin-top: 28px;
}

.security {
  background: var(--paper);
}

.security-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.security-band h2 {
  font-size: 34px;
}

.security-band p {
  font-size: 17px;
}

.answer {
  background: var(--white);
}

.answer-inner {
  width: min(920px, calc(100% - 48px));
  text-align: center;
}

.answer-inner h2 {
  font-size: 44px;
}

.answer-inner p {
  width: min(720px, 100%);
  margin: 22px auto 0;
  font-size: 18px;
}

.answer-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.answer-flow span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 20px;
  color: var(--green-600);
  background: var(--green-100);
  border: 1px solid rgba(70, 177, 153, 0.26);
  border-radius: 8px;
  font-weight: 700;
}

.contact {
  background: var(--white);
}

.contact-inner {
  width: min(850px, calc(100% - 48px));
  text-align: center;
}

.contact-inner h2 {
  font-size: 46px;
}

.contact-logo {
  width: min(330px, 86%);
  margin: 0 auto 22px;
}

.contact-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-inner p {
  margin-top: 22px;
  font-size: 18px;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  padding: 48px 0 38px;
  color: rgba(255, 255, 255, 0.56);
  background: #17191d;
  font-size: 13px;
  line-height: 1.7;
}

.footer-inner {
  display: grid;
  gap: 24px;
}

.footer-inner .brand {
  color: var(--white);
}

.footer-logo {
  width: 156px;
  height: 54px;
}

.footer-brand-row {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-link-area {
  display: grid;
  gap: 12px;
}

.footer-link-row,
.footer-bottom,
.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-link-label {
  min-width: 86px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 500;
}

.footer-link-row a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 400;
  text-decoration: none;
}

.footer-link-row a:hover,
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
}

.footer-legal a + a::before {
  display: inline-block;
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.18);
  content: "/";
  text-decoration: none;
}

@media (max-width: 920px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    padding: 0 18px 0 0;
  }

  .site-header .brand {
    padding: 0 22px;
    border-radius: 0 0 22px 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    margin-left: auto;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(36, 31, 72, 0.08);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.nav-active .site-nav {
    display: flex;
  }

  .site-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 0;
  }

  .hero-main {
    padding: calc(var(--header-height) + 34px) 0 0;
  }

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

  .hero h1 {
    max-width: 620px;
    font-size: 42px;
  }

  .mobile-only {
    display: block;
  }

  .hero-title-logo {
    width: min(260px, 100%);
  }

  .hero-lead {
    max-width: 560px;
    font-size: 17px;
  }

  .hero-form-card {
    width: min(520px, 100%);
    justify-self: start;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 8px;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-form-card {
    justify-self: start;
  }

  .hero-trust {
    margin-top: 4px;
  }

  .proof-grid,
  .feature-grid,
  .workflow-steps,
  .challenge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid article:nth-child(2) {
    border-right: 0;
  }

  .split-layout,
  .pricing-layout,
  .security-band,
  .product-view,
  .trust-layout,
  .mid-cta-inner,
  .about-layout,
  .doc-cta-inner {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .voice-grid article {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .voice-photo {
    width: 132px;
  }

  .about-copy {
    margin-bottom: 36px;
  }

  .player-grid {
    display: flex;
    gap: 14px;
    margin: 0 -18px;
    padding: 0 18px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .player-grid-tech {
    width: auto;
  }

  .player-card {
    flex: 0 0 min(320px, 84vw);
    min-height: 280px;
    scroll-snap-align: start;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-inner h2,
  .answer-inner h2,
  .doc-cta h2 {
    font-size: 34px;
  }

  .mid-cta-inner {
    gap: 22px;
  }

  .product-note {
    padding: 24px;
  }

  .doc-preview {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .section-inner,
  .hero-content,
  .contact-inner {
    width: min(calc(100% - 32px), 1120px);
  }

  section:not(.hero):not(.proof-strip) {
    padding: 68px 0;
  }

  .brand-logo {
    width: 134px;
    height: 38px;
  }

  .footer-logo {
    width: 160px;
    height: 56px;
  }

  .hero h1 {
    max-width: 100%;
    min-width: 0;
    font-size: clamp(27px, 7.6vw, 30px);
    line-height: 1.28;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .hero-content {
    gap: 24px;
    padding: 0;
  }

  .hero-main {
    padding: calc(var(--header-height) + 26px) 0 0;
  }

  .hero-title-logo {
    width: min(214px, 100%);
    margin-top: 12px;
  }

  .hero-lead {
    max-width: 100%;
    min-width: 0;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-form-card {
    padding: 22px;
  }

  .hero-form-card h2 {
    font-size: 21px;
  }

  .lead-form label,
  .form-split label {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 54px;
  }

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

  .lead-form label > span:first-child {
    padding: 0 12px;
    font-size: 14px;
  }

  .lead-form input[type="email"],
  .lead-form input[type="text"],
  .lead-form input[type="tel"] {
    padding: 0 14px;
    font-size: 14px;
  }

  .contact-hero {
    padding: 54px 0;
  }

  .contact-page-copy h1 {
    font-size: 34px;
  }

  .contact-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
  }

  .proof-strip {
    padding: 34px 0 40px;
  }

  .proof-grid,
  .feature-grid,
  .workflow-steps,
  .trust-metrics,
  .challenge-grid,
  .capability-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .voice-grid article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .voice-photo {
    width: min(180px, 100%);
  }

  .section-copy h2,
  .section-heading h2,
  .contact-inner h2,
  .mid-cta h2,
  .answer-inner h2,
  .doc-cta h2 {
    font-size: 30px;
  }

  .section-copy p,
  .section-heading p,
  .contact-inner p,
  .answer-inner p,
  .doc-cta p {
    font-size: 16px;
  }

  .challenge-card,
  .capability-grid article,
  .voice-grid article,
  .doc-preview {
    padding: 20px;
  }

  .top-players h3 {
    font-size: 21px;
  }

  .player-card {
    padding: 20px;
  }

  .player-card h4 {
    font-size: 20px;
  }

  .doc-preview-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .doc-preview-header img {
    width: 152px;
  }

  .trust-metrics article {
    min-height: 0;
    padding: 20px;
  }

  .mid-cta {
    padding: 34px 0;
  }

  .mid-cta .button {
    width: 100%;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .product-shot,
  .product-shot img {
    min-height: 0;
  }

  .feature-card,
  .workflow-steps li,
  .price-panel {
    padding: 24px;
  }

  .price strong {
    font-size: 46px;
  }

  .security-band {
    padding: 34px 0;
  }

  .security-band h2 {
    font-size: 28px;
  }

  .answer-inner {
    width: min(100% - 32px, 920px);
  }

  .answer-flow {
    justify-content: flex-start;
  }

  .answer-flow span {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    padding: 0 12px;
  }

  .footer-inner {
    gap: 28px;
  }

  .footer-link-row,
  .footer-bottom,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-link-label {
    min-width: 0;
  }

  .footer-legal a + a::before {
    display: none;
  }
}

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

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