@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap');

:root {
  --ink:#101d36;
  --muted:#52617b;
  --paper:#f5f7fb;
  --line:#dce2ed;
  --blue:#2458ef;
  --navy:#101c35;
  --mint:#a9ecd6;
  --radius:12px;
  --font:'DM Sans',system-ui,sans-serif
}

*,*::before,*::after {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:100px
}
body {
  margin:0;
  font:1rem/1.65 var(--font);
  color:var(--ink);
  background:var(--paper)
}
body:has(dialog[open]) {
  overflow:hidden
}
button,input,select,textarea {
  font:inherit
}
button,a {
  -webkit-tap-highlight-color:transparent
}
button {
  cursor:pointer
}
a {
  color:inherit;
  text-underline-offset:5px
}
img,svg {
  max-width:100%
}
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible {
  outline:3px solid #6889ff;
  outline-offset:5px
}
h1,h2,h3,p {
  margin:0
}
h1,h2,h3 {
  font-family:'Manrope',var(--font)
}
h1,h2 {
  font-weight:650;
  letter-spacing:-.045em;
  line-height:1.12
}
h1 {
  font-size:clamp(2.8rem,5vw,4.65rem)
}
h2 {
  font-size:clamp(2rem,3.5vw,3.2rem)
}
h3 {
  font-size:1.35rem;
  line-height:1.3;
  letter-spacing:-.025em
}
p {
  color:var(--muted)
}
[hidden] {
  display:none!important
}
.wrap {
  width:min(1240px,calc(100% - 80px));
  margin-inline:auto
}
.skip-link {
  position:fixed;
  top:-70px;
  left:20px;
  z-index:200;
  background:white;
  padding:12px 20px
}
.skip-link:focus {
  top:12px
}
.site-top {
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(245,247,251,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px)
}
.top-inner {
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px
}
.brand {
  display:flex;
  align-items:center;
  text-decoration:none;
  font-family:Manrope,var(--font);
  font-size:1.85rem;
  font-weight:800;
  letter-spacing:-.065em;
  gap:10px
}
.brand-symbol {
  width:32px;
  height:36px;
  overflow:hidden;
  display:block;
  position:relative
}
.brand-symbol img {
  position:absolute;
  width:124px;
  max-width:none;
  left:-2px;
  top:0
}
.brand span:last-child {
  line-height:1
}
.site-nav {
  display:flex;
  align-items:center;
  gap:32px
}
.site-nav a {
  font-size:.9rem;
  text-decoration:none;
  font-weight:550
}
.site-nav a:hover,.site-nav a[aria-current] {
  color:var(--blue)
}
.site-nav .nav-cta {
  border:1px solid #bfc8db;
  border-radius:6px;
  padding:10px 17px
}
.nav-toggle {
  display:none;
  border:1px solid var(--line);
  background:transparent;
  padding:8px 14px;
  border-radius:6px
}
.eyebrow {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.78rem;
  font-weight:650;
  letter-spacing:.11em;
  text-transform:uppercase;
  color:var(--blue);
  margin-bottom:22px
}
.eyebrow::before {
  content:'';
  height:1px;
  width:25px;
  background:currentColor
}
.hero {
  padding:76px 0 60px;
  position:relative
}
.hero-grid {
  display:grid;
  grid-template-columns:1.04fr 1fr;
  gap:65px;
  align-items:center
}
.hero-copy>p {
  font-size:1.15rem;
  max-width:42ch;
  margin-top:24px;
  line-height:1.65
}
.hero h1 em {
  font-style:normal;
  color:var(--blue)
}
.actions {
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  align-items:center;
  margin-top:30px
}
.btn {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  min-height:49px;
  border:1px solid transparent;
  border-radius:6px;
  padding:12px 20px;
  text-decoration:none;
  background:var(--blue);
  color:white;
  font-weight:600;
  font-size:.94rem;
  transition:transform .2s,background .2s,box-shadow .2s
}
.btn:hover {
  background:#1c45c2;
  transform:translateY(-2px);
  box-shadow:0 7px 22px #2458ef24
}
.btn.secondary {
  color:var(--ink);
  background:transparent;
  border-color:#c9d1e0
}
.btn.secondary:hover {
  background:white
}
.btn.light {
  background:white;
  color:var(--navy)
}
.text-link {
  display:inline-flex;
  gap:18px;
  align-items:center;
  font-weight:600;
  text-decoration:none;
  font-size:.95rem
}
.text-link:hover {
  color:var(--blue)
}
.arrow {
  font-family:Arial,sans-serif;
  font-size:1.2em;
  transition:transform .2s
}
a:hover .arrow,button:hover .arrow {
  transform:translateX(3px)
}
.hero-foot {
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:30px;
  font-size:.83rem;
  color:var(--muted)
}
.hero-foot span {
  width:22px;
  height:22px;
  border:1px solid #becbe2;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--blue)
}

.preview {
  border:1px solid #d1dbea;
  background:white;
  border-radius:14px;
  box-shadow:0 26px 75px #1d315b16;
  overflow:hidden;
  transform:rotate(-1deg);
  transition:transform .4s
}
.preview:hover {
  transform:rotate(0)
}
.preview-top {
  background:var(--navy);
  color:white;
  padding:20px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:.84rem
}
.preview-top strong {
  font-size:.95rem
}
.preview-label {
  font-size:.73rem;
  border:1px solid #58637b;
  border-radius:4px;
  padding:3px 7px;
  color:#dce4f7
}
.preview-tabs {
  display:flex;
  border-bottom:1px solid var(--line);
  padding:0 18px;
  background:#f9faff
}
.preview-tabs button {
  border:0;
  border-bottom:2px solid transparent;
  background:transparent;
  flex:1;
  padding:17px 4px;
  font-size:.85rem;
  color:var(--muted)
}
.preview-tabs button[aria-selected=true] {
  color:var(--blue);
  border-color:var(--blue);
  font-weight:600
}
.preview-body {
  padding:27px;
  min-height:291px
}
.small-label {
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:600;
  color:var(--muted)
}
.preview-body h3 {
  font-size:1.35rem;
  margin:6px 0 19px
}
.preview-row {
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  padding:13px 0;
  border-top:1px solid #edf0f6;
  font-size:.9rem
}
.preview-row>span {
  color:var(--muted)
}
.tag {
  font-size:.73rem;
  padding:3px 9px;
  border:1px solid #cce0db;
  border-radius:4px;
  background:#f0faf7;
  color:#255b4a;
  white-space:nowrap
}
.tag.blue {
  background:#edf2ff;
  border-color:#d8e1ff;
  color:#2c51b1
}
.preview-note {
  border-left:2px solid var(--blue);
  padding:0 0 0 13px;
  font-size:.87rem;
  margin-top:18px
}
.preview-bottom {
  display:flex;
  justify-content:space-between;
  padding:16px 24px;
  border-top:1px solid var(--line);
  font-size:.78rem;
  color:var(--muted);
  background:#fafbfd
}
.preview-bottom button {
  border:0;
  background:transparent;
  color:var(--blue);
  font-weight:600;
  padding:0
}
.preview-list {
  padding-left:20px;
  font-size:.94rem;
  display:grid;
  gap:12px;
  color:var(--muted)
}
.trust-strip {
  border-block:1px solid var(--line);
  margin-top:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:23px 0;
  font-size:.86rem;
  color:var(--muted)
}
.trust-strip strong {
  font-weight:600;
  color:var(--ink)
}
.trust-strip .trust-badge {
  display:flex;
  align-items:center;
  gap:14px
}
.trust-strip img {
  width:130px;
  height:32px;
  object-fit:contain
}
.section {
  padding:84px 0
}
.section-heading {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:36px
}
.section-heading>p {
  max-width:35ch
}
.section-heading .eyebrow {
  margin-bottom:13px
}
.product-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px
}
.product {
  border:1px solid var(--line);
  border-radius:12px;
  background:white;
  overflow:hidden;
  transition:transform .25s,box-shadow .25s
}
.product:hover {
  transform:translateY(-4px);
  box-shadow:0 15px 40px #1d315b10
}
.product-visual {
  background:#e9eefb;
  padding:30px 34px;
  height:235px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center
}
.product-visual.lab {
  background:#e8f2ef
}
.mini-report {
  background:white;
  border:1px solid #d8e0ee;
  border-radius:7px;
  width:100%;
  max-width:390px;
  padding:22px;
  box-shadow:0 8px 25px #1d315b0c
}
.mini-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:.82rem;
  font-weight:650;
  margin-bottom:19px
}
.mini-flow {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px
}
.mini-block {
  font-size:.8rem;
  text-align:center;
  border:1px solid #dbe3ee;
  background:#f8faff;
  padding:13px 10px;
  border-radius:5px;
  flex:1
}
.mini-block b {
  display:block;
  font-size:1.2rem;
  font-weight:500;
  color:var(--blue);
  margin-bottom:7px
}
.mini-note {
  font-size:.73rem;
  margin-top:14px;
  color:var(--muted)
}
.intake-line {
  display:grid;
  grid-template-columns:100px 1fr;
  align-items:center;
  gap:12px;
  font-size:.79rem;
  margin:10px 0
}
.intake-line span:last-child {
  padding:6px 9px;
  background:#f4f8f6;
  border:1px solid #e3ebe8;
  border-radius:4px;
  color:#537063
}
.product-copy {
  padding:29px 32px 32px
}
.product-meta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:.77rem;
  color:var(--muted);
  margin-bottom:16px
}
.product h3 {
  font-size:1.65rem;
  margin-bottom:13px
}
.product p {
  font-size:1rem;
  max-width:47ch
}
.product-details {
  margin-top:23px;
  padding-top:19px;
  border-top:1px solid var(--line);
  font-size:.84rem;
  color:var(--muted)
}
.product-details strong {
  color:var(--ink);
  font-weight:550
}
.product .actions {
  margin-top:24px;
  justify-content:space-between
}
.build-note {
  margin-top:25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:.88rem
}
.dark-section {
  background:var(--navy);
  color:#fff;
  position:relative;
  overflow:hidden
}
.dark-section .eyebrow {
  color:#91adff
}
.dark-section p {
  color:#b8c5df
}
.dark-section .section-heading>p {
  max-width:34ch
}
.flow-layout {
  display:grid;
  grid-template-columns:1fr 1.12fr;
  gap:90px;
  margin-top:46px
}
.flow-steps {
  display:grid;
  gap:0
}
.flow-step {
  position:relative;
  display:grid;
  grid-template-columns:42px 1fr 25px;
  gap:14px;
  align-items:center;
  text-align:left;
  padding:19px 17px;
  background:transparent;
  color:#adbbd6;
  border:0;
  border-bottom:1px solid #34415a;
  transition:background .2s,color .2s
}
.flow-step:first-child {
  border-top:1px solid #34415a
}
.flow-step[aria-pressed=true] {
  background:#243759;
  color:white;
  border-left:3px solid #92b1ff;
  padding-left:14px
}
.flow-step .num {
  font-size:.78rem;
  color:#a7b9dd
}
.flow-step strong {
  display:block;
  font-size:1rem;
  font-weight:550
}
.flow-step small {
  display:block;
  font-size:.84rem;
  color:#adbbd6;
  margin-top:2px
}
.flow-output {
  align-self:center;
  border:1px solid #435372;
  border-radius:9px;
  overflow:hidden;
  background:#16253f
}
.flow-output-head {
  padding:19px 25px;
  border-bottom:1px solid #435372;
  display:flex;
  justify-content:space-between;
  font-size:.78rem;
  color:#bdd0f5
}
.flow-output-body {
  padding:30px;
  min-height:263px
}
.flow-output h3 {
  font-size:1.55rem;
  margin-bottom:15px
}
.flow-output ul {
  list-style:none;
  display:grid;
  gap:10px;
  padding:0;
  margin:24px 0;
  color:#d0dcf2;
  font-size:.93rem
}
.flow-output li::before {
  content:'+';
  color:#8cacf9;
  margin-right:12px
}
.flow-output .text-link {
  color:#a8c0ff
}
.principles {
  border-top:1px solid #3a4761;
  margin-top:54px;
  padding-top:27px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px
}
.principles h3 {
  font-size:1rem;
  margin-bottom:8px
}
.principles p {
  font-size:.88rem
}
.about-grid {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:110px;
  align-items:start
}
.about-copy>p {
  margin-top:22px;
  font-size:1.05rem
}
.founder-block {
  border-top:1px solid var(--line);
  padding-top:28px;
  margin-top:30px
}
.founder-block strong {
  display:block;
  font-size:1.05rem
}
.founder-block span {
  color:var(--muted);
  font-size:.9rem
}
.about-details {
  display:grid;
  gap:28px
}
.about-detail {
  display:grid;
  grid-template-columns:38px 1fr;
  gap:17px;
  border-bottom:1px solid var(--line);
  padding-bottom:28px
}
.about-detail .detail-no {
  font-size:.8rem;
  color:var(--blue);
  padding-top:4px
}
.about-detail h3 {
  font-size:1.12rem;
  margin-bottom:9px
}
.about-detail p {
  font-size:.95rem
}
.contact-section {
  padding:58px 0 64px;
  background:#e9efff;
  border-top:1px solid #d2ddf9
}
.contact-grid {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:45px
}
.contact-section h2 {
  font-size:clamp(2rem,3.3vw,3rem);
  margin-bottom:13px
}
.contact-section p {
  max-width:49ch
}
.contact-actions {
  flex-shrink:0
}
.contact-actions .actions {
  margin-top:0
}
.contact-email {
  display:block;
  text-align:center;
  margin-top:13px;
  font-size:.87rem;
  color:var(--muted)
}
.footer {
  padding:30px 0 26px
}
.footer-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px
}
.footer-links {
  display:flex;
  gap:25px;
  font-size:.85rem;
  color:var(--muted)
}
.footer-links a {
  text-decoration:none
}
.footer-legal {
  font-size:.75rem;
  margin-top:22px;
  color:#66748a
}
.footer .brand {
  font-size:1.4rem
}
.footer .brand-symbol {
  display:none
}
.reveal {
  animation:enter .65s both
}
@keyframes enter {
  from {
  opacity:0;
  transform:translateY(14px)
}
to {
  opacity:1;
  transform:translateY(0)
}

}
.preview [role=tabpanel]:not([hidden]) {
  animation:enter .25s ease
}
.sample-dialog {
  width:min(740px,calc(100% - 32px));
  max-height:88vh;
  border:1px solid var(--line);
  border-radius:14px;
  padding:0;
  color:var(--ink);
  box-shadow:0 20px 100px #0004
}
.sample-dialog::backdrop {
  background:#091327b8;
  backdrop-filter:blur(4px)
}
.dialog-head {
  position:sticky;
  top:0;
  background:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--line);
  padding:20px 28px;
  gap:15px
}
.dialog-head strong {
  font-size:.94rem
}
.close-dialog {
  width:36px;
  height:36px;
  background:#eef2fa;
  border:0;
  border-radius:50%;
  font-size:1.4rem
}
.dialog-content {
  padding:28px
}
.dialog-content h2 {
  font-size:2rem;
  margin:12px 0 16px
}
.sample-banner {
  font-size:.84rem;
  color:#325295;
  background:#eff3ff;
  border-left:3px solid var(--blue);
  padding:12px 15px
}
.sample-section {
  padding:23px 0;
  border-bottom:1px solid var(--line)
}
.sample-section h3 {
  font-size:1.1rem;
  margin-bottom:10px
}
.sample-section p,.sample-section ul {
  font-size:.96rem;
  color:var(--muted)
}
.sample-section ul {
  padding-left:20px;
  margin-bottom:0
}
.sub-hero {
  padding:55px 0 45px
}
.breadcrumb {
  font-size:.84rem;
  color:var(--muted);
  margin-bottom:32px;
  display:flex;
  gap:12px;
  flex-wrap:wrap
}
.breadcrumb a {
  text-decoration:none
}
.sub-hero h1 {
  max-width:19ch;
  font-size:clamp(2.7rem,4.7vw,4rem)
}
.sub-hero .lead {
  max-width:60ch;
  margin-top:22px;
  font-size:1.1rem
}
.sub-layout {
  display:grid;
  grid-template-columns:.68fr 1.32fr;
  gap:55px;
  padding:25px 0 80px;
  align-items:start
}
.side-rail {
  position:sticky;
  top:115px
}
.side-rail h2 {
  font-size:1.6rem
}
.side-rail p {
  margin-top:15px
}
.rail-steps {
  padding:0;
  list-style:none;
  display:grid;
  gap:23px;
  margin:30px 0
}
.rail-steps li {
  display:grid;
  grid-template-columns:28px 1fr;
  gap:10px;
  font-size:.91rem;
  color:var(--muted)
}
.rail-steps b {
  color:var(--blue);
  font-weight:550
}
.rail-steps strong {
  color:var(--ink);
  display:block;
  margin-bottom:3px
}
.form-card {
  padding:34px;
  background:white;
  border:1px solid var(--line);
  border-radius:10px
}
.form-card h2 {
  font-size:1.75rem;
  margin-bottom:10px
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:28px
}
.field {
  display:grid;
  gap:7px
}
.field.full {
  grid-column:1/-1
}
.field label {
  font-size:.88rem;
  font-weight:600
}
.field input,.field select,.field textarea {
  width:100%;
  min-width:0;
  border:1px solid #cdd6e6;
  background:#fbfcff;
  color:var(--ink);
  border-radius:5px;
  padding:11px 12px
}
.field textarea {
  min-height:110px;
  resize:vertical
}
.field small {
  font-size:.78rem;
  color:var(--muted)
}
.consent {
  display:flex;
  align-items:start;
  gap:10px;
  font-size:.86rem;
  color:var(--muted);
  font-weight:400!important
}
.consent input {
  width:17px;
  height:17px;
  margin-top:5px;
  flex-shrink:0
}
.status {
  font-size:.9rem;
  margin-top:16px
}
.success-panel {
  background:#eef9f4;
  border:1px solid #cce7d9;
  border-radius:8px;
  margin-top:25px;
  padding:23px
}
.success-panel strong {
  color:#245742
}
.success-panel p {
  font-size:.9rem;
  margin-top:10px;
  color:#37634e
}
.summary-output {
  white-space:pre-wrap;
  overflow-wrap:anywhere;
  font: .9rem/1.7 var(--font);
  color:var(--ink);
  background:white;
  padding:18px;
  border:1px solid #cce7d9;
  border-radius:5px;
  margin:18px 0 0
}
.resource-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px
}
.resource {
  border-top:1px solid var(--line);
  padding-top:23px
}
.resource h3 {
  font-size:1.2rem;
  margin-bottom:12px
}
.resource p {
  font-size:.93rem;
  margin-bottom:17px
}
.small-print {
  font-size:.85rem
}
.hub-intro {
  padding-top:52px
}
.hub-intro .hero-grid {
  gap:65px
}
.hub-intro h1 {
  font-size:clamp(2.7rem,4.8vw,4.2rem)
}
.scope-strip {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  padding:30px 0;
  border-block:1px solid var(--line);
  margin-top:45px
}
.scope-strip h3 {
  font-size:1.05rem;
  margin-bottom:9px
}
.scope-strip p {
  font-size:.92rem
}
.hub-steps {
  counter-reset:step;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px
}
.hub-steps article {
  border-top:1px solid var(--line);
  padding-top:23px
}
.hub-steps .small-label {
  color:var(--blue);
  margin-bottom:15px
}
.hub-steps h3 {
  margin-bottom:13px
}
.disclosure {
  padding:25px;
  background:#eaf0fa;
  border:1px solid var(--line);
  border-radius:8px;
  font-size:.87rem
}
.disclosure h2 {
  font-size:1rem;
  margin-bottom:10px
}
.disclosure p+p {
  margin-top:10px
}

@media(min-width:1450px) {
  .hero {
  padding-top:94px;
  padding-bottom:65px
}

}
@media(max-width:1050px) {
  .wrap {
  width:calc(100% - 48px)
}
.hero-grid {
  gap:30px
}
.site-nav {
  gap:20px
}
.hero h1 {
  font-size:3.7rem
}
.flow-layout {
  gap:35px
}
.about-grid {
  gap:50px
}
.trust-strip {
  gap:15px
}
.trust-strip>span {
  max-width:29ch
}
.product-copy {
  padding:25px
}
.product-visual {
  padding:25px
}
.sub-layout {
  gap:30px
}

}
@media(max-width:760px) {
  html {
  scroll-padding-top:88px
}
.wrap {
  width:calc(100% - 40px)
}
.top-inner {
  min-height:72px
}
.brand {
  font-size:1.65rem
}
.nav-toggle {
  display:block
}
.site-nav {
  display:none;
  position:absolute;
  top:72px;
  left:0;
  right:0;
  flex-direction:column;
  align-items:stretch;
  gap:0;
  padding:15px 20px 22px;
  background:var(--paper);
  border-bottom:1px solid var(--line)
}
.site-nav[data-open=true] {
  display:flex
}
.site-nav a {
  padding:12px 5px;
  font-size:1rem
}
.site-nav .nav-cta {
  margin-top:8px;
  text-align:center
}
.hero {
  padding:43px 0 35px
}
.hero-grid,.product-grid,.flow-layout,.about-grid,.sub-layout {
  grid-template-columns:1fr
}
.hero-grid {
  gap:40px
}
.hero h1 {
  font-size:clamp(2.8rem,9vw,4.2rem);
  max-width:13ch
}
.hero-copy>p {
  max-width:42ch;
  font-size:1.05rem
}
.hero-foot {
  font-size:.8rem
}
.preview {
  transform:none
}
.preview-body {
  min-height:265px
}
.trust-strip {
  margin-top:35px;
  flex-wrap:wrap;
  gap:18px
}
.trust-strip>span {
  max-width:100%;
  flex-basis:100%
}
.trust-strip .trust-badge {
  justify-content:space-between;
  width:100%
}
.section {
  padding:56px 0
}
.section-heading {
  display:block
}
.section-heading>p {
  margin-top:18px
}
.product-visual {
  height:210px
}
.product-copy {
  padding:25px
}
.product h3 {
  font-size:1.5rem
}
.build-note {
  align-items:start;
  flex-direction:column
}
.flow-layout {
  margin-top:28px;
  gap:27px
}
.flow-output-body {
  min-height:270px;
  padding:25px
}
.principles {
  grid-template-columns:1fr;
  gap:23px;
  margin-top:30px
}
.about-grid {
  gap:38px
}
.about-details {
  gap:23px
}
.contact-grid {
  display:block
}
.contact-actions {
  margin-top:27px
}
.contact-actions .actions {
  justify-content:start
}
.contact-email {
  text-align:left
}
.footer-top {
  align-items:start;
  gap:24px;
  flex-direction:column
}
.footer-links {
  flex-wrap:wrap;
  gap:15px 23px
}
.footer-legal {
  font-size:.73rem
}
.side-rail {
  position:static
}
.sub-layout {
  padding-bottom:45px
}
.rail-steps {
  gap:15px;
  margin:20px 0
}
.form-card {
  padding:24px
}
.form-grid {
  grid-template-columns:1fr;
  gap:16px
}
.resource-grid,.hub-steps,.scope-strip {
  grid-template-columns:1fr;
  gap:28px
}
.sub-hero {
  padding:32px 0
}
.sub-hero h1 {
  font-size:2.8rem
}
.hub-intro .hero-grid {
  gap:35px
}
.sample-dialog {
  max-height:92vh
}
.dialog-head,.dialog-content {
  padding:20px
}
.dialog-content h2 {
  font-size:1.8rem
}
.scope-strip {
  margin-top:32px
}
.hub-steps {
  gap:30px
}

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

}
