:root {
  color-scheme: light;
  --ink: #121719;
  --muted: #5d6970;
  --body: #344044;
  --paper: #f7f5f0;
  --paper-2: #f1ede4;
  --white: #ffffff;
  --line: #ddd9cd;
  --green: #123b31;
  --green-2: #1f5b4b;
  --green-deep: #0c2b23;
  --green-tint: #eef8f2;
  --brass: #a47a3b;
  --brass-light: #d6b06f;
  --mark: #f3e7cf;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(18, 23, 25, 0.14);
  --shadow-soft: 0 10px 30px rgba(18, 23, 25, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
}

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

::selection {
  background: var(--mark);
}

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 70ms;
}

.reveal-delay-2 {
  transition-delay: 140ms;
}

.reveal-delay-3 {
  transition-delay: 210ms;
}

/* ============ Header ============ */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 6vw, 88px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(8, 15, 16, 0.66), rgba(8, 15, 16, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 176px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.nav a {
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--brass-light);
  transition: right 0.3s ease;
}

.nav a:not(.nav-cta):hover::after {
  right: 0;
}

.nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 9px 18px;
  border: 1px solid rgba(214, 176, 111, 0.6);
  border-radius: 999px;
  color: var(--brass-light);
  font-weight: 650;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover {
  background: var(--brass-light);
  color: var(--green-deep);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 130px clamp(24px, 6vw, 80px) 90px;
  color: var(--white);
  text-align: center;
  background-image: url("assets/hero-office.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 50% 110%, rgba(7, 16, 17, 0.55), transparent 60%),
    radial-gradient(ellipse 110% 100% at 50% 40%, rgba(7, 16, 17, 0.78) 0%, rgba(7, 16, 17, 0.6) 55%, rgba(7, 16, 17, 0.42) 100%),
    linear-gradient(0deg, rgba(7, 16, 17, 0.55), rgba(7, 16, 17, 0.2));
}

.hero-content {
  position: relative;
  width: min(880px, 100%);
  display: grid;
  justify-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: center;
  text-wrap: balance;
  line-height: 1.5;
}

.hero .eyebrow::before,
.hero .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 176, 111, 0.8));
}

.hero .eyebrow::after {
  background: linear-gradient(90deg, rgba(214, 176, 111, 0.8), transparent);
}

.hero h1 {
  margin: 0;
  display: grid;
  justify-items: center;
  font-family: var(--serif);
  font-weight: 400;
}

.hero-line-1 {
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-line-1 em {
  font-style: italic;
  color: var(--brass-light);
}

.hero-divider {
  width: 64px;
  height: 1px;
  margin: 26px 0;
  background: linear-gradient(90deg, transparent, var(--brass-light), transparent);
}

.hero-line-2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15.5px, 1.7vw, 17.5px);
  font-weight: 400;
  line-height: 1.7;
}

.hero-copy strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 26px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.04em;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badges li::before {
  content: "✓";
  color: var(--brass-light);
  font-size: 12px;
}

.hero-badges li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  margin-left: 26px;
  border-radius: 50%;
  background: rgba(214, 176, 111, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 44px;
  overflow: hidden;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(214, 176, 111, 0.9));
  animation: scroll-hint 2.2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0% {
    transform: translateY(-100%);
  }
  60%,
  100% {
    transform: translateY(100%);
  }
}

/* ============ Buttons ============ */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button.primary {
  color: var(--green-deep);
  background: var(--brass-light);
  box-shadow: 0 10px 30px rgba(214, 176, 111, 0.25);
}

.button.primary:hover {
  background: #e3c184;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(214, 176, 111, 0.32);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.button.dark {
  color: var(--green-deep);
  background: var(--brass-light);
}

.button.dark:hover {
  background: #e3c184;
  transform: translateY(-2px);
}

/* ============ Proof band ============ */
.proof-band {
  width: min(1160px, calc(100% - 48px));
  margin: -64px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-item {
  position: relative;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease;
}

.proof-item:hover {
  background: #fdfcf8;
}

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

.proof-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  color: var(--brass);
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15.5px;
  letter-spacing: -0.01em;
}

.proof-item span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ============ Sections (shared) ============ */
.section {
  padding: clamp(76px, 10vw, 128px) 0;
}

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

.section-head {
  max-width: 800px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brass);
}

.section-head .eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--brass);
}

.section-head p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--body);
  font-size: clamp(16.5px, 1.9vw, 19.5px);
  line-height: 1.6;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
  font-weight: 450;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 21px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.split .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.split .eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* ============ Capabilities ============ */
.capabilities-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.capabilities-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -200px;
  width: 560px;
  height: 560px;
  background: url("assets/guilloche.svg") center / contain no-repeat;
  opacity: 0.16;
  animation: seal-spin-simple 120s linear infinite;
  pointer-events: none;
}

@keyframes seal-spin-simple {
  to {
    transform: rotate(360deg);
  }
}

.capabilities-section .section-inner {
  position: relative;
}

.capability {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  padding: clamp(44px, 6vw, 72px) 0;
}

.capability + .capability {
  border-top: 1px solid #ece8dd;
}

.capability.reverse .capability-text {
  order: 2;
}

.capability.reverse .capability-visual {
  order: 1;
}

.capability-text {
  position: relative;
}

.capability-number {
  position: absolute;
  top: -0.35em;
  left: -0.06em;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(164, 122, 59, 0.28);
  font-family: var(--serif);
  font-size: clamp(96px, 11vw, 150px);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.capability-text h3 {
  position: relative;
  z-index: 1;
  padding-top: clamp(48px, 6vw, 76px);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 33px);
  font-weight: 480;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.capability-text p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
}

.capability-visual {
  position: relative;
  display: grid;
  gap: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(ellipse 90% 70% at 80% 0%, rgba(214, 176, 111, 0.1), transparent 60%),
    var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.capability-visual:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.capability-visual::before,
.capability-visual::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0.55;
}

.capability-visual::before {
  top: 9px;
  left: 9px;
  border-top: 1px solid var(--brass);
  border-left: 1px solid var(--brass);
}

.capability-visual::after {
  bottom: 9px;
  right: 9px;
  border-bottom: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
}

.capability-visual:hover::before,
.capability-visual:hover::after {
  width: 38px;
  height: 38px;
  opacity: 0.9;
}

.doc-chain {
  display: grid;
  gap: 8px;
}

.doc-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(18, 23, 25, 0.04);
}

.doc-chip::before {
  content: "";
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  background-color: var(--brass);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><path d="M14 2v6h6"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><path d="M14 2v6h6"/></svg>') center / contain no-repeat;
}

.chain-arrow {
  position: relative;
  height: 38px;
  margin: 4px 0;
  color: transparent;
  overflow: hidden;
}

.chain-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 10px;
  width: 1.5px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--brass));
}

.chain-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
}

.result-card {
  padding: 20px 22px;
  border: 1px solid rgba(31, 91, 75, 0.3);
  border-left: 3px solid var(--green-2);
  border-radius: 10px;
  background: var(--green-tint);
}

.result-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 14.5px;
}

.result-card strong::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green-2);
  color: var(--white);
  font-size: 10px;
}

.result-card p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}

.extract-doc {
  margin-bottom: 10px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(18, 23, 25, 0.04);
}

.extract-doc-title {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.extract-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(18, 23, 25, 0.1);
  font-size: 14px;
}

.extract-line:last-child {
  border-bottom: 0;
}

.extract-label {
  color: var(--muted);
}

mark {
  padding: 1px 7px;
  border-radius: 4px;
  background: var(--mark);
  box-shadow: inset 0 -1.5px 0 rgba(164, 122, 59, 0.45);
  color: var(--ink);
  font-weight: 650;
}

.draft-card {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(to right, rgba(164, 122, 59, 0.25), rgba(164, 122, 59, 0.25)) left top / 1px 100% no-repeat,
    var(--white);
  padding-left: 30px;
  box-shadow: 0 1px 2px rgba(18, 23, 25, 0.04);
}

.draft-line {
  margin: 0 0 16px;
  color: var(--body);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.draft-line.muted {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
}

/* ============ Workflow ============ */
.workflow-section {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(214, 176, 111, 0.12), transparent 55%),
    var(--paper-2);
}

.workflow-section::before,
.workflow-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  background: url("assets/guilloche-band.svg") center / 240px 24px repeat-x;
  opacity: 0.4;
  pointer-events: none;
}

.workflow-section::before {
  top: 14px;
}

.workflow-section::after {
  bottom: 14px;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.workflow-card {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.workflow-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.workflow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
}

.workflow-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.workflow-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.step-number {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 12px;
  border: 1px solid rgba(164, 122, 59, 0.4);
  border-radius: 999px;
  color: var(--brass);
  font-weight: 750;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-note {
  margin: 30px 0 0;
  color: var(--body);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 450;
}

/* ============ Privacy ============ */
.privacy-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(ellipse 80% 80% at 85% 20%, rgba(31, 91, 75, 0.55), transparent 60%),
    var(--green-deep);
  overflow: hidden;
}

.privacy-seal {
  position: absolute;
  top: 50%;
  right: clamp(-80px, -4vw, -30px);
  width: clamp(260px, 30vw, 420px);
  height: auto;
  transform: translateY(-50%);
  color: var(--brass-light);
  opacity: 0.14;
  animation: seal-spin 80s linear infinite;
  pointer-events: none;
}

@keyframes seal-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-seal,
  .hero-scroll span,
  .capabilities-section::before,
  .acts-section::before,
  .roi-section::after {
    animation: none;
  }
}

.privacy-section .section-inner {
  position: relative;
}

.privacy-section .eyebrow {
  color: var(--brass-light);
}

.privacy-copy {
  font-size: clamp(16px, 1.9vw, 18.5px);
  line-height: 1.65;
}

.privacy-copy > p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.85);
}

.privacy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.privacy-list li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.55;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 24px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--brass-light);
  border-bottom: 2px solid var(--brass-light);
  transform: rotate(-45deg);
}

.privacy-list li strong {
  color: var(--white);
}

/* ============ Acts ============ */
.acts-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.acts-section::before {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -220px;
  width: 540px;
  height: 540px;
  background: url("assets/guilloche.svg") center / contain no-repeat;
  opacity: 0.13;
  animation: seal-spin-simple 140s linear infinite reverse;
  pointer-events: none;
}

.acts-section .section-inner {
  position: relative;
}

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

.act-card {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fcfbf7;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.act-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  transition: right 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.act-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.act-card:hover::before {
  right: 0;
}

/* timbru sec embosat */
.act-card::after {
  content: "T";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 3px double rgba(18, 23, 25, 0.09);
  border-radius: 50%;
  color: rgba(18, 23, 25, 0.07);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -1px 2px rgba(18, 23, 25, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.85);
  transform: rotate(-12deg);
  transition: color 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.act-card:hover::after {
  color: rgba(164, 122, 59, 0.28);
  border-color: rgba(164, 122, 59, 0.3);
  transform: rotate(-6deg);
}

.act-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.act-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============ ROI ============ */
.roi-section {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.roi-section::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -160px;
  width: 440px;
  height: 440px;
  margin-top: -220px;
  background: url("assets/guilloche.svg") center / contain no-repeat;
  opacity: 0.12;
  animation: seal-spin-simple 100s linear infinite;
  pointer-events: none;
}

.roi-section .section-inner {
  position: relative;
}

.roi-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  counter-reset: roi;
}

.roi-list li {
  position: relative;
  padding: 20px 0 20px 56px;
  border-bottom: 1px solid #e4dfd2;
  counter-increment: roi;
}

.roi-list li::before {
  content: counter(roi, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 22px;
  color: var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
}

.roi-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.roi-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.roi-conclusion {
  margin: 28px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--brass-light);
  color: var(--body);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18.5px;
  font-weight: 450;
  line-height: 1.6;
}

/* ============ Demo ============ */
.demo-section {
  position: relative;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(214, 176, 111, 0.16), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(31, 91, 75, 0.6), transparent 65%),
    var(--green-deep);
  overflow: hidden;
}

.demo-content {
  position: relative;
  width: min(820px, calc(100% - 48px));
  display: grid;
  justify-items: center;
}

.demo-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brass-light);
}

.demo-section .eyebrow::before,
.demo-section .eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 176, 111, 0.8));
}

.demo-section .eyebrow::after {
  background: linear-gradient(90deg, rgba(214, 176, 111, 0.8), transparent);
}

.demo-content p:not(.eyebrow):not(.demo-subnote) {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.demo-subnote {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
}

/* ============ Footer ============ */
.footer {
  padding: 26px 0;
  color: rgba(215, 227, 221, 0.85);
  background: #081f19;
}

.footer-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13.5px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--white);
}

.footer-brand img {
  display: block;
  border-radius: 7px;
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .site-header {
    height: auto;
    min-height: 66px;
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 110px;
  }

  .proof-band,
  .workflow-grid,
  .acts-grid,
  .split,
  .capability {
    grid-template-columns: 1fr;
  }

  .proof-band {
    margin-top: -48px;
  }

  .capability.reverse .capability-text {
    order: 1;
  }

  .capability.reverse .capability-visual {
    order: 2;
  }

  .workflow-card:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -15px;
    transform: translateX(50%) rotate(45deg);
  }

  .privacy-seal {
    top: auto;
    right: -60px;
    bottom: -90px;
    transform: none;
    opacity: 0.1;
  }

  @keyframes seal-spin {
    to {
      transform: rotate(360deg);
    }
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-badges {
    gap: 10px 18px;
  }

  .hero-badges li:not(:last-child)::after {
    display: none;
  }

  .extract-line {
    flex-direction: column;
    gap: 2px;
  }
}
