:root {
  --ink: #f4f7fb;
  --muted: #a9b7c8;
  --navy: #07182d;
  --navy-deep: #04101f;
  --blue: #194cff;
  --cyan: #72e3ff;
  --lime: #c6ff4a;
  --line: rgba(255, 255, 255, .14);
  --card: rgba(255, 255, 255, .055);
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Unbounded", "Arial Black", sans-serif;
  --page: min(1380px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--navy-deep);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 8%, rgba(22, 76, 255, .22), transparent 26rem),
    var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  z-index: 14;
  inset: 0;
  background: #020a12;
}

::selection {
  color: var(--navy-deep);
  background: var(--lime);
}

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

button {
  color: inherit;
  font: inherit;
}

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

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 max(40px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: height .35s ease, background .35s ease, backdrop-filter .35s ease;
}

.header.scrolled {
  height: 74px;
  background: rgba(4, 16, 31, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
}

.logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: -.06em;
}

.logo-name {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, .75);
  transition: color .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.nav a:hover {
  color: white;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  font-size: 12px;
  font-weight: 700;
}

.header-cta svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .3s ease;
}

.header-cta:hover svg,
.text-link:hover svg {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 100svh;
  width: var(--page);
  margin: 0 auto;
  padding: 148px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .62fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  position: relative;
  isolation: isolate;
}

.hero-copy {
  z-index: 2;
}

.eyebrow {
  margin: 0 0 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6d2df;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 15px var(--lime);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(198, 255, 74, .5);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

.hero-title,
.section h2,
.cta-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}

.hero-title {
  font-size: clamp(48px, 6.3vw, 108px);
}

.title-line {
  display: block;
  overflow: hidden;
  padding: 0 .06em .09em 0;
  white-space: nowrap;
}

.title-line > span {
  display: block;
  transform: translateY(110%);
  animation: title-in 1s cubic-bezier(.16, 1, .3, 1) forwards;
}

.title-line:nth-child(2) > span {
  animation-delay: .11s;
}

.title-line:nth-child(3) > span {
  animation-delay: .22s;
}

.title-accent {
  color: var(--cyan);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.07em;
}

.hero-bottom {
  margin-top: clamp(30px, 5vh, 64px);
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.hero-lead {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
}

.button {
  min-height: 62px;
  padding: 7px 7px 7px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.button-primary {
  color: var(--navy-deep);
  background: var(--lime);
}

.button:hover {
  transform: scale(1.03);
}

.button-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 50%;
}

.button-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-visual {
  position: relative;
  z-index: 2;
  max-width: 480px;
  justify-self: end;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: .72;
  border-radius: 240px 240px 18px 18px;
  background: #102b49;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .28);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(.75) contrast(1.05);
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.portrait-frame:hover img {
  transform: scale(1.07);
}

.portrait-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 16, 31, .92), transparent 42%);
}

.portrait-caption {
  position: absolute;
  z-index: 3;
  left: 30px;
  right: 30px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.portrait-number {
  color: rgba(255, 255, 255, .45);
  font-family: var(--display);
  font-size: 13px;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  color: var(--navy-deep);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 15px 50px rgba(0, 0, 0, .25);
  animation: note-float 5s ease-in-out infinite;
}

.note-top {
  top: 18%;
  left: -46px;
  padding: 13px 17px;
  background: var(--cyan);
  transform: rotate(-5deg);
}

.note-icon {
  font-size: 21px;
}

.note-bottom {
  right: -38px;
  bottom: 14%;
  padding: 12px 17px 12px 12px;
  background: var(--lime);
  animation-delay: -2s;
}

.note-value {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 12px;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(114, 227, 255, .13);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 640px;
  height: 640px;
  top: 8%;
  right: -13%;
  animation: orbit 18s linear infinite;
}

.orbit-two {
  width: 450px;
  height: 450px;
  right: -6%;
  top: 21%;
  border-style: dashed;
  animation: orbit 26s linear infinite reverse;
}

.scroll-hint {
  position: absolute;
  left: 0;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--cyan);
  animation: scroll-line 2s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  padding: 18px 0;
  color: var(--navy-deep);
  background: var(--lime);
  transform: rotate(-1.3deg) scale(1.02);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--display);
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -.04em;
  text-transform: uppercase;
  animation: marquee 25s linear infinite;
}

.ticker-track i {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(78px, 8vw, 125px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: clamp(48px, 5vw, 78px);
  display: grid;
  grid-template-columns: 1fr 3fr 1.2fr;
  align-items: end;
  gap: 30px;
}

.section-heading h2,
.about h2 {
  font-size: clamp(45px, 5.8vw, 92px);
}

.section h2 em,
.cta-section h2 em {
  color: var(--cyan);
  font-family: Georgia, serif;
  font-weight: 400;
}

.section-index {
  margin: 0;
  align-self: start;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.section-heading > h2:first-child {
  grid-column: span 2;
}

.request-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.request-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .35s ease, border-color .35s ease;
}

.request-card:hover {
  transform: translateY(-8px);
  border-color: rgba(114, 227, 255, .55);
}

.request-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 500;
  letter-spacing: -.045em;
}

.request-card p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.approach {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(80px, 10vw, 180px);
}

.approach-sticky {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.approach-sticky h2 {
  margin-top: 36px;
  font-size: clamp(45px, 5vw, 82px);
}

.approach-art {
  position: relative;
  width: 360px;
  height: 270px;
  margin: 70px auto 0;
  display: grid;
  place-items: center;
}

.approach-core {
  position: relative;
  z-index: 2;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  background: var(--lime);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 30px;
  font-style: italic;
  box-shadow: 0 0 70px rgba(198, 255, 74, .28);
}

.approach-ring {
  position: absolute;
  border: 1px solid rgba(114, 227, 255, .28);
  border-radius: 50%;
}

.ring-a {
  width: 300px;
  height: 145px;
  animation: ring 8s linear infinite;
}

.ring-b {
  width: 145px;
  height: 300px;
  animation: ring 11s linear infinite reverse;
}

.principles {
  display: grid;
}

.principle {
  min-height: 0;
  padding: 45px 0;
  display: flex;
  flex-direction: column;
  align-content: start;
  border-top: 1px solid var(--line);
}

.principle:first-child {
  border-top: 0;
}

.principle h3 {
  margin: 0 0 35px;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .8;
}

.principle p {
  max-width: 590px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
}

.principle small {
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process {
  border-top: 1px solid var(--line);
}

.section-heading.compact {
  grid-template-columns: 1fr 4.2fr;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 54px);
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 27px;
  right: 27px;
  height: 1px;
  background: linear-gradient(90deg, rgba(114, 227, 255, .2), rgba(198, 255, 74, .62), rgba(114, 227, 255, .2));
}

.process-step {
  position: relative;
  min-width: 0;
  padding-top: 92px;
}

.process-marker {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
}

.process-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.process-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.process-icon-check svg {
  transform: translate(1px, 1px);
}

.process-content {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.process-content h3 {
  max-width: 360px;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.1;
}

.process-content p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.about {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
  min-height: 720px;
  overflow: hidden;
  border-radius: 18px;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 16, 31, .8), transparent 45%);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: 52% 50%;
  filter: saturate(.7);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.about-photo:hover img {
  transform: scale(1.025);
}

.photo-label {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 30px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.about h2 {
  margin: 40px 0 46px;
}

.about-intro {
  max-width: 590px;
  margin: 0 0 75px;
  color: #d8e0e9;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.45;
}

.education {
  border-top: 1px solid var(--line);
}

.education-title {
  margin: 20px 0 30px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.education-row {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.education-row span {
  font-family: var(--display);
  font-size: 10px;
}

.education-row p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.education-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.education-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.no-reviews {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  text-align: center;
}

.no-reviews .section-index {
  align-self: center;
  margin-bottom: 40px;
}

.no-reviews h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(43px, 6.5vw, 100px);
}

.asterisk {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(114, 227, 255, .055);
  font-size: min(80vw, 780px);
  line-height: 1;
  transform: translate(-50%, -50%);
  animation: orbit 55s linear infinite;
}

.reviews-bottom {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 60px auto 0;
}

.reviews-bottom p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  font-size: 12px;
  font-weight: 700;
}

.cta-section {
  position: relative;
  overflow: hidden;
  width: calc(100% - 40px);
  min-height: 700px;
  margin: 0 auto 20px;
  padding: 110px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  background: var(--cyan);
  border-radius: 24px;
  text-align: center;
  isolation: isolate;
}

.cta-section .eyebrow {
  color: rgba(4, 16, 31, .6);
}

.cta-section .status-dot {
  background: var(--blue);
  box-shadow: 0 0 15px rgba(25, 76, 255, .5);
}

.cta-section .status-dot::after {
  border-color: rgba(25, 76, 255, .4);
}

.cta-section h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(43px, 6.5vw, 100px);
}

.cta-section h2 em {
  color: var(--navy-deep);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: .08em;
  text-underline-offset: .08em;
}

.cta-lead {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 34px 0;
  color: rgba(4, 16, 31, .65);
  font-size: 15px;
}

.contact-grid {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.contact-card {
  min-width: 0;
  min-height: 148px;
  padding: 19px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 16px;
  color: white;
  background: var(--navy-deep);
  border: 1px solid rgba(4, 16, 31, .12);
  border-radius: 15px;
  text-align: left;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.contact-card:hover {
  color: var(--navy-deep);
  background: var(--lime);
}

.contact-type {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-value {
  align-self: end;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: start;
  font-size: 20px;
  transition: transform .3s ease;
}

.contact-card:hover .contact-arrow {
  transform: translate(3px, -3px);
}

.cta-glow {
  position: absolute;
  z-index: -1;
  width: 600px;
  height: 600px;
  top: -300px;
  right: -100px;
  background: rgba(198, 255, 74, .55);
  border-radius: 50%;
  filter: blur(2px);
}

.footer {
  width: var(--page);
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer p {
  margin: 0;
}

.footer > a {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}

.reveal[data-delay="2"] {
  transition-delay: .15s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes title-in {
  to { transform: translateY(0); }
}

@keyframes pulse {
  0% { opacity: .8; transform: scale(.4); }
  80%, 100% { opacity: 0; transform: scale(1.5); }
}

@keyframes note-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes ring {
  to { transform: rotate(360deg); }
}

@keyframes scroll-line {
  0% { transform: translateX(-110%); }
  50%, 100% { transform: translateX(220%); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .header {
    padding: 0 24px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
    gap: 35px;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    grid-template-columns: .7fr 3fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
    max-width: 500px;
  }

  .request-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach {
    gap: 65px;
  }

  .process-timeline {
    gap: 24px;
  }

  .about {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 32px);
  }

  body {
    background:
      radial-gradient(circle at 80% 4%, rgba(22, 76, 255, .2), transparent 19rem),
      var(--navy);
  }

  .header,
  .header.scrolled {
    height: 72px;
    padding: 0 16px;
    grid-template-columns: auto 1fr auto;
  }

  .logo-name {
    display: none;
  }

  .header-cta {
    position: relative;
    z-index: 2;
    margin-right: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    font-size: 9px;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .header-cta svg {
    width: 14px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    z-index: 2;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: white;
    transition: transform .3s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100dvh;
    padding: 110px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    background: #020a12;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.menu-open .header,
  body.menu-open .header.scrolled {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  .nav a {
    font-family: var(--display);
    font-size: 27px;
    letter-spacing: -.04em;
  }

  .hero {
    min-height: auto;
    padding: 115px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
  }

  .eyebrow {
    margin-bottom: 25px;
    font-size: 8px;
  }

  .hero-title {
    font-size: 10.8vw;
  }

  .hero-title .title-line:first-child {
    font-size: 12.2vw;
  }

  .hero-title .title-accent {
    font-size: 13vw;
  }

  .hero-bottom {
    margin-top: 30px;
    gap: 25px;
  }

  .hero-lead {
    max-width: 92%;
    font-size: 14px;
  }

  .button {
    width: 100%;
    min-height: 58px;
  }

  .hero-visual {
    width: 88%;
    max-width: 420px;
    align-self: center;
    justify-self: auto;
  }

  .portrait-frame {
    border-radius: 200px 200px 15px 15px;
  }

  .note-top {
    left: -24px;
  }

  .note-bottom {
    right: -20px;
  }

  .hero-orbit {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  .ticker {
    padding: 14px 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading,
  .section-heading.compact {
    margin-bottom: 55px;
    display: block;
  }

  .section-heading h2,
  .about h2 {
    margin-top: 26px;
    font-size: clamp(39px, 12vw, 58px);
  }

  .section-heading > p:last-child {
    max-width: 90%;
    margin-top: 26px;
  }

  .request-card {
    min-height: auto;
    padding: 20px;
    justify-content: flex-start;
  }

  .request-list {
    grid-template-columns: 1fr;
  }

  .request-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .request-card p {
    font-size: 12px;
  }


  .approach {
    display: block;
  }

  .approach-sticky {
    position: relative;
    top: auto;
    margin-bottom: 70px;
  }

  .approach-sticky h2 {
    margin-top: 25px;
    font-size: clamp(39px, 12vw, 58px);
  }

  .approach-art {
    width: 280px;
    height: 220px;
    margin-top: 45px;
  }

  .approach-core {
    width: 92px;
    height: 92px;
    font-size: 27px;
  }

  .ring-a {
    width: 240px;
    height: 115px;
  }

  .ring-b {
    width: 115px;
    height: 240px;
  }

  .principle {
    min-height: auto;
    padding: 32px 24px;
  }

  .principle h3 {
    margin-bottom: 27px;
    font-size: 48px;
  }

  .principle p {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(114, 227, 255, .12), rgba(198, 255, 74, .58), rgba(114, 227, 255, .12));
  }

  .process-step {
    min-height: auto;
    padding: 0 0 36px 78px;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  .process-marker {
    left: 0;
  }

  .process-content {
    padding-top: 0;
    border-top: 0;
  }

  .process-content h3 {
    margin-bottom: 12px;
    font-size: 23px;
  }

  .process-content p {
    font-size: 12px;
  }

  .about {
    display: flex;
    flex-direction: column;
    gap: 65px;
  }

  .about-photo {
    position: relative;
    top: auto;
    width: 100%;
    min-height: 480px;
    aspect-ratio: .82;
  }

  .about-photo img {
    min-height: 0;
  }

  .about h2 {
    margin-bottom: 30px;
  }

  .about-intro {
    margin-bottom: 55px;
    font-size: 17px;
  }

  .no-reviews {
    min-height: 680px;
  }

  .no-reviews h2 {
    font-size: clamp(38px, 11vw, 55px);
  }

  .reviews-bottom {
    margin-top: 40px;
  }

  .reviews-bottom p {
    font-size: 13px;
  }

  .cta-section {
    width: calc(100% - 16px);
    min-height: 650px;
    margin-bottom: 8px;
    padding: 80px 20px;
    border-radius: 18px;
  }

  .cta-section h2 {
    font-size: clamp(38px, 11vw, 55px);
  }

  .cta-lead {
    font-size: 13px;
  }

  .contact-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-card {
    min-height: 102px;
    padding: 16px;
  }

  .footer {
    min-height: 230px;
    padding: 45px 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    gap: 28px;
  }

  .footer > p {
    width: 100%;
    order: 3;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 10.6vw;
  }

  .hero-title .title-line:first-child {
    font-size: 11.9vw;
  }

  .floating-note {
    transform: scale(.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
