:root {
  --paper: #f7f4ee;
  --ink: #17211c;
  --leaf: #2f6b4f;
  --pulse: #c75d4d;
  --mist: #dde7e1;
  --aqua: #5a9c9b;
  --line: rgba(23, 33, 28, 0.16);
  --panel: #fffdf8;
  --shadow: 0 18px 45px rgba(23, 33, 28, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--leaf);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

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

:focus-visible {
  outline: 3px solid rgba(90, 156, 155, 0.55);
  outline-offset: 3px;
}

.topbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px clamp(18px, 5vw, 56px);
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand-mark,
.pulse-mark {
  aspect-ratio: 1;
  border: 2px solid var(--leaf);
  border-radius: 999px;
  display: inline-block;
  position: relative;
}

.brand-mark {
  width: 24px;
}

.brand-mark::after,
.pulse-mark::after {
  background: var(--pulse);
  border-radius: 999px;
  content: "";
  height: 22%;
  position: absolute;
  right: -2px;
  top: 18%;
  width: 22%;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.nav-links a,
.link-button {
  color: var(--ink);
  font-size: 0.94rem;
  text-decoration: none;
}

.nav-links a.active {
  color: var(--leaf);
  font-weight: 800;
}

.inline-form {
  display: inline;
}

.link-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.page {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(24px, 5vw, 58px) clamp(18px, 5vw, 56px);
}

.page.narrow {
  max-width: 760px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  min-height: calc(100svh - 132px);
}

.hero .pulse-mark {
  left: clamp(18px, 6vw, 90px);
  position: absolute;
  top: 120px;
  width: clamp(80px, 15vw, 160px);
  z-index: -1;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.3rem, 7vw, 5.7rem);
  margin: 0 0 20px;
}

.panel h1,
.dashboard-head h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0 0 16px;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 720px;
}

.muted,
.footer {
  color: rgba(23, 33, 28, 0.68);
}

.actions,
.grid,
.stats-grid {
  display: grid;
  gap: 16px;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  align-items: center;
  background: var(--leaf);
  border: 1px solid var(--leaf);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--leaf);
}

.button.small {
  min-height: 36px;
  padding: 7px 12px;
}

.access-panel,
.panel,
.pulse-card,
.action-tile,
.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.access-panel,
.panel {
  padding: clamp(20px, 4vw, 34px);
}

.mini-metrics,
.detail-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.mini-metrics div,
.detail-list div {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

dt {
  color: rgba(23, 33, 28, 0.66);
}

dd {
  font-weight: 800;
  margin: 0;
}

.dashboard-head {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.dashboard-head .pulse-mark {
  flex: 0 0 auto;
  width: clamp(64px, 12vw, 120px);
}

.pulse-card {
  align-items: center;
  display: grid;
  gap: 8px;
  max-width: 340px;
  padding: 22px;
}

.pulse-card .pulse-mark,
.small-pulse {
  width: 52px;
}

.actions-grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.action-tile {
  color: var(--ink);
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 22px;
  text-decoration: none;
}

.action-tile span,
.stat span {
  color: rgba(23, 33, 28, 0.68);
}

.badge {
  background: var(--mist);
  border-radius: 999px;
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  padding: 3px 9px;
}

.stat {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.stat strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 2rem;
}

.stack-form {
  display: grid;
  gap: 16px;
}

.inline-grid-form {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

label {
  color: rgba(23, 33, 28, 0.76);
  display: grid;
  font-weight: 700;
  gap: 6px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox {
  align-items: center;
  display: flex;
  gap: 10px;
}

.checkbox input {
  min-height: auto;
  width: auto;
}

.notice,
.safety,
.live-status {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}

.notice {
  background: var(--mist);
}

.notice.success {
  border-color: rgba(47, 107, 79, 0.35);
}

.notice.error {
  border-color: rgba(199, 93, 77, 0.45);
}

.safety {
  background: rgba(199, 93, 77, 0.08);
}

.content-list {
  display: grid;
  gap: 18px;
}

.content-item p {
  white-space: pre-wrap;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  color: rgba(23, 33, 28, 0.66);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.simple-list,
.message-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.simple-list li,
.message-list li {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.message-list span {
  color: rgba(23, 33, 28, 0.6);
  display: block;
  font-size: 0.84rem;
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.footer {
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  margin: 20px auto 0;
  max-width: 1180px;
  padding: 22px clamp(18px, 5vw, 56px) 36px;
}

@media (max-width: 860px) {
  .topbar,
  .dashboard-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .actions-grid,
  .stats-grid,
  .inline-grid-form,
  .two {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero .pulse-mark {
    position: static;
  }
}

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

/* Public landing polish */
html:has(body.landing-body),
body.landing-body {
  scrollbar-color: rgba(143, 191, 143, 0.72) #050505;
  scrollbar-width: thin;
}

html:has(body.landing-body)::-webkit-scrollbar,
html:has(body.landing-body) *::-webkit-scrollbar,
body.landing-body::-webkit-scrollbar,
body.landing-body *::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

html:has(body.landing-body)::-webkit-scrollbar-track,
html:has(body.landing-body) *::-webkit-scrollbar-track,
body.landing-body::-webkit-scrollbar-track,
body.landing-body *::-webkit-scrollbar-track {
  background: #050505;
}

html:has(body.landing-body)::-webkit-scrollbar-thumb,
html:has(body.landing-body) *::-webkit-scrollbar-thumb,
body.landing-body::-webkit-scrollbar-thumb,
body.landing-body *::-webkit-scrollbar-thumb {
  background: #8fbf8f;
  border: 2px solid #050505;
  border-radius: 999px;
}

html:has(body.landing-body)::-webkit-scrollbar-thumb:hover,
html:has(body.landing-body) *::-webkit-scrollbar-thumb:hover,
body.landing-body::-webkit-scrollbar-thumb:hover,
body.landing-body *::-webkit-scrollbar-thumb:hover {
  background: #f4df75;
}

.landing-body {
  --landing-bg: #050505;
  --landing-bg-soft: #0d0d0b;
  --landing-surface: #12120f;
  --landing-surface-warm: #1a1813;
  --landing-ivory: #f3efe5;
  --landing-beige: #d9ccc1;
  --landing-stone: #a9a094;
  --landing-green: #8fbf8f;
  --landing-green-deep: #183b2c;
  --landing-yellow: #f4df75;
  --landing-orange-signal: #ff6a00;
  --landing-border: rgba(217, 204, 193, 0.18);
  --landing-line: rgba(243, 239, 229, 0.28);
  background:
    linear-gradient(180deg, #050505 0%, #0d0d0b 42%, #12120f 100%);
  color: var(--landing-ivory);
  color-scheme: dark;
}

.landing-body a {
  color: var(--landing-green);
}

.landing-body h1,
.landing-body h2,
.landing-body h3 {
  color: var(--landing-ivory);
}

.landing-body .button,
.landing-body button,
.landing-button {
  line-height: 1.15;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

.landing-topbar,
.landing-hero,
.landing-section,
.landing-footer {
  margin: 0 auto;
  max-width: 1280px;
}

.landing-topbar,
.landing-nav,
.landing-actions,
.landing-footer__top {
  min-width: 0;
}

.landing-topbar {
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--landing-border);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 58px);
  position: relative;
  z-index: 10;
}

.landing-brand {
  align-items: center;
  color: var(--landing-ivory);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.landing-brand__mark {
  align-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--landing-yellow);
  color: var(--landing-yellow);
  display: inline-flex;
  flex: 0 0 40px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  justify-content: center;
}

.landing-brand span:last-child {
  overflow-wrap: anywhere;
}

.landing-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.landing-nav a {
  color: var(--landing-beige);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.landing-nav__button {
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  color: var(--landing-ivory) !important;
  padding: 9px 12px;
}

.landing-main {
  overflow: hidden;
}

.landing-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 48%, rgba(5, 5, 5, 0.56) 100%),
    repeating-linear-gradient(90deg, rgba(243, 239, 229, 0.055) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(243, 239, 229, 0.04) 0 1px, transparent 1px 88px);
  border-bottom: 1px solid var(--landing-border);
  display: flex;
  isolation: isolate;
  min-height: clamp(560px, 74svh, 680px);
  overflow: hidden;
  padding: 44px clamp(18px, 5vw, 58px) 40px;
  position: relative;
}

.landing-hero::after {
  background: var(--landing-yellow);
  content: "";
  height: 76%;
  opacity: 0.45;
  position: absolute;
  right: clamp(250px, 33vw, 430px);
  top: 12%;
  width: 1px;
  z-index: 1;
}

.landing-hero__field {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.landing-hero__field img {
  bottom: -42px;
  height: min(790px, 108%);
  opacity: 0.76;
  position: absolute;
  right: -56px;
  width: min(760px, 64vw);
}

.landing-hero__copy {
  max-width: 690px;
  min-width: 0;
  position: relative;
  width: min(62%, 690px);
  z-index: 3;
}

.landing-brandline,
.landing-eyebrow,
.landing-kicker,
.landing-section__number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-brandline {
  color: var(--landing-ivory);
  margin: 0 0 10px;
}

.landing-eyebrow,
.landing-kicker {
  color: var(--landing-yellow);
  margin: 0 0 12px;
}

.landing-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.96;
  margin: 0 0 22px;
  max-width: 760px;
}

.landing-lead {
  color: var(--landing-beige);
  font-size: 1.16rem;
  line-height: 1.58;
  margin: 0;
  max-width: 650px;
}

.landing-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  max-width: 100%;
}

.landing-button {
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 18px;
}

.landing-button--primary {
  background: var(--landing-ivory);
  border-color: var(--landing-ivory);
  color: var(--landing-bg);
}

.landing-button--secondary {
  background: rgba(24, 59, 44, 0.42);
  border-color: rgba(143, 191, 143, 0.38);
  color: var(--landing-ivory);
}

.landing-helper {
  color: rgba(217, 204, 193, 0.72);
  font-size: 0.94rem;
  margin: 14px 0 0;
}

.landing-portrait {
  bottom: 0;
  margin: 0;
  position: absolute;
  right: clamp(24px, 5vw, 70px);
  width: min(34vw, 400px);
  z-index: 2;
}

.landing-portrait::before {
  border: 1px solid var(--landing-line);
  content: "";
  inset: 18px 18px -18px -18px;
  position: absolute;
}

.landing-portrait img {
  background: var(--landing-bg-soft);
  border: 1px solid var(--landing-border);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.46);
  display: block;
  max-height: 590px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  width: 100%;
}

.landing-portrait figcaption {
  background: rgba(18, 18, 15, 0.9);
  border: 1px solid var(--landing-border);
  bottom: 20px;
  color: var(--landing-ivory);
  font-weight: 900;
  left: -24px;
  padding: 9px 12px;
  position: absolute;
}

.landing-signal {
  background: rgba(18, 18, 15, 0.86);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  color: var(--landing-beige);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  max-width: min(230px, calc(100vw - 40px));
  overflow-wrap: anywhere;
  padding: 10px 13px;
  position: absolute;
  text-transform: uppercase;
  white-space: normal;
  z-index: 4;
}

.landing-signal--one {
  right: clamp(314px, 35vw, 500px);
  top: 23%;
}

.landing-signal--two {
  border-color: rgba(244, 223, 117, 0.34);
  color: var(--landing-yellow);
  right: clamp(42px, 7vw, 100px);
  top: 18%;
}

.landing-signal--three {
  border-color: rgba(143, 191, 143, 0.38);
  color: var(--landing-green);
  bottom: 15%;
  right: clamp(260px, 31vw, 440px);
}

.landing-section {
  border-bottom: 1px solid rgba(243, 239, 229, 0.09);
  padding: 68px clamp(18px, 5vw, 58px);
}

.landing-section__heading {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: 68px minmax(0, 1fr);
  margin-bottom: 24px;
  max-width: 900px;
}

.landing-section__number {
  border-top: 1px solid var(--landing-line);
  color: var(--landing-green);
  padding-top: 12px;
}

.landing-section h2,
.landing-authority h2,
.landing-final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
  max-width: 780px;
}

.landing-section__copy {
  color: var(--landing-beige);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
  max-width: 820px;
}

.landing-dci {
  background:
    linear-gradient(180deg, rgba(26, 24, 19, 0.42), rgba(18, 18, 15, 0.16));
}

.landing-card-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

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

.landing-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.landing-card {
  background: rgba(217, 204, 193, 0.065);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  min-height: 170px;
  min-width: 0;
  overflow: hidden;
  padding: 22px;
}

.landing-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.06rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.landing-card p {
  color: var(--landing-stone);
  margin: 0;
}

.landing-area {
  background:
    linear-gradient(90deg, rgba(24, 59, 44, 0.22), transparent 54%);
}

.landing-safety-line {
  border-left: 2px solid var(--landing-yellow);
  color: var(--landing-beige);
  margin: 26px 0 0;
  max-width: 850px;
  padding-left: 14px;
}

.landing-authority {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
}

.landing-authority__copy p {
  color: var(--landing-beige);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 760px;
}

.landing-authority__panel {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(217, 204, 193, 0.12), rgba(143, 191, 143, 0.08));
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  display: grid;
  gap: 0;
  min-width: 0;
  overflow: hidden;
}

.landing-authority__panel span {
  border-bottom: 1px solid rgba(243, 239, 229, 0.12);
  color: var(--landing-ivory);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 18px 20px;
  text-transform: uppercase;
}

.landing-authority__panel span:last-child {
  border-bottom: 0;
}

.landing-final-cta {
  background:
    linear-gradient(180deg, rgba(26, 24, 19, 0.7), rgba(5, 5, 5, 0));
  text-align: center;
}

.landing-final-cta h2 {
  margin: 0 auto;
}

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

.landing-footer {
  border-top: 1px solid var(--landing-border);
  color: var(--landing-stone);
  padding: 26px clamp(18px, 5vw, 58px) 38px;
}

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

.landing-footer strong,
.landing-footer span {
  display: block;
}

.landing-footer strong {
  color: var(--landing-ivory);
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.landing-footer p {
  margin: 0;
  max-width: 900px;
}

.landing-topbar a:focus-visible,
.landing-button:focus-visible,
.landing-footer a:focus-visible {
  outline: 2px solid var(--landing-yellow);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .landing-hero {
    min-height: 610px;
  }

  .landing-hero__copy {
    width: min(70%, 650px);
  }

  .landing-hero h1 {
    font-size: 3.75rem;
  }

  .landing-hero__field img {
    opacity: 0.55;
    right: -120px;
    width: 650px;
  }

  .landing-portrait {
    opacity: 0.68;
    right: -30px;
    width: 320px;
  }

  .landing-portrait figcaption {
    display: none;
  }

  .landing-signal--one,
  .landing-signal--two,
  .landing-signal--three {
    right: 24px;
  }

  .landing-signal--one {
    top: 198px;
  }

  .landing-signal--two {
    top: 250px;
  }

  .landing-signal--three {
    bottom: auto;
    top: 302px;
  }

  .landing-card-grid--three,
  .landing-card-grid--five,
  .landing-authority {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-topbar {
    align-items: flex-start;
    display: grid;
    gap: 14px;
  }

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

  .landing-hero {
    align-items: flex-start;
    min-height: 560px;
    padding-bottom: 112px;
    padding-top: 34px;
  }

  .landing-hero::after {
    display: none;
  }

  .landing-hero__field img {
    bottom: 0;
    opacity: 0.4;
    right: -170px;
    width: 540px;
  }

  .landing-hero__copy {
    width: 100%;
  }

  .landing-hero h1 {
    font-size: 2.72rem;
    line-height: 1.02;
  }

  .landing-lead {
    font-size: 1rem;
  }

  .landing-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .landing-button {
    min-height: 46px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }

  .landing-portrait {
    bottom: -106px;
    opacity: 0.38;
    right: -24px;
    width: 230px;
  }

  .landing-portrait::before {
    display: none;
  }

  .landing-signal {
    display: none;
  }

  .landing-section {
    padding-bottom: 46px;
    padding-top: 46px;
  }

  .landing-section__heading {
    grid-template-columns: 1fr;
  }

  .landing-section__number {
    width: 68px;
  }

  .landing-section h2,
  .landing-authority h2,
  .landing-final-cta h2 {
    font-size: 2rem;
  }

  .landing-card {
    min-height: 0;
  }

  .landing-footer__top {
    align-items: start;
    display: grid;
  }

  .landing-footer nav {
    justify-content: flex-start;
  }
}
