:root {
  --ink: #11251f;
  --muted: #5d6d67;
  --paper: #f5f7f1;
  --white: #fffef9;
  --sage: #dce8d8;
  --lime: #c6f367;
  --green: #194f3c;
  --deep: #0d3027;
  --line: rgba(17, 37, 31, 0.14);
  --shadow: 0 30px 90px rgba(19, 53, 43, 0.15);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-200%);
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 8px 8px 8px 2px;
  display: grid;
  place-items: center;
  transform: rotate(-7deg);
}

.brand-mark span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

nav { display: flex; gap: 28px; }

nav a,
.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible { color: var(--ink); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(25, 79, 60, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--deep);
  box-shadow: 0 16px 32px rgba(25, 79, 60, 0.24);
  transform: translateY(-2px);
}

.button-small {
  justify-self: end;
  min-height: 40px;
  padding: 0 17px;
  font-size: 13px;
}

.button-quiet { box-shadow: none; }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 690px;
  margin: 0 auto;
  padding: 92px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.86fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #51a06c;
  box-shadow: 0 0 0 5px rgba(81, 160, 108, 0.12);
}

h1,
h2,
h3,
p { text-wrap: pretty; }

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(57px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.064em;
  line-height: 0.94;
}

h1 em {
  color: var(--green);
  font-weight: inherit;
}

.hero-lede {
  max-width: 590px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-note {
  margin: 25px 0 0;
  color: #738079;
  font-size: 12px;
}

.trust-console {
  position: relative;
  overflow: hidden;
  background: rgba(255, 254, 249, 0.88);
  border: 1px solid rgba(17, 37, 31, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.trust-console::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -130px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(198, 243, 103, 0.35);
  filter: blur(14px);
}

.console-bar {
  position: relative;
  min-height: 58px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #68746f;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}

.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #b7c1bc; }
.console-secure { justify-self: end; display: flex; align-items: center; gap: 5px; }
.console-secure i { width: 6px; height: 6px; border-radius: 50%; background: #53a36e; }

.console-body { position: relative; padding: 25px; }

.document-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  background: var(--paper);
  border-radius: 14px;
}

.doc-icon {
  width: 38px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--sage);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 900;
}

.document-card strong,
.document-card span { display: block; }
.document-card strong { font-size: 13px; }
.document-card div span { margin-top: 4px; color: #78847f; font-size: 10px; }
.document-card .check { color: var(--green); font-size: 16px; }

.review-line {
  padding: 17px 2px 12px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #68746f;
  font-size: 11px;
  font-weight: 650;
}

.review-line .status-pass { color: #347b52; }

.preview-block {
  margin: 18px 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #eef1eb;
  border-radius: 12px;
}

.line { height: 6px; border-radius: 99px; background: #cad2cc; }
.line.redacted { background: var(--green); opacity: 0.76; }
.w-90 { width: 90%; }.w-82 { width: 82%; }.w-72 { width: 72%; }.w-64 { width: 64%; }.w-46 { width: 46%; }

.approval-row {
  padding-top: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.approval-row span,
.approval-row strong { display: block; }
.approval-row div span { color: #7a8881; font-size: 9px; }
.approval-row strong { margin-top: 3px; font-size: 11px; }
.approval-row .approval-button { padding: 10px 12px; color: var(--white); background: var(--green); border-radius: 999px; font-size: 9px; font-weight: 750; }

.principle {
  padding: 56px 20px 64px;
  color: var(--white);
  text-align: center;
  background: var(--deep);
}

.principle p { margin: 0 0 12px; color: #98b0a7; font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.principle blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(26px, 4vw, 44px); font-style: italic; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 80px;
  align-items: end;
}

.section-intro .eyebrow { grid-column: 1 / -1; }

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5.6vw, 69px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid article { min-height: 280px; padding: 30px 30px 40px 0; }
.feature-grid article + article { padding-left: 30px; border-left: 1px solid var(--line); }
.feature-number { color: #86a093; font-family: Georgia, serif; font-size: 13px; }
.feature-grid h3 { margin: 62px 0 14px; font-size: 18px; letter-spacing: -0.02em; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.security { width: 100%; padding: 0; }

.security-panel {
  min-height: 700px;
  padding: 115px max(40px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(91, 151, 105, 0.28), transparent 32%),
    linear-gradient(135deg, #0c3027, #143f33 70%, #0a2922);
}

.eyebrow.light { color: #b8d2c2; }
.security h2 { max-width: 800px; }
.security-lede { max-width: 680px; margin: 32px 0 0; color: #b8c9c2; font-size: 17px; line-height: 1.7; }

.security-points {
  max-width: 950px;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.security-points > div {
  padding: 26px;
  display: flex;
  gap: 16px;
  background: rgba(9, 42, 34, 0.75);
}

.security-points > div > span { color: var(--lime); font-size: 10px; }
.security-points p { margin: 0; color: #adc2b9; font-size: 13px; line-height: 1.55; }
.security-points strong { display: block; margin-bottom: 5px; color: var(--white); font-size: 15px; }

.section-intro.compact { display: block; max-width: 850px; }

.steps {
  margin: 74px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  min-height: 124px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.steps li > span { width: 35px; height: 35px; display: grid; place-items: center; color: var(--green); background: var(--sage); border-radius: 50%; font-family: Georgia, serif; }
.steps li div { display: grid; grid-template-columns: minmax(220px, 0.6fr) 1fr; gap: 30px; align-items: center; }
.steps strong { font-size: 18px; }
.steps p { max-width: 620px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 40px;
  padding: 78px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
}

.cta h2 { font-size: clamp(37px, 4.5vw, 59px); }
.button-light { flex: 0 0 auto; color: var(--deep); background: var(--lime); border-color: var(--lime); box-shadow: none; }
.button-light:hover, .button-light:focus-visible { color: var(--white); background: var(--deep); }

footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 130px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

footer p { text-align: center; }
footer > div { justify-self: end; display: flex; gap: 22px; }
footer a { text-underline-offset: 3px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .trust-console { max-width: 570px; transform: none; }
  .section-intro { grid-template-columns: 1fr; gap: 28px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .feature-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .cta { padding: 58px 40px; align-items: start; flex-direction: column; }
  footer { grid-template-columns: 1fr 1fr; padding: 30px 0; }
  footer p { display: none; }
}

@media (max-width: 600px) {
  .site-header, .hero, .section, .cta, footer { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 72px; }
  .button-small { padding: 0 13px; }
  .hero { min-height: 0; padding: 62px 0 70px; }
  h1 { font-size: clamp(49px, 15vw, 69px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-console { margin-top: 15px; }
  .console-body { padding: 16px; }
  .approval-row { align-items: flex-start; flex-direction: column; }
  .section { padding: 95px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 220px; padding: 25px 0 30px; }
  .feature-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .feature-grid h3 { margin-top: 42px; }
  .security-panel { padding: 90px 24px; }
  .security-points { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 52px 1fr; align-items: start; }
  .steps li div { grid-template-columns: 1fr; gap: 8px; }
  .cta { margin-bottom: 0; padding: 55px 25px; border-radius: 0; width: 100%; }
  footer { min-height: 160px; grid-template-columns: 1fr; }
  footer > div { justify-self: start; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
