:root {
  --accent: #01875f;
  --accent-strong: #006e4d;
  --accent-soft: rgba(1, 135, 95, 0.1);
  --accent-wash: rgba(1, 135, 95, 0.06);
  --dark: #202124;
  --light: #ffffff;
  --ink: var(--dark);
  --muted: #5f6368;
  --muted-strong: #3c4043;
  --muted-light: #80868b;
  --line: #dadce0;
  --line-soft: #e8eaed;
  --surface: #f8f9fa;
  --surface-tint: #f2faf7;
  --shadow: 0 16px 40px rgba(32, 33, 36, 0.1);
  --shadow-soft: 0 7px 24px rgba(32, 33, 36, 0.07);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--light);
  font-family: "Google Sans", "Google Sans Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--muted);
}

.shell {
  width: min(var(--max-width), calc(100% - 64px));
  margin-inline: auto;
}

.shell-wide {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 40px;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.button,
a[href="/go"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.86rem 1.35rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

a[href="/go"] {
  color: var(--light);
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(1, 135, 95, 0.22);
}

a[href="/go"]:hover {
  background: var(--accent-strong);
  box-shadow: 0 11px 24px rgba(1, 135, 95, 0.3);
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--accent);
  border: 1px solid rgba(1, 135, 95, 0.35);
  background: var(--light);
}

.button-ghost:hover {
  color: var(--accent-strong);
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.button-ghost-on-dark {
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: transparent;
}

.button-ghost-on-dark:hover {
  color: var(--dark);
  border-color: var(--light);
  background: var(--light);
  transform: translateY(-2px);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(1, 135, 95, 0.4);
  outline-offset: 4px;
}

/* Header */

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.96);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--dark);
  white-space: nowrap;
}

.brand-word {
  font-size: 1.22rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  overflow: hidden;
  border-radius: 9px;
  background: var(--dark);
  box-shadow: 0 3px 8px rgba(32, 33, 36, 0.16);
}

.mark-ray {
  position: absolute;
  z-index: 1;
  display: block;
  width: 3px;
  border-radius: 999px;
  background: var(--light);
  transform-origin: center bottom;
}

.mark-ray-vertical {
  top: 4px;
  left: 14px;
  height: 17px;
}

.mark-ray-left {
  bottom: 7px;
  left: 6px;
  height: 15px;
  transform: rotate(-58deg);
  background: var(--accent);
}

.mark-ray-right {
  right: 6px;
  bottom: 7px;
  height: 15px;
  transform: rotate(58deg);
  background: rgba(1, 135, 95, 0.72);
}

.mark-core {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-nav a,
.header-link {
  position: relative;
  padding: 12px 13px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.primary-nav a:hover,
.header-link:hover {
  color: var(--accent);
  background: var(--accent-wash);
}

.primary-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-link {
  padding-inline: 10px;
}

.language-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 32px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Hero */

.hero-band {
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: var(--light);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 72px;
  min-height: 630px;
  padding-top: 72px;
  padding-bottom: 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-band h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.055em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-subhead {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.58;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 34px;
}

.stat {
  min-width: 132px;
  margin-right: 24px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.stat-last {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stat span {
  display: block;
  color: var(--muted-light);
  font-size: 0.78rem;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-note {
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 36, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 74% 22%, rgba(1, 135, 95, 0.22), transparent 28%),
    linear-gradient(145deg, #202124 0%, #252a2b 56%, #183d35 145%);
  box-shadow: 0 22px 42px rgba(32, 33, 36, 0.17);
}

.hero-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 69%),
    linear-gradient(to bottom, transparent 64%, rgba(0, 0, 0, 0.4) 100%);
  content: "";
  pointer-events: none;
}

.hero-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0.9;
}

.hero-grid-lines {
  position: absolute;
  z-index: 0;
  right: -10%;
  bottom: 2%;
  left: -10%;
  height: 42%;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 42px 28px;
  transform: perspective(380px) rotateX(58deg) scale(1.25);
  transform-origin: bottom center;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 17%;
  right: 6%;
  width: 210px;
  height: 95px;
  transform: rotate(-23deg);
}

.hero-orbit-two {
  top: 12%;
  right: 12%;
  width: 145px;
  height: 210px;
  transform: rotate(38deg);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 12%;
  left: 12%;
  width: 150px;
  height: 150px;
  background: rgba(1, 135, 95, 0.18);
}

.hero-glow-two {
  right: 13%;
  bottom: 15%;
  width: 220px;
  height: 220px;
  background: rgba(1, 135, 95, 0.12);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(32, 33, 36, 0.68);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.18);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-badge-top {
  top: 22px;
  left: 22px;
}

.hero-badge-bottom {
  right: 22px;
  bottom: 22px;
}

.hero-axis {
  position: absolute;
  z-index: 3;
  display: block;
  height: 3px;
  border-radius: 999px;
  transform-origin: left center;
  opacity: 0.92;
}

.hero-axis-x {
  right: 15%;
  bottom: 25%;
  width: 100px;
  background: var(--accent);
  transform: rotate(16deg);
}

.hero-axis-y {
  right: 15%;
  bottom: 25%;
  width: 86px;
  background: rgba(255, 255, 255, 0.84);
  transform: rotate(-54deg);
}

.hero-axis-z {
  right: 15%;
  bottom: 25%;
  width: 78px;
  background: rgba(1, 135, 95, 0.72);
  transform: rotate(-90deg);
}

/* Feature cards */

.features-section {
  background: var(--light);
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 368px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--light);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-card:hover {
  border-color: rgba(1, 135, 95, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-image {
  position: relative;
  height: 174px;
  overflow: hidden;
  background: var(--dark);
}

.feature-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(32, 33, 36, 0.5) 100%);
  content: "";
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.045);
}

.feature-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 23px 24px;
}

.feature-content p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.feature-kicker,
.use-case-label {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-card-plain {
  justify-content: flex-start;
  padding-top: 28px;
}

.feature-card-plain .feature-content {
  padding-top: 16px;
}

.feature-icon,
.use-case-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  margin-left: 23px;
  border-radius: 17px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Workflow */

.band {
  width: 100%;
}

.band-tint {
  border-block: 1px solid var(--line-soft);
  background: var(--surface-tint);
}

.workflow-section {
  padding: 92px 0;
}

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

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(1, 135, 95, 0.18);
  border-radius: var(--radius-md);
  background: var(--light);
  box-shadow: 0 6px 20px rgba(1, 135, 95, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.step-card:hover {
  border-color: rgba(1, 135, 95, 0.45);
  box-shadow: 0 14px 28px rgba(1, 135, 95, 0.1);
  transform: translateY(-4px);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin-top: 3px;
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.58;
}

.workflow-note {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 610px;
  margin: 26px auto 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(1, 135, 95, 0.08);
}

.workflow-note p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.workflow-note strong {
  color: var(--dark);
}

.workflow-note-mark {
  color: var(--accent);
  font-size: 0.72rem;
}

/* Use cases */

.use-case-section {
  background: var(--light);
}

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

.use-case-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--light);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.use-case-card:hover {
  border-color: rgba(1, 135, 95, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.use-case-media {
  height: 166px;
  overflow: hidden;
  background: var(--dark);
}

.use-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.use-case-card:hover .use-case-media img {
  transform: scale(1.05);
}

.use-case-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.use-case-content p {
  margin-bottom: 0;
  font-size: 0.91rem;
  line-height: 1.58;
}

.use-case-card-plain {
  padding-top: 28px;
}

.use-case-card-plain .use-case-content {
  padding-top: 17px;
}

.use-case-icon {
  margin-bottom: 0;
  margin-left: 23px;
}

/* Comparison */

.comparison-band {
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(1, 135, 95, 0.05), transparent 45%),
    var(--surface-tint);
}

.compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 72px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.compare-copy {
  max-width: 500px;
}

.compare-copy > p:not(.eyebrow):not(.comparison-disclaimer) {
  font-size: 1.04rem;
  line-height: 1.65;
}

.comparison-disclaimer {
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 0.78rem;
  line-height: 1.5;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--light);
  box-shadow: var(--shadow);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  padding: 19px 23px;
}

.comparison-head {
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-row {
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line-soft);
}

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

.comparison-row span {
  line-height: 1.5;
}

/* Explore */

.explore-section {
  background: var(--surface);
}

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

.explore-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--light);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.explore-link:hover {
  border-color: rgba(1, 135, 95, 0.45);
  background: var(--accent-wash);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.explore-link-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.explore-link-title {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.explore-link-meta {
  overflow: hidden;
  color: var(--muted-light);
  font-size: 0.78rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.explore-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 1.05rem;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.explore-link:hover .explore-arrow {
  background: rgba(1, 135, 95, 0.18);
  transform: translateX(3px);
}

/* FAQ */

.faq-section {
  background: var(--light);
}

.faq-shell {
  max-width: 900px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--light);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(1, 135, 95, 0.38);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 18px 23px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 23px 22px;
}

.faq-answer p {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Final CTA */

.final-cta-band {
  position: relative;
  overflow: hidden;
  color: var(--light);
  background: var(--dark);
}

.final-cta-band::before,
.final-cta-band::after {
  position: absolute;
  border: 1px solid rgba(1, 135, 95, 0.3);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.final-cta-band::before {
  top: -140px;
  right: -90px;
  width: 410px;
  height: 410px;
}

.final-cta-band::after {
  bottom: -210px;
  left: -130px;
  width: 470px;
  height: 470px;
  border-color: rgba(255, 255, 255, 0.08);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: 100px;
  padding-bottom: 104px;
  text-align: center;
}

.final-cta-inner .eyebrow {
  color: var(--accent);
}

.final-cta-inner h2 {
  color: var(--light);
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 530px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--light);
}

.footer-inner {
  padding-top: 66px;
  padding-bottom: 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(130px, 1fr));
  gap: 48px;
  padding-bottom: 58px;
}

.footer-brand-block {
  max-width: 350px;
}

.footer-brand {
  margin-bottom: 17px;
}

.footer-brand-block p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.84rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-light);
  font-size: 0.76rem;
}

.footer-bottom a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Responsive layout */

@media (max-width: 1050px) {
  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 0;
  }

  .primary-nav a {
    padding-inline: 9px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 48px;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 470px;
    height: 470px;
  }

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

  .use-case-card {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 850px) {
  .shell,
  .shell-wide {
    width: min(100% - 40px, var(--max-width));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 680px);
  }

  .hero-frame,
  .hero-frame img {
    min-height: 480px;
    height: 480px;
  }

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

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

  .step-card {
    min-height: auto;
  }

  .compare-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .compare-copy {
    max-width: 700px;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .shell,
  .shell-wide {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 64px;
  }

  .header-link {
    display: none;
  }

  .brand-word {
    font-size: 1.08rem;
  }

  .brand-mark {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .mark-ray-vertical {
    left: 12.5px;
  }

  .mark-ray-left {
    left: 5px;
  }

  .mark-ray-right {
    right: 5px;
  }

  .mark-core {
    top: 12px;
    left: 11px;
  }

  .section {
    padding: 70px 0;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-inner {
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .hero-band h1 {
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 13vw, 4.1rem);
    letter-spacing: -0.065em;
  }

  .hero-subhead {
    margin-bottom: 28px;
    font-size: 1.04rem;
  }

  .trust-stats {
    gap: 18px 0;
    margin-bottom: 28px;
  }

  .stat {
    min-width: 104px;
    margin-right: 17px;
    padding-right: 17px;
  }

  .stat strong {
    font-size: 1.38rem;
  }

  .stat span {
    font-size: 0.73rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a,
  .final-cta-actions a {
    width: 100%;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 355px;
    height: 355px;
  }

  .hero-badge {
    min-height: 28px;
    padding-inline: 9px;
    font-size: 0.57rem;
  }

  .hero-badge-top {
    top: 15px;
    left: 15px;
  }

  .hero-badge-bottom {
    right: 15px;
    bottom: 15px;
  }

  .hero-axis-x {
    right: 14%;
    bottom: 27%;
    width: 70px;
  }

  .hero-axis-y {
    right: 14%;
    bottom: 27%;
    width: 63px;
  }

  .hero-axis-z {
    right: 14%;
    bottom: 27%;
    width: 57px;
  }

  .feature-grid,
  .use-case-grid,
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 320px;
  }

  .feature-image {
    height: 188px;
  }

  .use-case-card {
    min-height: 320px;
  }

  .use-case-media {
    height: 185px;
  }

  .workflow-section,
  .compare-layout {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .workflow-note {
    align-items: flex-start;
    border-radius: var(--radius-md);
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px 18px;
  }

  .comparison-head span + span {
    display: none;
  }

  .explore-link {
    min-height: 76px;
  }

  .faq-item summary {
    min-height: 62px;
    padding: 16px 18px;
    font-size: 0.94rem;
  }

  .faq-answer {
    padding: 0 18px 19px;
  }

  .final-cta-inner {
    padding-top: 76px;
    padding-bottom: 78px;
  }

  .final-cta-inner h2 {
    font-size: 2.25rem;
  }

  .footer-inner {
    padding-top: 52px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 20px;
    padding-bottom: 42px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}

/* Prisma3D reference pass: compact product-page geometry and restrained surfaces. */
:root {
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --shadow: 0 12px 28px rgba(32, 33, 36, 0.12);
  --shadow-soft: 0 4px 14px rgba(32, 33, 36, 0.07);
}

.shell {
  width: min(1160px, calc(100% - 112px));
}

.shell-wide {
  width: min(1240px, calc(100% - 112px));
}

.section {
  padding: 70px 0;
}

.eyebrow {
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

h2 {
  font-size: clamp(1.8rem, 3.3vw, 2.55rem);
}

.button,
a[href="/go"] {
  min-height: 44px;
  padding: 0.78rem 1.2rem;
  border-radius: 7px;
}

a[href="/go"] {
  box-shadow: 0 4px 10px rgba(1, 135, 95, 0.16);
}

a[href="/go"]:hover {
  box-shadow: 0 6px 14px rgba(1, 135, 95, 0.2);
  transform: translateY(-1px);
}

.hero-inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: 52px;
  min-height: 510px;
  padding-top: 54px;
  padding-bottom: 60px;
}

.hero-copy {
  padding-top: 6px;
}

.hero-band h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3.3rem, 6.4vw, 5.35rem);
}

.hero-subhead {
  margin-bottom: 26px;
  font-size: 1.05rem;
}

.trust-stats {
  margin-bottom: 26px;
}

.hero-frame,
.hero-frame img {
  min-height: 380px;
  height: 380px;
}

.hero-frame {
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(32, 33, 36, 0.14);
}

.feature-card,
.use-case-card {
  min-height: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.feature-image {
  height: 150px;
}

.feature-content,
.use-case-content {
  padding: 18px 19px 20px;
}

.feature-kicker,
.use-case-label {
  margin-bottom: 9px;
  letter-spacing: 0.08em;
}

.feature-icon,
.use-case-icon,
.step-index {
  border-radius: 10px;
}

.band-tint,
.comparison-band {
  background: var(--light);
}

.workflow-section,
.compare-layout {
  padding-top: 66px;
  padding-bottom: 66px;
}

.step-card {
  min-height: 0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.workflow-note {
  max-width: 570px;
  margin-top: 20px;
  padding: 11px 15px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #f8f9fa;
}

.use-case-media {
  height: 140px;
}

.comparison-card {
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.explore-link,
.faq-item {
  border-radius: 10px;
}

.final-cta-inner {
  padding-top: 78px;
  padding-bottom: 82px;
}

.final-cta-inner h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

@media (max-width: 1050px) {
  .shell,
  .shell-wide {
    width: min(100% - 80px, var(--max-width));
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 38px;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 340px;
    height: 340px;
  }
}

@media (max-width: 850px) {
  .shell,
  .shell-wide {
    width: min(100% - 40px, var(--max-width));
  }

  .hero-inner {
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 620px) {
  .shell,
  .shell-wide {
    width: calc(100% - 32px);
  }

  .section {
    padding: 56px 0;
  }

  .hero-band h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .hero-frame,
  .hero-frame img {
    min-height: 320px;
    height: 320px;
  }

  .workflow-section,
  .compare-layout {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* Final visual parity adjustments. */
.header-inner {
  grid-template-columns: auto auto minmax(0, 1fr);
}

.primary-nav {
  justify-content: flex-start;
}

.header-meta {
  justify-self: end;
}

.hero-inner {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.62fr);
  gap: 44px;
  padding-top: 42px;
  padding-bottom: 44px;
}

.hero-band h1 {
  font-size: clamp(3.6rem, 6.8vw, 5.5rem);
  line-height: 1.06;
}

.hero-frame,
.hero-frame img {
  min-height: 320px;
  height: 320px;
}

.hero-frame {
  width: min(100%, 360px);
  margin-left: auto;
  border-radius: 20px;
}

.hero-actions {
  margin-bottom: 12px;
}

.section,
.workflow-section,
.compare-layout {
  padding-top: 58px;
  padding-bottom: 58px;
}

@media (max-width: 850px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 44px;
  }

  .hero-frame {
    margin-right: auto;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .hero-band h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .hero-frame,
  .hero-frame img {
    min-height: 320px;
    height: 320px;
  }

  .section,
  .workflow-section,
  .compare-layout {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Final compact product-page pass. */
.header-inner {
  width: calc(100% - 48px);
  max-width: none;
}

.hero-band h1 {
  font-size: clamp(2.9rem, 4.6vw, 3.65rem);
  background: none;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.hero-frame,
.hero-frame img {
  min-height: 300px;
  height: 300px;
}

.hero-frame {
  width: min(100%, 300px);
  border-radius: 20px;
}

.feature-image {
  height: 220px;
}

.hero-actions .button-ghost {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.hero-actions .button-ghost:hover {
  background: var(--accent-wash);
  transform: none;
}

@media (max-width: 850px) {
  .header-inner {
    width: min(100% - 40px, var(--max-width));
  }

  .hero-band h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: calc(100% - 32px);
  }

  .hero-band h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .feature-image {
    height: 200px;
  }
}

/* Shared related-guide rail used by generated inner pages. */
.related-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.related-pill {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 58px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--light);
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.related-pill:hover {
  border-color: rgba(1, 135, 95, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.related-pill strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.25;
}

.related-pill span,
.related-pill:not(:has(strong)) {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .related-rail {
    grid-template-columns: 1fr;
  }
}
