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

:root {
  --bg: #07131e;
  --bg-alt: #0b1c2a;
  --panel: rgba(12, 28, 41, 0.82);
  --panel-strong: rgba(9, 20, 32, 0.96);
  --panel-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.11);
  --ink: #eff7ff;
  --muted: #9fb4c6;
  --accent: #79def5;
  --accent-2: #2c7b9c;
  --accent-3: #f6fbff;
  --brand-blue: #2c7b9c;
  --peak: #f6fbff;
  --success: #64f0b8;
  --danger: #ff7e8b;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --radius-sm: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(121, 222, 245, 0.15), transparent 30%),
    radial-gradient(circle at top right, rgba(44, 123, 156, 0.18), transparent 30%),
    radial-gradient(circle at bottom center, rgba(246, 251, 255, 0.08), transparent 36%),
    linear-gradient(180deg, #07111b 0%, #0a1824 44%, #081119 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
  opacity: 0.32;
}

body::after {
  content: "";
  position: fixed;
  right: -8vw;
  bottom: -2rem;
  width: min(52rem, 72vw);
  aspect-ratio: 16 / 9;
  pointer-events: none;
  background: url("./pioneer-mountains.svg") no-repeat center / contain;
  opacity: 0.045;
  filter: drop-shadow(0 0 24px rgba(121, 222, 245, 0.18));
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #07131e;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 19, 30, 0.52);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 19, 30, 0.86);
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 2.95rem;
  padding: 0.45rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top left, rgba(246, 251, 255, 0.16), transparent 45%),
    linear-gradient(145deg, rgba(53, 139, 174, 0.98), rgba(36, 98, 125, 0.98));
  box-shadow: 0 16px 34px rgba(44, 123, 156, 0.28);
}

.brand__mark svg {
  width: 100%;
  height: auto;
  fill: var(--peak);
}

.brand__text {
  display: grid;
  gap: 0.15rem;
}

.brand__text strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav__links .button--primary {
  color: var(--ink);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -0.36rem;
}

.nav-toggle span::after {
  top: 0.36rem;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(0.36rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-0.36rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.98rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04131d;
  box-shadow: 0 18px 42px rgba(56, 230, 255, 0.18);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  position: relative;
  padding: 3.4rem 0 2.4rem;
}

.section::before {
  content: "";
  display: block;
  width: min(calc(100% - 2rem), var(--max-width));
  height: 1px;
  margin: 0 auto 2.6rem;
  background: linear-gradient(90deg, transparent, rgba(56, 230, 255, 0.45), rgba(138, 92, 255, 0.35), transparent);
  opacity: 0.9;
}

.hero {
  padding: 4.8rem 0 2.8rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.35rem;
}

.panel,
.card,
.metric,
.timeline__item,
.contact-card,
.footer-card,
.case-study,
.status {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 3.4rem);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel::before {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -0.75rem;
  width: min(28rem, 42vw);
  aspect-ratio: 16 / 9;
  background: url("./pioneer-mountains.svg") no-repeat center / contain;
  opacity: 0.09;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -7rem;
  top: -4rem;
  background: radial-gradient(circle, rgba(56, 230, 255, 0.26), transparent 70%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #cfe4f6;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 18px rgba(56, 230, 255, 0.5);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.95;
}

.hero-panel h1 {
  margin-top: 1rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy {
  max-width: 48rem;
  margin-top: 1.1rem;
  font-size: 1.06rem;
}

.hero-copy strong {
  color: var(--ink);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-flag {
  font-size: 1.15em;
  line-height: 1;
}

.hero-actions,
.page-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.metric {
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.metric strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.metric--capabilities strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.metric--capabilities p {
  line-height: 1.55;
}

.tech-panel {
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}

.tech-orb {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  padding: 1.2rem;
  border-radius: calc(var(--radius) - 0.4rem);
  background:
    radial-gradient(circle at 18% 20%, rgba(121, 222, 245, 0.22), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(44, 123, 156, 0.28), transparent 28%),
    linear-gradient(160deg, rgba(6, 17, 30, 0.9), rgba(10, 24, 40, 0.95));
}

.tech-orb > * {
  position: relative;
  z-index: 1;
}

.tech-orb::before,
.tech-orb::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tech-orb::before {
  right: -1.6rem;
  bottom: -0.8rem;
  width: 18rem;
  aspect-ratio: 16 / 9;
  background: url("./pioneer-mountains.svg") no-repeat center / contain;
  opacity: 0.18;
}

.tech-orb::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 30, 0), rgba(7, 19, 30, 0.18) 68%, rgba(7, 19, 30, 0.42));
}

.tech-orb__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tech-orb__mark {
  display: inline-flex;
  width: clamp(5.25rem, 14vw, 7rem);
  color: var(--peak);
  filter: drop-shadow(0 12px 24px rgba(121, 222, 245, 0.18));
}

.tech-orb__mark svg {
  width: 100%;
  height: auto;
  fill: currentColor;
}

.tech-orb__tag {
  display: inline-flex;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #d9f9ff;
  font-size: 0.84rem;
  white-space: nowrap;
}

.tech-orb h2 {
  margin-top: 1rem;
  max-width: 12ch;
}

.tech-orb__stack {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.55rem;
}

.tech-orb__stack span {
  padding: 0.75rem 0.92rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #eef8ff;
  font-weight: 600;
}

.section-header,
.content-header {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.cards--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.case-study,
.contact-card,
.footer-card {
  padding: 1.4rem;
  min-width: 0;
}

.contact-card p,
.contact-card a,
.footer-card p,
.footer-card a,
.footer-card li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-method__value {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
}

.contact-method__value--email {
  max-width: 100%;
  font-size: clamp(0.84rem, 1.15vw, 0.98rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.contact-method__value--email::-webkit-scrollbar {
  display: none;
}

.contact-details-grid {
  display: grid;
  gap: 1rem;
}

.contact-details-grid__primary,
.contact-details-grid__secondary {
  display: grid;
  gap: 1rem;
}

.contact-details-grid__primary {
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
}

.contact-details-grid__secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page-flow {
  display: grid;
  gap: 1.35rem;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(56, 230, 255, 0.16), rgba(138, 92, 255, 0.16));
  color: #d9fbff;
  font-weight: 800;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: #def2ff;
  font-weight: 700;
}

.content-panel {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--short {
  min-height: 14rem;
}

.media-frame__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 19, 30, 0.72);
  color: #eaf8ff;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.timeline__item {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.timeline__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05121d;
  font-size: 0.84rem;
  font-weight: 800;
}

.case-study__meta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: #c4d7e7;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-study__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.case-study__icon-wrap {
  display: inline-flex;
  width: 4.3rem;
  height: 4.3rem;
  padding: 0.22rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(56, 230, 255, 0.92), rgba(138, 92, 255, 0.88));
  box-shadow: 0 18px 38px rgba(56, 230, 255, 0.18);
}

.case-study__icon {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.case-study__actions {
  margin-top: 1.15rem;
}

.case-study__link {
  min-width: 0;
}

.quote {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(56, 230, 255, 0.09), rgba(138, 92, 255, 0.07)),
    rgba(255, 255, 255, 0.03);
}

.quote strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 230, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.link-card span:last-child {
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-weight: 700;
  color: #d7e8f6;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(56, 230, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(56, 230, 255, 0.12);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.status {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  margin-top: 1rem;
}

.status.is-visible {
  display: block;
}

.status--success {
  border-color: rgba(100, 240, 184, 0.28);
  background: rgba(100, 240, 184, 0.08);
  color: #d5fff0;
}

.status--error {
  border-color: rgba(255, 126, 139, 0.28);
  background: rgba(255, 126, 139, 0.08);
  color: #ffe2e6;
}

.page-hero {
  padding: 4.2rem 0 2.1rem;
}

.page-hero .hero-panel {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.page-hero__mark {
  position: absolute;
  top: 1.35rem;
  right: 1.45rem;
  display: inline-flex;
  width: clamp(4.5rem, 12vw, 6rem);
  color: rgba(246, 251, 255, 0.92);
  opacity: 0.92;
}

.page-hero__mark svg {
  width: 100%;
  height: auto;
  fill: currentColor;
}

.case-study-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.35rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.case-study-hero::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  right: -6rem;
  top: -6rem;
  background: radial-gradient(circle, rgba(56, 230, 255, 0.16), transparent 72%);
  pointer-events: none;
}

.case-study-hero__aside {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: start;
  align-content: start;
  min-width: 0;
}

.case-study-hero__icon {
  width: min(100%, 13.5rem);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.footer {
  padding: 2rem 0 2.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
}

.footer-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-card a,
.footer-card li,
.footer-card p {
  color: var(--muted);
}

.footer-card {
  padding: 1rem 1.15rem;
  border-radius: 20px;
}

.footer-card h3 {
  font-size: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.social-link__handle {
  color: var(--muted);
}

.social-link__icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: #d9ebf7;
}

.social-link__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link__icon svg path,
.social-link__icon svg rect,
.social-link__icon svg circle {
  vector-effect: non-scaling-stroke;
}

.footer-card--brand {
  overflow: hidden;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.footer-brand__mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 5rem;
  color: var(--peak);
}

.footer-brand__mark svg {
  width: 100%;
  height: auto;
  fill: currentColor;
}

.footer-links {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.8rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #d9ebf7;
  font-size: 0.84rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.footer-link:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 230, 255, 0.3);
}

.footer-strip {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.footer-bottom {
  margin-top: 0.9rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero__grid,
  .split,
  .cards,
  .cards--four,
  .timeline,
  .case-study-hero,
  .link-grid,
  .footer-grid,
  .hero-stats,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .contact-details-grid__primary,
  .contact-details-grid__secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 19, 30, 0.94);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links a,
  .site-nav__links .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .case-study-hero__aside {
    justify-items: start;
  }

  .tech-orb__brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .tech-orb__tag {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3rem;
  }

  .section {
    padding: 2.5rem 0 1.8rem;
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .content-panel,
  .card,
  .case-study,
  .contact-card,
  .footer-card {
    padding: 1.2rem;
  }

  .page-hero__mark {
    position: static;
    margin-bottom: 1rem;
    width: 4.8rem;
  }

  .hero-panel::before {
    width: 15rem;
    right: -2.5rem;
  }
}
