:root {
  color-scheme: light;
  --bg: #f3f6f4;
  --surface: #ffffff;
  --surface-muted: #eaf0ed;
  --ink: #111a1d;
  --ink-soft: #52605f;
  --ink-muted: #77817f;
  --line: #d6e0dc;
  --navy: #0e1b1c;
  --navy-2: #13282a;
  --green: #146f5b;
  --green-bright: #1db58a;
  --cyan: #2e9aa0;
  --blue: #235f89;
  --shadow: 0 24px 70px rgba(14, 27, 28, 0.12);
  --shadow-soft: 0 10px 34px rgba(14, 27, 28, 0.07);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fbfcfb 0, var(--bg) 520px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(214, 224, 220, 0.82);
  background: rgba(246, 248, 246, 0.86);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  background: var(--navy);
  color: #f7fbf7;
  font-size: 18px;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--green-bright);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}

.brand-name {
  font-size: 16px;
}

.brand-sub {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  display: block;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.nav-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::before {
  opacity: 0;
}

.nav-open .nav-toggle-lines::after {
  transform: translateY(-2px) rotate(-90deg);
}

.site-nav {
  position: fixed;
  inset: 72px 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nav-open .site-nav {
  display: flex;
}

.site-nav a {
  min-height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--surface-muted);
  color: var(--ink);
}

.service-link {
  color: var(--green) !important;
}

.main {
  overflow: hidden;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-dark {
  background:
    linear-gradient(135deg, #0e1b1c, #13282a);
  color: #f7fbf7;
}

.section-white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 250, 0.96)),
    var(--surface);
}

.section-muted {
  background:
    linear-gradient(180deg, var(--surface-muted), #f7faf8);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 72px);
  padding: 72px 0 44px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 23, 24, 0.22), rgba(10, 23, 24, 0.84)),
    #0d1b1d;
  color: #f7fbf7;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(100, 214, 207, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(100, 214, 207, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 86px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(13, 27, 29, 0), var(--bg));
}

.hero-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.92;
}

.hero-field svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-field path {
  fill: none;
  stroke: rgba(100, 214, 207, 0.34);
  stroke-width: 1.2;
}

.field-node {
  position: absolute;
  display: none;
  min-width: 78px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(247, 251, 247, 0.08);
  color: rgba(247, 251, 247, 0.76);
  padding: 9px 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.field-node-a {
  left: 7%;
  top: 28%;
}

.field-node-b {
  left: 13%;
  top: 50%;
}

.field-node-c {
  left: 8%;
  top: 70%;
}

.field-node-d {
  right: 10%;
  top: 27%;
}

.field-node-e {
  right: 7%;
  top: 50%;
}

.field-node-f {
  right: 12%;
  top: 70%;
}

.hero-grid,
.split-grid,
.statement-grid,
.ceo-grid,
.contact-grid {
  display: grid;
  gap: 32px;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow {
  color: #64d6cf;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 43px;
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  color: #f7fbf7;
}

.hero h1,
.page-hero h1 {
  color: #f7fbf7;
}

.lead {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero .lead,
.page-hero .lead {
  color: #cbd7d5;
}

.section-dark .lead,
.section-dark p,
.section-dark .muted {
  color: #c9d5d3;
}

.muted {
  color: var(--ink-soft);
}

.copy-block {
  max-width: 780px;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: #137d67;
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(20, 111, 91, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #0f5f4e;
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.hero .button-primary {
  background: #1db58a;
  color: #061313;
  box-shadow: 0 20px 54px rgba(29, 181, 138, 0.26);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: #40d4aa;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f7fbf7;
  backdrop-filter: blur(12px);
}

.section-dark .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.button-icon {
  font-weight: 900;
}

.hero-panel,
.visual-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.visual-panel {
  padding: 18px;
}

.hero-panel {
  padding: 18px;
}

.hero-dashboard {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(7, 19, 20, 0.54);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(100, 214, 207, 0.12);
  border-radius: var(--radius);
}

.hero-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(100, 214, 207, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(100, 214, 207, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.72;
}

.dashboard-topline,
.dashboard-core,
.automation-steps,
.pipeline-grid,
.pipeline-center,
.hero-dashboard .visual-caption {
  position: relative;
  z-index: 1;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #9eb7b3;
  font-size: 12px;
  font-weight: 800;
}

.dashboard-core {
  width: 160px;
  height: 118px;
  margin: 0 auto;
  border: 1px solid rgba(100, 214, 207, 0.42);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  background: #1db58a;
  color: #071716;
  box-shadow: 0 20px 64px rgba(29, 181, 138, 0.28);
}

.dashboard-core span {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.dashboard-core small {
  font-size: 12px;
  font-weight: 800;
}

.automation-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.automation-steps span {
  border: 1px solid rgba(100, 214, 207, 0.18);
  border-radius: var(--radius);
  background: rgba(14, 27, 28, 0.72);
  color: #cde3df;
  padding: 7px 5px;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: minmax(116px, 1fr) minmax(160px, 1fr) minmax(116px, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 210px;
}

.pipeline-column {
  display: grid;
  gap: 12px;
}

.pipeline-column span {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(247, 251, 247, 0.88);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
}

.pipeline-column-right span {
  background: rgba(255, 255, 255, 0.1);
  color: #f7fbf7;
}

.pipeline-center {
  min-height: 178px;
  display: grid;
  place-items: center;
}

.pipeline-center::before,
.pipeline-center::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(100, 214, 207, 0.15), #64d6cf, rgba(100, 214, 207, 0.15));
}

.pipeline-center::before {
  top: 44%;
}

.pipeline-center::after {
  top: 58%;
}

.pipeline-center .dashboard-core {
  z-index: 1;
}

.hero-dashboard .visual-caption {
  margin: 0;
  color: #b8c8c5;
}

.network-visual {
  min-height: 420px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 111, 91, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(35, 95, 137, 0.08) 1px, transparent 1px),
    #f9fbfa;
  background-size: 36px 36px;
}

.network-visual svg {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.visual-caption {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.metric-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 34px;
}

.metric {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
  backdrop-filter: blur(12px);
}

.metric strong {
  display: block;
  color: #f7fbf7;
  font-size: 22px;
  line-height: 1.1;
}

.metric span {
  color: #aebfbc;
  font-size: 13px;
  font-weight: 700;
}

.issue-grid,
.belief-grid,
.keyword-grid,
.principle-grid,
.footer-grid {
  display: grid;
  gap: 14px;
}

.issue-card,
.belief-card,
.keyword-card,
.principle-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 251, 0.96));
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.issue-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.issue-card::before,
.belief-card::before,
.keyword-card::before,
.principle-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.issue-card::before {
  position: absolute;
  left: 20px;
  top: 0;
  margin: 0;
}

.issue-dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #e0f3ee;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.issue-card p,
.belief-card p,
.principle-card p,
.keyword-card p {
  margin: 0;
  color: var(--ink-soft);
}

.diagram-stack {
  display: grid;
  gap: 14px;
}

.data-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(14, 27, 28, 0.05);
}

.data-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.data-lines {
  display: grid;
  gap: 8px;
}

.data-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #dfe8e5;
}

.data-lines span:nth-child(2) {
  width: 76%;
}

.data-lines span:nth-child(3) {
  width: 58%;
}

.data-layer {
  border-color: rgba(29, 181, 138, 0.34);
  background: #e8f6f1;
}

.data-layer .data-lines span {
  background: rgba(20, 111, 91, 0.24);
}

.quote-panel {
  border-left: 4px solid var(--green-bright);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--navy);
  color: #f7fbf7;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: var(--shadow);
}

.page-hero {
  position: relative;
  isolation: isolate;
  padding: 78px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 27, 28, 0.96), rgba(19, 40, 42, 0.96)),
    var(--navy);
  color: #f7fbf7;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(100, 214, 207, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(100, 214, 207, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0, #000 58%, transparent 100%);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.belief-card,
.principle-card {
  min-height: 190px;
}

.card-index {
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  font-weight: 900;
}

.vision-flow {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(20, 111, 91, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(35, 95, 137, 0.05) 1px, transparent 1px),
    var(--surface);
  background-size: 38px 38px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.vision-flow svg {
  width: 100%;
  min-height: 320px;
}

.keyword-card {
  min-height: 112px;
}

.keyword-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.ceo-profile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f8fbfa);
  padding: 28px;
  box-shadow: var(--shadow);
}

.portrait-card {
  min-height: 360px;
  border-radius: var(--radius);
  display: grid;
  align-content: end;
  padding: 28px;
  color: #f7fbf7;
  background:
    linear-gradient(135deg, rgba(20, 111, 91, 0.9), rgba(35, 95, 137, 0.42)),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  overflow: hidden;
  position: relative;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.portrait-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border: 1px solid rgba(100, 214, 207, 0.42);
  border-radius: 999px;
}

.portrait-initials {
  position: relative;
  z-index: 1;
  margin-bottom: 58px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.portrait-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #d7e5e2;
  font-weight: 700;
}

.message-panel {
  border: 1px solid rgba(29, 181, 138, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #eef9f5, #ffffff);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.message-panel p:last-child {
  margin-bottom: 0;
}

.contact-panel {
  padding: 26px;
}

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

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

.field {
  display: grid;
  gap: 8px;
}

.hidden-field {
  display: none;
}

.field label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
  color: var(--ink);
  padding: 12px 13px;
  min-height: 48px;
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(29, 181, 138, 0.13);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f8fbfa);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.contact-note ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.contact-email {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-email a {
  color: var(--green);
}

.cta-band {
  border-top: 1px solid rgba(100, 214, 207, 0.16);
  border-bottom: 1px solid rgba(100, 214, 207, 0.16);
  background:
    linear-gradient(135deg, #0e1b1c, #13282a);
  color: #f7fbf7;
}

.cta-band h2 {
  color: #f7fbf7;
}

.cta-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.cta-band-inner {
  display: grid;
  gap: 22px;
  align-items: center;
}

.site-footer {
  padding: 48px 0 34px;
  background: var(--navy);
  color: #d7e5e2;
}

.site-footer a {
  color: #d7e5e2;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-grid {
  gap: 28px;
}

.footer-brand .brand {
  color: #ffffff;
}

.footer-brand .brand-mark {
  background: #ffffff;
  color: var(--navy);
}

.footer-brand p {
  max-width: 440px;
  margin: 18px 0 0;
  color: #b7c7c4;
}

.footer-column h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #9fb0ad;
  font-size: 13px;
}

@media (min-width: 640px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .button {
    min-width: 168px;
  }

  .metric-strip,
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .issue-grid,
  .belief-grid,
  .keyword-grid,
  .principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 40px;
    padding: 8px 11px;
  }

  .hero {
    padding: 104px 0 74px;
  }

  .hero h1 {
    font-size: 62px;
    line-height: 1.02;
  }

  .section {
    padding: 96px 0;
  }

  .page-hero {
    padding: 96px 0 56px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.84fr);
    align-items: center;
    gap: 54px;
  }

  .split-grid,
  .statement-grid,
  .ceo-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .statement-grid {
    align-items: center;
  }

  .ceo-grid {
    grid-template-columns: 380px minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  }

  .cta-band-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(140px, 0.5fr) minmax(190px, 0.7fr);
  }
}

@media (min-width: 1100px) {
  .issue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 520px) {
  .hero-dashboard {
    min-height: 0;
    gap: 14px;
    padding: 18px;
  }

  .dashboard-topline {
    padding: 0;
    align-items: flex-start;
  }

  .dashboard-core {
    width: 126px;
    height: 92px;
    margin: 0 auto;
  }

  .dashboard-core span {
    font-size: 22px;
  }

  .pipeline-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .pipeline-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pipeline-center {
    min-height: 110px;
  }

  .pipeline-center::before,
  .pipeline-center::after {
    left: 12%;
    right: 12%;
  }

  .pipeline-column span {
    min-height: 36px;
    padding: 0 6px;
    font-size: 11px;
  }

  .automation-steps {
    gap: 5px;
  }

  .automation-steps span {
    padding: 6px 3px;
    font-size: 10px;
  }

  .hero-dashboard .visual-caption {
    font-size: 12px;
  }
}

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