@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --ink-50: #f5f7fa;
  --ink-100: #e9eef5;
  --ink-200: #cbd6e4;
  --ink-300: #9fb1c9;
  --ink-400: #6d85a6;
  --ink-500: #4a6285;
  --ink-600: #384e6e;
  --ink-700: #2c3e57;
  --ink-800: #1f2c40;
  --ink-900: #141d2e;
  --ink-950: #0b121f;

  --brand-50: #eefcfa;
  --brand-100: #d4f7f1;
  --brand-200: #aceee4;
  --brand-300: #73ddcf;
  --brand-400: #38c3b4;
  --brand-500: #18a89a;
  --brand-600: #0d867c;
  --brand-700: #106b65;
  --brand-800: #125451;
  --brand-900: #114644;
  --brand-950: #042827;

  --accent-50: #eef6ff;
  --accent-100: #d9ebff;
  --accent-200: #bcdcff;
  --accent-300: #8ec6ff;
  --accent-400: #59a6ff;
  --accent-500: #3285fc;
  --accent-600: #1c66f0;
  --accent-700: #1451de;
  --accent-800: #1843b4;
  --accent-900: #1a3d8e;
  --accent-950: #142657;

  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: rgba(203, 214, 228, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink-950);
  color: var(--ink-100);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, ul, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}

ul {
  list-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

::selection {
  background: rgba(24, 168, 154, 0.3);
  color: #fff;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--ink-950);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ink-950);
}
::-webkit-scrollbar-thumb {
  background: var(--ink-700);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ink-600);
}

/* ---------- Keyframes ---------- */
@keyframes fade-up {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes soft-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.anim-fade-in {
  opacity: 0;
  animation: fade-in 0.8s ease forwards;
}
.anim-fade-up {
  opacity: 0;
  animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ---------- Shared utilities ---------- */
.text-brand { color: var(--brand-400); }
.text-accent { color: var(--accent-400); }
.text-brand-light { color: var(--brand-300); }
.text-accent-light { color: var(--accent-300); }

.text-gradient {
  background: linear-gradient(to right, var(--brand-300), var(--brand-400), var(--accent-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grid-pattern {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.dot-pattern {
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: var(--brand-500);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-950);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--brand-400);
  box-shadow: 0 0 30px -4px rgba(24, 168, 154, 0.6);
}
.btn-primary:active {
  transform: scale(0.98);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: rgba(56, 195, 180, 0.4);
  background: rgba(24, 168, 154, 0.1);
}
.btn-ghost:active {
  transform: scale(0.98);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(56, 195, 180, 0.2);
  background: rgba(24, 168, 154, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-300);
}
.section-label__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--brand-400);
}

.section-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-inner--narrow {
  max-width: 64rem;
}
@media (min-width: 1024px) {
  .section-inner { padding: 0 2rem; }
}

.section-title {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.section-lede {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--ink-300);
}
@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.form-input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 18, 31, 0.6);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  transition: all 0.2s ease;
}
.form-input::placeholder {
  color: var(--ink-500);
}
.form-input:focus {
  outline: none;
  border-color: rgba(56, 195, 180, 0.5);
  box-shadow: 0 0 0 3px rgba(56, 195, 180, 0.2);
}
.form-input option {
  background: var(--ink-900);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  transition: all 0.5s ease;
}
.navbar.is-scrolled {
  background: rgba(20, 29, 46, 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(11, 18, 31, 0.5);
}

.navbar__inner {
  margin: 0 auto;
  max-width: 80rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
@media (min-width: 1024px) {
  .navbar__inner { padding: 1rem 2rem; }
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.navbar__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(24, 168, 154, 0.15);
  box-shadow: 0 0 0 1px rgba(56, 195, 180, 0.3) inset;
  transition: background 0.2s ease;
}
.navbar__brand:hover .navbar__logo {
  background: rgba(24, 168, 154, 0.25);
}
.navbar__logo-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-400);
}
.navbar__logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: rgba(56, 195, 180, 0.2);
  animation: pulse-ring 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.navbar__brand-text {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.navbar__link {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-300);
  transition: all 0.2s ease;
}
.navbar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.navbar__cta { display: none; }

.navbar__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.navbar__toggle-icon {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
}
.navbar__toggle-icon--close { display: none; }
.navbar.is-menu-open .navbar__toggle-icon--open { display: none; }
.navbar.is-menu-open .navbar__toggle-icon--close { display: block; }

.navbar__mobile {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.navbar__mobile.is-open {
  max-height: 28rem;
}
.navbar__mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(20, 29, 46, 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
}
.navbar__mobile-link {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-200);
  transition: all 0.2s ease;
}
.navbar__mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.navbar__mobile-cta {
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .navbar__links { display: flex; }
  .navbar__cta { display: block; }
  .navbar__toggle { display: none; }
  .navbar__mobile { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero__blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  animation: glow 4s ease-in-out infinite;
}
.hero__blob--1 {
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: rgba(24, 168, 154, 0.1);
}
.hero__blob--2 {
  bottom: 0;
  right: 0;
  width: 500px;
  height: 400px;
  background: rgba(28, 102, 240, 0.1);
  animation-delay: 1.5s;
}

.hero__inner {
  position: relative;
  margin: 0 auto;
  display: flex;
  min-height: 100vh;
  max-width: 80rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__inner { padding-left: 2rem; padding-right: 2rem; }
}

.hero__pillars {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero__pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-200);
  backdrop-filter: blur(4px);
}
.hero__pillar-icon {
  width: 1rem;
  height: 1rem;
}

.hero__title {
  max-width: 56rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero__title-break { display: none; }
@media (min-width: 640px) {
  .hero__title { font-size: 3rem; }
  .hero__title-break { display: block; }
}
@media (min-width: 1024px) {
  .hero__title { font-size: 3.75rem; }
}
@media (min-width: 1280px) {
  .hero__title { font-size: 4.5rem; }
}

.hero__lede {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--ink-300);
}
@media (min-width: 640px) {
  .hero__lede { font-size: 1.25rem; }
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; }
}
.hero__cta:hover .btn-icon {
  transform: translateX(4px);
}
.btn-icon { transition: transform 0.2s ease; }

.hero__stats {
  margin-top: 4rem;
  display: grid;
  width: 100%;
  max-width: 48rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
@media (min-width: 640px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
}
.hero__stat {
  background: rgba(20, 29, 46, 0.4);
  padding: 1.25rem 1rem;
  backdrop-filter: blur(4px);
}
.hero__stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-400);
}
.hero__stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--ink-400);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-pill {
  display: flex;
  height: 2.25rem;
  width: 1.5rem;
  align-items: flex-start;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.375rem;
}
.hero__scroll-dot {
  height: 0.5rem;
  width: 0.25rem;
  border-radius: 9999px;
  background: var(--brand-400);
  animation: float 6s ease-in-out infinite;
}

/* ---------- Shared: cards, section backgrounds ---------- */
.services, .about, .why, .process, .contact {
  position: relative;
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .services, .about, .why, .process, .contact { padding: 8rem 0; }
}

.services__bg, .contact__bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.why__bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.why__blob {
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 9999px;
  background: rgba(28, 102, 240, 0.05);
  filter: blur(100px);
}
.contact__blob {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 9999px;
  background: rgba(24, 168, 154, 0.1);
  filter: blur(120px);
}

.services__heading, .why__heading, .process__heading {
  max-width: 42rem;
}
.why__heading {
  margin: 0 auto;
  text-align: center;
}

/* ---------- Services ---------- */
.services__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(20, 29, 46, 0.4);
  padding: 2rem;
  transition: all 0.5s ease;
}
.service-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(20, 29, 46, 0.6);
}
.service-card--brand:hover { box-shadow: 0 0 40px -8px rgba(24, 168, 154, 0.4); }
.service-card--accent:hover { box-shadow: 0 0 40px -8px rgba(50, 133, 252, 0.4); }

.service-card__glow {
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  filter: blur(40px);
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.service-card--brand .service-card__glow { background: rgba(24, 168, 154, 0.1); }
.service-card--accent .service-card__glow { background: rgba(50, 133, 252, 0.1); }
.service-card:hover .service-card__glow { opacity: 1; }

.service-card__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.service-card__icon {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}
.service-card--brand .service-card__icon { background: rgba(24, 168, 154, 0.1); box-shadow: 0 0 0 1px rgba(56, 195, 180, 0.3) inset; }
.service-card--accent .service-card__icon { background: rgba(50, 133, 252, 0.1); box-shadow: 0 0 0 1px rgba(89, 166, 255, 0.3) inset; }
.service-card__icon-svg { width: 1.75rem; height: 1.75rem; }
.service-card--brand .service-card__icon-svg { color: var(--brand-400); }
.service-card--accent .service-card__icon-svg { color: var(--accent-400); }

.service-card__tag {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-300);
}

.service-card__title {
  position: relative;
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.service-card__description {
  position: relative;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-300);
}
.service-card__features {
  position: relative;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .service-card__features { grid-template-columns: repeat(2, 1fr); }
}
.service-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-200);
}
.service-card__check {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.service-card--brand .service-card__check { color: var(--brand-400); }
.service-card--accent .service-card__check { color: var(--accent-400); }

.service-card__link {
  position: relative;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.2s ease;
}
.service-card--brand .service-card__link { color: var(--brand-400); }
.service-card--accent .service-card__link { color: var(--accent-400); }
.service-card__link:hover { gap: 0.5rem; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); }
}
.about__paragraphs {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-300);
}
.about__highlight {
  color: #fff;
  font-weight: 600;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.about__stat {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(20, 29, 46, 0.4);
  padding: 1.5rem;
  transition: border-color 0.5s ease;
}
.about__stat:hover {
  border-color: rgba(56, 195, 180, 0.2);
}
.about__stat-glow {
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: rgba(24, 168, 154, 0.05);
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about__stat:hover .about__stat-glow { opacity: 1; }
.about__stat-value {
  position: relative;
  font-family: var(--font-mono);
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  .about__stat-value { font-size: 2.25rem; }
}
.about__stat-label {
  position: relative;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-400);
}

/* ---------- Why ---------- */
.why__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); }
}
.why-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(20, 29, 46, 0.4);
  padding: 1.75rem;
  transition: all 0.5s ease;
}
.why-card:hover {
  border-color: rgba(56, 195, 180, 0.2);
  background: rgba(20, 29, 46, 0.6);
}
.why-card__icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(24, 168, 154, 0.1);
  box-shadow: 0 0 0 1px rgba(56, 195, 180, 0.2) inset;
  transition: all 0.2s ease;
}
.why-card:hover .why-card__icon {
  background: rgba(24, 168, 154, 0.2);
  box-shadow: 0 0 0 1px rgba(56, 195, 180, 0.4) inset;
}
.why-card__icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-400);
}
.why-card__title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.why-card__description {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-300);
}

/* ---------- Process ---------- */
.process__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process__grid { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  position: relative;
}
.process-step__connector {
  position: absolute;
  left: 100%;
  top: 3rem;
  display: none;
  height: 1px;
  width: 100%;
  transform: translateX(-1rem);
  background: linear-gradient(to right, rgba(56, 195, 180, 0.4), transparent);
}
@media (min-width: 1024px) {
  .process-step__connector { display: block; }
}
.process-step__card {
  position: relative;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(20, 29, 46, 0.4);
  padding: 1.75rem;
  transition: all 0.5s ease;
}
.process-step__card:hover {
  border-color: rgba(56, 195, 180, 0.2);
  background: rgba(20, 29, 46, 0.6);
}
.process-step__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.process-step__number {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(24, 168, 154, 0.3);
  transition: color 0.2s ease;
}
.process-step__card:hover .process-step__number {
  color: rgba(56, 195, 180, 0.5);
}
.process-step__divider {
  height: 2rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.process-step__title {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.process-step__description {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-300);
}

/* ---------- Contact ---------- */
.contact__heading {
  margin: 0 auto;
  max-width: 42rem;
  text-align: center;
}
.contact__card {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 29, 46, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.contact__grid {
  display: grid;
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: repeat(5, 1fr); }
}

.contact__info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
}
@media (min-width: 1024px) {
  .contact__info {
    grid-column: span 2 / span 2;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
  }
}
.contact__info-kicker {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--brand-400);
}
.contact__info-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.contact__info-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-300);
}
.contact__info-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .contact__info-details { margin-top: 3rem; }
}
.contact__info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-500);
}
.contact__info-value {
  margin-top: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: #fff;
}
.contact__info-value--muted {
  font-family: var(--font-sans);
  color: var(--ink-200);
}

.contact__form-panel {
  padding: 2rem;
}
@media (min-width: 1024px) {
  .contact__form-panel {
    grid-column: span 3 / span 3;
    padding: 2.5rem;
  }
}

.contact-success {
  display: flex;
  height: 100%;
  min-height: 20rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  text-align: center;
}
.contact-success__icon {
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(24, 168, 154, 0.15);
  box-shadow: 0 0 0 1px rgba(56, 195, 180, 0.3) inset;
  color: var(--brand-400);
  padding: 1rem;
}
.contact-success__title {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.contact-success__text {
  margin-top: 0.5rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: var(--ink-300);
}
.contact-success__reset {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-400);
  transition: color 0.2s ease;
}
.contact-success__reset:hover {
  color: var(--brand-300);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form__row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .contact-form__row { grid-template-columns: repeat(2, 1fr); }
}
.contact-form__textarea {
  resize: none;
}
.contact-form__error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fca5a5;
}
.contact-form__error-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.contact-form__submit {
  width: 100%;
}
.contact-form__spinner {
  display: none;
  animation: spin 1s linear infinite;
}
.contact-form__submit.is-loading .contact-form__submit-icon { display: none; }
.contact-form__submit.is-loading .contact-form__spinner { display: block; }

.field {
  display: block;
}
.field__label {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-400);
}
.field__required {
  color: var(--brand-400);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--ink-950);
}
.footer__top-line {
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(56, 195, 180, 0.3), transparent);
}
.footer__inner {
  margin: 0 auto;
  max-width: 80rem;
  padding: 4rem 1.5rem;
}
@media (min-width: 1024px) {
  .footer__inner { padding: 4rem 2rem; }
}
.footer__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
}
.footer__brand {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .footer__brand { grid-column: span 2 / span 2; }
}
.footer__brand-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.footer__logo {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(24, 168, 154, 0.15);
  box-shadow: 0 0 0 1px rgba(56, 195, 180, 0.3) inset;
}
.footer__logo-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-400);
}
.footer__brand-text {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.footer__brand-text-body {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-400);
}
.footer__email {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-200);
  transition: color 0.2s ease;
}
.footer__email:hover {
  color: var(--brand-400);
}
.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-500);
}
.footer__list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__list-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--ink-300);
}
.footer__list-icon {
  width: 1rem;
  height: 1rem;
  color: rgba(56, 195, 180, 0.7);
}
.footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--ink-300);
  transition: color 0.2s ease;
}
.footer__nav-link:hover {
  color: #fff;
}
.footer__nav-link-icon {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transition: all 0.2s ease;
}
.footer__nav-link:hover .footer__nav-link-icon {
  opacity: 1;
  transform: translate(2px, -2px);
}
.footer__bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; }
}
.footer__copyright {
  font-size: 0.75rem;
  color: var(--ink-500);
}
.footer__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--ink-500);
}
.footer__status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-400);
  animation: soft-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ---------- Admin ---------- */
.admin-page {
  min-height: 100vh;
}

.admin-login {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.admin-login__card {
  width: 100%;
  max-width: 22rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 29, 46, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2.5rem;
  text-align: center;
}
.admin-login__logo {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(24, 168, 154, 0.15);
  box-shadow: 0 0 0 1px rgba(56, 195, 180, 0.3) inset;
}
.admin-login__logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-400);
}
.admin-login__title {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.admin-login__subtitle {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-300);
}
.admin-login__error {
  margin-top: 1.25rem;
  text-align: left;
}
.admin-login__form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}
.admin-login__submit {
  width: 100%;
}

.admin-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 1024px) {
  .admin-shell { padding: 2.5rem 2rem; }
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-topbar__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.admin-topbar__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-400);
}
.admin-topbar__count {
  color: var(--ink-400);
  font-weight: 500;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(20, 29, 46, 0.4);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.admin-table th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-400);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.admin-table td {
  padding: 1rem 1.25rem;
  vertical-align: top;
  color: var(--ink-200);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-table tr:last-child td {
  border-bottom: none;
}
.admin-table__nowrap {
  white-space: nowrap;
}
.admin-table__muted {
  margin-top: 0.125rem;
  color: var(--ink-400);
  font-size: 0.8125rem;
}
.admin-table__message {
  min-width: 18rem;
  max-width: 28rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.admin-table__status {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-200);
}
.admin-table__status--new {
  background: rgba(24, 168, 154, 0.15);
  color: var(--brand-300);
}

.admin-empty {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(20, 29, 46, 0.4);
  padding: 3rem;
  text-align: center;
  color: var(--ink-400);
}
