﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg-deep: #050816;
  --bg-surface: #0a1022;
  --bg-card: #10182b;
  --bg-raised: #172038;
  --accent-cyan: #ff1744;
  --accent-gold: #ffc947;
  --accent-green: #00e5a0;
  --text-primary: #f2f2f8;
  --text-muted: #a8a8c0;
  --text-dim: #6a6a88;
}
html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 15px;
  }
}
body {
  background-color: #050816;
  color: #f2f2f8;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
::selection {
  background: rgba(255, 23, 68, 0.25);
  color: #f2f2f8;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.6rem 1rem;
  background: #ff1744;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 10000;
  border-radius: 2px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}
.delay-5 {
  transition-delay: 0.4s;
}
.delay-6 {
  transition-delay: 0.48s;
}
.delay-7 {
  transition-delay: 0.56s;
}
.delay-8 {
  transition-delay: 0.64s;
}
.delay-9 {
  transition-delay: 0.72s;
}
.delay-10 {
  transition-delay: 0.8s;
}
.delay-11 {
  transition-delay: 0.88s;
}
.delay-12 {
  transition-delay: 0.96s;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.btn:hover::after {
  opacity: 1;
}
.btn.btn-primary {
  background: #ff1744;
  color: #fff;
  font-weight: 600;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(255, 23, 68, 0.25);
}
.btn.btn-primary:hover {
  background: #ff4d6d;
  transform: translateY(-3px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 6px 20px rgba(255, 23, 68, 0.45),
    0 16px 48px rgba(255, 23, 68, 0.2);
}
.btn.btn-primary:active {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(255, 23, 68, 0.3);
  transition-duration: 0.1s;
}
.btn.btn-ghost {
  background: rgba(0, 0, 0, 0);
  color: #a8a8c0;
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.btn.btn-ghost:hover {
  border-color: hsla(0, 0%, 100%, 0.3);
  color: #f2f2f8;
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 6px 20px hsla(0, 0%, 100%, 0.04);
}
.btn.btn-ghost:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}
.btn.btn-gold {
  background: #ffc947;
  color: #050816;
  font-weight: 600;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(255, 201, 71, 0.2);
}
.btn.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 6px 20px rgba(255, 201, 71, 0.4),
    0 16px 48px rgba(255, 201, 71, 0.15);
}
.btn.btn-gold:active {
  transform: translateY(-1px);
  transition-duration: 0.1s;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(4px);
}
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition:
    background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.4s;
}
.site-nav.scrolled {
  padding: 1rem 0;
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .nav-logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: #f2f2f8;
}
.site-nav .nav-logo span {
  color: #ff1744;
}
@media (max-width: 640px) {
  .site-nav .nav-logo {
    font-size: 1.2rem;
  }
}
.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .site-nav .nav-links {
    display: none;
  }
}
.site-nav .nav-links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 400;
  color: #6a6a88;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.site-nav .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #a8a8c0;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: #f2f2f8;
}
.site-nav .nav-links a:hover::after,
.site-nav .nav-links a.active::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .site-nav .nav-cta {
    display: none;
  }
}
.site-nav .nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  margin: -10px;
}
@media (max-width: 1024px) {
  .site-nav .nav-hamburger {
    display: flex;
  }
}
.site-nav .nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f2f2f8;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.2s;
}
.site-nav .nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav .nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.site-nav .nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #050816;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: #a8a8c0;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: #ff1744;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #050816;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero::before {
  width: 55%;
  height: 55%;
  top: 5%;
  left: 0%;
  background: radial-gradient(circle, rgba(255, 23, 68, 0.07), transparent 70%);
  animation: heroBlob1 12s ease-in-out infinite alternate;
}
.hero::after {
  width: 45%;
  height: 50%;
  bottom: 10%;
  right: 0%;
  background: radial-gradient(circle, rgba(80, 40, 180, 0.07), transparent 70%);
  animation: heroBlob2 15s ease-in-out infinite alternate;
}
.hero .hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 0 5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero .hero-body {
    padding: 7rem 0 3rem;
  }
}
@media (max-width: 640px) {
  .hero .hero-body {
    padding: 6rem 0 2.5rem;
  }
}
.hero .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  /* margin-bottom: 2.5rem; */
}
.hero .hero-eyebrow .eyebrow-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 400;
  color: #6a6a88;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero .hero-eyebrow .eyebrow-divider {
  width: 1px;
  height: 12px;
  background: #6a6a88;
  opacity: 0.4;
  flex-shrink: 0;
}
.hero .hero-eyebrow .eyebrow-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: #ff1744;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero .hero-eyebrow .eyebrow-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff1744;
  flex-shrink: 0;
  animation: statusPulse 2.5s ease-in-out infinite;
}
.hero .hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, min(6vw, 10vh), 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f2f2f8;
  max-width: 18ch;
  overflow-wrap: break-word;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .hero .hero-title {
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
}
@media (max-width: 640px) {
  .hero .hero-title {
    letter-spacing: 0;
  }
}
.hero .hero-rule {
  width: 100%;
  height: 1px;
  background: hsla(0, 0%, 100%, 0.08);
  margin: 2.5rem 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero .hero-rule {
    margin: 2rem 0;
  }
}
@media (max-width: 640px) {
  .hero .hero-rule {
    margin: 1.5rem 0;
  }
}
.hero .hero-bottom {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero .hero-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.hero .hero-sub {
  font-size: 1.25rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.85;
}
@media (max-width: 768px) {
  .hero .hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
  }
}
@media (max-width: 640px) {
  .hero .hero-sub {
    font-size: 1rem;
  }
}
.hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.hero .hero-actions .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero .hero-actions .btn {
    width: auto;
  }
}
.hero .hero-caps {
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}
.hero .caps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 1024px) {
  .hero .caps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .hero .caps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero .cap-item {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem 0.75rem 0.25rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
  border-right: 1px solid hsla(0, 0%, 100%, 0.08);
  transition: background 0.2s;
}
@media (max-width: 640px) {
  .hero .cap-item {
    padding: 0.6rem 0.75rem 0.6rem 0;
    gap: 0.5rem;
  }
}
.hero .cap-item:nth-child(4n) {
  border-right: none;
}
.hero .cap-item:nth-last-child(-n + 4) {
  border-bottom: none;
}
@media (max-width: 1024px) {
  .hero .cap-item:nth-child(4n) {
    border-right: 1px solid hsla(0, 0%, 100%, 0.08);
  }
  .hero .cap-item:nth-last-child(-n + 4) {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
  }
  .hero .cap-item:nth-child(3n) {
    border-right: none;
  }
  .hero .cap-item:nth-last-child(-n + 3) {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .hero .cap-item:nth-child(3n) {
    border-right: 1px solid hsla(0, 0%, 100%, 0.08);
  }
  .hero .cap-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
  }
  .hero .cap-item:nth-child(2n) {
    border-right: none;
  }
  .hero .cap-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}
.hero .cap-item:hover {
  background: hsla(0, 0%, 100%, 0.02);
}
.hero .cap-item .cap-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  color: #ff1744;
  opacity: 0.7;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.15rem;
}
.hero .cap-item .cap-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #a8a8c0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.2s;
}
@media (max-width: 640px) {
  .hero .cap-item .cap-name {
    font-size: 0.8rem;
  }
}
.hero .cap-item:hover .cap-name {
  color: #f2f2f8;
}
@keyframes heroBlob1 {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  to {
    transform: translate(6%, 10%) scale(1.1);
    opacity: 1;
  }
}
@keyframes heroBlob2 {
  from {
    transform: translate(0, 0) scale(1.1);
    opacity: 1;
  }
  to {
    transform: translate(-8%, -6%) scale(1);
    opacity: 0.6;
  }
}
@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.section {
  padding: 10rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  color: #a8a8c0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f2f2f8;
  margin-bottom: 1.25rem;
}
.section-body {
  font-size: 1.2rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .section-body {
    font-size: 1.05rem;
  }
}
@media (max-width: 640px) {
  .section-body {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.availability-strip {
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
}
.availability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.08);
}
@media (max-width: 768px) {
  .availability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.avail-item {
  background: #050816;
  padding: 2.25rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .avail-item {
    padding: 1.5rem 1.25rem;
    gap: 0.875rem;
  }
}
.avail-item .avail-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2f2f8;
}
.avail-item .avail-icon svg {
  width: 84px;
  height: 84px;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s;
}
@media (max-width: 640px) {
  .avail-item .avail-icon svg {
    width: 48px;
    height: 48px;
  }
}
.avail-item:hover .avail-icon svg {
  transform: scale(1.15) rotate(-6deg);
  color: #ff1744;
}
.avail-item .avail-text .avail-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f2f2f8;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.avail-item .avail-text .avail-label {
  font-size: 1rem;
  font-weight: 400;
  color: #a8a8c0;
}
.services-section {
  background: #0a1022;
  position: relative;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: hsla(0, 0%, 100%, 0.08);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: #10182b;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition:
    background 0.4s,
    border-color 0.4s;
}
@media (max-width: 640px) {
  .service-card {
    padding: 2rem 1.5rem;
  }
}
.service-card {
  --glow-x: 50%;
  --glow-y: 50%;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(255, 23, 68, 0.07),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff1744;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.service-card:hover {
  background: #172038;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card:hover .service-icon svg {
  color: #ff1744;
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-card .service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #6a6a88;
  letter-spacing: 0.1em;
}
.service-card .service-icon {
  margin-bottom: 2rem;
}
.service-card .service-icon svg {
  width: 80px;
  height: 80px;
  color: #ff1744;
  opacity: 0.6;
  transition:
    color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s;
  display: block;
}
@media (max-width: 768px) {
  .service-card .service-icon svg {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 640px) {
  .service-card .service-icon svg {
    width: 44px;
    height: 44px;
  }
}
.service-card:hover .service-icon svg {
  color: #ff1744;
  opacity: 1;
  transform: scale(1.12) rotate(-6deg);
}
.service-card .service-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f2f2f8;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-card .service-desc {
  font-size: 1rem;
  font-weight: 400;
  color: #6a6a88;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.service-card .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}
.service-card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  color: #a8a8c0;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.service-card:hover .tag {
  /* border-color: rgba(255, 23, 68, 0.3); */
  border-color: rgba(0, 0, 0, 0.3);
  color: #f2f2f8;
}
.service-card .service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 400;
  color: #ff1744;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.4s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card .service-arrow svg {
  width: 14px;
  height: 14px;
}
.for-whom-section {
  position: relative;
}
.for-whom-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}
@media (max-width: 1024px) {
  .for-whom-grid {
    grid-template-columns: 1fr;
  }
}
.for-whom-card {
  background: #10182b;
  padding: 3rem 2.5rem;
}
@media (max-width: 640px) {
  .for-whom-card {
    padding: 2rem 1.5rem;
  }
}
.for-whom-card {
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.for-whom-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff1744;
  opacity: 0.5;
  transition: opacity 0.4s;
}
.for-whom-card:hover {
  background: #172038;
}
.for-whom-card:hover::before {
  opacity: 1;
}
.for-whom-card .fw-icon {
  margin-bottom: 1.5rem;
}
.for-whom-card .fw-icon svg {
  width: 66px;
  height: 66px;
  color: #ff1744;
  opacity: 0.7;
  transition:
    opacity 0.4s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.for-whom-card:hover .fw-icon svg {
  opacity: 1;
  transform: scale(1.1) rotate(-5deg);
}
.for-whom-card .fw-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a6a88;
  margin-bottom: 0.75rem;
}
.for-whom-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f2f2f8;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.for-whom-card p {
  font-size: 1.05rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.85;
}
.thirty-section {
  background: #0a1022;
  position: relative;
}
.thirty-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: hsla(0, 0%, 100%, 0.08);
}
.thirty-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .thirty-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.thirty-sticky {
  position: sticky;
  top: 8rem;
}
.thirty-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}
.thirty-step {
  padding: 2.75rem 2.5rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
}
@media (max-width: 768px) {
  .thirty-step {
    padding: 2rem 1.75rem;
  }
}
@media (max-width: 640px) {
  .thirty-step {
    padding: 1.75rem 1.25rem;
  }
}
.thirty-step {
  position: relative;
  transition: background 0.2s;
}
.thirty-step:last-child {
  border-bottom: none;
}
.thirty-step:hover {
  background: #172038;
}
.thirty-step .step-period {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8a8c0;
  margin-bottom: 0.6rem;
}
.thirty-step h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f2f2f8;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.thirty-step p {
  font-size: 1rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.8;
}
.tech-section {
  position: relative;
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
}
.tech-marquee-wrap {
  overflow: hidden;
  padding: 2.5rem 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}
.tech-marquee {
  display: flex;
  gap: 1.5rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.tech-marquee:hover {
  animation-play-state: paused;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  background: #10182b;
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  color: #a8a8c0;
  white-space: nowrap;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.tech-pill .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6a6a88;
  flex-shrink: 0;
}
.tech-pill:hover {
  border-color: hsla(0, 0%, 100%, 0.15);
  color: #f2f2f8;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.cta-section {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
}
.cta-section .cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .cta-section .cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.cta-section .cta-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #f2f2f8;
  margin-bottom: 0.75rem;
}
.cta-section .cta-sub {
  font-size: 1rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.75;
  max-width: 520px;
}
.cta-section .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .cta-section .cta-actions {
    flex-direction: row;
    align-items: flex-start;
  }
}
.why-section {
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}
.why-feature {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
  transition: background 0.2s;
}
.why-feature:last-child {
  border-bottom: none;
}
.why-feature:hover {
  background: #0a1022;
}
.why-feature .feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2f2f8;
}
.why-feature .feature-icon svg {
  width: 40px;
  height: 40px;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s;
}
@media (max-width: 640px) {
  .why-feature .feature-icon svg {
    width: 28px;
    height: 28px;
  }
}
.why-feature:hover .feature-icon svg {
  transform: scale(1.15) rotate(-8deg);
  color: #ff1744;
}
.why-feature .feature-text h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f2f2f8;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.why-feature .feature-text p {
  font-size: 1rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.75;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}
@media (max-width: 768px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}
.service-detail-card {
  background: #10182b;
  padding: 2.5rem;
  transition: background 0.4s;
}
.service-detail-card:hover {
  background: #172038;
}
.service-detail-card.span-2 {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .service-detail-card.span-2 {
    grid-column: span 1;
  }
}
.service-detail-card .sdc-icon {
  margin-bottom: 1.75rem;
}
.service-detail-card .sdc-icon svg {
  width: 60px;
  height: 60px;
  color: #f2f2f8;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s;
}
.service-detail-card:hover .sdc-icon svg {
  transform: scale(1.1) rotate(-6deg);
  color: #ff1744;
}
.service-detail-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f2f2f8;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.service-detail-card p {
  font-size: 1.05rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-detail-card .sdc-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-detail-card .sdc-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1rem;
  color: #a8a8c0;
  font-weight: 400;
}
.service-detail-card .sdc-list li::before {
  content: "—";
  color: #6a6a88;
  flex-shrink: 0;
}
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  margin: 3rem 0;
}
@media (max-width: 768px) {
  .about-mission {
    grid-template-columns: 1fr;
  }
}
.about-mission .mission-block {
  background: #10182b;
  padding: 2.75rem;
  transition: background 0.2s;
}
.about-mission .mission-block:hover {
  background: #172038;
}
.about-mission .mission-block .mission-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a8a8c0;
  margin-bottom: 1rem;
}
.about-mission .mission-block h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f2f2f8;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.about-mission .mission-block p {
  font-size: 1.05rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.8;
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}
@media (max-width: 1024px) {
  .team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .team-section .team-grid {
    grid-template-columns: 1fr;
  }
}
.team-section .team-card {
  background: #10182b;
  overflow: hidden;
  transition: background 0.4s;
}
.team-section .team-card:hover {
  background: #172038;
}
.team-section .team-card .team-avatar {
  height: 180px;
  background: #172038;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #6a6a88;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
}
.team-section .team-card .team-info {
  padding: 1.5rem;
}
.team-section .team-card .team-info h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f2f2f8;
  margin-bottom: 0.25rem;
}
.team-section .team-card .team-info .role {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  color: #6a6a88;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.team-section .team-card .team-info p {
  font-size: 1rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.75;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-item {
  background: #10182b;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s;
}
.stat-item:hover {
  background: #172038;
}
.stat-item .stat-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #f2f2f8;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item .stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: #a8a8c0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "JetBrains Mono", monospace;
}
.page-header {
  padding: 10rem 0 5rem;
  position: relative;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a6a88;
  margin-bottom: 2rem;
}
.page-header .breadcrumb a {
  color: #6a6a88;
  transition: color 0.2s;
}
.page-header .breadcrumb a:hover {
  color: #a8a8c0;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6a6a88;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: #10182b;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #f2f2f8;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #6a6a88;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: hsla(0, 0%, 100%, 0.2);
  background: #172038;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}
.form-group .field-error {
  font-size: 0.75rem;
  font-family: "JetBrains Mono", monospace;
  color: #ff6b6b;
  margin-top: 0.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-error-banner {
  padding: 1rem 1.25rem;
  background: rgba(255, 23, 68, 0.08);
  border: 1px solid rgba(255, 23, 68, 0.25);
  border-radius: 2px;
  color: #ff6b6b;
  font-size: 0.875rem;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 1.5rem;
}
.form-error-banner a {
  color: #ff9999;
  text-decoration: underline;
}
.form-success {
  padding: 1rem 1.25rem;
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 2px;
  color: #06ab79;
  font-size: 0.875rem;
  font-family: "JetBrains Mono", monospace;
  display: none;
  margin-bottom: 1.5rem;
}
.form-success.visible {
  display: block;
}
.contact-layout {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 7rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info .contact-detail {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
}
.contact-info .contact-detail:first-of-type {
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
}
.contact-info .contact-detail .detail-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a6a88;
  flex-shrink: 0;
}
.contact-info .contact-detail .detail-icon svg {
  width: 18px;
  height: 18px;
}
.contact-info .contact-detail .detail-text .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6a6a88;
  margin-bottom: 0.2rem;
}
.contact-info .contact-detail .detail-text .value {
  font-size: 0.9rem;
  color: #f2f2f8;
  font-weight: 400;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
}
.faq-list .faq-item {
  background: #10182b;
  padding: 1.75rem 2rem;
  transition: background 0.2s;
}
.faq-list .faq-item:hover {
  background: #172038;
}
.faq-list .faq-item h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f2f2f8;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.faq-list .faq-item p {
  font-size: 1rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.8;
}
.site-footer {
  background: #050816;
  border-top: 1px solid hsla(0, 0%, 100%, 0.08);
}
.footer-statement {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
  position: relative;
  overflow: hidden;
}
.footer-statement::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 23, 68, 0.05), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.footer-statement .footer-statement-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
}
@media (max-width: 1024px) {
  .footer-statement .footer-statement-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.footer-statement .statement-kicker {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff1744;
  margin-bottom: 1.25rem;
}
.footer-statement .statement-quote {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f2f2f8;
  border: none;
  padding: 0;
  margin: 0;
}
.footer-statement .footer-statement-meta {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .footer-statement .footer-statement-meta {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .footer-statement .footer-statement-meta {
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .footer-statement .footer-statement-meta {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}
.footer-statement .meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .footer-statement .meta-item {
    align-items: flex-start;
  }
}
.footer-statement .meta-item .meta-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f2f2f8;
  line-height: 1;
}
@media (max-width: 640px) {
  .footer-statement .meta-item .meta-value {
    font-size: 2rem;
  }
}
.footer-statement .meta-item .meta-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a6a88;
  margin-top: 0.3rem;
}
@media (max-width: 640px) {
  .footer-statement .meta-item .meta-label {
    font-size: 0.62rem;
  }
}
.footer-body {
  padding: 4rem 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .footer-logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f2f2f8;
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
  transition: opacity 0.2s;
}
.footer-brand .footer-logo span {
  color: #ff1744;
}
.footer-brand .footer-logo:hover {
  opacity: 0.8;
}
.footer-brand .footer-tagline {
  font-size: 0.95rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 2rem;
}
.footer-brand .social-links {
  display: flex;
  gap: 0.6rem;
}
.footer-brand .social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a6a88;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.footer-brand .social-icon svg {
  width: 16px;
  height: 16px;
}
.footer-brand .social-icon:hover {
  border-color: #ff1744;
  color: #ff1744;
  background: rgba(255, 23, 68, 0.06);
}
.footer-col h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f2f2f8;
  margin-bottom: 1.5rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-col ul li a {
  font-size: 0.95rem;
  font-weight: 400;
  color: #a8a8c0;
  transition: color 0.2s;
  position: relative;
  display: inline-block;
}
.footer-col ul li a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ff1744;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-col ul li a:hover {
  color: #f2f2f8;
}
.footer-col ul li a:hover::after {
  width: 100%;
}
.footer-trust {
  padding: 1.5rem 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.08);
}
.footer-trust .trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-family: "JetBrains Mono", monospace;
}
.footer-trust .trust-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6a6a88;
  padding-right: 0.5rem;
}
.footer-trust .trust-sep {
  color: #6a6a88;
  font-size: 0.75rem;
  opacity: 0.4;
}
.footer-trust .trust-item {
  font-size: 0.75rem;
  color: #6a6a88;
  transition: color 0.2s;
}
.footer-trust .trust-item:hover {
  color: #a8a8c0;
}
.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.footer-bottom .footer-copy {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #6a6a88;
  letter-spacing: 0.04em;
}
.footer-bottom .footer-copy span {
  opacity: 0.6;
}
.footer-bottom .footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom .footer-legal a {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #6a6a88;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-bottom .footer-legal a:hover {
  color: #a8a8c0;
}

/* ─── hero-caps: pearl capability matrix ─────────────────────────────────── */
.hero .hero-caps {
  background: #f7f6f4;
  border-top: none;
  padding: 0;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06) inset;
}
.caps-matrix {
  border-top: 1px solid #e8e5e1;
}
.cap-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-bottom: 1px solid #eceae7;
  overflow: hidden;
  transition: background 0.2s ease;
}
.cap-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e8112d;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cap-row:hover::before {
  transform: scaleY(1);
}
.cap-row:hover {
  background: rgba(232, 17, 45, 0.015);
}
.cap-row-head {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex: 0 0 290px;
  min-width: 0;
}
.cap-row-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  color: #e8112d;
  opacity: 0.45;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.1em;
  transition: opacity 0.2s ease;
}
.cap-row:hover .cap-row-num {
  opacity: 1;
}
.cap-row-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #444;
  letter-spacing: -0.013em;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.cap-row:hover .cap-row-name {
  color: #111;
}
.cap-row-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  flex: 1;
  min-width: 0;
}
.cap-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  background: #fff;
  border: 1px solid #e4e2df;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #7a8898;
  letter-spacing: 0.01em;
  line-height: 1.4;
  white-space: nowrap;
}
.cap-tag--lead {
  color: #c8001a;
  border-color: rgba(200, 0, 26, 0.22);
  background: rgba(200, 0, 26, 0.03);
  font-weight: 500;
}
@media (max-width: 768px) {
  .cap-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1.25rem 0 1.25rem 1.5rem;
  }
  .cap-row-head {
    flex: none;
    width: 100%;
  }
  .cap-row-name {
    font-size: 0.82rem;
  }
}
@media (max-width: 480px) {
  .cap-tag {
    font-size: 0.665rem;
    padding: 0.18rem 0.5rem;
  }
}

/* ─── nav-end layout + theme-toggle button ───────────────────────────────── */
.nav-end {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.theme-toggle {
  background: none;
  border: 1px solid hsla(0, 0%, 100%, 0.14);
  color: #a8a8c0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.theme-toggle:hover {
  border-color: hsla(0, 0%, 100%, 0.35);
  color: #f2f2f8;
}
.theme-toggle svg {
  width: 16px;
  height: 16px;
  display: block;
}
/* dark mode (default): show sun to switch → light; hide moon */
.theme-toggle .icon-sun {
  display: block;
}
.theme-toggle .icon-moon {
  display: none;
}
/* light mode: show moon to switch → dark; hide sun */
[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}
[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}
[data-theme="light"] .theme-toggle {
  border-color: rgba(0, 0, 0, 0.14);
  color: #666;
}
[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(0, 0, 0, 0.3);
  color: #111;
}

.why-section {
  background: #0a1022;
  border-top: 1px solid hsla(0, 0%, 100%, 0.04);
}

.hero-video {
  display: block;
  width: 100%;
  max-width: 2160px;
  height: auto;
  margin: 2rem auto;
}

@media (max-width: 1024px) {
  .thirty-sticky {
    position: static;
    top: auto;
  }
}

.hide {
  display: none !important;
}
/* ─── service-card illustration ─────────────────────────────────────────────── */
.card-illo {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.card-illo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.82;
  transition:
    opacity 0.45s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  display: block;
  border-radius: 10px;
  border: 1plx solid transparent;
}
.service-card:hover .card-illo img {
  opacity: 1;
  transform: scale(1.05) translateY(-4px);
}
@media (max-width: 1024px) {
  .card-illo {
    height: 170px;
  }
  .card-illo img {
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 640px) {
  .card-illo {
    height: 150px;
    margin-bottom: 1.25rem;
  }
  .card-illo img {
    width: 150px;
    height: 150px;
  }
}

/* ══════════════════════════════════════════ SERVICES HERO ══════════ */
.svc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #050816;
}

/* Video */
.svc-hero-video {
  position: absolute;
  /* inset: -15%; */
  width: 100%;
  /* height: 130%; */
  object-fit: cover;
  /* opacity: 0.42; */
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  transform: translateY(0);
}

/* Dual-gradient overlay: left-dark + bottom-dark */
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(5, 8, 22, 0.92) 0%,
      rgba(5, 8, 22, 0.62) 48%,
      rgba(5, 8, 22, 0.18) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 8, 22, 0.25) 0%,
      transparent 35%,
      rgba(5, 8, 22, 0.85) 100%
    );
}

/* Inner grid: content left, ghost numeral right */
.svc-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  padding-top: 11rem;
  padding-bottom: 7rem;
}

/* Content */
.svc-hero-content .breadcrumb {
  margin-bottom: 2rem;
}
.svc-hero-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff1744;
  margin-bottom: 1.25rem;
  display: block;
}

.svc-hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 6.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #f2f2f8;
  margin: 0 0 1.75rem;
}
.svc-hero-title em {
  font-style: italic;
  color: #ff1744;
  font-style: italic;
}

.svc-hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: #a8a8c0;
  line-height: 1.82;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.svc-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Ghost numeral */
.svc-hero-ghost {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ghost-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(7rem, 14vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #f2f2f8;
  opacity: 0.05;
  user-select: none;
  text-align: right;
  transition: opacity 0.6s ease;
}
.svc-hero:hover .ghost-num {
  opacity: 0.08;
}

/* Bottom discipline strip */
.svc-hero-disciplines {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid hsla(0, 0%, 100%, 0.07);
  padding: 0.9rem 0;
}
.disciplines-row {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.disciplines-row::-webkit-scrollbar {
  display: none;
}
.disc-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a6a88;
  white-space: nowrap;
  padding: 0.3rem 1.5rem 0.3rem 0;
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
  position: relative;
}
.disc-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.08);
}
.disc-item:last-child::after {
  display: none;
}
.disc-item:hover {
  color: #f2f2f8;
}
.disc-num {
  color: #ff1744;
  opacity: 0.6;
  font-size: 0.6rem;
}
.disc-item:hover .disc-num {
  opacity: 1;
}

/* Scroll indicator */
.svc-hero-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}
.scroll-track {
  width: 1px;
  height: 40px;
  background: hsla(0, 0%, 100%, 0.1);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 23, 68, 0.7);
  animation: scrollDrop 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes scrollDrop {
  0% {
    top: -50%;
    opacity: 1;
  }
  100% {
    top: 150%;
    opacity: 0;
  }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 8rem;
  }
  .svc-hero-ghost {
    display: none;
  }
}
@media (max-width: 768px) {
  .svc-hero {
    min-height: 85vh;
  }
  .svc-hero-inner {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
  .svc-hero-video {
    opacity: 0.3;
  }
  .svc-hero-overlay {
    background:
      linear-gradient(
        to right,
        rgba(5, 8, 22, 0.95) 0%,
        rgba(5, 8, 22, 0.75) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(5, 8, 22, 0.3) 0%,
        transparent 30%,
        rgba(5, 8, 22, 0.9) 100%
      );
  }
}
@media (max-width: 640px) {
  .svc-hero {
    min-height: 80vh;
  }
  .svc-hero-actions {
    flex-direction: column;
  }
  .svc-hero-actions .btn {
    justify-content: space-between;
  }
  .disciplines-row {
    gap: 0;
    padding-left: 0.5rem;
  }
  .disc-item {
    padding-right: 1rem;
  }
}

/* ── Light theme ─────────────────────────────────────────────────── */
[data-theme="light"] .svc-hero {
  background: #f8f7f5;
}
/* [data-theme="light"] .svc-hero-video{opacity:.45} */
[data-theme="light"] .svc-hero-overlay {
  background:
    linear-gradient(
      105deg,
      rgba(248, 247, 245, 0.97) 0%,
      rgba(248, 247, 245, 0.78) 48%,
      rgba(248, 247, 245, 0.3) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(248, 247, 245, 0.4) 0%,
      transparent 35%,
      rgba(248, 247, 245, 0.98) 100%
    );
}
[data-theme="light"] .svc-hero-title {
  color: #111;
}
[data-theme="light"] .svc-hero-sub {
  color: #555;
}
[data-theme="light"] .ghost-num {
  color: #111;
  opacity: 0.04;
}
[data-theme="light"] .svc-hero:hover .ghost-num {
  opacity: 0.06;
}
[data-theme="light"] .svc-hero-disciplines {
  border-color: rgba(0, 0, 0, 0.07);
}
[data-theme="light"] .disc-item {
  color: #999;
}
[data-theme="light"] .disc-item::after {
  background: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .disc-item:hover {
  color: #111;
}
[data-theme="light"] .scroll-track {
  background: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .svc-hero-label {
  color: #e8112d;
}
