:root {
  color-scheme: light;
  --ink: #101927;
  --muted: #4b5a6a;
  --line: #d6dee8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --bubble-bg: linear-gradient(180deg, rgba(235, 243, 251, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  --bubble-line: #d9e5f0;
  --accent: #1d5f9c;
  --accent-deep: #123a62;
  --accent-soft: #e9f3fb;
  --bg: radial-gradient(circle at 14% 18%, #d7ebff 0%, #f7f9fc 38%, #edf2f7 100%);
  font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.45;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  padding: 1rem;
}

.page {
  max-width: 1280px;
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0 1.4rem;
}

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

.brand-copy {
  display: grid;
  gap: 0.05rem;
  padding-left: 0.28rem;
}

.brand-copy strong {
  font-size: 1.16rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: #24405b;
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav .cta-link {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid #b8cadc;
  background: rgba(255, 255, 255, 0.75);
}

.hero,
.feature-block,
.contact-shell,
.message-panel,
.solution-proof,
.solution-row,
.purpose-row,
.solutions-intro,
.home-directive,
.footer-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  backdrop-filter: blur(8px);
}

.hero {
  padding: 1.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.78fr);
  gap: 1.75rem;
  align-items: start;
}

.hero.hero-single {
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  font-weight: 800;
  color: #4b6278;
  display: block;
}

.hero h1,
.page-title,
.panel-title {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 24ch;
  text-wrap: balance;
}

.hero p,
.prose,
.lead,
.detail-copy,
.list-copy,
.contact-copy {
  margin: 0;
  color: #264157;
  font-size: 1.02rem;
}

.lead {
  max-width: 62ch;
}

.hero-aside {
  padding: 1.35rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(232, 242, 252, 0.92) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid #cfe0ef;
  display: grid;
  gap: 1rem;
}

.hero-aside h2,
.section-heading,
.solution-row h2,
.purpose-row h2,
.contact-shell h2,
.message-panel h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  line-height: 1.05;
}

.actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: #bfd0e0;
  color: var(--ink);
}

.section-stack {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.feature-block,
.home-directive,
.solutions-intro,
.solution-row,
.purpose-row,
.contact-shell,
.footer-panel {
  padding: 1.45rem;
}

.feature-grid,
.solution-grid,
.purpose-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid.two,
.solution-grid.two,
.purpose-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid.three,
.solution-grid.three,
.purpose-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-block,
.solution-row,
.purpose-row,
.solutions-intro,
.home-directive {
  display: grid;
  gap: 0.9rem;
}

.feature-block .eyebrow,
.solution-row .eyebrow,
.purpose-row .eyebrow,
.solutions-intro .eyebrow,
.home-directive .eyebrow,
.hero-copy .eyebrow,
.hero-aside .eyebrow,
.contact-shell .eyebrow,
.message-panel .eyebrow {
  margin-bottom: 0.2rem;
}

.feature-block .section-heading,
.solution-row h2,
.purpose-row h2,
.solutions-intro .page-title,
.home-directive .section-heading,
.hero-copy h1,
.hero-aside h2,
.contact-shell .page-title,
.message-panel h2 {
  margin-bottom: 0.3rem;
}

.bullets,
.example-list,
.solution-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: #183247;
}

.solution-proof {
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  background: var(--bubble-bg);
}

.strong-line {
  color: var(--ink);
  font-weight: 700;
}

.process-lines {
  display: grid;
  gap: 0.55rem;
}

.process-lines p {
  margin: 0;
  color: #183247;
  font-size: 1.02rem;
}

.solution-proof strong,
.kicker {
  color: #35506a;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solution-proof h3,
.solution-row h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.1;
}

.inline-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-shell {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.form-note {
  margin: 0;
  color: #56697d;
  font-size: 0.92rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: #213e57;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c7d6e6;
  border-radius: 0.95rem;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-status {
  border-radius: 0.95rem;
  padding: 0.85rem 1rem;
  font-weight: 600;
}

.form-status.error {
  background: #fee9ea;
  border: 1px solid #efc4c8;
  color: #8d1d25;
}

.form-status.success {
  background: #e8f7ed;
  border: 1px solid #bde1c7;
  color: #175d2b;
}

.hidden {
  display: none !important;
}

.site-footer {
  margin-top: 1rem;
  padding-bottom: 1.5rem;
}

.footer-panel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-panel p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #24405b;
  font-weight: 600;
}

.page-layout {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e5ebf2;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 25, 39, 0.08);
}

.page-hero,
.page-section,
.page-cta {
  padding: 3rem 3.25rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: center;
}

.page-hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}

.page-display {
  margin: 0;
  font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 500;
  max-width: 8.5ch;
}

.page-display.page-display-wide {
  max-width: 11ch;
}

.page-lead,
.page-copy,
.page-section-head p,
.page-card p,
.page-callout p,
.page-cta p,
.page-note p,
.contact-side-note p {
  margin: 0;
  color: #44586c;
}

.page-lead {
  font-size: 1.16rem;
  max-width: 34rem;
}

.page-copy {
  font-size: 1.02rem;
  max-width: 34rem;
}

.page-hero-art,
.page-note,
.page-callout,
.contact-form-wrap,
.contact-side-note {
  background: var(--bubble-bg);
  border: 1px solid var(--bubble-line);
  border-radius: 1.05rem;
  box-shadow: 0 14px 32px rgba(16, 25, 39, 0.08);
}

.page-hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  min-height: 19rem;
}

.page-hero-art img {
  width: 100%;
  max-width: 680px;
  display: block;
}

.page-note {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.page-note img {
  width: 100%;
  max-width: 340px;
  display: block;
  margin-left: auto;
}

.page-section,
.page-cta {
  border-top: 1px solid #e7edf4;
}

.page-section {
  display: grid;
  gap: 2rem;
}

.page-section-head {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 0.7rem;
}

.page-section-head-left {
  margin: 0;
  text-align: left;
}

.page-section-head h2,
.page-callout h2,
.page-cta h2,
.contact-side-note h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.page-grid,
.page-split,
.contact-form-layout {
  display: grid;
  gap: 1rem;
}

.page-logic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

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

.page-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-card {
  background: var(--bubble-bg);
  border: 1px solid var(--bubble-line);
  border-radius: 0.95rem;
  box-shadow: 0 10px 24px rgba(16, 25, 39, 0.08);
  padding: 1.35rem 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.page-logic-card {
  background: var(--bubble-bg);
  border: 1px solid var(--bubble-line);
  border-radius: 0.95rem;
  box-shadow: 0 10px 24px rgba(16, 25, 39, 0.08);
  min-height: 17.5rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.page-logic-copy {
  padding: 1.25rem 1.2rem 0;
  display: grid;
  gap: 0.6rem;
}

.page-logic-copy h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.page-logic-copy p {
  margin: 0;
  color: #44586c;
}

.page-logic-card img {
  width: 100%;
  height: 8.4rem;
  object-fit: cover;
  object-position: center;
  align-self: end;
  display: block;
  margin-top: 0.75rem;
}

.page-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.page-callout {
  padding: 1.5rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.page-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: #183247;
}

.page-cta {
  text-align: center;
}

.page-cta p {
  max-width: 36rem;
  margin: 0.75rem auto 0;
}

.page-cta .actions {
  justify-content: center;
  margin-top: 1rem;
}

.contact-layout {
  overflow: visible;
}

.contact-form-section {
  gap: 0;
}

.contact-form-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.68fr);
  align-items: start;
}

.contact-form-wrap {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-side-note {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.home-layout {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e5ebf2;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 25, 39, 0.08);
}

.home-hero-panel,
.home-definition,
.home-breaks,
.home-process,
.home-outcomes,
.home-final-cta {
  padding: 3rem 3.25rem;
}

.home-hero-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: center;
}

.home-hero-copy {
  display: grid;
  gap: 1.35rem;
  max-width: 26rem;
}

.home-hero-copy h1 {
  margin: 0;
  font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 500;
  max-width: 8.5ch;
}

.home-hero-lead {
  margin: 0;
  color: #33475c;
  font-size: 1.05rem;
}

.home-hero-art {
  display: flex;
  justify-content: center;
}

.home-hero-art img {
  width: 100%;
  max-width: 760px;
  display: block;
}

.home-definition,
.home-breaks,
.home-process,
.home-outcomes,
.home-final-cta {
  border-top: 1px solid #e7edf4;
}

.home-definition {
  text-align: center;
}

.home-definition p {
  margin: 0 auto;
  max-width: 46rem;
  color: #3f5368;
  font-size: 1.22rem;
  line-height: 1.7;
}

.home-system-grid,
.home-break-grid,
.home-outcome-grid {
  display: grid;
  gap: 1rem;
  padding: 0 3.25rem 3rem;
}

.home-system-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-system-card,
.home-break-card,
.home-outcome-card {
  background: var(--bubble-bg);
  border: 1px solid var(--bubble-line);
  border-radius: 0.95rem;
  box-shadow: 0 10px 24px rgba(16, 25, 39, 0.08);
}

.home-system-card {
  min-height: 17rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.home-system-copy {
  padding: 1.2rem 1.2rem 0;
  display: grid;
  gap: 0.6rem;
}

.home-system-copy h2,
.home-breaks h2,
.home-process h2,
.home-outcomes h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 2.1rem);
  line-height: 1.12;
  font-weight: 600;
}

.home-system-copy p,
.home-break-card p,
.home-final-cta p {
  margin: 0;
  color: #5d6f83;
}

.home-system-card img {
  width: 100%;
  height: 8.3rem;
  object-fit: cover;
  object-position: center;
  align-self: end;
  display: block;
  margin-top: 0.75rem;
}

.home-breaks,
.home-process,
.home-outcomes,
.home-final-cta {
  text-align: center;
}

.home-break-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 2rem;
}

.home-break-card {
  padding: 1.25rem 1.15rem;
  text-align: left;
  display: grid;
  gap: 0.85rem;
}

.home-break-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.home-process-flow {
  margin: 2.1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.home-process-step {
  min-width: 10.5rem;
  padding: 1.2rem 1.55rem;
  background: var(--bubble-bg);
  border: 1px solid var(--bubble-line);
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(16, 25, 39, 0.08);
  color: #2b67a4;
  font-size: 1.45rem;
  font-weight: 500;
}

.home-process-step.is-final {
  color: #33475c;
}

.home-process-arrow {
  color: #76a7d8;
  font-size: 2rem;
  line-height: 1;
}

.home-outcome-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 2rem;
}

.home-outcome-card {
  padding: 1.4rem 1.1rem;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #21364a;
  font-weight: 600;
}

.home-final-cta p {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.15rem;
}

.home-final-cta .actions {
  justify-content: center;
  margin-top: 1rem;
}

@media (max-width: 960px) {
  .home-hero-panel,
  .page-hero,
  .hero,
  .feature-grid.two,
  .feature-grid.three,
  .home-system-grid,
  .home-break-grid,
  .home-outcome-grid,
  .page-logic-grid,
  .page-grid.two,
  .page-grid.three,
  .page-grid.four,
  .page-split,
  .contact-form-layout,
  .solution-grid.two,
  .solution-grid.three,
  .purpose-grid.two,
  .purpose-grid.three,
  .field-grid,
  .footer-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero-panel,
  .page-hero,
  .page-section,
  .page-cta,
  .home-definition,
  .home-breaks,
  .home-process,
  .home-outcomes,
  .home-final-cta,
  .home-system-grid,
  .home-break-grid,
  .home-outcome-grid {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .home-system-grid,
  .home-break-grid,
  .home-outcome-grid {
    padding-bottom: 1.4rem;
  }

  .home-hero-copy {
    max-width: none;
  }

  .home-hero-copy h1,
  .page-display {
    max-width: none;
  }

  .home-process-flow {
    justify-content: stretch;
    gap: 0.7rem;
  }

  .home-process-step {
    width: 100%;
    min-width: 0;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    max-width: none;
  }

  .page-hero-copy,
  .page-section-head,
  .page-section-head-left {
    max-width: none;
  }

  .page-note img {
    margin-left: 0;
  }
}
