:root {
  --black: #050505;
  --graphite: #171717;
  --graphite-2: #222222;
  --off-white: #f2f2f2;
  --muted: #b8b8b8;
  --muted-2: #8e8e8e;
  --cyan: #00d4ff;
  --green: #24f29c;
  --line: rgba(242, 242, 242, 0.12);
  --line-strong: rgba(242, 242, 242, 0.2);
  --glass: rgba(255, 255, 255, 0.055);
  --gradient: linear-gradient(90deg, var(--cyan) 0%, var(--green) 100%);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background-color: var(--black);
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

body.admin-form-open {
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: linear-gradient(180deg, #050505 0%, #090909 42%, #050505 100%), var(--black);
  color: var(--off-white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

main,
.hero,
.section,
.method-band,
.content-hero,
.contact-section,
.newsletter-section,
.legal-content,
.site-footer {
  background-color: var(--black);
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  min-height: calc(78px + env(safe-area-inset-top));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: calc(12px + env(safe-area-inset-top)) max(24px, calc((100vw - var(--max-width)) / 2)) 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 22px;
  display: inline-grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-mark path {
  fill: none;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-word {
  font-size: 1.28rem;
  line-height: 1;
  color: var(--off-white);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  color: rgba(242, 242, 242, 0.76);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-links a,
.footer-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--off-white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta,
.button-primary {
  color: #050505;
  background: var(--gradient);
  box-shadow: 0 16px 38px rgba(0, 212, 255, 0.18);
}

.button-secondary {
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.button-secondary:hover {
  border-color: rgba(36, 242, 156, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--off-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  min-height: 100svh;
  padding: 126px max(24px, calc((100vw - var(--max-width)) / 2)) 74px;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.76) 52%, rgba(5, 5, 5, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 112px);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.45) 62%, transparent 100%);
}

.hero-content,
.route-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.method-copy h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 6.8rem;
  font-weight: 800;
  line-height: 0.9;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(242, 242, 242, 0.76);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.route-visual {
  min-height: 520px;
  display: grid;
  align-items: center;
  contain: paint;
}

.route-visual svg {
  width: min(100%, 680px);
  min-height: 400px;
  filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.14));
  transform: translateZ(0);
}

.route-line {
  fill: none;
  stroke: url("#routeGradient");
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.84;
  stroke-dasharray: 18 18;
  animation: routeMove 6s linear infinite;
  will-change: stroke-dashoffset;
}

.route-line-2 {
  animation-duration: 7.5s;
  opacity: 0.72;
}

.route-line-3 {
  animation-duration: 8.4s;
  opacity: 0.66;
}

.route-line-4 {
  animation-duration: 9.2s;
  opacity: 0.58;
}

.route-line-5 {
  animation-duration: 10.4s;
  opacity: 0.5;
}

.route-node {
  fill: var(--green);
}

.route-node-main {
  filter: drop-shadow(0 0 18px rgba(36, 242, 156, 0.5));
}

@keyframes routeMove {
  to {
    stroke-dashoffset: -72;
  }
}

.section,
.services-section,
.why-section {
  padding: clamp(78px, 9vw, 130px) max(24px, calc((100vw - var(--max-width)) / 2));
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-intro-left {
  margin: 0;
  text-align: left;
}

.section-intro h2,
.method-copy h2,
.contact-copy h2 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 0.98;
}

.section-intro p:not(.eyebrow),
.contact-copy p {
  margin: 20px 0 0;
  color: rgba(242, 242, 242, 0.68);
  font-size: 1rem;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.glass-card,
.service-card,
.pillar,
.contact-form {
  position: relative;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.035)) padding-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 255, 255, 0.09), rgba(36, 242, 156, 0.26)) border-box;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.glass-card {
  min-height: 260px;
  padding: 26px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.glass-card:hover,
.service-card:hover,
.pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 242, 156, 0.38);
}

.icon-wrap {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.icon-wrap svg {
  width: 30px;
  height: 30px;
}

.icon-wrap svg path,
.icon-wrap svg circle {
  fill: none;
  stroke: url("#routeGradient");
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glass-card h3,
.service-card h3,
.pillar h3 {
  margin: 0;
  color: var(--off-white);
  font-size: 1.16rem;
}

.glass-card p,
.service-card p,
.pillar p {
  margin: 14px 0 0;
  color: rgba(242, 242, 242, 0.64);
  line-height: 1.72;
}

.services-section {
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.42), rgba(5, 5, 5, 0));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 248px;
  padding: 26px;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.service-card span,
.method-step span,
.pillar-index {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.service-card h3 {
  margin-top: 42px;
  max-width: 260px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.method-band {
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
}

.method-inner {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: center;
  gap: 52px;
  padding: clamp(42px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--graphite);
  overflow: hidden;
}

.method-track {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 12px;
}

.method-step {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.42);
}

.method-step strong {
  font-size: 1.18rem;
}

.method-arrow {
  height: 2px;
  background: var(--gradient);
  position: relative;
}

.method-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.pillar-stack {
  display: grid;
  gap: 16px;
}

.pillar {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: start;
  min-height: 164px;
  padding: 26px;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.pillar-index {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(36, 242, 156, 0.32);
  border-radius: 50%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  padding: clamp(78px, 9vw, 130px) max(24px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(23, 23, 23, 0.42)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 88px);
}

.contact-copy {
  position: sticky;
  top: 132px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form span {
  color: rgba(242, 242, 242, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.newsletter-form input,
.newsletter-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.54);
  color: var(--off-white);
  outline: none;
  padding: 14px 15px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(118px, 0.34fr) minmax(0, 1fr);
  gap: 10px;
}

.phone-field select {
  min-width: 0;
  appearance: none;
  padding-right: 32px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(242, 242, 242, 0.72) 50%),
    linear-gradient(135deg, rgba(242, 242, 242, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.contact-modal .contact-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-modal .contact-form span {
  color: var(--off-white);
}

.contact-modal .contact-modal-panel {
  width: min(100%, 620px);
  border: 1px solid rgba(36, 242, 156, 0.18);
  background: #050505;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72);
}

.contact-modal .contact-form input,
.contact-modal .contact-form textarea,
.contact-modal .contact-form select {
  border-color: rgba(36, 242, 156, 0.56);
  background-color: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(36, 242, 156, 0.1),
    0 0 16px rgba(36, 242, 156, 0.12);
}

.contact-modal .contact-form input:focus,
.contact-modal .contact-form textarea:focus,
.contact-modal .contact-form select:focus {
  border-color: rgba(0, 212, 255, 0.78);
  background-color: rgba(5, 5, 5, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(0, 212, 255, 0.22),
    0 0 22px rgba(0, 212, 255, 0.16);
}

.contact-result[hidden] {
  display: none;
}

.contact-result {
  display: grid;
  min-height: 420px;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 32px 8px 14px;
  text-align: center;
}

.contact-result-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(36, 242, 156, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.22), transparent 38%),
    radial-gradient(circle at 70% 80%, rgba(36, 242, 156, 0.18), transparent 42%),
    rgba(5, 5, 5, 0.34);
  box-shadow:
    0 0 0 8px rgba(36, 242, 156, 0.06),
    0 22px 56px rgba(0, 212, 255, 0.14);
  animation: contactResultPop 420ms ease both;
}

.contact-result.is-error .contact-result-mark {
  border-color: rgba(255, 110, 110, 0.58);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 110, 110, 0.22), transparent 38%),
    rgba(5, 5, 5, 0.34);
  box-shadow:
    0 0 0 8px rgba(255, 110, 110, 0.06),
    0 22px 56px rgba(255, 110, 110, 0.12);
}

.contact-result-mark svg {
  width: 54px;
  height: 54px;
}

.contact-result-mark path {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: contactResultStroke 620ms ease 180ms forwards;
}

.contact-result.is-error .contact-result-mark path {
  stroke: #ff6e6e;
}

.contact-result h3 {
  margin: 0;
  color: var(--off-white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.05;
}

.contact-result p {
  max-width: 460px;
  margin: 0;
  color: rgba(242, 242, 242, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-result small {
  max-width: 440px;
  color: rgba(242, 242, 242, 0.52);
  font-size: 0.82rem;
  line-height: 1.5;
}

@keyframes contactResultPop {
  from {
    opacity: 0;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contactResultStroke {
  to {
    stroke-dashoffset: 0;
  }
}

.contact-form textarea {
  resize: vertical;
  min-height: 142px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.newsletter-form input:focus,
.newsletter-form select:focus {
  border-color: rgba(0, 212, 255, 0.64);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.contact-form button {
  justify-self: start;
  margin-top: 4px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  line-height: 1.5;
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 8vw, 110px) max(24px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(130deg, rgba(0, 212, 255, 0.08), rgba(5, 5, 5, 0) 42%, rgba(36, 242, 156, 0.08)),
    #050505;
}

.newsletter-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.newsletter-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(242, 242, 242, 0.68);
  line-height: 1.75;
}

.newsletter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  padding: 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.035)) padding-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 255, 255, 0.09), rgba(36, 242, 156, 0.26)) border-box;
}

.newsletter-form label {
  display: grid;
  gap: 9px;
  align-self: stretch;
}

.newsletter-form span {
  min-height: 1.2em;
  color: rgba(242, 242, 242, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.newsletter-form input,
.newsletter-form select {
  height: 48px;
  min-height: 48px;
}

.newsletter-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(242, 242, 242, 0.72) 50%),
    linear-gradient(135deg, rgba(242, 242, 242, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.newsletter-form .button {
  height: 48px;
  min-height: 48px;
  width: auto;
  justify-self: start;
}

.newsletter-form .button {
  align-self: end;
}

.newsletter-status,
.application-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  padding: 44px max(24px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
}

.footer-brand p,
.copyright {
  margin: 14px 0 0;
  color: rgba(242, 242, 242, 0.58);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(242, 242, 242, 0.64);
  font-size: 0.88rem;
  font-weight: 600;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.rich-copy {
  align-self: center;
  color: rgba(242, 242, 242, 0.72);
  font-size: 1.02rem;
  line-height: 1.85;
}

.rich-copy p {
  margin: 0;
}

.rich-copy p + p {
  margin-top: 22px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.detail-grid,
.resource-grid,
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card,
.resource-card,
.job-card,
.service-detail,
.process-list article,
.faq-list article {
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)) padding-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.22), rgba(255, 255, 255, 0.08), rgba(36, 242, 156, 0.2)) border-box;
}

.detail-card,
.resource-card,
.job-card,
.faq-list article {
  min-height: 210px;
  padding: 26px;
}

.detail-card h3,
.resource-card h2,
.job-card h2,
.faq-list h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.detail-card p,
.resource-card p,
.job-card p,
.faq-list p {
  margin: 14px 0 0;
  color: rgba(242, 242, 242, 0.66);
  line-height: 1.72;
}

.job-card strong {
  display: block;
  margin-top: 18px;
  color: rgba(242, 242, 242, 0.84);
  font-size: 0.92rem;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.text-link:hover {
  color: var(--cyan);
  transform: translateX(2px);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
}

.modal.is-open {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(100%, 560px);
  max-height: min(88svh, 760px);
  overflow: auto;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(rgba(23, 23, 23, 0.98), rgba(5, 5, 5, 0.98)) padding-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.34), rgba(255, 255, 255, 0.1), rgba(36, 242, 156, 0.32)) border-box;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
  transform: translateZ(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--off-white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.modal-panel h2 {
  margin: 0;
  padding-right: 40px;
  font-size: 2rem;
  line-height: 1.1;
}

.modal-copy {
  margin: 14px 0 24px;
  color: rgba(242, 242, 242, 0.68);
  line-height: 1.7;
}

.download-form {
  display: grid;
  gap: 16px;
}

.download-form label {
  display: grid;
  gap: 9px;
}

.download-form span {
  color: rgba(242, 242, 242, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.download-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.54);
  color: var(--off-white);
  outline: none;
  padding: 14px 15px;
}

.download-form input:focus {
  border-color: rgba(0, 212, 255, 0.64);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.download-form button {
  justify-self: start;
}

.download-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  line-height: 1.5;
}

.resource-card span,
.job-card span,
.service-detail > span,
.process-list span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.content-hero {
  min-height: 68svh;
  display: grid;
  align-content: end;
  padding: 150px max(24px, calc((100vw - var(--max-width)) / 2)) 76px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 112px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 0.96;
}

.content-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(242, 242, 242, 0.72);
  font-size: 1.12rem;
  line-height: 1.72;
}

.page-section {
  padding-top: clamp(60px, 7vw, 96px);
}

.service-detail-list,
.process-list,
.faq-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 34px;
}

.service-detail h2,
.process-list h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.service-detail p,
.process-list p {
  max-width: 840px;
  margin: 18px 0 0;
  color: rgba(242, 242, 242, 0.68);
  line-height: 1.78;
}

.service-detail ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 18px;
  color: rgba(242, 242, 242, 0.72);
  line-height: 1.55;
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

.process-list {
  counter-reset: process;
}

.process-list article {
  min-height: 260px;
  padding: 34px;
}

.process-list strong {
  display: block;
  margin-top: 22px;
  color: rgba(242, 242, 242, 0.9);
  line-height: 1.6;
}

.faq-section {
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.2), rgba(5, 5, 5, 0));
}

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

.compact-contact {
  align-items: center;
}

.compact-contact .contact-copy {
  position: static;
}

.compact-contact .button {
  justify-self: end;
}

.legal-hero {
  min-height: 50svh;
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 24px;
}

.legal-content h2 {
  margin: 38px 0 0;
  font-size: 1.45rem;
  line-height: 1.25;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 12px 0 0;
  color: rgba(242, 242, 242, 0.7);
  line-height: 1.8;
}

.unsubscribe-hero {
  min-height: 58svh;
}

.unsubscribe-section {
  padding-top: 0;
}

.unsubscribe-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)) padding-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.22), rgba(255, 255, 255, 0.08), rgba(36, 242, 156, 0.2)) border-box;
  box-shadow: var(--shadow);
}

.unsubscribe-panel h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.unsubscribe-panel p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(242, 242, 242, 0.7);
  font-size: 1.04rem;
  line-height: 1.75;
}

.unsubscribe-panel .button {
  min-width: 220px;
  min-height: 54px;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.status-error {
  color: #ff8d8d !important;
}

.admin-page {
  background: #050505;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: calc(72px + env(safe-area-inset-top));
  padding: calc(10px + env(safe-area-inset-top)) clamp(18px, 2.4vw, 36px) 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px);
}

.admin-header-actions,
.admin-session-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-user-pill {
  color: rgba(242, 242, 242, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.admin-main {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(20px, 2.2vw, 34px) clamp(16px, 1.8vw, 32px) 84px;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: calc(100svh - 170px);
}

.admin-login h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
}

.admin-dashboard-top h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 0.98;
}

.admin-login p:not(.eyebrow),
.admin-dashboard-top p,
.admin-section-head p {
  color: rgba(242, 242, 242, 0.68);
  line-height: 1.75;
}

.admin-card,
.admin-stat,
.admin-chart-card,
.admin-alert,
.admin-table-wrap {
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)) padding-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.22), rgba(255, 255, 255, 0.08), rgba(36, 242, 156, 0.2)) border-box;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.admin-login-form,
.admin-editor-form,
.admin-settings-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
}

.admin-login-form label,
.admin-editor-form label,
.admin-settings-form label {
  display: grid;
  gap: 8px;
}

.settings-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.settings-group legend {
  padding: 0 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.info-tip {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(36, 242, 156, 0.46);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.info-tip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 30;
  width: min(280px, 82vw);
  border: 1px solid rgba(36, 242, 156, 0.28);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(242, 242, 242, 0.96);
  color: #173026;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: none;
  transform: translate(-50%, 6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.info-tip:hover::after,
.info-tip:focus::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.admin-login-form span,
.admin-editor-form span,
.admin-settings-form span {
  color: rgba(242, 242, 242, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-settings-form .info-tip {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
}

.admin-login-form input,
.admin-editor-form input,
.admin-editor-form select,
.admin-settings-form input,
.admin-settings-form select {
  width: 100%;
  height: 48px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.54);
  color: var(--off-white);
  outline: none;
  padding: 13px 14px;
}

.admin-editor-form select,
.admin-settings-form select {
  appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(242, 242, 242, 0.72) 50%),
    linear-gradient(135deg, rgba(242, 242, 242, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.admin-editor-form textarea,
.admin-settings-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.54);
  color: var(--off-white);
  outline: none;
  padding: 13px 14px;
}

.admin-editor-form textarea,
.admin-settings-form textarea {
  min-height: 124px;
  resize: vertical;
}

.admin-editor-form label.is-disabled {
  opacity: 0.48;
}

.admin-editor-form label.is-disabled input {
  cursor: not-allowed;
}

.admin-login-form input:focus,
.admin-editor-form input:focus,
.admin-editor-form select:focus,
.admin-editor-form textarea:focus,
.admin-settings-form input:focus,
.admin-settings-form select:focus,
.admin-settings-form textarea:focus {
  border-color: rgba(0, 212, 255, 0.64);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.admin-status,
.admin-form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  line-height: 1.5;
}

.admin-dashboard-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  margin-bottom: 34px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-self: start;
  padding-top: 8px;
}

.admin-alert {
  margin-bottom: 20px;
  padding: 16px 18px;
  color: var(--green);
  line-height: 1.6;
}

.admin-create-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.admin-record-modal {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.admin-create-panel {
  width: min(100%, 680px);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(rgba(23, 23, 23, 0.98), rgba(5, 5, 5, 0.98)) padding-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.34), rgba(255, 255, 255, 0.1), rgba(36, 242, 156, 0.32)) border-box;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.admin-record-panel {
  width: min(100%, 820px);
  max-height: min(88svh, 760px);
  overflow: auto;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(rgba(23, 23, 23, 0.98), rgba(5, 5, 5, 0.98)) padding-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.34), rgba(255, 255, 255, 0.1), rgba(36, 242, 156, 0.32)) border-box;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.admin-marketing-modal-panel {
  width: min(100%, 1120px);
}

.admin-email-preview-panel {
  width: min(100%, 980px);
}

.admin-email-meta {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-email-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-email-meta strong {
  display: block;
  color: var(--off-white);
  font-size: 1.05rem;
}

.admin-email-meta p {
  margin: 8px 0 0;
  color: rgba(242, 242, 242, 0.66);
  line-height: 1.55;
}

.admin-email-preview-frame {
  overflow: auto;
  border-radius: 10px;
}

.admin-modal-table {
  margin-top: 0;
}

.admin-record-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-record-field {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-record-field span {
  display: block;
  color: rgba(242, 242, 242, 0.54);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-record-field strong,
.admin-record-field p {
  display: block;
  margin: 10px 0 0;
  color: rgba(242, 242, 242, 0.9);
  line-height: 1.5;
}

.admin-record-field.admin-wide {
  grid-column: 1 / -1;
}

.admin-record-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.admin-create-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-create-head h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.admin-create-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-create-options button {
  min-height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--off-white);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.admin-create-options button:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 242, 156, 0.38);
}

.admin-create-options strong,
.admin-create-options span {
  display: block;
}

.admin-create-options strong {
  font-size: 1rem;
}

.admin-create-options span {
  margin-top: 10px;
  color: rgba(242, 242, 242, 0.62);
  line-height: 1.5;
}

.admin-form-backdrop {
  position: fixed;
  inset: 0;
  z-index: 86;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.admin-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.admin-tabs {
  position: sticky;
  top: calc(78px + env(safe-area-inset-top));
  z-index: 20;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.admin-nav-group {
  display: grid;
  gap: 8px;
}

.admin-nav-label {
  color: rgba(242, 242, 242, 0.48);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.admin-tabs button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(242, 242, 242, 0.76);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.admin-tabs button:hover {
  transform: translateX(2px);
  border-color: rgba(36, 242, 156, 0.28);
  color: var(--off-white);
}

.admin-tabs button.is-active {
  border-color: transparent;
  color: #050505;
  background: var(--gradient);
}

.admin-workspace {
  min-width: 0;
}

.admin-dashboard-switch {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
  padding: 16px;
}

.admin-dashboard-switch label {
  display: grid;
  gap: 8px;
  width: min(100%, 280px);
}

.admin-dashboard-switch span {
  color: rgba(242, 242, 242, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-dashboard-switch select {
  min-height: 42px;
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
}

.admin-marketing-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  margin-bottom: 16px;
}

.admin-marketing-flow article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-marketing-flow span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--gradient);
  color: #050505;
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-marketing-flow strong {
  font-size: 1.08rem;
}

.admin-marketing-flow p {
  margin: 0;
  color: rgba(242, 242, 242, 0.62);
  line-height: 1.55;
}

.admin-marketing-flow .admin-link-button {
  margin-top: auto;
}

.admin-marketing-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-marketing-shortcuts button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(242, 242, 242, 0.78);
  font-weight: 800;
  cursor: pointer;
}

.admin-marketing-shortcuts button:hover {
  border-color: rgba(36, 242, 156, 0.34);
  color: var(--off-white);
}

.admin-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.admin-section-head .button {
  width: auto;
  flex: 0 0 auto;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-stat {
  min-height: 132px;
  padding: 24px;
  color: var(--off-white);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.admin-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 242, 156, 0.38);
}

.admin-stat span {
  display: block;
  color: rgba(242, 242, 242, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.admin-stat strong {
  display: block;
  margin-top: 22px;
  font-size: 3rem;
  line-height: 0.9;
}

.admin-performance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.admin-chart-card {
  min-height: 260px;
  padding: 22px;
}

.admin-chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-chart-head span {
  color: rgba(242, 242, 242, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-chart-head strong {
  font-size: 1.8rem;
  line-height: 1;
}

.admin-bar-row + .admin-bar-row {
  margin-top: 14px;
}

.admin-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(242, 242, 242, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-bar-track {
  height: 9px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient);
}

.admin-chart-empty {
  padding: 0;
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.admin-table-toolbar {
  min-width: 860px;
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: end;
  padding: 16px;
}

.admin-table-toolbar label {
  display: grid;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.admin-table-toolbar span {
  color: rgba(242, 242, 242, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.admin-table-toolbar input,
.admin-table-toolbar select,
.admin-dashboard-switch select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.54);
  color: var(--off-white);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  padding: 12px 13px;
}

.admin-table-toolbar select,
.admin-dashboard-switch select {
  appearance: none;
  padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(242, 242, 242, 0.72) 50%),
    linear-gradient(135deg, rgba(242, 242, 242, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.admin-column-controls {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) repeat(3, auto);
  gap: 8px;
  align-items: end;
}

.admin-control-button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(242, 242, 242, 0.84);
  font-weight: 800;
  cursor: pointer;
}

.admin-control-button:hover {
  border-color: rgba(36, 242, 156, 0.34);
  color: var(--off-white);
}

.admin-table-toolbar input:focus,
.admin-table-toolbar select:focus,
.admin-dashboard-switch select:focus {
  border-color: rgba(0, 212, 255, 0.64);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.admin-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 0.88rem;
  line-height: 1.5;
}

.admin-table th {
  color: rgba(242, 242, 242, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-table td {
  color: rgba(242, 242, 242, 0.82);
  max-width: 360px;
}

.admin-table .admin-date-cell {
  min-width: 118px;
  white-space: nowrap;
}

.admin-link,
.admin-link-button {
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.admin-record-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.admin-record-button:hover {
  color: var(--cyan);
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(36, 242, 156, 0.28);
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(242, 242, 242, 0.88);
  background: rgba(36, 242, 156, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-pill-stage {
  border-color: rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.08);
}

.admin-pill-account {
  border-color: rgba(242, 242, 242, 0.24);
  background: rgba(242, 242, 242, 0.08);
}

.admin-empty {
  margin: 0;
  padding: 22px;
  color: rgba(242, 242, 242, 0.66);
}

.admin-editor-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.admin-form-popup {
  position: fixed !important;
  top: 50%;
  left: 50%;
  z-index: 96;
  width: min(100% - 32px, 980px);
  max-height: min(88svh, 760px);
  margin: 0;
  padding-top: 58px;
  overflow: auto;
  transform: translate(-50%, -50%);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.72);
}

.admin-form-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--off-white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.admin-form-close:hover {
  border-color: rgba(36, 242, 156, 0.34);
  background: rgba(255, 255, 255, 0.13);
}

.admin-settings-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-email-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.admin-email-summary article {
  padding: 22px;
}

.admin-email-summary span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-email-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--off-white);
  font-size: 1.2rem;
}

.admin-email-summary p {
  margin: 0;
  color: rgba(242, 242, 242, 0.66);
  line-height: 1.65;
}

.admin-section-subhead {
  margin-top: 34px;
}

.admin-wide {
  grid-column: 1 / -1;
}

.admin-check {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
}

.admin-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.admin-account-detail {
  margin-top: 0;
}

.admin-account-detail-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.admin-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-account-detail h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.admin-account-detail-head p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(242, 242, 242, 0.66);
  line-height: 1.7;
}

.admin-mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-account-routing {
  margin-bottom: 18px;
}

.admin-mini-stat {
  min-height: 110px;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
  font: inherit;
  text-align: left;
}

.admin-mini-stat-button {
  cursor: pointer;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.admin-mini-stat-button:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 242, 156, 0.36);
}

.admin-mini-stat span {
  display: block;
  color: rgba(242, 242, 242, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-mini-stat strong {
  display: block;
  margin-top: 16px;
  font-size: 2rem;
  line-height: 1;
}

.admin-mini-stat p {
  margin: 10px 0 0;
  color: rgba(242, 242, 242, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}

.admin-account-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.admin-account-panel {
  padding: 22px;
}

.admin-account-panel h4 {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

.admin-feed-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: 100%;
  border: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

.admin-feed-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.admin-feed-item strong {
  display: block;
  margin-top: 10px;
  color: rgba(242, 242, 242, 0.9);
}

.admin-feed-item p,
.admin-feed-item > span {
  margin: 8px 0 0;
  color: rgba(242, 242, 242, 0.62);
  font-size: 0.86rem;
  line-height: 1.5;
}

.admin-pipeline-item,
.admin-task-item {
  align-items: center;
  cursor: pointer;
}

.admin-pipeline-item:hover .admin-pipeline-main strong,
.admin-task-item:hover strong {
  color: var(--cyan);
}

.admin-pipeline-stage {
  display: block;
  margin-bottom: 8px;
}

.admin-pipeline-main strong {
  margin-top: 0;
  transition: color 180ms ease;
}

.admin-pipeline-value {
  align-self: center;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 900;
}

.admin-report-results {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.admin-report-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-open .site-header {
    min-height: 100dvh;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: start;
    align-items: start;
    gap: 0;
    padding:
      calc(28px + env(safe-area-inset-top))
      max(28px, calc((100vw - var(--max-width)) / 2))
      calc(34px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background:
      radial-gradient(circle at 85% 20%, rgba(36, 242, 156, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.99), rgba(5, 5, 5, 0.96));
    backdrop-filter: blur(20px);
  }

  .nav-open .brand {
    align-self: center;
  }

  .nav-open .nav-toggle {
    align-self: start;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
  }

  .nav-open .nav-toggle span {
    width: 24px;
    height: 3px;
    margin: 6px auto;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .nav-open .nav-links {
    grid-column: 1 / -1;
    align-self: center;
    display: grid;
    justify-items: stretch;
    gap: 4px;
    width: 100%;
    max-width: 560px;
    margin: clamp(46px, 8vh, 86px) auto clamp(36px, 7vh, 70px);
    color: var(--off-white);
    font-size: clamp(2rem, 9vw, 3.8rem);
    font-weight: 800;
  }

  .nav-open .nav-links a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }

  .nav-open .nav-links a:hover {
    color: var(--green);
    background: transparent;
  }

  .nav-open .nav-cta {
    grid-column: 1 / -1;
    display: inline-flex;
    justify-self: center;
    width: min(100%, 360px);
    min-height: 58px;
    font-size: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 132px;
  }

  .unsubscribe-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .unsubscribe-panel .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 5.4rem;
  }

  .section-intro h2,
  .method-copy h2,
  .contact-copy h2 {
    font-size: 3.4rem;
  }

  .route-visual {
    min-height: 360px;
  }

  .route-visual svg {
    min-height: 320px;
  }

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

  .method-inner,
  .why-layout,
  .contact-section,
  .split-section,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .detail-grid,
  .resource-grid,
  .jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-hero h1 {
    font-size: 4rem;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .compact-contact .button {
    justify-self: start;
  }

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

  .admin-login,
  .admin-editor-form,
  .admin-settings-form,
  .settings-group {
    grid-template-columns: 1fr;
  }

  .admin-marketing-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .admin-dashboard-top {
    grid-template-columns: 1fr;
  }

  .admin-section-head {
    align-items: start;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: flex-start;
    padding-top: 0;
  }

  .admin-tabs {
    top: calc(68px + env(safe-area-inset-top));
    display: flex;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    margin: 0 -20px 24px;
    padding: 12px 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .admin-nav-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }

  .admin-nav-label {
    white-space: nowrap;
  }

  .admin-tabs button {
    width: auto;
    min-height: 38px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .admin-tabs button:hover {
    transform: none;
  }

  .admin-stat-grid,
  .admin-performance-grid,
  .admin-mini-stat-grid,
  .admin-account-columns,
  .admin-report-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-record-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: calc(68px + env(safe-area-inset-top));
    padding: calc(9px + env(safe-area-inset-top)) 20px 9px;
  }

  .brand-mark {
    width: 34px;
  }

  .hero {
    gap: 32px;
    padding: calc(104px + env(safe-area-inset-top)) 20px 62px;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .route-visual {
    min-height: 310px;
    overflow: hidden;
  }

  .route-visual svg {
    width: 130%;
    margin-left: -20%;
    min-height: 300px;
    filter: none;
  }

  .route-line {
    stroke-width: 2.6;
    stroke-dasharray: 16 20;
    animation-duration: 7.2s;
  }

  .route-line-2 {
    animation-duration: 8.6s;
  }

  .route-line-3 {
    animation-duration: 9.4s;
  }

  .route-line-4 {
    animation-duration: 10.2s;
  }

  .route-line-5 {
    animation-duration: 11.4s;
  }

  .route-node-main {
    filter: drop-shadow(0 0 12px rgba(36, 242, 156, 0.42));
  }

  .section,
  .services-section,
  .why-section,
  .contact-section,
  .content-hero,
  .newsletter-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .newsletter-copy h2 {
    font-size: 2.4rem;
  }

  .newsletter-form {
    padding: 20px;
  }

  .modal {
    align-items: flex-end;
    padding: 14px;
  }

  .modal-panel {
    max-height: 90svh;
    padding: 26px 20px;
  }

  .modal-panel h2 {
    font-size: 1.7rem;
  }

  .content-hero {
    min-height: 58svh;
    padding-top: calc(126px + env(safe-area-inset-top));
    padding-bottom: 54px;
  }

  .content-hero h1 {
    font-size: 3rem;
  }

  .content-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .detail-grid,
  .resource-grid,
  .jobs-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .section-intro {
    margin-bottom: 30px;
    text-align: left;
  }

  .feature-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .admin-marketing-flow {
    grid-template-columns: 1fr;
  }

  .glass-card,
  .service-card {
    min-height: auto;
  }

  .method-inner {
    padding: 28px 18px;
  }

  .method-track {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .method-arrow {
    width: 2px;
    height: 26px;
    justify-self: center;
  }

  .method-arrow::after {
    right: auto;
    top: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .method-step {
    min-height: 104px;
  }

  .pillar {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .service-detail > span,
  .process-list span,
  .resource-card span,
  .job-card span {
    margin-bottom: 22px;
  }

  .service-detail h2,
  .process-list h2 {
    font-size: 1.58rem;
  }

  .service-detail ul {
    grid-template-columns: 1fr;
  }

  .process-list article,
  .detail-card,
  .resource-card,
  .job-card,
  .faq-list article {
    min-height: auto;
    padding: 24px;
  }

  .legal-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .admin-header {
    padding: calc(9px + env(safe-area-inset-top)) 20px 9px;
  }

  .admin-header-actions {
    gap: 8px;
  }

  .admin-user-pill {
    order: 3;
    width: 100%;
    text-align: right;
  }

  .admin-header .button {
    width: auto;
  }

  .admin-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }

  .admin-login h1 {
    font-size: 2.8rem;
  }

  .admin-dashboard-top h1 {
    font-size: 2.55rem;
  }

  .admin-tabs {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .admin-tabs button {
    white-space: nowrap;
  }

  .admin-stat-grid,
  .admin-performance-grid,
  .admin-mini-stat-grid,
  .admin-account-columns,
  .admin-report-summary,
  .admin-email-summary {
    grid-template-columns: 1fr;
  }

  .admin-column-controls {
    grid-template-columns: 1fr;
  }

  .admin-account-detail-head {
    display: grid;
  }

  .admin-create-options {
    grid-template-columns: 1fr;
  }

  .admin-account-detail-head .button {
    width: auto;
    justify-self: start;
  }

  .admin-table {
    min-width: 760px;
  }

  .admin-table-toolbar {
    min-width: 760px;
  }
}

@media (max-width: 430px) {
  .brand-word {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .section-intro h2,
  .method-copy h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }

  .content-hero h1 {
    font-size: 2.45rem;
  }

}
