:root {
  --bg:#000;
  --white:#f7f7f7;
  --muted:#9a9a9a;
  --silver:#bdbdbd;
  --purple:#8052ff;
  --amber:#ffb829;
  --font:'Inter',sans-serif;
  color-scheme:dark;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:35px;
}
body {
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:var(--font);
  font-weight:300;
  -webkit-font-smoothing:antialiased;
}
body,button,input {
  font-family:var(--font);
}
button,a,input {
  -webkit-tap-highlight-color:transparent;
}
button,a {
  touch-action:manipulation;
}
a {
  color:inherit;
  text-decoration:none;
}
button {
  color:inherit;
  cursor:pointer;
}
button,input {
  font-size:inherit;
}
button {
  background:none;
  border:0;
}
button:focus-visible,a:focus-visible,summary:focus-visible {
  outline:2px solid var(--amber);
  outline-offset:6px;
}
input:focus-visible {
  outline:2px solid var(--amber);
  outline-offset:8px;
}
::selection {
  background:var(--purple);
  color:white;
}
.wrap {
  width:min(1280px,calc(100% - 112px));
  margin-inline:auto;
}
.header {
  height:112px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  position:relative;
  z-index:5;
}
.brand {
  display:flex;
  align-items:center;
  gap:11px;
  font-size:27px;
  letter-spacing:-1.2px;
  font-weight:500;
}
.brand-mark {
  width:37px;
  height:37px;
  color:var(--purple);
}
.brand-ai {
  color:var(--muted);
  font-size:17px;
  letter-spacing:-.8px;
  margin-left:5px;
  font-weight:300;
}
.desktop-nav {
  display:flex;
  gap:32px;
  margin-left:auto;
}
.desktop-nav a {
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.055em;
  color:var(--muted);
  transition:color .2s;
}
.desktop-nav a:hover {
  color:white;
}
.header-actions {
  display:flex;
  align-items:center;
  gap:29px;
}
.languages {
  display:flex;
  gap:7px;
  align-items:center;
  font-size:11px;
  color:#505050;
}
.languages button {
  padding:8px 3px;
  color:var(--muted);
}
.languages button[aria-pressed=true] {
  color:white;
}
.button {
  background:var(--purple);
  display:inline-flex;
  gap:30px;
  align-items:center;
  justify-content:center;
  border-radius:30px;
  padding:18px 24px;
  font-size:12px;
  font-weight:500;
  line-height:1.2;
  transition:background .2s,transform .2s;
  white-space:nowrap;
}
.button>span:last-child {
  font-size:20px;
  line-height:12px;
}
.button:hover {
  background:#946cff;
  transform:translateY(-3px);
}
.button-small {
  padding:15px 20px;
  gap:19px;
}
.menu-toggle {
  display:none;
}
.mobile-nav[hidden] {
  display:none;
}
.mobile-nav {
  position:absolute;
  top:85px;
  left:0;
  right:0;
  z-index:10;
  background:#000;
  padding:25px 28px 35px;
  display:flex;
  flex-direction:column;
  gap:26px;
  font-size:24px;
}
.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  z-index:100;
  background:var(--purple);
  padding:15px;
  border-radius:8px;
}
.skip-link:focus {
  top:15px;
}
.hero {
  position:relative;
  min-height:690px;
  height:calc(100svh - 112px);
  max-height:870px;
  padding-top:98px;
  display:flex;
  align-items:flex-start;
  isolation:isolate;
}
.hero-copy {
  width:58%;
  position:relative;
  z-index:2;
  pointer-events:none;
}
.hero-copy a {
  pointer-events:auto;
}
.eyebrow {
  font-size:10px;
  font-weight:500;
  letter-spacing:.13em;
  line-height:1.6;
  display:flex;
  gap:12px;
  align-items:center;
  margin:0 0 30px;
}
.hero .eyebrow {
  color:var(--silver);
  font-size:9px;
  letter-spacing:.15em;
}
.status-dot {
  width:5px;
  height:5px;
  background:var(--purple);
  border-radius:50%;
  display:inline-block;
  flex-shrink:0;
  box-shadow:0 0 13px #8052ff77;
}
h1,h2,h3,p {
  margin-top:0;
}
h1,h2,h3 {
  font-weight:400;
}
h1 {
  font-size:clamp(76px,7.5vw,112px);
  line-height:1.04;
  letter-spacing:-.066em;
  margin:0 0 32px;
}
h1>span {
  display:block;
  white-space:nowrap;
}
h1>span:nth-child(2) {
  color:#bda6ff;
}
.hero-description {
  font-size:17px;
  font-weight:200;
  line-height:1.8;
  color:var(--silver);
  max-width:440px;
  margin-bottom:31px;
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:30px;
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:18px;
  font-size:12px;
  line-height:1.5;
  transition:color .2s;
}
.text-link>span:last-child {
  font-size:19px;
}
.text-link:hover {
  color:var(--amber);
}
.hero-note {
  font-size:9px;
  color:#777;
  letter-spacing:.035em;
  margin-top:28px;
}
.hero-art {
  position:absolute;
  right:-48px;
  top:0;
  width:59%;
  height:94%;
  z-index:1;
}
#clock {
  width:100%;
  height:100%;
  display:block;
  touch-action:pan-y;
}
.art-caption {
  position:absolute;
  bottom:43px;
  left:32%;
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
  color:#85818e;
  font-size:8px;
  letter-spacing:.16em;
}
.tiny-star {
  color:var(--amber);
  font-size:18px;
}
.art-caption button {
  margin-left:10px;
  border:1px solid #34303d;
  border-radius:50%;
  width:28px;
  height:28px;
  font-size:10px;
  color:#b4a9c9;
  display:grid;
  place-items:center;
}
.hero-bottom {
  position:absolute;
  bottom:29px;
  left:0;
  right:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.scroll-hint {
  display:flex;
  gap:13px;
  align-items:center;
  font-size:8px;
  letter-spacing:.16em;
  color:var(--muted);
}
.scroll-icon {
  font-size:17px;
  color:var(--white);
}
.hero-index {
  font-size:9px;
  color:#656565;
  letter-spacing:.14em;
}
.section {
  padding-top:130px;
  padding-bottom:35px;
}
h2 {
  font-size:clamp(44px,4.6vw,68px);
  line-height:1.11;
  letter-spacing:-.05em;
  margin-bottom:28px;
}
.section-number {
  color:#646464;
  letter-spacing:.02em;
}
.section .eyebrow {
  color:var(--amber);
}
.split-heading {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:100px;
  align-items:end;
}
.split-heading>p {
  font-size:17px;
  line-height:1.8;
  font-weight:200;
  max-width:350px;
  margin:0 0 32px;
  color:var(--silver);
}
.services-layout {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:110px;
  margin-top:55px;
  align-items:start;
}
.service-button {
  padding:25px 0;
  display:flex;
  gap:24px;
  width:100%;
  align-items:center;
  text-align:left;
  color:#777;
  transition:color .25s;
}
.service-button .service-number {
  font-size:10px;
  color:#666;
  letter-spacing:.04em;
  min-width:20px;
}
.service-button>span:nth-child(2) {
  font-size:clamp(23px,2.5vw,36px);
  letter-spacing:-.045em;
  font-weight:300;
}
.service-arrow {
  margin-left:auto;
  font-size:26px;
  transition:transform .3s;
}
.service-button.active,.service-button:hover {
  color:white;
}
.service-button.active .service-number,.service-button.active .service-arrow {
  color:var(--purple);
}
.service-button.active .service-arrow {
  transform:rotate(45deg);
}
.service-detail {
  min-height:355px;
  position:relative;
  padding-top:12px;
}
.orbital {
  position:absolute;
  top:-43px;
  right:-9px;
  width:130px;
  height:130px;
  opacity:.75;
  transform:rotate(-22deg);
}
.orbit {
  position:absolute;
  left:10%;
  top:10%;
  width:80%;
  height:80%;
  border:1px solid #8052ff77;
  border-radius:50%;
}
.orbit-two {
  transform:rotateY(65deg) rotate(40deg);
}
.orbit-three {
  transform:rotateX(65deg) rotate(-40deg);
}
.orbital-core {
  position:absolute;
  left:43%;
  top:40%;
  color:var(--purple);
  font-size:27px;
}
.orbit-point {
  position:absolute;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--amber);
}
.point-one {
  left:23%;
  top:20%;
}
.point-two {
  right:9%;
  top:51%;
  background:var(--purple);
}
.point-three {
  bottom:12%;
  left:37%;
  background:#249a87;
}
.service-detail .detail-label {
  margin-top:60px;
  margin-bottom:16px;
  font-size:9px;
  color:var(--muted);
}
.service-detail h3 {
  font-size:26px;
  letter-spacing:-.035em;
  line-height:1.35;
  max-width:310px;
  margin-bottom:17px;
}
.service-detail>p:not(.eyebrow) {
  font-size:16px;
  color:var(--silver);
  line-height:1.8;
  font-weight:200;
  max-width:370px;
}
.service-tags {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:23px;
}
.service-tags span {
  font-size:9px;
  color:#b39ae8;
  letter-spacing:.01em;
}
.approach-top {
  display:flex;
  justify-content:space-between;
  gap:60px;
  align-items:end;
}
.approach-description {
  color:var(--silver);
  font-size:17px;
  font-weight:200;
  line-height:1.8;
  max-width:300px;
  margin-bottom:30px;
}
.steps {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:70px;
  margin-top:44px;
}
.step-number {
  display:flex;
  justify-content:space-between;
  color:var(--purple);
  font-size:12px;
  margin-bottom:34px;
  align-items:center;
}
.step-number>span {
  font-size:25px;
  color:#625778;
}
.steps h3 {
  font-size:25px;
  letter-spacing:-.04em;
  margin-bottom:18px;
}
.steps p {
  color:var(--silver);
  font-weight:200;
  font-size:15px;
  line-height:1.9;
  max-width:320px;
  margin-bottom:24px;
}
.step-note {
  font-size:8px;
  color:#777;
  letter-spacing:.12em;
}
.time-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  padding-top:170px;
}
.muted {
  color:var(--muted);
}
.time-copy>p:not(.eyebrow) {
  font-size:17px;
  line-height:1.8;
  font-weight:200;
  color:var(--silver);
  max-width:330px;
  margin-bottom:26px;
}
.time-copy .text-link {
  font-size:11px;
}
.calculator {
  padding-top:52px;
}
.range-control {
  margin-bottom:35px;
}
.range-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:22px;
}
.range-heading label {
  font-size:12px;
  color:var(--silver);
}
.range-heading output {
  font-size:19px;
  white-space:nowrap;
  font-weight:400;
}
.range-control input {
  appearance:none;
  -webkit-appearance:none;
  display:block;
  width:100%;
  height:3px;
  border-radius:2px;
  cursor:pointer;
  background:linear-gradient(to right,var(--purple) var(--fill,50%),#28232f var(--fill,50%));
  margin:0;
}
.range-control input::-webkit-slider-thumb {
  appearance:none;
  width:15px;
  height:15px;
  border-radius:50%;
  background:#bda6ff;
  border:3px solid #8052ff;
  transition:box-shadow .2s;
}
.range-control input::-moz-range-thumb {
  width:10px;
  height:10px;
  border-radius:50%;
  background:#bda6ff;
  border:3px solid #8052ff;
}
.range-control input:hover::-webkit-slider-thumb {
  box-shadow:0 0 0 7px #8052ff22;
}
.range-bounds {
  display:flex;
  justify-content:space-between;
  font-size:9px;
  color:#707070;
  margin-top:15px;
}
.calc-result {
  padding-top:17px;
}
.calc-result .eyebrow {
  font-size:9px;
  letter-spacing:.1em;
  margin-bottom:6px;
  color:#a28bcf;
}
.result-main {
  display:flex;
  align-items:baseline;
  gap:20px;
  position:relative;
}
.result-main>span:first-child {
  font-size:110px;
  letter-spacing:-.075em;
  line-height:1.2;
  font-weight:300;
  color:#bda6ff;
}
.result-unit {
  font-size:17px;
  color:var(--silver);
  white-space:nowrap;
}
.result-spark {
  margin-left:auto;
  color:var(--purple);
  font-size:50px;
  align-self:center;
}
.annual {
  font-size:15px;
  line-height:1.7;
  color:var(--silver);
  margin-top:2px;
  margin-bottom:20px;
}
.annual strong {
  font-weight:400;
  color:white;
}
.calc-disclaimer {
  font-size:10px;
  color:#777;
  line-height:1.8;
  max-width:390px;
}
.about {
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:100px;
  padding-top:175px;
  align-items:center;
}
.about-signature {
  text-align:center;
}
.signature-symbol {
  position:relative;
  width:235px;
  height:215px;
  margin:0 auto 35px;
  display:flex;
  align-items:center;
  justify-content:center;
  letter-spacing:-30px;
  padding-right:24px;
  color:#bda6ff;
  font-size:190px;
  font-weight:200;
  line-height:1;
}
.signature-symbol span:nth-child(2) {
  color:var(--purple);
  transform:translateY(16px);
}
.signature-symbol i {
  position:absolute;
  right:-10px;
  top:10px;
  color:var(--amber);
  font-size:34px;
  font-style:normal;
  letter-spacing:0;
}
.about-signature>p {
  font-size:10px;
  letter-spacing:.14em;
  margin-bottom:9px;
}
.about-signature>span {
  font-size:8px;
  letter-spacing:.1em;
  color:#777;
}
.about-copy h2 {
  font-size:48px;
}
.about-copy>p:not(.eyebrow) {
  font-size:17px;
  font-weight:200;
  line-height:1.9;
  margin-bottom:20px;
}
.about-copy .text-link {
  margin-top:9px;
}
.faq {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:110px;
  padding-top:160px;
}
.faq h2 {
  font-size:45px;
}
.faq-list {
  padding-top:24px;
}
.faq details {
  padding:18px 0;
}
.faq summary {
  list-style:none;
  display:flex;
  gap:20px;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:17px;
  letter-spacing:-.015em;
}
.faq summary::-webkit-details-marker {
  display:none;
}
.faq summary>span:last-child {
  color:var(--purple);
  font-size:25px;
  font-weight:200;
  transition:transform .2s;
}
.faq details[open] summary>span:last-child {
  transform:rotate(45deg);
}
.faq details p {
  font-size:15px;
  font-weight:200;
  line-height:1.8;
  color:var(--silver);
  padding-right:35px;
  margin:19px 0 0;
}
.contact {
  padding-top:155px;
  padding-bottom:100px;
}
.contact-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.contact-top .eyebrow {
  margin-bottom:35px;
}
.contact-note {
  display:flex;
  gap:10px;
  align-items:center;
  font-size:10px;
  color:var(--muted);
  margin-bottom:35px;
}
.contact h2 {
  font-size:clamp(70px,8vw,116px);
  line-height:1.05;
  letter-spacing:-.065em;
  position:relative;
  margin-bottom:47px;
}
.contact-accent {
  color:#bda6ff;
}
.contact-star {
  position:absolute;
  right:70px;
  top:20px;
  font-size:130px;
  font-weight:200;
  color:var(--purple);
  line-height:1;
}
.contact-bottom {
  display:flex;
  justify-content:space-between;
  align-items:start;
  gap:40px;
}
.contact-bottom>p {
  font-size:17px;
  font-weight:200;
  line-height:1.8;
  color:var(--silver);
  margin-bottom:0;
}
.contact-links {
  display:flex;
  flex-direction:column;
  gap:18px;
}
.email-link {
  font-size:28px;
  letter-spacing:-.04em;
}
.email-link>span {
  color:var(--purple);
  margin-left:20px;
}
.email-link:hover {
  color:#bda6ff;
}
.phone-link {
  font-size:14px;
  color:var(--muted);
  align-self:flex-start;
}
.phone-link:hover {
  color:white;
}
.footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:28px 0 36px;
  gap:30px;
}
.footer .brand {
  font-size:21px;
}
.footer .brand-mark {
  width:30px;
  height:30px;
}
.footer .brand-ai {
  font-size:13px;
}
.footer>p {
  font-size:9px;
  color:#777;
  line-height:1.7;
  text-align:center;
  margin:0;
}
.footer-address {
  display:block;
}
.back-top {
  font-size:10px;
  color:var(--muted);
}
.back-top:hover {
  color:white;
}
.js-ready .reveal {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s ease,transform .8s ease;
}
.js-ready .reveal.visible {
  opacity:1;
  transform:none;
}
body.motion-paused .reveal {
  transition:none;
}
@media(min-width:1500px) {
  .hero-art {
    right:-65px;
    width:62%;
  }
  .hero {
    padding-top:120px;
  }
}
@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 72px);
  }
  .header {
    gap:24px;
  }
  .desktop-nav {
    gap:20px;
  }
  .header-actions {
    gap:20px;
  }
  .hero {
    padding-top:90px;
    min-height:660px;
  }
  h1 {
    font-size:82px;
  }
  .hero-art {
    right:-20px;
    width:56%;
    top:10px;
  }
  .hero-description {
    max-width:365px;
    font-size:16px;
  }
  .hero-actions {
    gap:20px;
  }
  .hero-actions .button {
    padding:17px 20px;
    gap:14px;
    font-size:11px;
  }
  .hero-actions .text-link {
    font-size:11px;
  }
  .art-caption {
    left:26%;
  }
  .split-heading {
    gap:55px;
  }
  .services-layout {
    gap:65px;
  }
  .steps {
    gap:40px;
  }
  .time-section {
    gap:65px;
  }
  .about {
    gap:65px;
  }
  .about-copy h2 {
    font-size:40px;
  }
  .faq {
    gap:60px;
  }
  .contact-star {
    right:20px;
    font-size:100px;
  }
}
@media(max-width:800px) {
  .wrap {
    width:calc(100% - 48px);
  }
  .header {
    height:90px;
    gap:15px;
  }
  .brand {
    font-size:24px;
  }
  .brand-mark {
    width:31px;
    height:31px;
  }
  .desktop-nav {
    display:none;
  }
  .header-actions {
    margin-left:auto;
    gap:18px;
  }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:10px 0 10px 8px;
  }
  .menu-toggle span {
    width:20px;
    height:1px;
    background:white;
    transition:transform .2s;
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform:translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform:translateY(-3.5px) rotate(-45deg);
  }
  .hero {
    height:auto;
    max-height:none;
    min-height:960px;
    padding-top:60px;
    display:block;
  }
  .hero-copy {
    width:100%;
  }
  .hero h1 {
    font-size:85px;
  }
  .hero-description {
    max-width:440px;
  }
  .hero-art {
    width:100%;
    height:500px;
    right:-15px;
    top:420px;
  }
  .hero .eyebrow {
    font-size:8px;
  }
  .hero-note {
    margin-top:23px;
  }
  .art-caption {
    bottom:35px;
    left:auto;
    right:30px;
  }
  .hero-bottom {
    bottom:10px;
  }
  .hero-index {
    display:none;
  }
  .section {
    padding-top:100px;
    padding-bottom:10px;
  }
  h2 {
    font-size:48px;
  }
  .split-heading {
    grid-template-columns:1fr;
    gap:0;
  }
  .split-heading>p {
    max-width:440px;
    margin-bottom:0;
  }
  .services-layout {
    gap:45px;
    grid-template-columns:1fr 1fr;
    margin-top:40px;
  }
  .service-button {
    gap:12px;
  }
  .service-button>span:nth-child(2) {
    font-size:23px;
  }
  .service-detail {
    padding-top:0;
  }
  .service-detail h3 {
    font-size:23px;
  }
  .service-detail .detail-label {
    margin-top:55px;
  }
  .service-detail>p:not(.eyebrow) {
    font-size:14px;
  }
  .orbital {
    width:110px;
    height:110px;
    top:-30px;
    right:-10px;
  }
  .approach-top {
    display:block;
  }
  .approach-description {
    max-width:430px;
    margin-bottom:0;
  }
  .steps {
    gap:28px;
    margin-top:40px;
  }
  .steps h3 {
    font-size:22px;
  }
  .steps p {
    font-size:14px;
  }
  .step-note {
    font-size:7px;
    line-height:1.7;
    display:block;
  }
  .time-section {
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
  .time-copy h2 {
    font-size:43px;
  }
  .time-copy .eyebrow {
    font-size:8px;
  }
  .range-heading label {
    font-size:11px;
  }
  .result-main>span:first-child {
    font-size:90px;
  }
  .result-main {
    gap:12px;
  }
  .result-unit {
    font-size:13px;
  }
  .result-spark {
    font-size:30px;
  }
  .about {
    grid-template-columns:.75fr 1.25fr;
    gap:40px;
  }
  .signature-symbol {
    transform:scale(.75);
    transform-origin:center;
    width:190px;
    margin-bottom:5px;
  }
  .about-copy h2 {
    font-size:36px;
  }
  .about-copy>p:not(.eyebrow) {
    font-size:15px;
  }
  .about-signature>span {
    font-size:7px;
    line-height:1.7;
    display:block;
  }
  .faq {
    gap:40px;
  }
  .faq h2 {
    font-size:36px;
  }
  .faq summary {
    font-size:15px;
  }
  .contact h2 {
    font-size:80px;
  }
  .contact-star {
    font-size:75px;
    right:0;
  }
  .contact-bottom>p {
    font-size:15px;
  }
  .email-link {
    font-size:23px;
  }
  .contact-bottom {
    gap:25px;
  }
  .contact {
    padding-bottom:65px;
  }
  .footer {
    padding-top:35px;
  }
  .footer-address {
    max-width:240px;
  }
  .footer>p {
    font-size:8px;
  }
}
@media(max-width:540px) {
  .wrap {
    width:calc(100% - 44px);
  }
  .header {
    height:84px;
  }
  .brand {
    font-size:22px;
    gap:8px;
  }
  .brand-mark {
    width:30px;
    height:30px;
  }
  .brand-ai {
    font-size:14px;
  }
  .header .button-small {
    display:none;
  }
  .header-actions {
    gap:18px;
  }
  .hero {
    padding-top:41px;
    min-height:885px;
  }
  .hero h1 {
    font-size:clamp(56px,13.4vw,76px);
    letter-spacing:-.067em;
    margin-bottom:24px;
  }
  .hero .eyebrow {
    font-size:7px;
    letter-spacing:.1em;
    margin-bottom:25px;
    gap:9px;
  }
  .hero-description {
    font-size:15px;
    line-height:1.8;
    max-width:345px;
    margin-bottom:25px;
  }
  .hero-actions {
    gap:22px;
    flex-wrap:wrap;
  }
  .hero-actions .button {
    font-size:10px;
    padding:17px 18px;
    gap:15px;
  }
  .hero-actions .text-link {
    font-size:10px;
    gap:10px;
  }
  .hero-note {
    font-size:8px;
    margin-top:25px;
    line-height:1.8;
  }
  .hero-art {
    top:371px;
    height:455px;
    width:calc(100% + 36px);
    right:-18px;
  }
  .art-caption {
    bottom:8px;
    right:20px;
    font-size:7px;
  }
  .hero-bottom {
    bottom:4px;
  }
  .scroll-hint {
    font-size:6.7px;
    gap:9px;
    letter-spacing:.13em;
  }
  .section {
    padding-top:92px;
  }
  .eyebrow {
    font-size:8px;
    letter-spacing:.12em;
    margin-bottom:25px;
  }
  h2 {
    font-size:42px;
    letter-spacing:-.055em;
    margin-bottom:25px;
  }
  .split-heading>p {
    font-size:15px;
    line-height:1.85;
  }
  .services-layout {
    grid-template-columns:1fr;
    gap:25px;
    margin-top:23px;
  }
  .service-button {
    padding:18px 0;
    gap:20px;
  }
  .service-button>span:nth-child(2) {
    font-size:26px;
  }
  .service-arrow {
    font-size:24px;
  }
  .service-detail {
    min-height:250px;
    padding-top:20px;
  }
  .service-detail .detail-label {
    margin-top:8px;
    margin-bottom:15px;
  }
  .service-detail h3 {
    font-size:25px;
    max-width:245px;
  }
  .service-detail>p:not(.eyebrow) {
    font-size:15px;
    max-width:330px;
  }
  .orbital {
    width:85px;
    height:85px;
    top:6px;
    right:-5px;
  }
  .orbital-core {
    font-size:19px;
  }
  .service-tags {
    margin-top:16px;
  }
  .approach-description {
    font-size:15px;
    line-height:1.8;
  }
  .steps {
    grid-template-columns:1fr;
    gap:36px;
    margin-top:40px;
  }
  .steps article {
    position:relative;
    padding-left:42px;
  }
  .step-number {
    position:absolute;
    left:0;
    top:7px;
    font-size:10px;
  }
  .step-number>span {
    display:none;
  }
  .steps h3 {
    font-size:25px;
    margin-bottom:12px;
  }
  .steps p {
    font-size:15px;
    margin-bottom:15px;
    max-width:none;
  }
  .step-note {
    font-size:7px;
  }
  .time-section {
    grid-template-columns:1fr;
    gap:20px;
  }
  .time-copy h2 {
    font-size:49px;
  }
  .time-copy>p:not(.eyebrow) {
    font-size:15px;
    max-width:340px;
  }
  .calculator {
    padding-top:20px;
  }
  .range-heading label {
    font-size:12px;
  }
  .result-main>span:first-child {
    font-size:109px;
  }
  .result-unit {
    font-size:16px;
  }
  .result-spark {
    font-size:46px;
    margin-right:20px;
  }
  .calc-disclaimer {
    max-width:none;
  }
  .about {
    grid-template-columns:1fr;
    gap:40px;
  }
  .about-signature {
    order:2;
    text-align:left;
    display:grid;
    grid-template-columns:100px 1fr;
    align-items:center;
    column-gap:20px;
  }
  .signature-symbol {
    grid-row:1/3;
    transform:none;
    font-size:86px;
    width:100px;
    height:100px;
    letter-spacing:-15px;
    padding-right:13px;
    margin:0;
  }
  .signature-symbol span:nth-child(2) {
    transform:translateY(7px);
  }
  .signature-symbol i {
    font-size:19px;
    top:6px;
    right:-3px;
  }
  .about-signature>p {
    align-self:end;
    font-size:9px;
    margin-bottom:7px;
  }
  .about-signature>span {
    align-self:start;
    font-size:7px;
    max-width:200px;
    line-height:1.8;
  }
  .about-copy h2 {
    font-size:39px;
  }
  .about-copy>p:not(.eyebrow) {
    font-size:16px;
  }
  .faq {
    grid-template-columns:1fr;
    gap:5px;
  }
  .faq h2 {
    font-size:40px;
  }
  .faq-list {
    padding-top:0;
  }
  .faq summary {
    font-size:16px;
  }
  .faq details {
    padding:17px 0;
  }
  .contact-top {
    display:block;
  }
  .contact-top .eyebrow {
    margin-bottom:18px;
  }
  .contact-note {
    font-size:9px;
    margin-bottom:29px;
  }
  .contact h2 {
    font-size:clamp(53px,12.8vw,70px);
    margin-bottom:35px;
    letter-spacing:-.068em;
  }
  .contact-star {
    font-size:35px;
    right:4px;
    top:12px;
  }
  .contact-bottom {
    display:block;
  }
  .contact-bottom>p {
    font-size:16px;
    margin-bottom:32px;
  }
  .email-link {
    font-size:27px;
  }
  .email-link>span {
    margin-left:8px;
  }
  .contact-links {
    gap:15px;
  }
  .contact {
    padding-bottom:45px;
  }
  .footer {
    flex-wrap:wrap;
    gap:28px;
    padding-bottom:30px;
  }
  .footer .brand {
    font-size:21px;
  }
  .footer>p {
    order:3;
    width:100%;
    text-align:left;
    font-size:8px;
  }
  .footer-address {
    max-width:none;
    display:inline;
    margin-left:10px;
  }
  .back-top {
    font-size:9px;
  }
  .js-ready .reveal {
    transform:translateY(15px);
  }
}
/* Keep longer decimal results and both language versions inside narrow screens. */
main {
  overflow-x:clip;
}
.languages button {
  min-height:44px;
}
.art-caption button {
  width:36px;
  height:36px;
}
.result-main {
  padding-top:5px;
}
.result-spark {
  position:absolute;
  right:0;
  top:10px;
  font-size:30px;
  margin:0;
}
.result-main>span:first-child {
  font-size:clamp(76px,7.6vw,110px);
}
@media(min-width:801px) and (max-width:1000px) {
  .desktop-nav {
    display:none;
  }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:10px 0 10px 8px;
  }
  .menu-toggle span {
    width:20px;
    height:1px;
    background:white;
  }
  .header-actions {
    margin-left:auto;
  }
  .mobile-nav {
    top:100px;
  }
}
@media(max-width:540px) {
  .result-main>span:first-child {
    font-size:clamp(76px,22vw,109px);
  }
  .result-spark {
    font-size:24px;
    top:5px;
    right:3px;
  }
  .hero-art {
    top:405px;
    height:420px;
  }
  .hero-note {
    max-width:285px;
  }
  .service-detail .detail-label {
    max-width:calc(100% - 65px);
  }
  .hero h1 {
    font-size:clamp(49px,13.4vw,76px);
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important;
  }
  .js-ready .reveal {
    opacity:1;
    transform:none;
  }
}
