/* ── PermitIntel Design System ── */

:root {
  --ink: #151512;
  --muted: #5c5b53;
  --quiet: #7a776b;
  --field: #f5ead8;
  --paper: #fffaf0;
  --paper-strong: #fff4df;
  --line: rgba(21, 21, 18, 0.14);
  --green: #0e3f3a;
  --green-mid: #18574f;
  --green-soft: rgba(14, 63, 58, 0.12);
  --copper: #d76f3f;
  --copper-light: #f5b48a;
  --copper-soft: rgba(215, 111, 63, 0.16);
  --blueprint: #234c5c;
  --blueprint-soft: rgba(35, 76, 92, 0.12);
  --shadow-sm: 0 4px 16px rgba(41, 35, 24, 0.08);
  --shadow: 0 28px 80px rgba(41, 35, 24, 0.16);
  --shadow-lg: 0 36px 100px rgba(41, 35, 24, 0.22);
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 34px;
}

* {
  box-sizing: border-box;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}

/* ── Animated background ── */
body {
  color: var(--ink);
  font-family: Sora, "Avenir Next", system-ui, sans-serif;
  background: linear-gradient(180deg, #f8efe0 0%, #efe0c8 58%, #e8d5bb 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 21, 18, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 18, 0.032) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 72%);
  z-index: 0;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-glow::before,
.bg-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 18s ease-in-out infinite alternate;
}
.bg-glow::before {
  width: 600px;
  height: 600px;
  top: -120px;
  left: -80px;
  background: rgba(215, 111, 63, 0.18);
}
.bg-glow::after {
  width: 700px;
  height: 700px;
  top: -60px;
  right: -100px;
  background: rgba(14, 63, 58, 0.14);
  animation-delay: -6s;
  animation-direction: alternate-reverse;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, 30px) scale(1.08);
  }
}

a {
  color: inherit;
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--green));
  z-index: 1000;
  transition: width 60ms linear;
}

/* ── Sticky nav ── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  transition:
    background 300ms,
    box-shadow 300ms,
    backdrop-filter 300ms;
}
.nav-wrap.scrolled {
  background: rgba(248, 239, 224, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 1px 0 var(--line),
    0 8px 32px rgba(41, 35, 24, 0.08);
}

.shell {
  position: relative;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 92px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(14, 63, 58, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.nav-links a {
  text-decoration: none;
  transition: color 200ms;
}
.nav-links a:hover {
  color: var(--ink);
}

/* ── Buttons ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  color: var(--paper);
  background: var(--green);
  box-shadow:
    0 14px 36px rgba(14, 63, 58, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 220ms ease;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 48px rgba(14, 63, 58, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.button:active {
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--green);
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(14, 63, 58, 0.15);
  box-shadow: var(--shadow-sm);
}
.button.secondary:hover {
  background: rgba(255, 250, 240, 0.95);
  box-shadow: 0 14px 36px rgba(41, 35, 24, 0.12);
}

.button .btn-arrow {
  display: inline-block;
  transition: transform 200ms;
}
.button:hover .btn-arrow {
  transform: translateX(3px);
}

/* ── Panel (glassmorphism base) ── */
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px 0 32px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(215, 111, 63, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(215, 111, 63, 0.05);
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(14, 63, 58, 0.13);
  border-radius: 999px;
  color: var(--green);
  background: rgba(14, 63, 58, 0.08);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--copper);
  animation: pulse-ring 2.4s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(215, 111, 63, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(215, 111, 63, 0);
  }
}

h1,
h2,
h3 {
  margin: 0;
}
h1,
.serif {
  font-family: "Libre Baskerville", Georgia, serif;
}

h1 {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  max-width: 11ch;
  font-size: clamp(2.9rem, 6.5vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}
h1 .accent {
  color: var(--copper);
}

.lede {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ── Stats ticker ── */
.stats-ticker {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}
.stat-item {
  padding: 14px 16px;
  border: 1px solid rgba(21, 21, 18, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  transition:
    transform 200ms,
    box-shadow 200ms;
}
.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
}
.stat-label {
  display: block;
  margin-top: 4px;
  color: var(--quiet);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* ── Alert card ── */
.alert-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(150deg, rgba(14, 63, 58, 0.98), rgba(25, 78, 68, 0.92)),
    var(--green);
  color: #f9f0df;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(14, 63, 58, 0.3),
    0 0 60px -10px rgba(14, 63, 58, 0.25);
  animation: card-glow 4s ease-in-out infinite alternate;
}
@keyframes card-glow {
  0% {
    box-shadow:
      var(--shadow-lg),
      0 0 0 1px rgba(14, 63, 58, 0.3),
      0 0 40px -10px rgba(14, 63, 58, 0.15);
  }
  100% {
    box-shadow:
      var(--shadow-lg),
      0 0 0 1px rgba(14, 63, 58, 0.3),
      0 0 80px -10px rgba(14, 63, 58, 0.35);
  }
}

.alert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 234, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 234, 216, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.alert-inner {
  position: relative;
  z-index: 1;
}

.alert-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.status-pill {
  padding: 7px 12px;
  border: 1px solid rgba(246, 234, 216, 0.16);
  border-radius: 999px;
  color: #f9d0b4;
  background: rgba(246, 234, 216, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.alert-title {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-family: "Libre Baskerville", Georgia, serif;
}
.alert-title span {
  color: var(--copper-light);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.fact {
  padding: 14px;
  border: 1px solid rgba(246, 234, 216, 0.12);
  border-radius: 16px;
  background: rgba(246, 234, 216, 0.07);
  transition: background 200ms;
}
.fact:hover {
  background: rgba(246, 234, 216, 0.12);
}

.fact small {
  display: block;
  color: rgba(249, 240, 223, 0.55);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.fact strong {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.alert-note {
  margin: 16px 0 0;
  color: rgba(249, 240, 223, 0.65);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ── Scroll chevron ── */
.scroll-hint {
  display: flex;
  justify-content: center;
  padding: 16px 0 0;
  animation: bob 2s ease-in-out infinite;
}
.scroll-hint svg {
  opacity: 0.35;
  transition: opacity 200ms;
}
.scroll-hint:hover svg {
  opacity: 0.6;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ── Social proof strip ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 0;
  color: var(--quiet);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.trust-bar .divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
}

/* ── Section shared ── */
section {
  padding: 60px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.kicker {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-top: 10px;
  max-width: 820px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.05rem, 4.8vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-head p,
.muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

/* ── "Who it's for" cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: var(--shadow-sm);
  transition:
    transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 320ms ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
}
.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.15rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
}
.card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

/* ── Workflow timeline ── */
.workflow {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 20px;
  align-items: start;
}

.workflow-aside {
  position: sticky;
  top: 80px;
  padding: 28px;
}

.steps {
  display: grid;
  gap: 0;
  position: relative;
}

/* Vertical connector line */
.steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, var(--copper), var(--green));
  border-radius: 2px;
  opacity: 0.3;
}

.step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 24px;
  transition:
    border-color 200ms,
    background 200ms;
  position: relative;
  z-index: 1;
}
.step:hover {
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.6);
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: var(--paper);
  background: var(--green);
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(14, 63, 58, 0.18);
  transition:
    transform 200ms,
    box-shadow 200ms;
}
.step:hover .step-number {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(14, 63, 58, 0.25);
}

.step h3 {
  margin-top: 2px;
  font-size: 1.02rem;
}
.step p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

/* ── Proof section ── */
.proof-board {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
}
.proof-list {
  display: grid;
  gap: 12px;
}

.proof-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.72);
  transition:
    transform 200ms,
    box-shadow 200ms;
}
.proof-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.proof-item span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.proof-item strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
}
.proof-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.proof-item .dollar {
  color: var(--copper);
  font-weight: 800;
}

.source-card {
  padding: 28px;
}
.source-card h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.source-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.source-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.source-card li {
  padding: 12px 16px;
  border: 1px solid rgba(21, 21, 18, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.94rem;
  transition: background 200ms;
}
.source-card li:hover {
  background: rgba(255, 255, 255, 0.65);
}

/* ── Security band ── */
.security-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-lg);
  color: #f9f0df;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(215, 111, 63, 0.2),
      transparent 24rem
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(14, 63, 58, 0.15),
      transparent 20rem
    ),
    linear-gradient(135deg, #123c39, #0a2725);
  overflow: hidden;
  position: relative;
}
.security-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 234, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 234, 216, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.security-band > * {
  position: relative;
  z-index: 1;
}
.security-band h2 {
  color: #fff7e9;
}
.security-band p {
  color: rgba(249, 240, 223, 0.76);
}
.security-band .kicker {
  color: var(--copper-light);
}

.security-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.security-points div {
  padding: 16px;
  border: 1px solid rgba(249, 240, 223, 0.14);
  border-radius: 18px;
  background: rgba(249, 240, 223, 0.07);
  transition: background 200ms;
}
.security-points div:hover {
  background: rgba(249, 240, 223, 0.12);
}
.security-points strong {
  display: block;
  font-size: 0.95rem;
}
.security-points span {
  display: block;
  margin-top: 6px;
  color: rgba(249, 240, 223, 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── CTA section ── */
.cta-section {
  position: relative;
  padding: 54px 40px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(215, 111, 63, 0.08),
      transparent 32rem
    ),
    rgba(255, 250, 240, 0.78);
}
.cta-section h2 {
  margin: 0 auto;
}
.cta-section p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.7;
}
.cta-section .hero-actions {
  justify-content: center;
}
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(215, 111, 63, 0.08);
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── Request form ── */
.request-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: start;
  padding-top: 10px;
}

.request-copy {
  padding: 10px 0;
}
.request-copy h2 {
  margin-top: 12px;
}
.request-copy p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.direct-contact {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.7);
  color: var(--muted);
  font-size: 0.88rem;
}
.direct-contact a {
  margin-left: 6px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
}
.request-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.request-form label.full,
.request-form .form-note,
.request-form button {
  grid-column: 1 / -1;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 21, 18, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 14px 15px;
  outline: none;
  transition:
    border-color 160ms,
    box-shadow 160ms,
    background 160ms;
}
.request-form textarea {
  resize: vertical;
  min-height: 116px;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: rgba(14, 63, 58, 0.46);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 4px rgba(14, 63, 58, 0.1);
}
.request-form button {
  width: fit-content;
}
.request-form button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}
.form-note {
  margin: -2px 0 0;
  color: var(--quiet);
  font-size: 0.8rem;
  line-height: 1.5;
}
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-success {
  display: none;
  grid-column: 1 / -1;
  padding: 16px 18px;
  border: 1px solid rgba(14, 63, 58, 0.16);
  border-radius: 18px;
  background: rgba(14, 63, 58, 0.08);
  color: var(--green);
}
.form-success strong,
.form-success span {
  display: block;
}
.form-success span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}
.request-form.submitted label,
.request-form.submitted button,
.request-form.submitted .form-note {
  display: none;
}
.request-form.submitted .form-success {
  display: block;
}

.thanks-card {
  margin: min(16vh, 120px) auto 0;
  max-width: 760px;
}

/* ── Rich footer ── */
.footer-wrap {
  border-top: 1px solid var(--line);
  margin-top: 20px;
}
.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  padding: 48px 0 36px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms;
}
.footer a:hover {
  color: var(--ink);
}
.footer-brand {
  font-weight: 800;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-col h4 {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.82rem;
}
.footer-badges {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--quiet);
}

/* ── Scroll reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 80ms;
}
.reveal-delay-2 {
  transition-delay: 160ms;
}
.reveal-delay-3 {
  transition-delay: 240ms;
}
.reveal-delay-4 {
  transition-delay: 320ms;
}
.reveal-delay-5 {
  transition-delay: 400ms;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero,
  .section-head,
  .workflow,
  .proof-board,
  .security-band,
  .request-section {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 10px;
  }
  .stats-ticker,
  .cards,
  .security-points {
    grid-template-columns: 1fr;
  }
  .workflow-aside {
    position: static;
  }
  .footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .steps::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 20px, 1180px);
  }
  .hero-copy,
  .alert-card,
  .cta-section,
  .security-band {
    border-radius: 22px;
    padding: 22px;
  }
  .brand-logo {
    width: 82px;
    border-radius: 11px;
  }
  .request-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .fact-grid,
  .security-points {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.7rem;
  }
  section {
    padding: 40px 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
