/* ============================================================
   GLOBAL STYLES â€” variables, resets, shared components, navigation, footer
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&display=swap");

:root {
  --ink: #050b14;
  --ink2: #091421;
  --blue: #18a8ff;
  --cyan: #83dcff;
  --paper: #eff2f2;
  --surface: #fff;
  --text: #09111b;
  --muted: #1f2326;
  --line: #ced5d8;
  --max: 1240px;
}

html {
  scroll-behavior: smooth;
}

html[data-theme="dark"] {
  --paper: #090f18;
  --surface: #0e1722;
  --text: #edf7ff;
  --muted: #91a0ad;
  --line: #253241;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.35s,
    color 0.35s;
}

body::before {
  content: "";
  position: fixed;
  z-index: 40;
  inset: 0;

  background: rgba(2, 7, 14, 0.72);
  backdrop-filter: blur(5px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

body.nav-is-open {
  overflow: hidden;
}

body.nav-is-open::before {
  opacity: 1;
  visibility: visible;
}

.site {
  overflow: hidden;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

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

.scan-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(109, 198, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 198, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 90%);
}

header {
  height: 86px;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  transition:
    height 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

header.is-scrolled {
  height: 72px;

  background: rgba(4, 10, 17, 0.9);
  border-bottom-color: rgba(131, 220, 255, 0.16);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(16px);
}

.logo {
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  line-height: 1;
}

.logo-mark {
  grid-row: 1/3;
  width: 30px;
  height: 25px;
  position: relative;
}

.logo-mark i {
  position: absolute;
  height: 2px;
  background: var(--blue);
  transform: rotate(-34deg);
  transform-origin: left;
}

.logo-mark i:nth-child(1) {
  width: 25px;
  left: 2px;
  top: 19px;
}

.logo-mark i:nth-child(2) {
  width: 18px;
  left: 9px;
  top: 12px;
}

.logo-mark i:nth-child(3) {
  width: 11px;
  left: 16px;
  top: 5px;
}

.logo b {
  font: 600 17px "Manrope";
  letter-spacing: 0.16em;
}

.logo small {
  font-size: 7px;
  letter-spacing: 0.25em;
  opacity: 0.6;
  margin-top: 5px;
}

nav {
  display: flex;
  height: 100%;
  margin: auto;

  align-items: stretch;
  gap: 30px;

  font-size: 12px;
  letter-spacing: 0.06em;
}

nav a {
  position: relative;

  display: flex;
  height: 100%;
  padding: 0;

  align-items: center;

  opacity: 0.68;

  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

nav a:hover,
nav a.active {
  opacity: 1;
}

nav a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle {
  border: 0;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  cursor: pointer;
}

.theme-toggle i {
  width: 26px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  position: relative;
}

.theme-toggle i:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  top: 2px;
  left: 3px;
}

.header-cta {
  font-size: 10px;
  letter-spacing: 0.13em;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 18px;
  display: flex;
  gap: 9px;
  align-items: center;
}

.header-cta svg,
.btn svg,
.text-link svg,
.service-panel svg,
.project-info svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.menu {
  display: none;
}

@keyframes heroIn {
  from {
    transform: scale(1.06);
    filter: brightness(0.6);
  }
  to {
    transform: scale(1);
  }
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;

}

.eyebrow i {
  width: 22px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}

.eyebrow.dark {
  color: #0d0d0d;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
  margin: 0;
  font-weight: 500;
}

.hero h1,
.page-hero h1,
.contact-intro h1 {
  font-size: clamp(58px, 7.4vw, 112px);
  line-height: 0.95;
  max-width: 920px;
  margin: 25px 0;
}

.hero h1 em,
.page-hero h1 em,
.contact-intro h1 em,
.cta-band h2 em {
  font-weight: 400;
  color: var(--cyan);
}

.lede {
  font-size: 18px;
  line-height: 1.65;
  max-width: 540px;
  color: #c0ccd5;
}

.button-row {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;

  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(131, 220, 255, 0.04) 38%,
    rgba(131, 220, 255, 0.35) 48%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(131, 220, 255, 0.35) 52%,
    rgba(131, 220, 255, 0.04) 62%,
    transparent 75%
  );

  transform: translateX(-140%);

  pointer-events: none;
}

.btn {
  --button-glow: var(--cyan);

  position: relative;
  isolation: isolate;

  display: inline-flex;
  min-height: 50px;
  padding: 0 23px;

  align-items: center;
  justify-content: center;
  gap: 24px;

  overflow: hidden;

  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  border: 1px solid transparent;

  cursor: pointer;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.btn svg {
  flex-shrink: 0;

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--button-glow);

  box-shadow:
    0 0 8px var(--button-glow),
    0 0 18px rgba(24, 168, 255, 0.5);

  transition: width 0.4s ease;

  pointer-events: none;
}

@media (hover: hover) {
  .btn:hover {
    border-color: rgba(131, 220, 255, 0.65);
    text-shadow: 0 0 10px rgba(131, 220, 255, 0.4);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.25),
      0 0 20px rgba(24, 168, 255, 0.18);
    transform: none;
  }

  .btn:hover::before {
    animation: button-energy-sweep 0.75s ease forwards;
  }

  .btn:hover::after {
    width: 100%;
  }

  .btn:hover svg {
    transform: translateX(5px);
    filter: drop-shadow(
      0 0 5px rgba(131, 220, 255, 0.7)
    );
  }
}

@keyframes button-energy-sweep {
  from {
    transform: translateX(-140%);
  }

  to {
    transform: translateX(140%);
  }
}

.btn.primary {
  --button-glow: #b7ecff;
}

.btn.ghost {
  --button-glow: var(--cyan);
}

.btn.dark {
  --button-glow: var(--blue);
}

.btn.light {
  --button-glow: #006ca8;
}

.btn.ghost-dark {
  --button-glow: var(--blue);
}

.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.primary {
  background: var(--blue);
  color: #001323;
}

.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

.ghost-dark {
  border-color: var(--line);
  color: var(--text);
}

.btn.dark {
  background: var(--ink);
  color: white;
}

.btn.light {
  background: white;
  color: var(--ink);
}

.orbit-a {
  width: 550px;
  height: 550px;
  right: -140px;
  top: 100px;
}

.orbit-b {
  width: 760px;
  height: 760px;
  right: -245px;
  top: -5px;
}

.intro-grid h2,
.case-copy h2,
.process h2,
.pricing-head h2,
.about-story h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.03;
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.target {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid #64d6ff;
  border-radius: 50%;
}

.target:before,
.target:after {
  content: "";
  position: absolute;
  background: #64d6ff;
}

.target:before {
  height: 1px;
  width: 70px;
  left: -15px;
  top: 20px;
}

.target:after {
  width: 1px;
  height: 70px;
  left: 20px;
  top: -15px;
}

.cta-band {
  position: relative;
  background: #0a6fac;
  color: white;
  padding: 100px 0;
}

.cta-band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.cta-band .eyebrow {
  grid-column: 1/3;
}

.cta-band h2 {
  font-size: clamp(45px, 6vw, 82px);
  line-height: 1;
  margin-top: 22px;
}

.cta-band .btn {
  grid-column: 2;
  grid-row: 2;
}

footer {
  background: #040a11;
  color: #bac6cf;
  padding: 80px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid .logo {
  align-self: start;
  color: white;
  margin-bottom: 16px;
}

.footer-grid .footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #92b6d1;
  margin: 0 0 0.2rem;
}

.footer-grid a,
.footer-grid p {
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #14222d;
  margin-top: 65px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #4f6270;
}

.page-hero {
  min-height: 620px;
  background:
    radial-gradient(circle at 75% 40%, #12334b 0, transparent 30%), var(--ink);
  color: white;
  position: relative;
  padding-top: 190px;
}

.page-hero.compact {
  min-height: 500px;
}

.page-hero .wrap {
  position: relative;
}

.page-hero p:last-child {
  color: #91a4b3;
  font-size: 17px;
  max-width: 560px;
  line-height: 1.6;
}

.service-detail ul,
.pricing-grid ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.service-detail li,
.pricing-grid li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.service-detail li:before,
.pricing-grid li:before {
  content: "+";
  color: var(--blue);
  margin-right: 12px;
}

.process-grid span,
.value-grid span {
  font-size: 10px;
  color: #428db7;
}

.process-grid h3,
.value-grid h3 {
  font-size: 25px;
  margin: 30px 0 14px;
}

.process-grid p,
.value-grid p {
  font-size: 13px;
  line-height: 1.7;
  color: #596874;
}

.price {
  display: flex;
  align-items: start;
  gap: 12px;
}

.price small {
  font-size: 7px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 8px;
}

.price strong {
  font: 500 43px "Manrope";
  letter-spacing: -0.05em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.footer-grid > div:not(:first-child) a {
  position: relative;

  width: fit-content;

  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s ease;
}

.footer-grid > div:not(:first-child) a::after {
  content: "";
  position: absolute;

  right: 0;
  bottom: 2px;
  left: 0;

  height: 1px;

  background: linear-gradient(
    90deg,
    var(--blue),
    var(--cyan)
  );

  box-shadow: 0 0 8px rgba(24, 168, 255, 0.45);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;

  pointer-events: none;
}

.site-credit {
  color: inherit;

  text-decoration: none;

  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

.site-credit:hover,
.site-credit:focus-visible {
  color: var(--cyan);

  text-shadow: 0 0 10px rgba(131, 220, 255, 0.35);
}

.site-credit:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 5px;
}

@media (hover: hover) {
  .footer-grid > div:not(:first-child) a:hover {
    color: var(--cyan);

    text-shadow: 0 0 10px rgba(131, 220, 255, 0.25);

    transform: translateX(4px);
  }

  .footer-grid > div:not(:first-child) a:hover::after {
    transform: scaleX(1);
  }
}

/* ============================================================
   MOBILE 0rem and up
   ============================================================ */

@media (min-width: 0rem) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 75px 0;
  }

  header {
    height: 72px;
    padding-inline: 16px;
  }

  .header-actions {
    margin-left: auto;
  }

  .logo {
    grid-template-rows: 1fr;
  }

  .logo-mark {
    grid-row: 1;
  }

  .logo small,
  .theme-toggle span,
  .header-cta {
    display: none;
  }

  nav {
    position: absolute;
    z-index: 51;
    top: calc(100% + 14px);
    right: 16px;
    left: auto;

    display: flex;
    width: min(320px, calc(100vw - 32px));
    height: auto;
    margin: 0;
    padding: 18px;

    flex-direction: column;
    align-items: stretch;
    gap: 4px;

    background: rgba(7, 17, 28, 0.96);
    border: 1px solid rgba(131, 220, 255, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-12px) scale(0.97);
    transform-origin: top right;

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  nav a {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 14px;

    color: white;
    text-align: right;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    opacity: 0;
    transform: translateX(15px);

    transition:
      color 0.2s ease,
      background 0.2s ease,
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  nav a:last-child {
    border-bottom: 0;
  }

  nav.open a {
    opacity: 0.72;
    transform: translateX(0);
  }

  nav.open a:nth-child(1) {
    transition-delay: 0.04s;
  }
  nav.open a:nth-child(2) {
    transition-delay: 0.08s;
  }
  nav.open a:nth-child(3) {
    transition-delay: 0.12s;
  }
  nav.open a:nth-child(4) {
    transition-delay: 0.16s;
  }
  nav.open a:nth-child(5) {
    transition-delay: 0.2s;
  }

  nav a:hover,
  nav a:focus-visible,
  nav a.active {
    color: var(--cyan);
    background: rgba(24, 168, 255, 0.08);
    opacity: 1;
  }

  nav a.active::after {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    width: 2px;
    height: 20px;
    transform: translateY(-50%);
  }

  .menu {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition:
      background 0.25s ease,
      border-color 0.25s ease;
  }

  .menu:hover,
  .menu:focus-visible,
  body.nav-is-open .menu {
    background: rgba(24, 168, 255, 0.14);
    border-color: rgba(131, 220, 255, 0.55);
  }

  .menu i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 1px;
    background: white;
    transition:
      transform 0.3s ease,
      width 0.3s ease;
  }

  .menu i:first-child {
    transform: translate(-50%, -5px);
  }
  .menu i:last-child {
    transform: translate(-50%, 5px);
  }
  body.nav-is-open .menu i:first-child {
    transform: translate(-50%, 0) rotate(45deg);
  }
  body.nav-is-open .menu i:last-child {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .hero h1,
  .page-hero h1,
  .contact-intro h1 {
    font-size: 49px;
  }

  .lede {
    font-size: 15px;
  }

  .button-row {
    max-width: 270px;
    flex-direction: column;
    align-items: stretch;
  }

  .intro-grid,
  .case-feature,
  .about-story,
  .pricing-head,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 75px 0;
  }

  .cta-band .wrap {
    display: block;
  }

  .cta-band .btn {
    margin-top: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .wrap h3 {
    font-size: 0.9rem;
  }

  .wrap h3,
  .footer-bottom span,
  .footer-bottom a {
    color: #d5d5d5;
  }

  .page-hero {
    min-height: 520px;
    padding-top: 150px;
  }

  .process-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .process-grid > div,
  .value-grid > div,
  .value-grid > div:first-child {
    padding: 25px 0;
    border-left: 0;
    border-top: 1px solid #263542;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;

    text-align: center;
  }

  .footer-grid > div {
    align-items: center;
  }

  /* Logo and tagline */
  .footer-grid > div:nth-child(1) {
    grid-column: 1 / 3;
  }

  .footer-grid .logo {
    align-self: center;
  }

  /* Navigate */
  .footer-grid > div:nth-child(2) {
    grid-column: 1;
  }

  /* Capabilities */
  .footer-grid > div:nth-child(3) {
    grid-column: 2;
  }

  /* Field office */
  .footer-grid > div:nth-child(4) {
    grid-column: 1 / 3;

    padding-top: 10px;
  }

  .footer-grid h4 {
    text-align: center;
  }

  .footer-grid > div:not(:first-child) a {
    margin-inline: auto;
  }
}

/* ============================================================
   TABLET 48rem and up
   ============================================================ */

@media (min-width: 48rem) {
  .wrap {
    width: min(calc(100% - 40px), var(--max));
  }

  .section {
    padding: 110px 0;
  }

  header {
    height: 86px;
    padding-inline: 20px;
  }

  .logo {
    grid-template-rows: auto auto;
  }

  .logo-mark {
    grid-row: 1 / 3;
  }

  .logo small,
  .theme-toggle span {
    display: inline;
  }

  nav {
    right: 20px;
    width: min(320px, calc(100vw - 40px));
  }

  .hero h1,
  .page-hero h1,
  .contact-intro h1 {
    font-size: clamp(58px, 7.4vw, 112px);
  }

  .lede {
    font-size: 18px;
  }

  .button-row {
    max-width: none;
    flex-direction: row;
    align-items: initial;
  }

  .cta-band {
    padding: 100px 0;
  }

  .cta-band .wrap {
    display: grid;
  }

  .cta-band .btn {
    margin-top: 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: row;
    gap: 0;
  }

  .page-hero {
    min-height: 620px;
    padding-top: 190px;
  }

  .process-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid > div {
    padding: 0 30px;
    border-top: 0;
    border-left: 1px solid #aebbc0;
  }

  .value-grid > div {
    padding: 0 50px;
    border-top: 0;
    border-left: 1px solid #263542;
  }

  .value-grid > div:first-child {
    padding-left: 0;
    border: 0;
  }
    .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;

    text-align: left;
  }

  .footer-grid > div,
  .footer-grid > div:nth-child(1),
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3),
  .footer-grid > div:nth-child(4) {
    grid-column: auto;

    align-items: flex-start;
  }

  .footer-grid > div:nth-child(4) {
    padding-top: 0;
  }

  .footer-grid .logo {
    align-self: flex-start;
  }

  .footer-grid h4 {
    text-align: left;
  }

  .footer-grid > div:not(:first-child) a {
    margin-inline: 0;
  }
}

/* ============================================================
   DESKTOP 1024px and up
   ============================================================ */

@media (min-width: 64rem) {
  header {
    padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  }

  .header-actions {
    margin-left: 0;
  }

  nav {
    position: static;
    z-index: auto;
    top: auto;
    right: auto;
    left: auto;

    width: auto;
    height: 100%;
    margin: auto;
    padding: 0;

    flex-direction: row;
    align-items: stretch;
    gap: 30px;

    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  nav a {
    position: relative;
    display: flex;
    width: auto;
    height: 100%;
    padding: 0;
    align-items: center;
    color: inherit;
    text-align: left;
    border-bottom: 0;
    opacity: 0.68;
    transform: none;
    transition:
      color 0.25s ease,
      opacity 0.25s ease;
  }

  nav a:hover,
  nav a.active {
    color: inherit;
    background: transparent;
    opacity: 1;
  }

  nav a.active::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 2px;
    transform: none;
  }

  .header-cta {
    display: flex;
  }

  .menu {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .case-feature {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .about-story,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-head {
    grid-template-columns: 1fr 0.7fr;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
    .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
  }

  .footer-bottom .site-credit {
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;

    
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
  .btn,
  .btn::before,
  .btn::after,
  .btn svg {
    animation: none;
    transition: none;
  }
  .footer-grid a,
  .footer-grid a::after {
    transition: none;
  }
    
}

/* Theme toggle state */
html[data-theme="dark"] .theme-toggle i::after {
  left: 14px;
}

/* Contact form success state */
.form-success[hidden],
form[hidden] {
  display: none;
}