:root {
  --ink:#10213f;
  --muted:#526582;
  --blue:#235bea;
  --blue-deep:#153cb5;
  --cyan:#00b8e7;
  --ice:#eff8ff;
  --line:#dbe6f4;
  --paper:#fff;
  --glass:rgba(255,255,255,.74);
  --display:'Sora',sans-serif;
  --text:'Inter',sans-serif;
  --ease:cubic-bezier(.22,.8,.25,1);
  --max:1380px
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:120px
}
body {
  margin:0;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  background:var(--paper);
  color:var(--ink);
  font:400 1rem/1.7 var(--text);
  -webkit-font-smoothing:antialiased;
  overflow-x:clip
}
body:before {
  content:'';
  position:fixed;
  z-index:-1;
  inset:0;
  pointer-events:none;
  background:radial-gradient(ellipse at 90% 10%,#e5f5ff80,transparent 42%),radial-gradient(ellipse at 5% 94%,#e9f2ff80,transparent 40%)
}
h1,h2,h3,p {
  margin:0
}
h1,h2,h3 {
  font-family:var(--display);
  font-weight:500;
  line-height:1.15;
  letter-spacing:-.06em
}
a {
  color:inherit
}
button,input,textarea {
  font:inherit
}
button,a {
  -webkit-tap-highlight-color:transparent
}
button {
  cursor:pointer
}
img,svg {
  max-width:100%;
  display:block
}
[hidden] {
  display:none!important
}
::selection {
  background:#d7eaff;
  color:#0b2780
}
:focus-visible {
  outline:3px solid #1755d4;
  outline-offset:5px
}
main:focus {
  outline:none
}
.shell {
  width:min(var(--max),calc(100% - 112px));
  margin-inline:auto
}
.main {
  flex:1;
  padding-block:45px 35px;
  min-width:0
}
.skip-link {
  position:fixed;
  top:12px;
  left:16px;
  z-index:200;
  padding:12px 20px;
  background:var(--blue);
  color:#fff;
  transform:translateY(-180%);
  border-radius:10px
}
.skip-link:focus {
  transform:none
}
.gradient-text {
  color:var(--blue);
  background:linear-gradient(105deg,#154bd4 4%,#2367ee 42%,#008dae 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent
}
.eyebrow {
  font:550 .875rem/1.6 var(--text);
  letter-spacing:.09em;
  text-transform:uppercase;
  color:#476083;
  display:flex;
  align-items:center;
  gap:12px
}
.eyebrow-line {
  display:inline-block;
  width:23px;
  height:2px;
  background:linear-gradient(90deg,var(--cyan),var(--blue));
  flex-shrink:0
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:27px;
  min-height:54px;
  padding:15px 23px;
  background:linear-gradient(125deg,#2466f3,#2052db);
  border:1px solid #2259e5;
  border-radius:12px;
  color:#fff;
  font:550 .9375rem/1.5 var(--text);
  text-decoration:none;
  box-shadow:0 7px 18px #1e57da16,inset 0 1px 0 #ffffff40;
  transition:transform .35s var(--ease),box-shadow .35s,background .25s
}
.button:hover {
  transform:translateY(-3px);
  box-shadow:0 11px 24px #1e57da2a;
  background:linear-gradient(125deg,#1454db,#143fb6)
}
.button-small {
  min-height:45px;
  padding:11px 17px;
  gap:20px;
  font-size:.875rem
}
.button-outline {
  color:var(--blue-deep);
  background:rgba(255,255,255,.65);
  border-color:#c3d5f5;
  box-shadow:0 2px 4px #21458704
}
.button-outline:hover {
  background:#e8f1ff;
  color:#123cb0
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:22px;
  min-height:46px;
  font-size:.9375rem;
  font-weight:550;
  text-decoration:none
}
.text-link:hover {
  color:var(--blue-deep)
}
.nav {
  position:sticky;
  top:0;
  z-index:50;
  view-transition-name:site-header;
  background:rgba(255,255,255,.83);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid #e8eff880
}
.nav-inner {
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#122747;
  text-decoration:none;
  font:600 1.375rem/1 var(--display);
  letter-spacing:-.065em;
  flex-shrink:0
}
.brand img {
  width:49px;
  height:36px
}
.brand-accent {
  font-weight:400
}
.brand-period {
  color:var(--blue)
}
.nav-links {
  display:flex;
  align-items:center;
  gap:33px
}
.nav-links>a:not(.button) {
  text-decoration:none;
  font-size:.875rem;
  font-weight:500;
  color:#546780;
  position:relative;
  padding-block:15px
}
.nav-links>a:not(.button):after {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:7px;
  height:2px;
  transform:scaleX(0);
  transform-origin:left;
  background:var(--blue);
  transition:transform .3s var(--ease)
}
.nav-links>a:not(.button):hover,.nav-links>a:not(.button)[aria-current] {
  color:var(--blue)
}
.nav-links>a:not(.button)[aria-current]:after,.nav-links>a:hover:after {
  transform:scaleX(1)
}
.menu-toggle {
  align-items:center;
  gap:12px;
  background:#f5f9ff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:10px 12px;
  min-height:44px;
  color:var(--ink);
  font-size:.875rem
}
.menu-icon {
  width:18px;
  height:10px;
  border-top:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor
}
.menu-toggle[aria-expanded=true] .menu-icon {
  height:1px;
  border-bottom:0
}
.page-home .main {
  padding-top:14px;
  padding-bottom:0
}
.home-stage {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:0;
  min-height:max(455px,calc(100svh - 303px));
  position:relative
}
.hero-copy {
  padding-block:50px;
  position:relative;
  z-index:2
}
.hero-copy>.eyebrow {
  margin-bottom:30px
}
.hero-copy h1 {
  font-size:clamp(3.25rem,5.75vw,5.95rem);
  line-height:1.11;
  letter-spacing:-.077em;
  white-space:normal
}
.hero-description {
  font-size:clamp(1.1rem,1.45vw,1.3rem);
  line-height:1.65;
  margin-top:27px;
  color:#3c5475
}
.hero-detail {
  max-width:390px;
  font-size:1rem;
  color:var(--muted);
  margin-top:12px
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  margin-top:30px
}
.vision-scene {
  position:relative;
  min-width:0;
  aspect-ratio:1.03;
  perspective:1000px;
  transform-style:preserve-3d;
  margin-left:-10px;
  isolation:isolate
}
.hero-sculpture {
  position:absolute;
  width:113%;
  max-width:none;
  height:auto;
  left:-5%;
  top:-5%;
  mix-blend-mode:multiply;
  transform:translate3d(var(--scene-x,0px),var(--scene-y,0px),0) rotateX(var(--scene-rx,0deg)) rotateY(var(--scene-ry,0deg));
  will-change:transform;
  transition:transform .7s var(--ease)
}
.scene-orbit {
  position:absolute;
  inset:7%;
  border:1px solid #dcefff55;
  border-radius:50%;
  transform:rotate(-23deg) scaleY(.89)
}
.glass-tag {
  position:absolute;
  display:flex;
  align-items:center;
  gap:13px;
  border:1px solid #ffffffda;
  background:linear-gradient(115deg,#ffffffd9,#eaf4ffa3);
  border-radius:14px;
  padding:15px 19px;
  box-shadow:0 15px 40px #31568712,inset 0 0 0 1px #dbe9f98c;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  font-size:.875rem;
  line-height:1.55;
  transform:translate3d(calc(var(--scene-x,0px)*-.45),calc(var(--scene-y,0px)*-.45),20px);
  transition:transform .7s var(--ease)
}
.tag-top {
  top:13%;
  left:4%;
  z-index:3
}
.tag-bottom {
  right:-1%;
  bottom:12%;
  z-index:3
}
.tag-indicator {
  width:8px;
  height:8px;
  background:#258ce6;
  border:2px solid #a4d9ff;
  border-radius:50%;
  box-shadow:0 0 0 5px #4caff311
}
.glass-tag strong {
  font-weight:550
}
.scene-coordinate {
  position:absolute;
  bottom:0;
  right:16%;
  font-size:.75rem;
  font-weight:500;
  letter-spacing:.16em;
  color:#526582
}
.home-tracks {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin-top:8px
}
.home-tracks>a {
  display:flex;
  align-items:center;
  gap:18px;
  text-decoration:none;
  font-size:.9375rem;
  font-weight:500;
  padding:25px 27px;
  transition:background .3s
}
.home-tracks>a:first-child {
  padding-left:0
}
.home-tracks>a+ a {
  border-left:1px solid var(--line)
}
.home-tracks>a:hover {
  background:#e8f4ff66
}
.track-number {
  color:#526582;
  font-size:.875rem;
  font-weight:400
}
.page-heading {
  margin-bottom:38px
}
.page-heading h1 {
  font-size:clamp(2.65rem,4.3vw,4.65rem);
  line-height:1.13;
  letter-spacing:-.069em;
  margin-top:20px
}
.page-description {
  color:var(--muted);
  max-width:570px;
  margin-top:20px;
  font-size:1rem;
  line-height:1.75
}
.glass {
  background:linear-gradient(125deg,#ffffffeb,#f0f7ffb8);
  border:1px solid #d5e5f5;
  border-radius:24px;
  box-shadow:0 16px 60px #2c56820a,inset 0 1px 0 #fff;
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px)
}
.panel-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}
.pill {
  font-size:.875rem;
  color:#315b9b;
  display:inline-flex;
  align-items:center;
  padding:6px 11px;
  border:1px solid #dae9fa;
  border-radius:6px;
  background:#f0f7ff
}
.panel-number {
  font:400 1rem var(--display);
  color:#526582
}
.panel-note {
  font-size:.875rem!important;
  color:#536784!important;
  padding-top:20px;
  margin-top:22px!important;
  border-top:1px solid var(--line)
}
.services-stage {
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:55px;
  align-items:start;
  margin-top:15px;
  margin-bottom:12px
}
.service-selector {
  padding-top:3px
}
.service-choice {
  display:grid;
  grid-template-columns:30px 1fr;
  gap:18px;
  align-items:center;
  padding:24px 9px;
  border-bottom:1px solid var(--line);
  text-decoration:none;
  border-radius:4px;
  transition:padding .4s var(--ease),background .3s,color .3s
}
.service-choice>span:first-child {
  font-size:.875rem;
  color:#526582
}
.service-choice strong {
  font:500 1.15rem/1.4 var(--display);
  letter-spacing:-.03em
}
.service-choice:hover,.service-choice[aria-current] {
  background:#e7f2ff8c;
  color:var(--blue);
  padding-left:19px;
  padding-right:15px
}
.service-choice[aria-current] {
  box-shadow:inset 3px 0 0 var(--blue)
}
.service-panels {
  min-width:0
}
.service-panel {
  padding:30px 34px;
  scroll-margin-top:118px
}
.service-panel+.service-panel {
  margin-top:25px
}
.service-panel h2 {
  font-size:clamp(1.8rem,2.6vw,2.6rem);
  margin-top:28px;
  letter-spacing:-.045em
}
.service-panel>p:not(.panel-note) {
  color:var(--muted);
  margin-top:18px;
  max-width:560px
}
.service-deliverables {
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:0;
  margin:28px 0 0
}
.service-deliverables li {
  display:flex;
  flex:1;
  flex-direction:column;
  gap:11px;
  padding:15px;
  min-width:120px;
  border:1px solid #dae7f6;
  border-radius:11px;
  background:#ffffff91;
  font-size:.875rem;
  line-height:1.5
}
.service-deliverables li>span {
  color:var(--blue);
  font-size:.875rem
}
.service-panel>.text-link {
  margin-top:14px
}
.service-panel:target {
  scroll-margin-top:118px
}
.offers-stage {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px
}
.offer-card {
  padding:30px;
  min-width:0;
  display:flex;
  flex-direction:column;
  position:relative;
  transform:perspective(1000px) rotateX(var(--scene-rx,0deg)) rotateY(var(--scene-ry,0deg));
  transition:transform .6s var(--ease)
}
.offer-featured {
  border-color:#aacdf6;
  background:linear-gradient(130deg,#eef9ffea,#dbeaffb3 64%,#f5f9ff);
  box-shadow:0 18px 45px #3d67c711,inset 0 1px 0 #fff
}
.offer-card h2 {
  font-size:clamp(1.8rem,2.75vw,2.75rem);
  margin-top:26px;
  letter-spacing:-.057em
}
.offer-card>p {
  color:var(--muted);
  margin-top:18px;
  max-width:490px
}
.check-list {
  padding:0;
  list-style:none;
  display:grid;
  gap:11px;
  margin:27px 0
}
.check-list li {
  display:flex;
  align-items:flex-start;
  gap:11px;
  font-size:.9375rem;
  line-height:1.6
}
.check-list li:before {
  content:'✓';
  color:var(--blue);
  font-size:.875rem
}
.offer-bottom {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:18px;
  margin-top:auto;
  padding-top:23px;
  border-top:1px solid #cbdcf2;
  align-items:center
}
.offer-bottom>span {
  color:var(--muted);
  font-size:.875rem
}
.offer-bottom strong {
  display:block;
  font-size:1.125rem;
  letter-spacing:-.03em;
  font-weight:550;
  color:var(--ink)
}
.offer-bottom .button {
  font-size:.875rem;
  padding-inline:17px;
  gap:20px
}
.scope-notes {
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:45px;
  margin:26px 0 10px
}
.scope-notes>p {
  font-size:.875rem;
  color:var(--muted);
  max-width:680px
}
.scope-notes>a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-decoration:none;
  font-size:.875rem;
  border-left:1px solid var(--line);
  padding-left:30px;
  color:#395579
}
.scope-notes strong {
  display:block;
  font-weight:500;
  color:var(--ink)
}
.method-stage {
  margin-top:25px
}
.method-steps {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-bottom:25px
}
.method-step {
  display:flex;
  align-items:center;
  gap:15px;
  text-decoration:none;
  min-height:75px;
  border-top:1px solid #d5e2f3;
  padding:18px 0;
  position:relative
}
.method-step:before {
  content:'';
  position:absolute;
  top:-1px;
  left:0;
  height:2px;
  width:0;
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  transition:width .6s var(--ease)
}
.method-step[aria-current]:before,.method-step:hover:before {
  width:100%
}
.method-step>span:first-child {
  display:grid;
  place-items:center;
  width:37px;
  height:37px;
  flex-shrink:0;
  border-radius:50%;
  background:#eff5fd;
  color:#526582;
  font-size:.875rem
}
.method-step[aria-current]>span:first-child {
  background:var(--blue);
  color:#fff;
  box-shadow:0 5px 14px #2565ef20
}
.method-step strong {
  font-size:1rem;
  font-weight:500
}
.method-panel {
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:40px;
  align-items:center;
  padding:38px 45px;
  min-height:310px;
  overflow:hidden
}
.method-panel+.method-panel {
  margin-top:25px
}
.method-big-number {
  font:500 clamp(7rem,16vw,15rem)/.9 var(--display);
  letter-spacing:-.1em;
  color:#dcecff;
  text-shadow:1px 1px 0 #fff,-1px -1px 0 #c4dcf9;
  justify-self:center
}
.method-panel-copy h2 {
  font-size:clamp(1.8rem,3.1vw,2.9rem);
  margin-top:14px
}
.method-panel-copy>p:not(.eyebrow) {
  color:var(--muted);
  margin-top:20px;
  max-width:570px
}
.method-tags {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:20px
}
.method-tags>span {
  font-size:.875rem;
  padding:6px 12px;
  border:1px solid #d8e7f7;
  border-radius:30px;
  background:#ffffffa6;
  color:#3e5d86
}
.method-panel .panel-note {
  margin-top:18px!important;
  padding-top:16px
}
.about-stage {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:90px;
  align-items:start;
  padding-block:20px 30px
}
.about-heading .page-description {
  max-width:455px
}
.about-heading .page-heading h1 {
  font-size:clamp(2.6rem,4.1vw,4.3rem)
}
.founder-card {
  display:flex;
  gap:18px;
  align-items:center;
  padding:25px;
  max-width:475px;
  margin-top:40px
}
.founder-monogram {
  display:grid;
  place-items:center;
  flex-shrink:0;
  width:65px;
  height:65px;
  border-radius:16px;
  background:linear-gradient(130deg,#eaf7ff,#bddaff);
  border:1px solid #c4e0ff;
  box-shadow:inset 0 1px 0 #fff;
  font:500 1.3rem var(--display);
  color:var(--blue)
}
.about-copy {
  padding-top:42px
}
.about-copy .lead {
  font:400 clamp(1.25rem,1.8vw,1.5rem)/1.6 var(--display);
  letter-spacing:-.035em;
  color:#213e64
}
.about-copy>p+ p {
  margin-top:23px;
  color:var(--muted)
}
.about-copy>.text-link {
  margin-top:20px
}
.audience-block {
  margin-top:38px;
  padding-top:25px;
  border-top:1px solid var(--line)
}
.audience-block .eyebrow {
  font-size:.875rem;
  text-transform:none;
  letter-spacing:0
}
.audience-block ul {
  list-style:none;
  padding:0;
  margin:15px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:8px
}
.audience-block li {
  font-size:.875rem;
  border:1px solid var(--line);
  background:#f5faff;
  border-radius:6px;
  padding:6px 11px;
  color:#486082
}
.contact-stage {
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:85px;
  align-items:start;
  padding-top:10px
}
.contact-copy .page-heading h1 {
  font-size:clamp(2.8rem,4.4vw,4.7rem)
}
.contact-copy .page-description {
  max-width:405px
}
.call-card {
  padding:21px;
  display:flex;
  align-items:center;
  gap:15px;
  text-decoration:none;
  margin-top:38px;
  border-radius:16px;
  max-width:440px;
  transition:transform .35s var(--ease),border .35s
}
.call-card:hover {
  transform:translateY(-3px);
  border-color:#a6c7f5
}
.call-symbol {
  display:grid;
  place-items:center;
  background:#e5f2ff;
  width:43px;
  height:43px;
  border-radius:10px;
  font-size:1.5rem;
  color:var(--blue);
  flex-shrink:0
}
.call-card-text strong {
  display:block;
  font-size:.9375rem;
  font-weight:550
}
.call-card-text>span {
  font-size:.875rem;
  color:var(--muted);
  display:block
}
.email-link {
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-size:.9375rem;
  text-decoration:none;
  color:#405c80;
  margin-top:25px;
  overflow-wrap:anywhere;
  word-break:break-word
}
.email-link:hover {
  color:var(--blue)
}
.form-panel {
  padding:30px;
  scroll-margin-top:118px;
  min-width:0
}
.form-panel h2 {
  font-size:1.75rem
}
.form-intro {
  font-size:.875rem;
  color:var(--muted);
  margin:15px 0 24px;
  max-width:400px
}
form {
  display:grid;
  gap:20px
}
.fields-two {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px
}
.field {
  min-width:0
}
.field label {
  display:block;
  font-size:.875rem;
  font-weight:550;
  line-height:1.5;
  margin-bottom:8px
}
.field label span {
  font-size:.875rem;
  font-weight:400;
  color:#5b6f8b
}
.field input,.field textarea {
  font-size:1rem;
  color:var(--ink);
  width:100%;
  border:1px solid #6d86aa;
  border-radius:9px;
  background:#ffffffbd;
  padding:11px 13px;
  min-height:47px;
  line-height:1.5;
  box-shadow:inset 0 1px 3px #345e9906;
  transition:border-color .2s,background .2s
}
.field input:hover,.field textarea:hover {
  border-color:#748fb4
}
.field input:focus,.field textarea:focus {
  outline:2px solid #2761e5;
  outline-offset:2px;
  background:#fff;
  border-color:#2761e5
}
.field textarea {
  resize:vertical;
  min-height:116px
}
.field textarea::placeholder {
  color:#526582;
  opacity:1
}
.submit-button {
  width:100%;
  justify-content:space-between
}
.submit-button:disabled {
  opacity:.65;
  cursor:wait;
  transform:none
}
.form-note {
  font-size:.875rem;
  color:#5b6f8b;
  line-height:1.6;
  overflow-wrap:anywhere
}
.form-note a {
  text-underline-offset:4px
}
.form-error {
  border:1px solid #efc7c7;
  border-left:3px solid #b32434;
  border-radius:6px;
  background:#fff4f4;
  padding:13px;
  color:#932638;
  font-size:.875rem
}
.thanks-stage {
  max-width:850px;
  margin:25px auto;
  padding:55px
}
.thanks-stage h1 {
  font-size:clamp(2.5rem,5.2vw,5rem);
  margin-top:23px
}
.thanks-stage>p:not(.eyebrow) {
  color:var(--muted);
  margin-top:24px;
  max-width:580px
}
.page-rail {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  min-height:88px;
  border-top:1px solid var(--line);
  view-transition-name:page-rail
}
.page-home .page-rail {
  border-top:0
}
.rail-link {
  display:flex;
  align-items:center;
  gap:20px;
  text-decoration:none;
  font-size:.875rem;
  font-weight:500;
  min-height:48px;
  min-width:130px;
  transition:color .2s
}
.rail-link:hover {
  color:var(--blue)
}
.rail-link>span:first-child,.rail-link.next>span:last-child {
  font-size:1.4rem
}
.rail-link.next>span:first-child {
  font-size:.875rem
}
.rail-link.next {
  justify-content:flex-end
}
.rail-place {
  display:flex;
  align-items:center;
  gap:13px;
  font-size:.875rem;
  color:#5e728e;
  min-width:130px
}
.location-dot {
  height:6px;
  width:6px;
  background:#359ced;
  border-radius:50%
}
.rail-center {
  display:flex;
  align-items:center;
  gap:22px
}
.page-number {
  font-size:.875rem;
  font-variant-numeric:tabular-nums;
  color:#285080;
  white-space:nowrap
}
.page-number>span {
  color:#526582;
  margin-left:5px
}
.rail-dots {
  display:flex;
  align-items:center
}
.rail-dots a {
  display:grid;
  place-items:center;
  width:28px;
  height:44px;
  text-decoration:none
}
.rail-dots a>span {
  display:block;
  width:5px;
  height:5px;
  border-radius:5px;
  background:#6d86aa;
  transition:width .35s var(--ease),background .2s
}
.rail-dots a[aria-current]>span {
  width:20px;
  background:var(--blue)
}
.footer {
  border-top:1px solid #e8eef7;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font-size:.8125rem;
  color:#526582;
  padding-block:17px 22px;
  view-transition-name:site-footer
}
.footer>div {
  display:flex;
  align-items:center;
  gap:20px
}
.footer a {
  text-decoration:none;
  font-size:.875rem
}
.footer a:hover {
  color:var(--blue)
}
.motion-toggle {
  font-size:.875rem;
  color:#506887;
  border:0;
  background:transparent;
  padding:7px 0;
  min-height:40px
}
.motion-toggle:hover {
  color:var(--blue)
}
@media(min-width:1121px) {
  .menu-toggle {
    display:none!important
  }
  .page-home .nav {
    border-color:transparent
  }
}
@media(max-width:1200px) {
  .shell {
    width:calc(100% - 72px)
  }
  .nav-links {
    gap:22px
  }
  .nav-inner {
    gap:18px
  }
  .hero-copy h1 {
    font-size:clamp(3.2rem,5.8vw,4.8rem)
  }
  .home-tracks>a {
    padding-inline:21px;
    gap:12px
  }
  .services-stage {
    gap:35px
  }
  .contact-stage {
    gap:42px
  }
  .about-stage {
    gap:55px
  }
  .offer-card {
    padding:26px
  }
  .footer>span:nth-child(2) {
    display:none
  }
}
@media(max-width:1120px) {
  .nav-inner {
    min-height:82px;
    flex-wrap:wrap
  }
  .nav[data-enhanced] .menu-toggle:not([hidden]) {
    display:flex
  }
  .nav-links {
    width:100%;
    flex-wrap:wrap;
    padding-bottom:22px
  }
  .nav[data-enhanced] .nav-links {
    display:none
  }
  .nav[data-enhanced][data-open] .nav-links {
    display:flex
  }
  .home-stage {
    min-height:max(440px,calc(100svh - 290px))
  }
  .home-tracks>a {
    font-size:.875rem;
    gap:10px
  }
  .hero-actions {
    gap:14px
  }
  .hero-copy>.eyebrow {
    font-size:.8125rem;
    letter-spacing:.055em
  }
  .scene-coordinate {
    font-size:.75rem;
    letter-spacing:.06em
  }
  .services-stage {
    grid-template-columns:.75fr 1.25fr;
    gap:28px
  }
  .service-choice {
    gap:11px
  }
  .service-choice strong {
    font-size:1rem
  }
  .service-panel {
    padding:26px
  }
  .about-stage {
    gap:40px
  }
  .form-panel {
    padding:26px
  }
  .contact-stage {
    grid-template-columns:.9fr 1.1fr
  }
  .scope-notes {
    gap:25px
  }
  .scope-notes>a {
    padding-left:25px
  }
  .offer-bottom {
    align-items:start;
    flex-direction:column
  }
  .offer-bottom .button {
    width:100%;
    justify-content:space-between
  }
}
@media(max-width:860px) {
  .shell {
    width:calc(100% - 42px)
  }
  .main {
    padding-block:30px
  }
  .home-stage {
    grid-template-columns:1fr;
    min-height:0;
    gap:0
  }
  .hero-copy {
    padding-block:35px 0
  }
  .hero-copy h1 {
    font-size:clamp(2.9rem,8.4vw,4.9rem);
    max-width:720px
  }
  .hero-description {
    margin-top:22px;
    font-size:1.12rem
  }
  .hero-description br {
    display:none
  }
  .hero-detail {
    margin-top:10px;
    max-width:570px
  }
  .hero-copy>.eyebrow {
    margin-bottom:22px;
    font-size:.875rem
  }
  .hero-actions {
    margin-top:25px;
    gap:23px
  }
  .vision-scene {
    width:min(100%,540px);
    margin:0 auto;
    aspect-ratio:1.25
  }
  .hero-sculpture {
    width:100%;
    left:0;
    top:-10%
  }
  .tag-top {
    top:14%;
    left:6%
  }
  .tag-bottom {
    right:4%;
    bottom:13%
  }
  .scene-coordinate {
    bottom:4%;
    right:20%;
    font-size:.75rem
  }
  .home-tracks {
    grid-template-columns:1fr;
    margin-top:8px
  }
  .home-tracks>a {
    padding:16px 6px;
    font-size:.9375rem;
    gap:18px;
    min-height:58px
  }
  .home-tracks>a:first-child {
    padding-left:6px
  }
  .home-tracks>a+ a {
    border-left:0;
    border-top:1px solid var(--line)
  }
  .page-heading {
    margin-bottom:30px
  }
  .page-heading h1 {
    font-size:clamp(2.5rem,6.7vw,3.7rem)
  }
  .page-description {
    margin-top:17px
  }
  .services-stage {
    grid-template-columns:1fr;
    gap:22px;
    margin-top:0
  }
  .service-selector {
    display:grid;
    grid-template-columns:1fr;
    gap:10px
  }
  .service-choice {
    padding:15px 12px;
    border:1px solid var(--line);
    border-radius:10px;
    grid-template-columns:24px 1fr;
    gap:8px
  }
  .service-choice:hover,.service-choice[aria-current] {
    padding-left:12px;
    padding-right:12px
  }
  .service-choice strong {
    font-size:.9375rem
  }
  .service-panel h2 {
    font-size:2rem
  }
  .offers-stage {
    grid-template-columns:1fr
  }
  .offer-card {
    padding:26px
  }
  .offer-card h2 {
    font-size:2.25rem
  }
  .offer-bottom {
    flex-direction:row;
    align-items:center
  }
  .offer-bottom .button {
    width:auto
  }
  .scope-notes {
    grid-template-columns:1fr;
    gap:18px
  }
  .scope-notes>a {
    border-left:0;
    border-top:1px solid var(--line);
    padding:18px 0 0
  }
  .method-steps {
    gap:12px
  }
  .method-step {
    gap:10px;
    flex-wrap:wrap;
    align-items:start;
    justify-content:start
  }
  .method-step strong {
    font-size:.875rem;
    align-self:center
  }
  .method-panel {
    grid-template-columns:.55fr 1.45fr;
    padding:28px;
    gap:20px
  }
  .method-big-number {
    font-size:7.5rem
  }
  .method-panel-copy h2 {
    font-size:2rem
  }
  .about-stage {
    grid-template-columns:1fr;
    gap:0;
    padding-top:0
  }
  .about-heading .page-heading h1 {
    font-size:clamp(2.5rem,6.7vw,3.7rem)
  }
  .founder-card {
    margin-top:26px;
    max-width:none
  }
  .about-copy {
    padding-top:30px
  }
  .about-copy .lead {
    font-size:1.3rem;
    max-width:620px
  }
  .audience-block {
    margin-top:27px
  }
  .contact-stage {
    grid-template-columns:1fr;
    gap:30px;
    padding-top:0
  }
  .contact-copy .page-heading h1 {
    font-size:clamp(2.7rem,7vw,4rem)
  }
  .contact-copy .page-heading {
    margin-bottom:0
  }
  .call-card {
    margin-top:25px;
    max-width:none
  }
  .email-link {
    margin-top:17px
  }
  .page-rail {
    min-height:80px;
    gap:12px
  }
  .rail-place,.rail-link {
    min-width:0;
    gap:12px
  }
  .rail-center {
    gap:12px
  }
  .rail-dots a {
    width:24px
  }
  .footer {
    flex-wrap:wrap;
    font-size:.8125rem;
    gap:10px;
    padding-top:13px
  }
  .footer>div {
    gap:18px
  }
  .footer a,.motion-toggle {
    font-size:.875rem
  }
  .thanks-stage {
    padding:32px;
    margin-block:10px
  }
}
@media(max-width:520px) {
  .shell {
    width:calc(100% - 36px)
  }
  .nav-inner {
    min-height:77px
  }
  .brand {
    font-size:1.28rem;
    gap:7px
  }
  .brand img {
    width:42px;
    height:31px
  }
  .nav-links {
    flex-direction:column;
    align-items:stretch;
    gap:2px
  }
  .nav-links>a:not(.button) {
    padding:13px 6px
  }
  .nav-links>a:after {
    display:none
  }
  .nav-links>.button {
    margin-top:10px
  }
  .hero-copy {
    padding-top:25px
  }
  .hero-copy h1 {
    font-size:clamp(2.65rem,10.6vw,3.7rem)
  }
  .hero-copy>.eyebrow {
    letter-spacing:.02em;
    font-size:.8125rem;
    gap:8px
  }
  .eyebrow-line {
    width:15px
  }
  .hero-description {
    font-size:1.075rem
  }
  .hero-actions {
    gap:11px 20px;
    align-items:flex-start
  }
  .hero-actions .button {
    min-height:51px;
    padding-inline:18px;
    gap:20px
  }
  .hero-actions .text-link {
    font-size:.875rem
  }
  .vision-scene {
    aspect-ratio:1.07;
    margin-top:0
  }
  .hero-sculpture {
    top:0;
    width:100%
  }
  .glass-tag {
    padding:10px 13px;
    font-size:.8125rem;
    border-radius:11px;
    gap:9px
  }
  .tag-top {
    top:13%;
    left:1%
  }
  .tag-bottom {
    bottom:9%;
    right:1%
  }
  .scene-coordinate {
    right:12%;
    bottom:0;
    font-size:.75rem;
    letter-spacing:.035em
  }
  .scene-orbit {
    inset:10%
  }
  .home-tracks {
    margin-top:22px
  }
  .page-heading h1 {
    font-size:2.6rem
  }
  .service-selector {
    grid-template-columns:1fr
  }
  .service-choice {
    padding:12px;
    min-height:54px
  }
  .service-panel {
    padding:23px
  }
  .service-panel h2 {
    font-size:1.8rem;
    margin-top:23px
  }
  .service-deliverables {
    gap:8px;
    margin-top:22px
  }
  .service-deliverables li {
    padding:12px;
    min-width:88px;
    gap:7px;
    font-size:.875rem
  }
  .panel-top {
    gap:10px
  }
  .pill {
    font-size:.875rem;
    padding:5px 8px
  }
  .offer-card {
    padding:24px
  }
  .offer-bottom {
    flex-direction:column;
    align-items:stretch
  }
  .offer-bottom .button {
    width:100%
  }
  .method-step {
    flex-direction:column;
    gap:9px;
    padding-top:17px
  }
  .method-step strong {
    align-self:flex-start;
    max-width:9ch;
    font-size:.875rem;
    line-height:1.5
  }
  .method-panel {
    grid-template-columns:1fr;
    padding:25px;
    gap:17px
  }
  .method-big-number {
    font-size:4.5rem;
    justify-self:start;
    line-height:1;
    letter-spacing:-.075em
  }
  .method-panel-copy h2 {
    font-size:1.8rem
  }
  .method-panel-copy>.eyebrow {
    display:none
  }
  .method-panel-copy>p:not(.eyebrow) {
    margin-top:16px
  }
  .founder-card {
    padding:20px;
    gap:14px
  }
  .contact-copy .page-heading h1 {
    font-size:2.9rem
  }
  .call-card {
    gap:11px;
    padding:17px
  }
  .call-card-text strong {
    font-size:.9375rem
  }
  .call-card-text>span {
    font-size:.875rem
  }
  .form-panel {
    padding:24px 21px
  }
  .fields-two {
    grid-template-columns:1fr;
    gap:19px
  }
  .rail-dots {
    display:none
  }
  .page-number {
    font-size:.875rem
  }
  .rail-link {
    gap:9px
  }
  .rail-link.previous>span:last-child,.rail-link.next>span:first-child {
    max-width:113px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis
  }
  .rail-link>span:first-child,.rail-link.next>span:last-child {
    font-size:1.3rem
  }
  .rail-place {
    font-size:.8125rem;
    gap:7px
  }
  .footer {
    align-items:flex-start
  }
  .footer>div {
    align-items:flex-end;
    flex-direction:column;
    gap:0
  }
  .footer a {
    font-size:.875rem
  }
  .motion-toggle {
    min-height:32px
  }
  .thanks-stage {
    padding:26px
  }
  .thanks-stage h1 {
    font-size:2.8rem
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important
  }
  .hero-sculpture,.glass-tag,.offer-card {
    transform:none!important
  }
  .button:hover,.call-card:hover {
    transform:none
  }
}
html[data-motion=off] {
  scroll-behavior:auto
}
html[data-motion=off] *,html[data-motion=off] *:before,html[data-motion=off] *:after {
  animation:none!important;
  transition:none!important
}
html[data-motion=off] .hero-sculpture,html[data-motion=off] .glass-tag,html[data-motion=off] .offer-card {
  transform:none!important
}
@media print {
  body {
    display:block;
    background:#fff
  }
  .nav,.page-rail,.footer,.vision-scene,.hero-actions,.motion-toggle {
    display:none
  }
  .shell {
    width:100%
  }
  .main {
    padding:0
  }
  .glass {
    box-shadow:none;
    background:#fff;
    backdrop-filter:none
  }
  .services-stage,.method-stage,.about-stage {
    display:block
  }
  .service-panel[hidden],.method-panel[hidden] {
    display:block!important
  }
  .service-selector,.method-steps {
    display:none
  }
  .service-panel,.offer-card,.method-panel {
    break-inside:avoid;
    margin-block:20px
  }
  h1,h2,h3 {
    break-after:avoid
  }
  .gradient-text {
    -webkit-text-fill-color:#10213f;
    background:none
  }
}
/* Each route is a real document;
motion progressively enhances ordinary links. */
@view-transition {
  navigation:auto
}
.main {
  view-transition-name:page-body;
  animation:page-enter .7s var(--ease) both
}
::view-transition-old(page-body) {
  animation:page-leave .32s var(--ease) both
}
::view-transition-new(page-body) {
  animation:page-arrive .62s var(--ease) both
}
::view-transition-group(site-header),::view-transition-group(page-rail),::view-transition-group(site-footer) {
  animation-duration:.55s;
  animation-timing-function:var(--ease)
}
@keyframes page-enter {
  from {
    opacity:0;
    transform:translateY(18px);
    filter:blur(4px)
  }
  to {
    opacity:1;
    transform:none;
    filter:blur(0)
  }
}
@keyframes page-leave {
  to {
    opacity:0;
    transform:translateX(-5%) scale(.985);
    filter:blur(6px)
  }
}
@keyframes page-arrive {
  from {
    opacity:0;
    transform:translateX(6%) scale(1.012);
    filter:blur(6px)
  }
  to {
    opacity:1;
    transform:none;
    filter:blur(0)
  }
}
@keyframes sculpture-float {
  0%,100% {
    translate:0 0
  }
  50% {
    translate:0 -10px
  }
}
@keyframes glass-float {
  0%,100% {
    translate:0 0
  }
  50% {
    translate:0 5px
  }
}
.hero-sculpture {
  animation:none
}
html[data-motion=on] .hero-sculpture {
  animation:sculpture-float 8s ease-in-out infinite
}
html[data-motion=on] .glass-tag {
  animation:glass-float 7s ease-in-out infinite
}
.tag-bottom {
  animation-delay:-3s
}
.offer-card:after {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:radial-gradient(ellipse at var(--light-x,50%) var(--light-y,10%),#ffffff5c,transparent 55%);
  opacity:.8;
  z-index:-1
}
html[data-inactive] *,html[data-inactive] *:before,html[data-inactive] *:after {
  animation-play-state:paused!important
}
.service-selector[data-enhanced]~.service-panels>.service-panel,.method-panel {
  margin-top:0
}
.method-panel[hidden]+.method-panel {
  margin-top:0
}
.motion-toggle:disabled {
  cursor:default;
  color:#526582
}
@media(prefers-reduced-motion:reduce) {
  @view-transition {
    navigation:none
  }
  ::view-transition-old(*),::view-transition-new(*),::view-transition-group(*) {
    animation:none!important
  }
}
html[data-motion=off]::view-transition-old(*),html[data-motion=off]::view-transition-new(*),html[data-motion=off]::view-transition-group(*) {
  animation:none!important
}
@media(max-width:860px) {
  .page-home .home-tracks {
    display:none
  }
  .page-home .hero-detail {
    display:none
  }
  .page-home .hero-description {
    max-width:520px
  }
  .page-home .vision-scene {
    width:min(100%,460px);
    aspect-ratio:1.5;
    margin-top:5px
  }
  .page-home .hero-sculpture {
    top:-23%
  }
  .page-home .tag-top {
    top:7%;
    left:0
  }
  .page-home .tag-bottom {
    bottom:7%;
    right:0
  }
  .page-home .scene-coordinate {
    bottom:0;
    right:15%;
    font-size:.75rem
  }
}
@media(max-width:520px) {
  .page-home .vision-scene {
    aspect-ratio:1.6;
    margin-top:14px
  }
  .page-home .hero-sculpture {
    top:-24%
  }
  .page-home .hero-actions {
    margin-top:20px
  }
  .page-home .hero-description {
    margin-top:18px
  }
  .page-home .glass-tag {
    padding:8px 11px
  }
  .page-home .tag-top {
    top:0
  }
  .page-home .tag-bottom {
    bottom:4%
  }
  .page-home .scene-coordinate {
    display:none
  }
  .page-home .page-rail {
    margin-top:12px
  }
}

/* Team portraits and quieter interaction cues. */
.text-link,.profile-link {
  color:var(--blue-deep);
  text-decoration:underline;
  text-underline-offset:6px;
  text-decoration-color:#a9c4ef;
  text-decoration-thickness:1px;
  transition:color .25s,text-decoration-color .25s;
}
.text-link:hover,.profile-link:hover {
  color:#123598;
  text-decoration-color:currentColor;
}
.email-link {
  text-decoration:underline;
  text-decoration-color:#b8cae3;
  text-underline-offset:5px;
}
.home-tracks>a:hover {
  color:var(--blue-deep);
}
.scope-notes>a:hover strong {
  color:var(--blue-deep);
  text-decoration:underline;
  text-underline-offset:5px;
}
.submit-button,.offer-bottom .button {
  justify-content:center;
}
.call-card-text {
  min-width:0;
}
.call-symbol svg {
  width:22px;
  height:22px;
}
.founders-list {
  display:grid;
  gap:17px;
  margin-top:32px;
}
.founders-list .founder-card {
  margin:0;
  max-width:none;
  padding:22px;
  gap:22px;
}
.founders-list .founder-monogram,.founder-card .founder-portrait {
  width:96px;
  height:112px;
  flex:0 0 96px;
  border-radius:14px;
}
.founder-card .founder-portrait {
  display:block;
  object-fit:cover;
  object-position:50% 38%;
  border:1px solid #d5e5f5;
}
.founder-details {
  min-width:0;
}
.founder-details h2 {
  font-size:1.125rem;
  line-height:1.35;
  letter-spacing:-.035em;
}
.founder-role,.founder-detail {
  font-size:.875rem;
  color:var(--muted);
  line-height:1.6;
  margin-top:4px;
}
.founder-detail {
  margin-top:6px;
}
.profile-link {
  display:inline-flex;
  align-items:center;
  min-height:44px;
  font-size:.875rem;
  font-weight:550;
}
.about-copy-title {
  font-size:1.05rem;
  line-height:1.55;
  letter-spacing:-.02em;
  color:#526582;
  margin-bottom:19px;
}
@media(max-width:520px) {
  .founders-list .founder-card {
    padding:18px;
    gap:17px;
  }
  .founders-list .founder-monogram,.founder-card .founder-portrait {
    width:78px;
    height:96px;
    flex-basis:78px;
    border-radius:12px;
  }
  .founder-details h2 {
    font-size:1.05rem;
  }
}
