@font-face {
  font-family: "Albert Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/albert-sans-400.ttf") format("truetype");
}
@font-face {
  font-family: "Albert Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/albert-sans-500.ttf") format("truetype");
}
@font-face {
  font-family: "Albert Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/albert-sans-600.ttf") format("truetype");
}
@font-face {
  font-family: "Albert Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/albert-sans-700.ttf") format("truetype");
}
:root {
  color-scheme: dark;
  --bg: #111214;
  --footer: #08090b;
  --text: #fff;
  --muted: #d0d0d4;
  --purple: #7c3cff;
  --border: #34343c;
  --container: 1280px;
  --space: clamp(64px, 8.333vw, 120px);
  --gutter: clamp(24px, 5.556vw, 80px);
  --radius: 12px;
  --hero-gradient: linear-gradient(
    90deg,
    #111214 0%,
    #201333 55%,
    #39166a 100%
  );
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
}
h1 {
  font-size: clamp(36px, 3.889vw, 56px);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(29px, 2.778vw, 40px);
  line-height: 1.125;
  letter-spacing: -0.005em;
}
h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}
p {
  color: var(--muted);
}
p + p {
  margin-top: 24px;
}
:focus-visible {
  outline: 3px solid #c9a7ff;
  outline-offset: 5px;
}
a:hover {
  color: #c9a7ff;
}
a:active {
  opacity: 0.8;
}
::selection {
  background: #7c3cff;
  color: #fff;
}
.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.eyebrow {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 24px;
}
.number {
  color: var(--purple);
  font-size: 24px;
  font-weight: 600;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  z-index: 100;
  background: #fff;
  color: #111214;
  padding: 12px 20px;
  border-radius: 6px;
}
.skip-link:focus {
  transform: none;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 28px;
  background: var(--purple);
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  transition:
    transform 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  background: #8b51ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px #7c3cff25;
}
.button:active {
  transform: translateY(0);
}
.button-light {
  background: #fff;
  color: #2a0c62;
  font-size: 16px;
  min-height: 60px;
  border-radius: 6px;
}
.button-light:hover {
  background: #eee5ff;
  color: #2a0c62;
}
.button-outline {
  background: transparent;
  border-color: var(--purple);
  padding: 11px 25px;
}
.button-outline:hover {
  background: #7c3cff18;
}
.button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
/* Shared navigation and footer. */
.site-header {
  height: 119px;
  width: 100%;
  padding: 20px clamp(24px, 2.847vw, 41px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #00000038;
  position: relative;
  z-index: 10;
  gap: 30px;
}
.brand {
  display: block;
  flex: 0 1 349px;
}
.brand img {
  width: 349px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 493px;
  padding-top: 23px;
  gap: 28px;
  font-size: 16px;
  letter-spacing: -0.05em;
}
.main-nav a {
  position: relative;
  padding: 0 0 14px;
  white-space: nowrap;
}
.main-nav a[aria-current="page"]:after {
  position: absolute;
  content: "";
  height: 2px;
  background: var(--purple);
  inset: auto 0 0;
}
.menu-toggle {
  display: none;
}
.site-footer {
  background: var(--footer);
  padding-top: 60px;
  min-height: 400px;
  font-size: 15px;
  line-height: 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 400fr 260fr 200fr 240fr;
  gap: 60px;
  min-height: 260px;
}
.footer-brand img {
  width: 349px;
}
.footer-brand p {
  max-width: 275px;
  color: #a7a7ae;
  margin-top: 25px;
  line-height: 23px;
}
.site-footer h2 {
  font-size: 12px;
  font-weight: 500;
  color: #a7a7ae;
  letter-spacing: 0.08em;
  line-height: 23px;
  margin: 0 0 22px;
}
.site-footer nav > a {
  display: block;
  width: fit-content;
}
.site-footer [aria-current="page"] {
  color: var(--purple);
}
.footer-contact {
  padding-top: 10px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 35px;
  font-size: 15px;
}
.footer-contact img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.copyright {
  border-top: 1px solid #24252a;
  padding: 25px 0 28px;
  font-size: 13px;
  color: #74757d;
  letter-spacing: 0.01em;
}
/* Hero gradient fades replicate the two Figma transition strengths. */
.hero-shell {
  background: var(--hero-gradient);
  position: relative;
  isolation: isolate;
}
.hero-shell:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  background: linear-gradient(
    180deg,
    rgba(17, 18, 20, 0) 0%,
    rgba(17, 18, 20, 0) 46%,
    rgba(17, 18, 20, 0.22) 76%,
    rgba(17, 18, 20, 0.96) 100%
  );
  pointer-events: none;
  z-index: 2;
}
.page-hero {
  min-height: 561px;
  position: relative;
  display: grid;
  grid-template-columns: 670fr 560fr;
  gap: 50px;
  padding-top: 70px;
  padding-bottom: 70px;
  align-items: start;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-copy .eyebrow {
  margin-bottom: 24px;
}
.hero-copy > p:not(.eyebrow):not(.motto) {
  margin-top: 24px;
  line-height: 25px;
  max-width: 630px;
}
.hero-art {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: end;
  width: 100%;
  object-fit: contain;
  margin-top: -30px;
}
.services-hero h1,
.contact-hero h1 {
  font-size: clamp(36px, 3.612vw, 52px);
  line-height: 1.115;
}
.services-hero .hero-art {
  width: 540px;
}
.discover {
  display: inline-block;
  color: var(--purple);
  font-size: 16px;
  margin-top: 24px;
}
.about-hero .page-hero {
  grid-template-columns: 610fr 570fr;
  gap: 87px;
  padding-bottom: 0;
}
.about-hero .hero-art {
  width: 570px;
  align-self: end;
  margin-top: -15px;
  mask-image: linear-gradient(#000 0 84%, transparent 100%);
}
.about-hero .page-hero:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  width: 540px;
  height: 561px;
  background: linear-gradient(120deg, #7c3cff35, #4d16b412 70%, transparent);
  clip-path: polygon(43% 0, 100% 26%, 100% 100%, 0 100%);
}
.hero-copy .motto {
  margin-top: 64px;
  padding-left: 14px;
  border-left: 3px solid var(--purple);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.18em;
  color: #e0e0e8;
}
.contact-hero .hero-copy > p:not(.eyebrow) {
  font-size: 20px;
  line-height: 28px;
  max-width: 610px;
  margin-top: 36px;
}
.contact-hero .hero-art {
  margin-top: -39px;
}
.legal-hero .page-hero {
  min-height: 341px;
  padding-top: 61px;
  padding-bottom: 35px;
  grid-template-columns: 690fr 482fr;
  gap: 90px;
}
.legal-hero .hero-copy > p:not(.eyebrow) {
  font-size: 20px;
  line-height: 30px;
  margin-top: 26px;
}
.legal-hero .hero-art {
  width: 482px;
  margin-top: -62px;
}
.legal-hero:after {
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(17, 18, 20, 0) 0%,
    rgba(17, 18, 20, 0) 55%,
    rgba(17, 18, 20, 0.2) 82%,
    #111214 100%
  );
}
/* Landing page. */
.home-hero {
  height: min(61.243vw, 1080px);
  min-height: 700px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.home-background {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: none;
  top: -12.36%;
  z-index: -2;
}
.home-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 13%;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
  z-index: -1;
}
.home-hero .site-header {
  background: transparent;
}
.home-hero-copy {
  position: absolute;
  top: 21.66%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 600px;
}
.home-hero h1 {
  font-size: clamp(52px, 4.981vw, 88px);
  line-height: 0.99;
  letter-spacing: -0.05em;
}
.home-hero p {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.05em;
  color: #fff;
  margin-top: 20px;
}
.home-hero .button {
  margin-top: 25px;
  min-width: 220px;
}
.home-intro {
  display: grid;
  grid-template-columns: 550fr 620fr;
  gap: 110px;
  padding-top: 20px;
  padding-bottom: 120px;
  position: relative;
  min-height: 845px;
}
.intro-copy h2 {
  max-width: 550px;
}
.intro-copy > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 25px;
  max-width: 550px;
}
.intro-copy .short-rule {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--purple);
  margin: 40px 0 30px;
}
.intro-copy .button {
  margin: 28px 0 0 112px;
}
.service-preview {
  position: relative;
  padding-top: 76px;
  isolation: isolate;
}
.brand-orbit {
  position: absolute;
  z-index: -1;
  top: -52px;
  left: 30px;
  width: 788px;
  aspect-ratio: 1;
  border: 46px solid #7c3cff15;
  border-radius: 50%;
  box-shadow: inset 0 0 0 44px #7c3cff08;
  pointer-events: none;
}
.brand-orbit img {
  position: absolute;
  top: 259px;
  left: 225px;
  width: 364px;
  filter: drop-shadow(0 0 25px #7c3cff77);
}
.home-intro {
  clip-path: inset(-60px calc((1280px - 100vw) / 2) 0);
}
.service-card {
  position: relative;
  background: #111216bf;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  width: 430px;
  min-height: 150px;
  margin-bottom: 30px;
}
.service-card > img {
  width: 60px;
  height: 60px;
  flex: none;
  background: #34343c60;
  border-radius: 50%;
  padding: 3px;
}
.service-card h3 {
  margin-top: 1px;
}
.service-card p {
  font-size: 16px;
  line-height: 19px;
  color: #c3c3c9;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 40px;
}
.section-heading > p {
  max-width: 514px;
  margin-top: 45px;
  justify-self: end;
  line-height: 25px;
}
.project-image {
  background: #25262b;
  padding: 36px 56px 0;
  overflow: hidden;
}
.project-image img {
  width: 100%;
}
.project-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 19px;
}
.project-caption span {
  color: var(--purple);
}
.project-caption h3 {
  font-size: 24px;
  line-height: 29px;
  max-width: 235px;
}
.project-caption > p {
  font-size: 16px;
}
.text-link {
  font-size: 16px;
  border-bottom: 1px solid #666;
  padding-bottom: 6px;
  white-space: nowrap;
}
.featured-project {
  padding-bottom: 36px;
  border-bottom: 1px solid #7c3cff55;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
.project-grid .project-image {
  padding: 34px 42px 0;
  aspect-ratio: 625/304;
  display: flex;
  align-items: end;
}
.project-grid .project-caption {
  margin-top: 16px;
  gap: 12px;
}
.project-grid .project-caption > p {
  font-size: 16px;
  white-space: nowrap;
}
.process {
  margin-top: var(--space);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 24px 0;
  margin: 0;
  border-block: 1px solid #7c3cff70;
}
.process-grid li {
  padding: 0 60px 0 80px;
  border-right: 1px solid #7c3cff99;
}
.process-grid li:last-child {
  border: 0;
}
.process-grid h3 {
  line-height: 29px;
}
.process-grid p {
  font-size: 16px;
  line-height: 19px;
  max-width: 279px;
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
  margin-top: var(--space);
}
.benefits > div > p:not(.eyebrow) {
  max-width: 465px;
  line-height: 25px;
  margin-top: 32px;
}
.benefit-list article {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.benefit-list img {
  width: 80px;
  height: 80px;
  flex: none;
}
.benefit-list h3 {
  font-size: 24px;
}
.benefit-list p {
  font-size: 16px;
  line-height: 19px;
  margin-top: 18px;
}
.benefit-list article:not(:last-child) > div {
  padding-bottom: 28px;
  border-bottom: 1px solid #292a2e;
}
.faq-section {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 120px;
}
.faq-section .eyebrow {
  margin-bottom: 24px;
}
.faq-section h2 {
  margin-bottom: 42px;
}
.faq-list {
  text-align: left;
  max-width: 900px;
  margin: auto;
  border: 1px solid #292a2e;
  border-radius: 8px;
  overflow: hidden;
}
.faq-list details {
  background: #121316;
}
.faq-list details + details {
  border-top: 1px solid #292a2e;
}
.faq-list details[open] {
  background: #15161a;
}
.faq-list summary {
  list-style: none;
  padding: 25px 32px;
  min-height: 80px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  line-height: 1.4;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-symbol {
  color: var(--purple);
  font-size: 24px;
  flex: none;
}
.faq-symbol:before {
  content: "+";
}
details[open] .faq-symbol:before {
  content: "−";
}
.faq-answer {
  padding: 0 32px 28px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 23px;
}
.faq-list summary:hover {
  background: #7c3cff09;
}
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 56% 50%, #9a5bff26, transparent 60%),
    linear-gradient(74.476deg, #31106f 0%, #5920cc 48%, #762cff 100%);
  padding: 70px 0;
  min-height: 400px;
  text-align: center;
}
.cta:before,
.cta:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 50px solid #ffffff09;
  z-index: -1;
}
.cta:before {
  width: 420px;
  height: 420px;
  left: -300px;
  top: -310px;
}
.cta:after {
  width: 280px;
  height: 280px;
  right: -200px;
  bottom: -240px;
}
.cta .eyebrow {
  color: #ffffffbf;
  font-weight: 500;
  margin-bottom: 24px;
}
.cta h2 {
  font-size: clamp(32px, 3.333vw, 48px);
  line-height: 1.375;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 24px;
}
.cta .button {
  min-width: 274px;
}
/* Services and about. */
.services-section {
  padding-top: 120px;
}
.services-section .section-heading {
  margin-bottom: 60px;
}
.service-row {
  display: grid;
  grid-template-columns: 45px 460fr 60px 600fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid #7c3cff26;
}
.service-row:first-of-type {
  padding-top: 0;
}
.service-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.service-row > div > p {
  line-height: 25px;
  margin-top: 20px;
}
.service-row > img {
  width: 60px;
  height: 60px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 16px;
}
.check-list li:before {
  content: "✓";
  font-weight: 600;
}
.solutions,
.extras {
  padding-top: 120px;
  padding-bottom: 0;
}
.solutions > h2 {
  margin-bottom: 32px;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.two-columns article > p {
  margin: 24px 0;
}
.extras {
  padding-bottom: 120px;
}
.extras > p:not(.eyebrow) {
  max-width: 640px;
  line-height: 25px;
  margin-top: 32px;
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 32px;
}
.card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #111216bf;
  padding: 15px 20px;
}
.card p {
  margin-top: 14px;
  line-height: 25px;
}
.about-intro {
  padding-top: 112px;
  min-height: 520px;
}
.about-intro .two-columns {
  margin-top: 48px;
  gap: 110px;
}
.about-intro p:not(.eyebrow) {
  line-height: 27px;
}
.accent-column {
  position: relative;
}
.accent-column:before {
  content: "";
  position: absolute;
  left: -48px;
  top: 0;
  width: 4px;
  height: 118px;
  border-radius: 2px;
  background: linear-gradient(#8c40ffe6, #8c40ff14);
}
.about-story {
  display: grid;
  grid-template-columns: 560fr 600fr;
  gap: 80px;
  min-height: 650px;
  padding-top: 112px;
  padding-bottom: 112px;
}
.about-story > div:nth-child(2) {
  padding-top: 45px;
}
.about-story p:not(.eyebrow) {
  line-height: 27px;
}
.about-story p + p {
  margin-top: 65px;
}
.about-story blockquote {
  position: relative;
  background: #15121c;
  border: 1px solid #7c3cff61;
  border-radius: 10px;
  margin: 112px 30px 0 0;
  padding: 34px 34px 34px 38px;
  font-weight: 600;
  line-height: 27px;
}
.about-story blockquote:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 35px;
  bottom: 35px;
  width: 4px;
  background: var(--purple);
}
.page-about .faq-section {
  padding-top: 92px;
  min-height: 740px;
}
/* Contact and forms. */
.contact-section {
  display: grid;
  grid-template-columns: 490fr 740fr;
  gap: 50px;
  padding-top: 76px;
  padding-bottom: 70px;
}
.contact-direct {
  padding-top: 30px;
}
.contact-direct > p:not(.eyebrow) {
  margin-top: 30px;
  font-size: 20px;
  line-height: 28px;
}
.contact-methods {
  margin-top: 60px;
  display: grid;
  gap: 24px;
}
.contact-methods > a,
.contact-methods > div {
  display: flex;
  gap: 22px;
  align-items: center;
}
.contact-methods img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 13px;
  background: #15121c;
  border: 1px solid #7c3cff6b;
  border-radius: 8px;
}
.personal-note {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #15121c;
  border: 1px solid #7c3cff57;
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
}
.personal-note > img {
  width: 56px;
  height: 56px;
  flex: none;
}
.personal-note .eyebrow {
  font-size: 14px;
  margin-bottom: 14px;
}
.personal-note p:not(.eyebrow) {
  font-size: 16px;
  line-height: 23px;
}
.contact-form {
  background: #0e0f12;
  border: 1px solid #7c3cff75;
  border-radius: 10px;
  padding: 39px;
  align-self: start;
}
.contact-form .eyebrow {
  margin-bottom: 16px;
}
.contact-form h2 {
  font-size: 34px;
  line-height: 42px;
  margin-bottom: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
}
.field {
  min-width: 0;
}
.full {
  grid-column: 1/-1;
}
input:not([type="checkbox"]),
textarea,
select {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #292a2e;
  border-radius: 7px;
  background: #121316;
  color: #fff;
  min-height: 58px;
  padding: 16px;
  font-size: 16px;
}
input::placeholder,
textarea::placeholder {
  color: #9696a3;
  opacity: 1;
}
select {
  color: #aaaab5;
}
textarea {
  resize: vertical;
  min-height: 168px;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 8px;
  font-size: 15px;
  color: #c8c5ce;
}
.privacy-check input {
  width: 20px;
  height: 20px;
  flex: none;
  accent-color: var(--purple);
  margin: 2px 0;
}
.privacy-check a,
.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form .button {
  width: 100%;
  margin-top: 16px;
}
.form-note {
  font-size: 14px;
  line-height: 21px;
  color: #9696a3;
  margin-top: 24px;
}
.form-note + .form-note {
  margin-top: 16px;
}
.field-error {
  display: block;
  font-size: 14px;
  color: #ffb4b4;
  line-height: 20px;
}
.field-error:not(:empty) {
  margin-top: 6px;
}
[aria-invalid="true"] {
  border-color: #ffb4b4 !important;
}
.form-status {
  font-size: 16px;
  line-height: 24px;
  margin-top: 0;
}
.form-status:not(:empty) {
  margin-top: 20px;
  padding: 12px;
  border: 1px solid #7c3cff75;
  border-radius: 6px;
}
.form-status[data-state="error"] {
  color: #ffb4b4;
  border-color: #ffb4b4;
}
.form-status[data-state="success"] {
  color: #c5efce;
  border-color: #c5efce;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.regional {
  position: relative;
  min-height: 462px;
  padding-bottom: 120px;
  isolation: isolate;
}
.regional h2 {
  max-width: 640px;
  margin-top: 24px;
}
.regional > p:not(.eyebrow) {
  max-width: 650px;
  line-height: 27px;
  margin-top: 28px;
}
.regional-art {
  position: absolute;
  bottom: 0;
  right: calc(-1 * var(--gutter));
  width: 690px;
  z-index: -1;
}
.regional > p,
.regional > h2 {
  position: relative;
  z-index: 1;
}
/* Verbatim legal content; flexible cards preserve text on small screens. */
.legal-main {
  padding-top: 92px;
  padding-bottom: 40px;
}
.legal-main h2 {
  font-size: 38px;
  line-height: 46px;
  margin-bottom: 22px;
}
.legal-main > section > p:not(.eyebrow):not(.legal-date) {
  font-size: 18px;
  line-height: 29px;
  max-width: 1040px;
  color: #bebbc5;
}
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin-top: 60px;
}
.legal-card {
  border: 1.2px solid #34333fe6;
  background: #141519f0;
  border-radius: 12px;
  padding: 30px;
  min-width: 0;
}
.legal-card .eyebrow {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.legal-card h3 {
  font-size: 25px;
  line-height: 32px;
  margin-bottom: 16px;
}
.legal-card > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 29px;
  color: #c8c5ce;
  overflow-wrap: anywhere;
}
.imprint .legal-card {
  min-height: 320px;
}
.imprint .legal-card:nth-child(n + 3) {
  min-height: 290px;
}
.legal-date {
  font-size: 14px;
  line-height: 20px;
  color: #777480;
  margin-top: 52px;
}
.privacy {
  padding-top: 82px;
  padding-bottom: 16px;
}
.privacy .legal-grid {
  margin-top: 24px;
}
.privacy .legal-card > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 27px;
}
.wide {
  grid-column: 1/-1;
}
.privacy .legal-card:nth-child(1) {
  min-height: 280px;
}
.privacy .legal-card:nth-child(2),
.privacy .legal-card:nth-child(3) {
  min-height: 330px;
}
.privacy .legal-card:nth-child(4) {
  min-height: 440px;
}
.privacy .legal-card:nth-child(5),
.privacy .legal-card:nth-child(6) {
  min-height: 414px;
}
.privacy .legal-card:nth-child(7),
.privacy .legal-card:nth-child(8) {
  min-height: 306px;
}
.privacy .legal-card:nth-child(9) {
  min-height: 500px;
}
.privacy .legal-card:nth-child(10),
.privacy .legal-card:nth-child(11) {
  min-height: 248px;
}
.privacy .legal-date {
  margin-top: 16px;
}
@media (min-width: 1600px) {
  .site-header {
    padding-inline: max(41px, calc((100vw - 1440px) / 2 + 41px));
  }
  .home-intro {
    clip-path: none;
  }
  .brand-orbit {
    left: -10px;
    width: 650px;
  }
  .brand-orbit img {
    left: 160px;
    top: 200px;
    width: 320px;
  }
}
@media (max-width: 1150px) {
  .site-header {
    align-items: center;
  }
  .brand {
    flex-basis: 280px;
  }
  .main-nav {
    gap: 22px;
    width: auto;
    padding-top: 0;
  }
  .page-hero {
    gap: 28px;
  }
  .hero-copy h1 br {
    display: none;
  }
  .home-hero {
    min-height: 610px;
  }
  .home-hero-copy {
    top: 24%;
    width: 520px;
  }
  .home-hero h1 {
    font-size: 56px;
  }
  .home-background {
    height: 116%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .home-intro {
    gap: 40px;
    min-height: unset;
    padding-bottom: 80px;
  }
  .intro-copy .button {
    margin-left: 0;
  }
  .service-card {
    width: 100%;
    padding: 16px;
    gap: 12px;
  }
  .service-card > img {
    width: 48px;
    height: 48px;
  }
  .brand-orbit {
    left: -60px;
    width: 660px;
  }
  .brand-orbit img {
    left: 160px;
    top: 210px;
  }
  .section-heading {
    gap: 50px;
  }
  .project-caption {
    flex-wrap: wrap;
  }
  .project-grid .project-caption > p {
    white-space: normal;
  }
  .process-grid li {
    padding-inline: 30px;
  }
  .benefits {
    gap: 60px;
  }
  .benefit-list img {
    width: 60px;
    height: 60px;
  }
  .footer-grid {
    gap: 30px;
    grid-template-columns: 1.3fr 1fr 0.7fr 0.7fr;
  }
  .service-row {
    gap: 25px;
    grid-template-columns: 30px 1fr 48px 1fr;
  }
  .extra-grid {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section {
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
  }
  .contact-form {
    padding: 26px;
  }
  .contact-form h2 {
    font-size: 29px;
  }
  .form-grid {
    gap: 16px;
  }
  .personal-note {
    gap: 16px;
    padding: 20px;
  }
  .personal-note > img {
    width: 40px;
  }
  .regional-art {
    width: 50%;
    right: calc(-1 * var(--gutter));
  }
  .regional > p:not(.eyebrow) {
    max-width: 55%;
  }
  .about-hero .page-hero {
    gap: 30px;
  }
  .about-story {
    gap: 40px;
  }
  .about-story blockquote {
    margin-top: 60px;
    margin-right: 0;
  }
  .legal-grid {
    gap: 30px;
  }
  .legal-card {
    padding: 24px;
  }
  .legal-hero .page-hero {
    gap: 20px;
  }
  .legal-hero h1 {
    font-size: 44px;
  }
}
@media (max-width: 800px) {
  :root {
    --gutter: 24px;
    --space: 72px;
  }
  body {
    font-size: 17px;
  }
  h3 {
    font-size: 22px;
  }
  .site-header {
    height: 88px;
    padding: 16px 24px;
    align-items: center;
  }
  .brand {
    flex-basis: 240px;
  }
  .brand img {
    width: 240px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111214;
    border: 1px solid #7c3cff75;
    border-radius: 6px;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 16px;
  }
  .menu-symbol {
    width: 18px;
    height: 12px;
    border-block: 2px solid currentColor;
    position: relative;
  }
  .menu-symbol:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    border-top: 2px solid currentColor;
  }
  .menu-toggle[aria-expanded="true"] .menu-symbol {
    transform: rotate(90deg);
  }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 88px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    padding: 16px 24px 24px;
    background: #111214;
    border-bottom: 1px solid #34343c;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.15s,
      transform 0.15s,
      visibility 0.15s;
  }
  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .main-nav a {
    padding: 13px 8px;
    letter-spacing: 0;
    font-size: 18px;
  }
  .main-nav a[aria-current="page"]:after {
    inset: 10px auto 10px 0;
    height: auto;
    width: 2px;
  }
  .page-hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 40px;
    min-height: unset;
    gap: 32px;
  }
  .hero-copy h1 {
    max-width: 660px;
  }
  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }
  .hero-art {
    justify-self: center;
    width: min(100%, 460px) !important;
    margin-top: 0 !important;
  }
  .hero-shell:after {
    height: 180px;
  }
  .about-hero .page-hero {
    grid-template-columns: 1fr;
  }
  .about-hero .hero-art {
    width: min(100%, 470px) !important;
  }
  .about-hero .page-hero:before {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 400px;
  }
  .hero-copy .motto {
    margin-top: 30px;
  }
  .contact-hero .hero-copy > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 27px;
    margin-top: 24px;
  }
  .legal-hero .page-hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 20px;
    gap: 10px;
  }
  .legal-hero .hero-art {
    width: min(100%, 350px) !important;
  }
  .legal-hero h1 {
    font-size: clamp(32px, 6vw, 44px);
    overflow-wrap: anywhere;
  }
  .legal-hero:after {
    height: 130px;
  }
  .home-hero {
    height: 640px;
    min-height: 0;
  }
  .home-background {
    height: 100%;
    width: auto;
    min-width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    opacity: 0.8;
  }
  .home-hero-copy {
    top: 175px;
    width: calc(100% - 48px);
    max-width: 520px;
  }
  .home-hero h1 {
    font-size: clamp(40px, 7vw, 56px);
  }
  .home-hero p {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.025em;
  }
  .home-hero:after {
    height: 90px;
  }
  .home-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 60px;
    clip-path: inset(0 calc(-1 * var(--gutter)) 0);
    padding-bottom: 72px;
  }
  .intro-copy h2 {
    max-width: 600px;
  }
  .intro-copy > p:not(.eyebrow) {
    max-width: none;
  }
  .service-preview {
    padding-top: 40px;
    padding-bottom: 35px;
  }
  .service-card {
    max-width: 500px;
    margin-inline: auto;
  }
  .brand-orbit {
    width: 580px;
    left: calc(50% - 180px);
    top: -45px;
  }
  .brand-orbit img {
    left: 140px;
    top: 170px;
    width: 300px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .section-heading > p {
    justify-self: start;
    margin-top: 0;
    max-width: 600px;
  }
  .section-heading h2 br {
    display: none;
  }
  .project-image {
    padding: 24px 24px 0;
  }
  .project-caption h3 {
    font-size: 21px;
  }
  .project-caption p {
    font-size: 14px;
  }
  .project-grid {
    gap: 24px;
  }
  .project-grid .project-image {
    padding: 20px 20px 0;
  }
  .process-grid li {
    padding-inline: 20px;
  }
  .process-grid h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .benefits {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefits > div > p:not(.eyebrow) {
    max-width: 600px;
  }
  .benefit-list article {
    gap: 24px;
  }
  .faq-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .faq-list summary {
    padding: 20px;
    min-height: 72px;
    font-size: 18px;
  }
  .faq-answer {
    padding: 0 20px 24px;
  }
  .faq-section h2 {
    margin-bottom: 30px;
  }
  .cta {
    min-height: unset;
    padding: 56px 0;
  }
  .cta h2 br {
    display: none;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .footer-brand img {
    width: 280px;
  }
  .footer-grid nav > a {
    min-height: 32px;
    padding-block: 5px;
  }
  .footer-contact a {
    min-height: 40px;
  }
  .copyright {
    padding-block: 24px;
  }
  .services-section {
    padding-top: 72px;
  }
  .services-section .section-heading {
    margin-bottom: 40px;
  }
  .service-row {
    grid-template-columns: 32px 1fr 48px;
    gap: 20px;
    padding: 40px 0;
  }
  .service-row .check-list {
    grid-column: 2/4;
  }
  .service-row > img {
    width: 48px;
    height: 48px;
  }
  .solutions,
  .extras {
    padding-top: 72px;
  }
  .extras {
    padding-bottom: 72px;
  }
  .extras h2 br {
    display: none;
  }
  .two-columns {
    gap: 32px;
  }
  .about-intro {
    padding-top: 72px;
    min-height: unset;
  }
  .about-intro .two-columns {
    gap: 40px;
    margin-top: 32px;
  }
  .accent-column:before {
    left: -22px;
  }
  .about-story {
    min-height: unset;
    padding-block: 72px;
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .about-story > div:nth-child(2) {
    padding-top: 0;
  }
  .about-story blockquote {
    margin-top: 32px;
  }
  .about-story p + p {
    margin-top: 24px;
  }
  .page-about .faq-section {
    padding-top: 20px;
    min-height: unset;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
  }
  .contact-direct {
    padding-top: 0;
  }
  .contact-methods {
    grid-template-columns: 1fr 1fr;
    margin-top: 32px;
    gap: 20px;
  }
  .contact-methods > a,
  .contact-methods > div {
    gap: 12px;
    font-size: 16px;
  }
  .personal-note {
    max-width: 600px;
  }
  .regional {
    min-height: unset;
    padding-bottom: 0;
  }
  .regional-art {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 690px;
    margin: 30px auto 0;
  }
  .regional > p:not(.eyebrow) {
    max-width: 650px;
  }
  .regional h2 br {
    display: none;
  }
  .legal-main {
    padding-top: 50px;
  }
  .legal-main h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .legal-grid {
    gap: 24px;
    margin-top: 32px;
  }
  .legal-card h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .legal-main .legal-card {
    min-height: unset;
  }
  .legal-card > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 27px;
  }
  .privacy .legal-date {
    margin-top: 32px;
  }
}
@media (max-width: 520px) {
  .brand {
    flex-basis: 200px;
  }
  .brand img {
    width: 200px;
  }
  .menu-toggle {
    padding: 8px;
  }
  .menu-toggle > span:last-child {
    font-size: 14px;
  }
  .site-header {
    gap: 12px;
    padding-inline: 20px;
  }
  .home-hero {
    height: 600px;
  }
  .home-hero-copy {
    top: 177px;
  }
  .home-hero h1 {
    font-size: 40px;
  }
  .home-hero p {
    font-size: 16px;
    line-height: 21px;
  }
  .home-hero .button {
    margin-top: 22px;
    min-height: 48px;
    font-size: 16px;
  }
  .home-background {
    height: 600px;
    max-width: none;
    opacity: 0.65;
  }
  .home-hero-copy p br {
    display: none;
  }
  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.12;
  }
  .legal-hero .hero-copy h1 {
    font-size: 32px;
  }
  .eyebrow {
    font-size: 14px;
  }
  .project-grid,
  .process-grid,
  .two-columns,
  .extra-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .project-caption {
    gap: 10px;
  }
  .project-grid .project-image {
    aspect-ratio: auto;
    padding: 24px 24px 0;
  }
  .process-grid {
    padding: 0;
  }
  .process-grid li {
    border-right: 0;
    border-bottom: 1px solid #7c3cff55;
    padding: 24px 8px;
  }
  .process-grid li p {
    max-width: none;
    margin-top: 12px;
    line-height: 23px;
  }
  .process-grid li:last-child {
    border: 0;
  }
  .benefit-list img {
    width: 48px;
    height: 48px;
  }
  .benefit-list h3 {
    font-size: 21px;
  }
  .benefit-list p {
    line-height: 23px;
    margin-top: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand,
  .footer-grid > div:nth-child(2) {
    grid-column: 1/-1;
  }
  .footer-brand p {
    max-width: 300px;
  }
  .service-row {
    grid-template-columns: 24px 1fr;
    gap: 16px;
  }
  .service-row > img {
    display: none;
  }
  .service-row .check-list {
    grid-column: 2;
  }
  .about-intro .two-columns {
    gap: 24px;
  }
  .accent-column:before {
    display: none;
  }
  .about-intro h2 br {
    display: none;
  }
  .contact-methods {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 20px;
  }
  .contact-form h2 {
    font-size: 27px;
    line-height: 34px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-direct > p:not(.eyebrow) {
    font-size: 18px;
  }
  .wide {
    grid-column: auto;
  }
  .legal-card {
    padding: 24px;
  }
  .privacy .legal-card .eyebrow {
    font-size: 13px;
    overflow-wrap: anywhere;
  }
  .legal-date {
    margin-top: 32px;
  }
  .cta h2 {
    font-size: 30px;
  }
  .faq-list summary {
    gap: 16px;
    font-size: 17px;
  }
  .service-card h3 {
    font-size: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Contain decorative orbit overflow while keeping all content in normal flow. */
.page-home main {
  overflow-x: clip;
}
.hero-copy {
  min-width: 0;
}
.legal-hero .hero-art {
  max-width: 100%;
}
.section-heading > div {
  min-width: 0;
}

.legal-card h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (min-width: 801px) {
  .legal-hero .page-hero {
    height: 341px;
  }
  .legal-hero .hero-art {
    position: absolute;
    top: 0;
    right: 44px;
    margin-top: -18px;
  }
  .page-home .faq-section {
    padding-bottom: 40px;
  }
  .page-home .projects .section-heading {
    margin-bottom: 21px;
  }
  .page-home .benefits {
    gap: 140px;
  }
}
@media (max-width: 800px) {
  .home-background {
    width: 100%;
    height: auto;
    min-width: 0;
    top: auto;
    bottom: 0;
    opacity: 1;
  }
  .home-hero {
    height: 740px;
  }
  .home-hero-copy {
    top: 145px;
  }
}
@media (max-width: 520px) {
  .home-hero {
    height: 680px;
  }
  .home-background {
    height: auto;
    width: 100%;
    top: auto;
    bottom: 0;
  }
  .home-hero-copy {
    top: 145px;
  }
}

/* Desktop review: fluid wide layouts and a shared coordinate system for the laptop. */
:root { --container: clamp(1280px, 88.889vw, 1920px); --gutter: clamp(24px, 5.556vw, 160px); }
.brand-lockup { display: flex; align-items: center; gap: 13px; width: 365px; max-width: 100%; }
.brand-lockup > img { width: 102px; height: 50px; object-fit: contain; flex: 0 0 28%; }
.brand-wordmark { border-left: 1.5px solid #fff; padding: 9px 0 9px 13px; min-width: 0; }
.brand-name { display: block; white-space: nowrap; font-size: 31px; font-weight: 400; line-height: 1.25; letter-spacing: -.5px; }
.brand-name strong { font-weight: 700; }
.brand-tagline { display: block; margin-top: 3px; font-size: 9px; font-weight: 500; line-height: 1.5; letter-spacing: 1.2px; white-space: nowrap; }
.brand, .footer-brand > a { color: #fff; }
.home-hero { height: auto; min-height: 0; background: #0b0c0e; overflow: hidden; }
.home-hero .site-header { background: linear-gradient(#00000038, #00000038), var(--hero-gradient); }
.home-hero:after { display: none; }
.laptop-stage { width: min(100%, calc((100svh - 119px) * 1.40548)); aspect-ratio: 1487 / 1058; margin-inline: auto; position: relative; container-type: inline-size; }
.home-background { position: absolute; inset: 0; width: 100%; height: 100%; min-width: 0; max-width: none; opacity: 1; object-fit: contain; transform: none; z-index: 0; }
.home-hero-copy { position: absolute; inset: 26.5% auto auto 25.5%; transform: none; width: 47.7%; height: 41.5%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5%; text-align: center; background: radial-gradient(ellipse at 50% 55%, #7c3cff18, transparent 75%); }
.home-hero h1 { font-size: 4.65cqw; line-height: 1.02; letter-spacing: -.045em; text-shadow: 0 0 32px #b99aff20; }
.home-hero h1 span { color: #c6a4ff; background: linear-gradient(100deg, #f0e7ff, #b086ff 60%, #9460ff); background-clip: text; -webkit-text-fill-color: transparent; }
.home-hero p { margin-top: 1.55cqw; font-size: 1.4cqw; line-height: 1.3; letter-spacing: -.02em; }
.home-hero .button { margin-top: 1.8cqw; min-width: 0; min-height: 0; padding: .85cqw 2cqw; font-size: 1.35cqw; line-height: 1.4; border-radius: .55cqw; box-shadow: 0 0 25px #7c3cff30; }
.home-intro { padding-top: 64px; clip-path: none; }
.brand-orbit { top: 80px; left: 15%; }
.brand-orbit img { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.about-hero { overflow: hidden; }
.about-hero .page-hero:before { right: 5%; top: -60px; width: 350px; height: 720px; border-radius: 28px; transform: rotate(31deg); clip-path: none; background: linear-gradient(90deg, #7c3cff21, #4d16b412 58%, #11121400); }
.about-hero .page-hero:after { content: ''; position: absolute; right: -2%; top: -88px; width: 66%; height: 731px; background: url('../assets/images/portrait-glow.svg') center / contain no-repeat; pointer-events: none; z-index: 0; }
.about-hero .hero-art { z-index: 1; }
.about-story { align-items: start; min-height: 0; margin-top: 56px; padding: clamp(32px, 4vw, 72px); gap: clamp(32px, 5vw, 96px); border: 1px solid #7c3cff38; border-radius: 16px; background: radial-gradient(ellipse at 0 100%, #7c3cff12, transparent 65%), #141318; }
.about-story > div:nth-child(2) { padding-top: 0; }
.about-story .eyebrow { margin-bottom: 24px; }
.about-story blockquote { margin: 32px 0 0; padding: 24px 28px; background: #7c3cff09; border: 0; border-left: 3px solid var(--purple); border-radius: 0 8px 8px 0; }
.about-story blockquote:before { display: none; }
.about-story p + p { margin-top: 28px; }
.about-story p:not(.eyebrow) { max-width: 62ch; }
@media (min-width: 1600px) {
  .site-header { padding-inline: max(41px, calc((100vw - 1920px) / 2)); }
  .page-hero { min-height: 620px; align-items: center; }
  .hero-art, .services-hero .hero-art, .about-hero .hero-art { width: min(100%, 700px); }
  .about-hero .page-hero:before { right: 10%; }
  .about-hero .page-hero:after { right: 0; height: 850px; }
  .home-intro { grid-template-columns: 1fr 1fr; }
  .intro-copy h2, .intro-copy > p:not(.eyebrow) { max-width: 660px; }
  .service-card { width: min(80%, 580px); }
  .brand-orbit { width: min(54vw, 1000px); }
  .legal-hero .page-hero { min-height: 380px; height: auto; }
  .legal-hero .hero-art { width: 520px; }
}
@media (max-width: 800px) {
  .brand-lockup { width: 280px; gap: 9px; }
  .brand-lockup > img { width: 76px; height: 38px; }
  .brand-wordmark { padding: 6px 0 6px 9px; }
  .brand-name { font-size: 23px; }
  .brand-tagline { font-size: 7px; letter-spacing: .7px; }
  .laptop-stage { width: 100%; }
  .home-hero-copy p br { display: initial; }
  .home-intro { padding-top: 48px; }
  .about-hero .page-hero:after { top: auto; bottom: -60px; width: 100%; height: 580px; }
  .about-story { margin-top: 24px; }
}
@media (max-width: 520px) {
  .brand-lockup { width: 215px; gap: 7px; }
  .brand-lockup > img { width: 58px; height: 29px; }
  .brand-wordmark { padding-left: 7px; }
  .brand-name { font-size: 18px; }
  .brand-tagline { font-size: 5.5px; letter-spacing: .4px; }
  .home-hero p { font-size: 1.8cqw; }
  .home-hero .button { font-size: 2cqw; padding: 1.1cqw 2.5cqw; }
}
/* Blend the uncropped scene into the full-width backdrop. */
.laptop-stage:after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, #0b0c0e, transparent 8%, transparent 92%, #0b0c0e), linear-gradient(0deg, #111214, transparent 8%); }
@media (max-width: 800px) {
  .laptop-stage { width: min(160vw, calc((100svh - 88px) * 1.40548)); left: 50%; margin-inline: 0; transform: translateX(-50%); }
  .home-hero h1 { font-size: 5cqw; }
  .home-hero p { font-size: 2cqw; margin-top: 1.3cqw; }
  .home-hero .button { font-size: 2cqw; min-height: 44px; padding: 1cqw 2.5cqw; margin-top: 1.3cqw; }
}

/* Review 2: full-bleed backdrop, image-bound glow and original PNG mark. */
.home-hero { height: 100svh; background: #111214; display: grid; place-items: center; }
.home-hero:before { content: ''; position: absolute; inset: -30px; z-index: -1; background: url('../assets/images/background.webp') center / cover no-repeat; filter: blur(70px) brightness(.45); }
.home-hero .site-header { position: absolute; inset: 0 0 auto; background: rgba(0,0,0,.22); }
.laptop-stage { width: min(100%, calc(100svh * 1.40548)); margin-top: 0; }
.home-background { mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.laptop-stage:after { background: linear-gradient(0deg, #111214, transparent 8%); }
.brand-orbit { width: clamp(620px, 47vw, 800px); top: calc(331px - clamp(620px, 47vw, 800px) / 2); left: 20%; border-width: 36px; box-shadow: inset 0 0 0 34px #7c3cff08; }
.brand-orbit img { width: 320px; }
.service-preview:after { content: ''; position: absolute; z-index: -1; right: 0; top: 405px; width: 125px; height: 125px; background-image: radial-gradient(circle, #9b66ff 2.5px, transparent 3px); background-size: 30px 30px; opacity: .25; pointer-events: none; }
.about-hero .page-hero:after { display: none; }
.portrait-stage { position: relative; isolation: isolate; width: min(100%, 570px); justify-self: end; align-self: end; }
.portrait-stage:before { content: ''; position: absolute; z-index: -1; width: 148%; height: 145%; left: -24%; top: -25%; background: url('../assets/images/portrait-glow.svg') center / 100% 100% no-repeat; pointer-events: none; }
.about-hero .portrait-stage .hero-art { width: 100%; margin-top: 0; }
@media(min-width:1600px) { .portrait-stage { width: min(100%,700px); } }
@media(max-width:800px) {
 .home-hero { height: auto; min-height: 0; padding-top: 88px; }
 .laptop-stage { width: min(160vw, calc((100svh - 88px) * 1.40548)); left: auto; transform: none; margin-inline: 0; }
 .portrait-stage { max-width: 570px; justify-self: center; }
 .brand-orbit { top: -29px; }
}

/* Original logo artwork; live small print stays crisp on high-density screens. */
.original-logo { display: block; position: relative; width: 349px; max-width: 100%; aspect-ratio: 349 / 73; container-type: inline-size; }
.original-logo img { width: 100%; height: auto; }
.original-logo:after { content: ''; position: absolute; left: 32.38%; top: 0; height: 100%; width: .44%; background: #7c3cff; }
.original-tagline { position: absolute; left: 36.53%; top: 67.1%; display: flex; align-items: center; gap: .4em; color: #fff; font-size: clamp(8px, 2.87cqw, 10px); line-height: 1.4; letter-spacing: .04em; font-weight: 600; white-space: nowrap; }
.original-tagline i { display: block; flex: none; width: 3px; height: 3px; border-radius: 50%; background: #297dff; }
/* Three matching crops fill the viewport; the central laptop retains its proportions. */
.home-hero { --scene-width: min(100vw, calc(100svh * 940 / 840)); height: 100svh; padding-top: 0; }
.home-hero:before, .home-hero:after { content: ''; display: block; position: absolute; top: 0; bottom: 0; width: calc((100% - var(--scene-width)) / 2 + 1px); height: 100%; z-index: -1; filter: none; pointer-events: none; background-size: 100% 100%; background-repeat: no-repeat; }
.home-hero:before { left: 0; right: auto; background-image: url('../assets/images/hero-left.webp'); }
.home-hero:after { right: 0; left: auto; background-image: url('../assets/images/hero-right.webp'); }
.laptop-stage { width: var(--scene-width); height: 100%; aspect-ratio: 940 / 840; margin: 0; left: auto; transform: none; }
.laptop-stage:after { display: none; }
.home-background { mask-image: none; object-fit: fill; }
.home-hero-copy { left: 12.7%; top: 16.7%; width: 75.45%; height: 52.3%; padding: 2%; max-width: none; }
.home-hero h1 { font-size: 7.35cqw; }
.home-hero p { font-size: 2.22cqw; margin-top: 2.45cqw; }
.home-hero .button { font-size: 2.14cqw; margin-top: 2.85cqw; padding: 1.35cqw 3.16cqw; border-radius: .87cqw; }
@media(max-aspect-ratio: 940/840) {
 .home-hero { height: auto; padding-top: 88px; }
 .laptop-stage { height: auto; aspect-ratio: 940 / 840; }
 .home-hero h1 { font-size: 7.9cqw; }
 .home-hero p { font-size: 3.1cqw; margin-top: 2cqw; }
 .home-hero .button { font-size: 3.1cqw; min-height: 44px; margin-top: 2cqw; }
}

/* Review 4: restore the hero color transition without covering the laptop. */
.hero-color-fade {
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17,18,20,0) 0%, rgba(17,18,20,0) 46%, rgba(17,18,20,.22) 76%, #111214 100%);
}
/* Screenshots contain fine type: lossless encoding and no enlargement beyond source pixels. */
.project-image { display: flex; justify-content: center; align-items: end; }
.featured-project .project-image img { width: min(100%, 1168px); height: auto; flex: 0 1 auto; }
.project-grid .project-image { aspect-ratio: auto; min-height: 0; padding-bottom: 0; }
.project-grid .project-image img { width: min(100%, 540px); height: auto; flex: 0 1 auto; }

/* Project frames follow the source image width instead of the wide page container. */
.featured-project { max-width: 1392px; margin-inline: auto; }
.featured-project .project-image { padding-inline: clamp(24px, 5.8vw, 112px); }
.project-grid { max-width: 1392px; margin-inline: auto; gap: 48px; }
.project-grid > article { min-width: 0; }
.project-grid .project-image { padding: 34px clamp(24px, 3vw, 66px) 0; }
.project-grid .project-caption { flex-wrap: wrap; row-gap: 10px; }
.project-grid .project-caption > p { white-space: normal; }
@media(max-width:800px) { .project-grid { gap: 30px; } }

/* Screen treatment: follow the photographed display's slight perspective. */
.home-hero-copy {
  transform: perspective(1100px) rotateX(1deg) rotateY(-1.1deg) rotateZ(-.25deg);
  transform-origin: center;
  isolation: isolate;
  background: radial-gradient(ellipse at 48% 55%, rgba(124,60,255,.075), transparent 75%);
}
.home-hero h1 {
  color: #eeeff8;
  text-shadow: 0 0 1px rgba(230,230,255,.65), 0 0 12px rgba(164,142,255,.12);
}
.home-hero h1 span {
  background-image: linear-gradient(100deg, #e3d9f5, #ad84ef 60%, #8e5ae8);
}
.home-hero p {
  color: #e1e3ef;
  font-weight: 500;
  text-shadow: 0 0 1px rgba(220,220,255,.4);
}
.home-hero .button {
  background: #7338ea;
  color: #f1ecff;
  box-shadow: 0 0 18px rgba(124,60,255,.17);
}
.home-hero .button:hover { background: #8447f4; }
.home-hero-copy:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(212,225,255,.045), transparent 37%, transparent 70%, rgba(174,158,222,.018)), repeating-linear-gradient(0deg, transparent 0 3px, rgba(8,10,20,.035) 3px 4px);
}
@media (max-width: 800px) {
  .home-hero-copy:after { background: linear-gradient(118deg, rgba(212,225,255,.035), transparent 55%); }
}

/* Active desktop page: raised label with a closer underline. */
@media (min-width: 801px) {
  .main-nav a { padding-bottom: 6px; transition: transform .18s ease, color .18s ease; }
  .main-nav a[aria-current="page"] { transform: translateY(-4px); }
}

/* Round 5: render the original logo typefaces as text at every density. */
@font-face { font-family: 'Almarai'; font-weight: 800; font-style: normal; font-display: swap; src: url('../assets/fonts/almarai-800.ttf') format('truetype'); }
.original-logo { aspect-ratio: 349 / 73; }
.original-logo .logo-emblem, .brand .original-logo .logo-emblem { position: absolute; left: 0; top: 16%; width: 29.15%; height: auto; }
.logo-live-name { position: absolute; left: 36.53%; top: 16%; font-size: 8.98cqw; line-height: 1.18; letter-spacing: 0; white-space: nowrap; font-weight: 400; }
.logo-live-name strong { font-family: 'Almarai', 'Albert Sans', sans-serif; font-weight: 800; }
.original-tagline { top: 70%; font-size: clamp(9px, 2.87cqw, 10px); font-weight: 600; letter-spacing: .025em; gap: .3em; }
.check-list li:before { color: var(--purple); }
/* Crop side photographs proportionally instead of squeezing their contents. */
.home-hero:before, .home-hero:after { background-size: cover; }
.home-hero:before { background-position: right center; }
.home-hero:after { background-position: left center; }
.project-grid .project-image > :is(img, video) {
  width: min(100%, 540px);
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: contain;
  flex: 0 1 auto;
  min-width: 0;
  display: block;
}
.project-video { background: transparent; }
.project-video:focus-visible { outline: 2px solid #a477ff; outline-offset: 3px; }
.project-grid .project-caption .project-note { color: #aeb0b8; text-align: right; }

