:root {
  --bg: #050506;
  --black: #08090b;
  --surface: #111317;
  --surface-2: #171a20;
  --surface-3: #20242c;
  --text: #f4f2ee;
  --muted: #b6bcc7;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(86, 179, 181, 0.34);
  --purple: #702558;
  --deep-purple: #3b245e;
  --orange: #dd553a;
  --teal: #56b3b5;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(120deg, rgba(112, 37, 88, 0.17), transparent 32%),
    linear-gradient(235deg, rgba(86, 179, 181, 0.13), transparent 30%),
    #050506;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(112,37,88,0.12), rgba(5,5,6,0.72) 42%, rgba(86,179,181,0.1)),
    rgba(5, 5, 6, 0.72);
  border-bottom-color: rgba(86,179,181,0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 259px;
  height: auto;
  transform: translateY(16px);
  transition: transform 180ms ease;
}

.site-header.is-scrolled .brand img {
  transform: translateY(0);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 650;
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  color: var(--white);
  border-color: var(--teal);
}

.header-actions,
.hero-actions,
.admin-toolbar,
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.language-select-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.language-select {
  min-height: 36px;
  padding: 0 24px 0 4px;
  color: var(--muted);
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.language-select:focus {
  outline: 1px solid rgba(86,179,181,0.65);
  outline-offset: 4px;
}

.language-select option {
  color: #050506;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0;
  color: var(--text);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.language-trigger svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.language-trigger path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-options {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 25;
  display: grid;
  min-width: 118px;
  padding: 6px;
  border: 1px solid rgba(86,179,181,0.34);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.language-menu.is-open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 10px;
  color: var(--muted);
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.language-options button[aria-selected="true"] {
  color: #050506;
  background: var(--teal);
}

.language-options button:hover:not([aria-selected="true"]) {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.language-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.lang-btn,
.icon-btn,
button,
select,
textarea,
input {
  font: inherit;
}

.lang-btn,
.icon-btn {
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.lang-btn {
  min-width: 42px;
  min-height: 36px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.lang-btn.is-active {
  color: #050506;
  background: var(--teal);
}

.icon-btn {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.icon-btn:hover,
.button.ghost:hover {
  border-color: rgba(86, 179, 181, 0.45);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: 100vh;
  margin-top: -87px;
  padding: calc(87px + clamp(12px, 2vw, 26px)) clamp(18px, 4vw, 56px) clamp(42px, 5vw, 68px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(221, 85, 58, 0.08), transparent 22%),
    radial-gradient(circle at 12% 22%, rgba(112,37,88,0.34), transparent 34rem),
    radial-gradient(circle at 76% 30%, rgba(86,179,181,0.16), transparent 30rem);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(86,179,181,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86,179,181,0.07) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.hero-grid::after {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(86,179,181,0.14), transparent);
  animation: scanline 9s ease-in-out infinite;
}

.hero-copy,
.security-console {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 860px;
  animation: rise-in 650ms ease-out both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-prompt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: min(280px, 62vw);
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--teal);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-prompt span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(86,179,181,0.85), rgba(86,179,181,0.12));
}

.hero-prompt i {
  width: 9px;
  height: 16px;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(86,179,181,0.55);
  animation: cursor-blink 1s steps(2, start) infinite;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-text {
  max-width: 740px;
  margin: 24px 0 0;
  color: #d7dbe4;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  white-space: normal;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.hero-actions {
  margin-top: 28px;
}

.button.primary {
  color: #050506;
  background: linear-gradient(135deg, var(--teal), #8bd4d5);
  box-shadow: 0 14px 36px rgba(86, 179, 181, 0.18);
}

.button.ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.button.danger {
  color: var(--white);
  background: #9d2f3d;
}

.button.small {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.security-console {
  align-self: center;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 26, 32, 0.96), rgba(8, 9, 11, 0.94));
  box-shadow: var(--shadow);
  animation: rise-in 780ms ease-out both;
}

.console-header {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.console-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.console-header span:nth-child(2) {
  background: var(--teal);
}

.console-header span:nth-child(3) {
  background: #f0eee9;
}

.threat-map {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(86, 179, 181, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(86, 179, 181, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(86, 179, 181, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(86,179,181,0.2), transparent 22%),
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(112,37,88,0.25) 39%, transparent 40%),
    #07080a;
  background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(86,179,181,0.14) 50%, transparent 51%),
    linear-gradient(45deg, transparent 0 49%, rgba(112,37,88,0.18) 50%, transparent 51%);
  background-size: 86px 86px;
}

.map-shield {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--teal);
  border: 1px solid rgba(86,179,181,0.5);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86,179,181,0.24), rgba(8,9,11,0.7) 68%);
  box-shadow: 0 0 42px rgba(86,179,181,0.22);
  transform: translate(-50%, -50%);
  animation: pulse 2.8s ease-in-out infinite;
}

.map-shield svg {
  width: 58px;
  height: 58px;
}

.map-shield path,
.service-icon path,
.service-icon circle,
.advantage-icon path,
.advantage-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(221,85,58,0.7);
}

.node-a {
  left: 18%;
  top: 28%;
}

.node-b {
  right: 16%;
  top: 32%;
  background: var(--teal);
}

.node-c {
  right: 28%;
  bottom: 21%;
  background: var(--purple);
}

.map-path {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(86,179,181,0.65), transparent);
  transform-origin: left center;
}

.path-a {
  left: 21%;
  top: 31%;
  width: 32%;
  transform: rotate(18deg);
}

.path-b {
  left: 52%;
  top: 51%;
  width: 31%;
  transform: rotate(-25deg);
}

.path-c {
  left: 51%;
  top: 55%;
  width: 24%;
  transform: rotate(31deg);
}

.map-scan {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg, transparent 0 72%, rgba(86,179,181,0.28), transparent 84%);
  animation: sweep 8s linear infinite;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.scan-browser {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  color: var(--teal);
  border: 1px solid rgba(86,179,181,0.38);
  border-radius: 8px;
  background: rgba(86,179,181,0.07);
  cursor: pointer;
  font-weight: 900;
}

.scan-browser:hover {
  color: #050506;
  background: var(--teal);
}

.browser-audit {
  margin-top: 12px;
}

.audit-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.audit-card h3,
.audit-card h4 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.audit-card h4 {
  margin-top: 14px;
  color: var(--teal);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.audit-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.audit-grid {
  display: grid;
  gap: 7px;
  max-height: 250px;
  overflow: auto;
  padding-right: 4px;
}

.audit-grid div {
  display: grid;
  grid-template-columns: minmax(104px, 0.4fr) minmax(0, 1fr);
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  background: rgba(0,0,0,0.18);
}

.audit-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.audit-grid strong {
  min-width: 0;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.audit-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.audit-permission-result {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.signal-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  border-left-color: rgba(221,85,58,0.5);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
}

.signal-list strong {
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  transform: translateY(-28px);
}

.trust-strip article,
.service-card,
.advantage-item {
  background: rgba(17, 19, 23, 0.98);
}

.trust-strip article {
  min-height: 176px;
  padding: 24px;
}

.mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(86,179,181,0.45);
  border-radius: 8px;
  color: var(--teal);
  background: rgba(86,179,181,0.08);
}

.mini-icon svg {
  width: 22px;
  height: 22px;
}

.mini-icon path,
.mini-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon,
.advantage-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--teal);
  border: 1px solid rgba(86,179,181,0.35);
  border-radius: 8px;
  background: rgba(86,179,181,0.07);
}

.service-icon svg,
.advantage-icon svg {
  width: 23px;
  height: 23px;
}

.trust-strip h2,
.service-card h3,
.advantage-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.trust-strip p,
.service-card p,
.advantage-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(64px, 9vw, 124px) clamp(18px, 4vw, 56px);
  color: var(--text);
  background: #0b0c0f;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

.section h2,
.cta-band h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 4.05rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section .eyebrow,
.cta-band .eyebrow {
  color: var(--orange);
}

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

.service-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.advantage-item:hover,
.trust-strip article:hover {
  border-color: rgba(86,179,181,0.42);
}

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

.service-card:nth-child(2n) {
  background: #15181d;
  color: var(--text);
}

.service-card:nth-child(2n) p {
  color: var(--muted);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  float: right;
  margin-bottom: 0;
  border: 1px solid rgba(86, 179, 181, 0.38);
  border-radius: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(86,179,181,0.07);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  background: #101216;
}

.section-lede {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.advantage-list {
  display: grid;
  gap: 12px;
}

.advantage-item {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-left-color: rgba(112,37,88,0.72);
  border-radius: 8px;
}

.advantage-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--teal);
  border-color: rgba(86,179,181,0.35);
  background: rgba(86,179,181,0.07);
}

.advantage-icon svg {
  width: 19px;
  height: 19px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) clamp(18px, 4vw, 56px);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(112,37,88,0.18), transparent 44%),
    linear-gradient(235deg, rgba(86,179,181,0.14), transparent 46%),
    #08090b;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.cta-band p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-panel {
  padding: 22px;
  border: 1px solid rgba(86,179,181,0.28);
  border-radius: 8px;
  background: #111317;
  box-shadow: var(--shadow);
}

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

.contact-fields {
  display: grid;
  gap: 14px;
}

.contact-form.is-collapsed .contact-fields {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
}

.contact-form textarea {
  min-height: 116px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(86,179,181,0.7);
  outline-offset: 2px;
  border-color: rgba(86,179,181,0.55);
}

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

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-size: 0.86rem;
}

.contact-meta {
  display: grid;
  gap: 4px;
  padding-top: 4px;
}

.contact-meta p {
  margin: 0;
}

.contact-tags,
.social-tags,
.footer-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-tags {
  padding-top: 6px;
}

.social-tags {
  padding-top: 2px;
}

.footer-tags {
  margin-top: 12px;
}

.contact-tag {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--teal);
  border: 1px solid rgba(86,179,181,0.25);
  border-radius: 8px;
  background: rgba(86,179,181,0.06);
}

.contact-tag svg {
  width: 21px;
  height: 21px;
}

.contact-tag path,
.contact-tag rect,
.contact-tag circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-tag span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-tag:hover {
  color: #050506;
  background: var(--teal);
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(150px, 1fr));
  gap: 34px;
  padding: 44px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #050506;
}

.footer img {
  width: 230px;
  margin-bottom: 18px;
}

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

.footer h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(560px, 100vw);
  height: 100vh;
  padding: 22px;
  overflow: auto;
  color: var(--text);
  background: #0c0d10;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.admin-page {
  min-height: 100vh;
  background: #08090b;
}

.sub-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 18%, rgba(112,37,88,0.24), transparent 34rem),
    radial-gradient(circle at 82% 20%, rgba(86,179,181,0.16), transparent 30rem),
    #08090b;
}

.sub-page .site-header {
  position: sticky;
}

.sub-page .brand img {
  transform: none;
}

.page-hero {
  display: grid;
  align-content: center;
  min-height: 72vh;
  padding: clamp(56px, 8vw, 116px) clamp(18px, 5vw, 78px) clamp(28px, 5vw, 64px);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0 0 22px;
  font-size: clamp(3rem, 7vw, 7rem);
}

.page-hero h2 {
  max-width: 850px;
  margin: 0 0 22px;
  color: var(--teal);
  font-size: clamp(1.25rem, 2.6vw, 2.6rem);
  line-height: 1.12;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.page-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 78px) clamp(60px, 8vw, 110px);
}

.page-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(86,179,181,0.2);
  border-radius: 8px;
  background: rgba(17,19,23,0.88);
  box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}

.page-card h3 {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 1.05rem;
}

.page-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.62;
}

.page-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(86,179,181,0.55);
}

.admin-site-header {
  position: static;
}

.admin-shell {
  display: grid;
  gap: 28px;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.admin-hero {
  max-width: 820px;
}

.admin-hero h1 {
  max-width: 10ch;
}

.admin-hero p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.admin-panel {
  padding: 20px;
  border: 1px solid rgba(86,179,181,0.26);
  border-radius: 8px;
  background: #101216;
}

.admin-drawer.is-open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  background: rgba(0, 0, 0, 0.58);
}

.drawer-backdrop.is-open {
  display: block;
}

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

.admin-header h2 {
  margin: 0;
}

.admin-toolbar {
  position: sticky;
  top: -22px;
  z-index: 2;
  padding: 12px 0;
  background: #0c0d10;
}

.admin-toolbar label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

select,
textarea,
input {
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

select {
  min-height: 38px;
  padding: 0 10px;
}

.file-button input {
  display: none;
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-field {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-field label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

textarea {
  min-height: 78px;
  padding: 11px;
  resize: vertical;
  line-height: 1.5;
}

.admin-status {
  min-height: 24px;
  color: var(--teal);
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 4vw, 42px);
  bottom: clamp(16px, 4vw, 42px);
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: min(760px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(86,179,181,0.34);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(130%);
  transition: transform 220ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-banner .eyebrow {
  margin-bottom: 8px;
  color: var(--orange);
}

.cookie-actions {
  justify-content: end;
  align-self: end;
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes scanline {
  0%, 22% {
    transform: translateX(0);
  }
  70%, 100% {
    transform: translateX(430%);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

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

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

  .main-nav {
    grid-column: 1 / -1;
    justify-content: start;
    order: 3;
  }

  .hero,
  .split,
  .cta-band,
  .footer,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .service-grid,
  .page-content {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 206px;
  }

  .header-actions {
    justify-content: end;
  }

  .main-nav {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 13ch;
    font-size: 3rem;
  }

  .trust-strip,
  .service-grid,
  .page-content {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    transform: none;
    margin-top: 18px;
  }

  .admin-toolbar {
    align-items: stretch;
  }

  .button.small,
  .admin-toolbar label {
    flex: 1 1 132px;
  }
}
