:root {
  --ink: #071411;
  --ink-soft: #10241e;
  --forest: #123d2c;
  --forest-bright: #1e6043;
  --acid: #c7f64a;
  --acid-soft: #ddff82;
  --cream: #f1f0e6;
  --paper: #fbfaf4;
  --white: #ffffff;
  --line: rgba(7, 20, 17, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --muted: #637069;
  --muted-light: #a9b8b1;
  --danger: #d95043;
  --amber: #dfa92d;
  --display: "Avenir Next Condensed", "DIN Condensed", "Franklin Gothic Medium", sans-serif;
  --body: "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --mono: "SFMono-Regular", "Cascadia Code", "Liberation Mono", monospace;
  --shadow: 0 30px 80px rgba(7, 20, 17, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.account-menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-dark,
.section-ink {
  position: relative;
  color: var(--cream);
  background: var(--ink);
}

.section-cream {
  background: var(--cream);
}

.section-light {
  background: var(--paper);
}

.section-acid {
  background: var(--acid);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.button-icon {
  width: 19px;
  height: 19px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .025em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.icon-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(199, 246, 74, .5);
  outline-offset: 3px;
}

.button-acid {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 12px 32px rgba(199, 246, 74, .14);
}

.button-acid:hover:not(:disabled) {
  background: var(--acid-soft);
  box-shadow: 0 16px 38px rgba(199, 246, 74, .25);
}

.button-ink {
  color: var(--cream);
  background: var(--ink);
}

.button-ink:hover:not(:disabled) {
  background: var(--forest);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(7, 20, 17, .24);
}

.button-outline:hover:not(:disabled) {
  background: rgba(7, 20, 17, .05);
  border-color: var(--ink);
}

.button:disabled {
  color: #7f8883;
  background: #e7e6dc;
  border-color: #d6d4ca;
  cursor: not-allowed;
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 12px;
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
}

.button-tall {
  min-height: 56px;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}

.text-link-light {
  color: var(--cream);
}

.text-link:hover .icon,
.text-link:hover span,
.card-link:hover .icon,
.account-section-head > a:hover .icon {
  transform: translateX(4px);
}

.text-link .icon,
.card-link .icon,
.account-section-head > a .icon {
  transition: transform 180ms ease;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--forest);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow > span:not(.live-dot) {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
}

.eyebrow-light {
  color: var(--muted-light);
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 6px rgba(199, 246, 74, .12);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--acid);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: .8; transform: scale(.6); }
  80%, 100% { opacity: 0; transform: scale(1.6); }
}

.overline,
.form-kicker,
.account-eyebrow {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
}

.site-header.scrolled,
.auth-page .site-header,
.account-page .site-header {
  height: 70px;
  background: rgba(7, 20, 17, .9);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}

.account-page .site-header {
  display: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, calc(100vw - 44px));
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-mark {
  display: inline-flex;
  width: 33px;
  height: 33px;
  color: var(--acid);
}

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

.brand-word {
  transform: translateY(1px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 80px;
}

.desktop-nav a,
.nav-login {
  position: relative;
  color: #c8d1cd;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-login:hover {
  color: var(--cream);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.account-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.account-chip > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 10px;
}

.menu-button {
  display: none;
  padding: 8px;
  color: var(--cream);
  background: transparent;
  border: 0;
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  min-height: 810px;
  overflow: hidden;
  padding: 160px 0 100px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .09;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  top: -300px;
  right: -120px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(30, 96, 67, .52), rgba(7, 20, 17, 0) 68%);
}

.hero-orb-two {
  bottom: -460px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(199, 246, 74, .12), rgba(7, 20, 17, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
  align-items: center;
  gap: 54px;
}

.hero-copy h1,
.page-hero h1,
.status-hero h1,
.legal-hero h1,
.auth-art-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(65px, 7vw, 106px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .87;
}

.hero-copy h1 em,
.page-hero h1 em,
.status-hero h1 em,
.legal-hero h1 em,
.auth-art-copy h1 em,
.section-heading h2 em,
.how-sticky h2 em,
.locations-heading h2 em,
.price-lockup h2 em,
.faq-heading h2 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
}

.hero-intro {
  max-width: 650px;
  margin: 34px 0 0;
  color: #bbc7c1;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  padding-right: 25px;
  margin-right: 25px;
  border-right: 1px solid var(--line-light);
}

.hero-proof div:last-child {
  padding-right: 0;
  margin-right: 0;
  border: 0;
}

.hero-proof strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-proof span {
  margin-top: 8px;
  color: #879a91;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.connection-visual {
  position: relative;
  min-height: 580px;
}

.connection-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(199, 246, 74, .1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(199, 246, 74, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit 32s linear infinite;
}

.orbit-one {
  width: 590px;
  height: 390px;
}

.orbit-two {
  width: 430px;
  height: 540px;
  animation-direction: reverse;
  animation-duration: 42s;
}

.orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(199, 246, 74, .12);
}

.orbit span:nth-child(1) { top: 8%; left: 25%; }
.orbit span:nth-child(2) { right: 10%; bottom: 22%; }
.orbit span:nth-child(3) { bottom: 5%; left: 25%; }

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.connection-card {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 50%;
  width: min(420px, 82vw);
  overflow: hidden;
  color: var(--ink);
  background: rgba(246, 246, 238, .97);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 28px;
  box-shadow: 0 45px 100px rgba(0,0,0,.42);
  transform: translateX(-50%) rotate(1.5deg);
}

.app-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  background: #e2e3d9;
  border-bottom: 1px solid rgba(7,20,17,.1);
}

.app-chrome > span {
  width: 7px;
  height: 7px;
  background: #a5aaa3;
  border-radius: 50%;
}

.app-chrome > span:first-child { background: #ea725f; }
.app-chrome > span:nth-child(2) { background: #e8ba48; }
.app-chrome > span:nth-child(3) { background: #7bbf6c; }

.app-chrome small {
  margin-left: auto;
  color: #778079;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .09em;
}

.connection-card-body {
  padding: 24px;
}

.connection-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.connection-heading > div {
  display: flex;
  flex-direction: column;
}

.connection-heading strong {
  margin-top: 5px;
  font-size: 17px;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 19px;
}

.signal-bars i {
  width: 3px;
  background: var(--forest);
  border-radius: 2px;
}

.signal-bars i:nth-child(1) { height: 5px; }
.signal-bars i:nth-child(2) { height: 9px; }
.signal-bars i:nth-child(3) { height: 14px; }
.signal-bars i:nth-child(4) { height: 19px; background: #b7bbb2; }

.connect-button {
  position: relative;
  display: grid;
  width: 162px;
  height: 162px;
  margin: 23px auto 12px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(7,20,17,.15);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 250ms ease, transform 250ms ease;
}

.connect-button::before,
.connect-button::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(7,20,17,.08);
  border-radius: 50%;
}

.connect-button::before { inset: 9px; }
.connect-button::after { inset: 18px; }

.connect-button:hover {
  border-color: var(--forest-bright);
  transform: scale(1.025);
}

.connect-ripple {
  position: absolute;
  inset: 8px;
  border: 2px solid var(--acid);
  border-radius: 50%;
  opacity: 0;
}

.connect-button.connected .connect-ripple {
  animation: connectPulse 1.8s ease-out infinite;
}

@keyframes connectPulse {
  0% { opacity: .7; transform: scale(.72); }
  100% { opacity: 0; transform: scale(1.28); }
}

.connect-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(77, 108, 31, .2);
  transition: background 250ms ease, box-shadow 250ms ease;
}

.connect-button.connected .connect-core {
  background: #61d98b;
  box-shadow: 0 15px 35px rgba(26, 132, 74, .28);
}

.connect-core svg {
  width: 55px;
  fill: var(--ink);
}

.connect-core svg circle {
  fill: var(--acid);
}

.connect-button.connected .connect-core svg circle {
  fill: #61d98b;
}

.connect-core svg path:last-child {
  fill: none;
  stroke: var(--acid);
  stroke-width: 3;
  stroke-linecap: round;
}

.connect-button.connected .connect-core svg path:last-child {
  stroke: #61d98b;
}

.connection-copy {
  margin: 0 0 21px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.location-select {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(7,20,17,.1);
  border-radius: 15px;
}

.flag-disc {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 9px;
}

.location-select > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.location-select small,
.connection-meta small,
.floating-pill small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.location-select strong {
  margin-top: 3px;
  font-size: 11px;
}

.location-state {
  padding: 4px 7px;
  color: var(--forest);
  background: rgba(30, 96, 67, .1);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
}

.connection-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(7,20,17,.09);
}

.connection-meta span {
  display: flex;
  flex-direction: column;
  padding: 0 8px;
  border-right: 1px solid rgba(7,20,17,.08);
}

.connection-meta span:first-child { padding-left: 0; }
.connection-meta span:last-child { padding-right: 0; border: 0; }
.connection-meta strong { margin-top: 4px; font-size: 9px; }

.floating-pill {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 143px;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 15px;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

.floating-pill .icon {
  width: 20px;
}

.floating-pill span {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 800;
}

.floating-pill small { color: rgba(7,20,17,.58); }
.pill-shield { top: 105px; left: -8px; transform: rotate(-5deg); }
.pill-speed { right: -8px; bottom: 85px; color: var(--cream); background: var(--forest-bright); transform: rotate(4deg); }
.pill-speed small { color: rgba(255,255,255,.58); }

.route-label {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9fafA7;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.route-label i {
  width: 5px;
  height: 5px;
  background: var(--acid);
  border-radius: 50%;
}

.route-label small { color: #5d7067; }
.route-label-london { top: 10px; right: 30px; }
.route-label-ams { bottom: 26px; left: 30px; }
.route-label-use { right: 20px; bottom: 8px; }

.signal-strip {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-block: 1px solid var(--ink);
}

.signal-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 54px;
  animation: marquee 34s linear infinite;
}

.signal-track span {
  margin-inline: 24px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.signal-track i {
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* Shared section typography */
.feature-section,
.how-section,
.locations-section,
.faq-section,
.pricing-main,
.comparison-section,
.support-main,
.status-main,
.incident-section {
  padding: 120px 0;
}

.section-heading h2,
.how-sticky h2,
.locations-heading h2,
.price-lockup h2,
.faq-heading h2,
.centered-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.6vw, 78px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .94;
}

.section-heading h2 em,
.how-sticky h2 em,
.price-lockup h2 em,
.faq-heading h2 em,
.centered-heading h2 em {
  color: var(--forest-bright);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 66px;
}

.split-heading > p,
.locations-heading > p,
.how-sticky > p,
.faq-heading > p,
.page-hero-inner > p,
.legal-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

/* Bento */
.bento-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 410px 370px;
  gap: 18px;
}

.bento-card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.bento-large { grid-row: 1 / 3; }
.bento-wide { grid-column: 1 / 3; display: grid; grid-template-columns: .8fr 1.2fr; grid-template-rows: auto 1fr; }
.bento-standard { grid-column: 1; }
.bento-tall { grid-column: 2; grid-row: 1; }
.bento-wide { grid-column: 2; grid-row: 2; display: flex; }

.bento-ink { color: var(--cream); background: var(--ink); border-color: transparent; }
.bento-acid { background: var(--acid); border-color: var(--ink); }
.bento-white { background: var(--paper); }
.bento-green { color: var(--cream); background: var(--forest); border-color: transparent; }

.bento-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: rgba(7,20,17,.06);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.icon-box-acid { background: var(--acid); border-color: transparent; }
.icon-box-ink { color: var(--acid); background: var(--ink); border-color: transparent; }
.icon-box-light { color: var(--forest); background: var(--cream); border-color: transparent; }

.card-number {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  opacity: .55;
}

.bento-copy {
  position: relative;
  z-index: 2;
}

.bento-copy h3 {
  max-width: 530px;
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.bento-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.bento-ink .bento-copy p,
.bento-green .bento-copy p { color: #aab9b2; }
.bento-acid .bento-copy p { color: rgba(7,20,17,.68); }

.privacy-rings {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
}

.privacy-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(199,246,74,.18);
  border-radius: 50%;
}

.privacy-rings span:nth-child(2) { inset: 46px; border-style: dashed; animation: orbit 22s linear infinite; }
.privacy-rings span:nth-child(3) { inset: 92px; background: rgba(199,246,74,.07); box-shadow: 0 0 80px rgba(199,246,74,.12); }

.privacy-rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  transform: translate(-50%, -50%);
}

.speed-gauge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 10px 0;
}

.gauge-track {
  position: relative;
  width: 165px;
  height: 82px;
  overflow: hidden;
}

.gauge-track::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 15px solid var(--ink);
  border-bottom: 0;
  border-radius: 100px 100px 0 0;
}

.gauge-track i {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 65px;
  height: 4px;
  background: var(--ink);
  border-radius: 3px;
  transform: rotate(-28deg);
  transform-origin: left center;
  animation: gauge 3.2s ease-in-out infinite alternate;
}

@keyframes gauge { to { transform: rotate(38deg); } }

.speed-gauge strong {
  margin-top: -16px;
  font-family: var(--display);
  font-size: 47px;
  letter-spacing: -.07em;
}

.speed-gauge > span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
}

.device-stack {
  position: absolute;
  top: 70px;
  right: 28px;
  width: 210px;
  height: 130px;
  opacity: .92;
}

.device-stack span {
  position: absolute;
  display: block;
  background: var(--ink);
  border: 5px solid var(--ink);
  box-shadow: inset 0 0 0 2px var(--paper);
}

.device-phone { right: 0; bottom: 0; width: 46px; height: 88px; border-radius: 10px; }
.device-laptop { left: 0; bottom: 7px; width: 120px; height: 75px; border-radius: 8px; }
.device-tv { left: 48px; top: 0; width: 110px; height: 66px; border-radius: 6px; }
.device-stack b { position: absolute; z-index: 4; top: 42px; left: 82px; display: grid; width: 52px; height: 52px; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 22px; }

.plain-english {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 10px;
  margin: auto 0 20px;
}

.plain-english span { color: var(--acid); font-family: var(--mono); font-size: 8px; font-weight: 800; }
.plain-english del { color: #91a79d; font-family: var(--mono); font-size: 12px; letter-spacing: .07em; }
.plain-english strong { font-size: 15px; }

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 110px;
}

.how-sticky {
  align-self: start;
  position: sticky;
  top: 120px;
}

.how-sticky > p {
  margin: 27px 0 28px;
}

.process-step {
  display: grid;
  grid-template-columns: 46px 82px 1fr;
  gap: 28px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child { border-bottom: 1px solid var(--line); }
.step-index { padding-top: 9px; color: var(--muted); font-family: var(--mono); font-size: 10px; }
.step-icon { display: grid; width: 72px; height: 72px; place-items: center; color: var(--acid); background: var(--ink); border-radius: 22px; transform: rotate(-3deg); }
.process-step:nth-child(2) .step-icon { color: var(--ink); background: var(--acid); transform: rotate(3deg); }
.step-icon .icon { width: 31px; height: 31px; }
.process-step h3 { margin: 0 0 10px; font-family: var(--display); font-size: 28px; letter-spacing: -.04em; }
.process-step p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* Locations */
.locations-section {
  overflow: hidden;
}

.locations-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .35;
  background-image: radial-gradient(rgba(199,246,74,.35) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(120deg, transparent, black 50%, transparent);
}

.locations-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 62px;
}

.locations-heading .eyebrow { grid-column: 1 / 3; margin-bottom: -30px; }
.locations-heading h2 { color: var(--cream); }
.locations-heading h2 em { color: var(--acid); }
.locations-heading > p { color: #9cafA6; }

.location-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.location-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 26px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.location-card:hover {
  transform: translateY(-7px);
  border-color: rgba(199,246,74,.4);
  background: rgba(255,255,255,.075);
}

.location-live { background: rgba(199,246,74,.08); border-color: rgba(199,246,74,.28); }

.location-map {
  position: absolute;
  inset: 0;
  opacity: .4;
}

.location-map::before,
.location-map::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(199,246,74,.18);
  border-radius: 50%;
}

.location-map::before { width: 300px; height: 300px; right: -90px; bottom: -70px; }
.location-map::after { width: 180px; height: 180px; right: -30px; bottom: -10px; border-style: dashed; }
.location-map span { position: absolute; right: 74px; bottom: 72px; width: 12px; height: 12px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 10px rgba(199,246,74,.11), 0 0 45px rgba(199,246,74,.55); }
.location-map i { position: absolute; right: 78px; bottom: 78px; width: 240px; border-top: 1px dashed rgba(199,246,74,.24); transform: rotate(-24deg); transform-origin: right; }
.map-ams span { right: 110px; bottom: 110px; }
.map-ams i { right: 114px; bottom: 116px; transform: rotate(18deg); }
.map-use span { right: 54px; bottom: 135px; }
.map-use i { right: 58px; bottom: 141px; transform: rotate(-6deg); }

.location-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.country-code {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.status-pill,
.status-label,
.available-chip,
.device-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status-pill i,
.status-label i,
.available-chip i,
.device-status i {
  width: 6px;
  height: 6px;
  background: #758980;
  border-radius: 50%;
}

.status-pill.status-building i,
.status-label.status-building i { background: var(--acid); box-shadow: 0 0 10px rgba(199,246,74,.6); }

.location-card h3 {
  position: absolute;
  z-index: 2;
  bottom: 78px;
  left: 26px;
  margin: 0;
  font-family: var(--display);
  font-size: 45px;
  letter-spacing: -.055em;
}

.location-card > p { position: absolute; z-index: 2; bottom: 60px; left: 27px; margin: 0; color: #879b91; font-size: 12px; }
.location-foot { position: absolute; z-index: 2; right: 26px; bottom: 22px; left: 26px; display: flex; gap: 8px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.11); }
.location-foot span { color: #8ca097; font-family: var(--mono); font-size: 8px; letter-spacing: .06em; }
.location-foot span:last-child { margin-left: auto; }

.location-note {
  position: relative;
  margin: 36px 0 0;
  padding: 23px 28px;
  color: #91a49b;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  font-size: 13px;
}

.location-note span { margin-right: 8px; color: var(--acid); font-weight: 800; }

/* Pricing preview and full pricing */
.pricing-preview {
  padding: 78px 0;
  border-block: 1px solid var(--ink);
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: 1.2fr .65fr .9fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 35px 60px;
}

.price-lockup h2 { font-size: clamp(45px, 5vw, 68px); }
.price-lockup h2 em { color: var(--forest); }
.price-display { display: flex; align-items: flex-start; }
.price-display > span { margin: 17px 3px 0 0; font-size: 23px; font-weight: 800; }
.price-display strong { font-family: var(--display); font-size: 118px; letter-spacing: -.09em; line-height: .78; }
.price-display sup { margin-top: 5px; font-family: var(--display); font-size: 40px; font-weight: 800; letter-spacing: -.05em; }
.price-display small { align-self: flex-end; margin: 0 0 6px 5px; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.price-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.price-features span { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; }
.price-features .icon { width: 17px; }
.price-action { grid-column: 2 / 4; display: flex; align-items: center; gap: 22px; }
.price-action small { max-width: 250px; color: rgba(7,20,17,.62); font-size: 10px; line-height: 1.5; }

.page-hero {
  overflow: hidden;
  padding: 190px 0 105px;
}

.page-hero::before,
.status-hero::before,
.legal-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .3;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero-glow {
  position: absolute;
  top: -300px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(199,246,74,.15), transparent 65%);
}

.page-hero-inner { position: relative; }
.page-hero-inner h1 { max-width: 980px; }
.page-hero-inner > p:last-child { max-width: 610px; margin-top: 34px; color: #aebcb5; }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
}

.plan-card {
  position: relative;
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.plan-featured { color: var(--cream); background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow); }
.plan-ribbon { position: absolute; top: -14px; left: 42px; padding: 7px 13px; color: var(--ink); background: var(--acid); border: 1px solid var(--ink); border-radius: 999px; font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.plan-head { display: flex; align-items: center; justify-content: space-between; }
.plan-head > div { display: flex; align-items: center; gap: 14px; }
.pea-icon { display: grid; width: 50px; height: 50px; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50% 46% 52% 43%; font-family: var(--display); font-size: 20px; font-weight: 800; transform: rotate(-5deg); }
.pea-icon-outline { color: var(--forest); background: transparent; border: 1px solid var(--line); }
.plan-head h2 { margin: 0; font-family: var(--display); font-size: 38px; letter-spacing: -.055em; }
.available-chip { color: var(--acid); border-color: rgba(199,246,74,.24); }
.available-chip i { background: var(--acid); }
.available-chip.unavailable { color: var(--muted); border-color: var(--line); }
.available-chip.unavailable i { background: var(--muted); }
.plan-copy { max-width: 490px; margin: 28px 0 32px; color: #aebcb5; font-size: 15px; line-height: 1.7; }
.plan-waiting .plan-copy { color: var(--muted); }
.plan-price { display: flex; align-items: flex-start; margin: 8px 0 28px; }
.plan-price > span { margin: 15px 3px 0 0; font-size: 22px; font-weight: 800; }
.plan-price strong { font-family: var(--display); font-size: 100px; letter-spacing: -.09em; line-height: .8; }
.plan-price sup { margin-top: 3px; font-family: var(--display); font-size: 34px; font-weight: 800; }
.plan-price small { align-self: flex-end; margin: 0 0 4px 9px; color: #84978e; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.plan-price.muted { color: #66726c; }
.plan-charge-note { display: block; margin: 12px 0 0; color: #81938a; font-size: 10px; text-align: center; }
.plan-rule { height: 1px; margin: 34px 0 26px; background: rgba(255,255,255,.11); }
.plan-waiting .plan-rule { background: var(--line); }
.plan-card > h3 { margin: 0 0 20px; font-size: 14px; }
.feature-checks { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.feature-checks li { display: flex; align-items: flex-start; gap: 13px; }
.feature-checks li > .icon { width: 19px; height: 19px; padding: 3px; color: var(--ink); background: var(--acid); border-radius: 50%; }
.feature-checks li span { display: flex; flex-direction: column; }
.feature-checks li strong { font-size: 13px; }
.feature-checks li small { margin-top: 2px; color: #82948b; font-size: 10px; }
.feature-checks .future-item > .icon { color: var(--cream); background: var(--forest); }

.centered-heading { margin-bottom: 60px; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.comparison-table { overflow: hidden; max-width: 980px; margin-inline: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.comparison-row { display: grid; grid-template-columns: 1.2fr .8fr .8fr; min-height: 67px; border-top: 1px solid var(--line); }
.comparison-row:first-child { border: 0; }
.comparison-row > * { display: flex; align-items: center; padding: 15px 22px; border-left: 1px solid var(--line); font-size: 12px; }
.comparison-row > *:first-child { border: 0; }
.comparison-row > span { color: var(--muted); }
.comparison-row > strong { font-size: 12px; }
.comparison-row .icon { width: 19px; color: var(--forest-bright); }
.comparison-head { color: var(--cream); background: var(--ink); }
.comparison-head > span { color: #9daea6; }
.comparison-head > * { border-color: rgba(255,255,255,.1); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }

.pricing-notes { padding: 88px 0; }
.pricing-note-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; }
.pricing-note-grid article > span { color: var(--acid); font-family: var(--mono); font-size: 10px; }
.pricing-note-grid h3 { margin: 18px 0 12px; font-family: var(--display); font-size: 25px; letter-spacing: -.035em; }
.pricing-note-grid p { margin: 0; color: #95a79e; font-size: 13px; line-height: 1.7; }
.compact-cta { padding: 66px 0; border-block: 1px solid var(--ink); }
.compact-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.compact-cta h2 { margin: 4px 0 0; font-family: var(--display); font-size: 47px; letter-spacing: -.05em; }
.compact-cta .eyebrow { margin: 0; }

/* FAQ and closing */
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.faq-heading { align-self: start; position: sticky; top: 120px; }
.faq-heading > p { margin: 28px 0 24px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 86px; padding: 16px 0; cursor: pointer; font-family: var(--display); font-size: 23px; font-weight: 800; letter-spacing: -.03em; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 26px; height: 26px; flex: 0 0 auto; margin-left: 20px; }
.faq-list summary span::before,
.faq-list summary span::after { position: absolute; top: 12px; left: 5px; width: 16px; height: 1px; content: ""; background: var(--ink); transition: transform 180ms ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 690px; margin: -2px 0 27px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.closing-cta { min-height: 610px; overflow: hidden; display: grid; place-items: center; text-align: center; }
.closing-content { position: relative; z-index: 2; max-width: 900px; padding: 100px 0; }
.closing-content .eyebrow { justify-content: center; }
.closing-content h2 { margin: 0; font-family: var(--display); font-size: clamp(62px, 7vw, 98px); letter-spacing: -.065em; line-height: .88; }
.closing-content h2 em { color: var(--acid); font-family: var(--serif); font-weight: 400; letter-spacing: -.05em; }
.closing-content > p { max-width: 620px; margin: 28px auto 32px; color: #a6b7af; font-size: 16px; line-height: 1.75; }
.closing-pod { position: absolute; inset: 0; }
.closing-pod::before,
.closing-pod::after,
.closing-pod span { position: absolute; border: 1px solid rgba(199,246,74,.12); border-radius: 50%; }
.closing-pod::before { top: 50%; left: 50%; width: 600px; height: 600px; content: ""; transform: translate(-50%, -50%); }
.closing-pod::after { top: 50%; left: 50%; width: 850px; height: 420px; content: ""; border-style: dashed; transform: translate(-50%, -50%) rotate(8deg); }
.closing-pod span { width: 15px; height: 15px; background: var(--acid); box-shadow: 0 0 35px rgba(199,246,74,.6); }
.closing-pod span:nth-child(1) { top: 25%; left: 17%; }
.closing-pod span:nth-child(2) { right: 18%; bottom: 23%; }
.closing-pod span:nth-child(3) { top: 18%; right: 32%; }

/* Footer */
.site-footer { color: var(--cream); background: #040b09; }
.footer-shell { display: grid; grid-template-columns: 1fr 1.25fr; gap: 120px; width: var(--shell); margin-inline: auto; padding: 80px 0 58px; }
.footer-brand { font-size: 31px; }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-lead > p { max-width: 440px; margin: 23px 0; color: #82958c; font-size: 14px; line-height: 1.75; }
.beta-stamp { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; color: #a9bbb2; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-family: var(--mono); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.beta-stamp i { width: 6px; height: 6px; background: var(--acid); border-radius: 50%; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-links strong { margin-bottom: 8px; color: var(--acid); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: #9dafA6; font-size: 12px; transition: color 150ms ease; }
.footer-links a:hover { color: var(--cream); }
.footer-base { display: flex; justify-content: space-between; gap: 30px; width: var(--shell); margin-inline: auto; padding: 21px 0 26px; color: #60736a; border-top: 1px solid rgba(255,255,255,.08); font-family: var(--mono); font-size: 8px; letter-spacing: .04em; }

/* Forms and support */
.flash { position: fixed; z-index: 300; top: 92px; right: 22px; display: flex; align-items: center; gap: 11px; max-width: 450px; padding: 15px 16px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow); }
.account-page .flash { top: 22px; }
.flash p { margin: 0; font-size: 12px; font-weight: 700; }
.flash button { margin-left: auto; padding: 0 5px; color: var(--muted); background: none; border: 0; font-size: 20px; cursor: pointer; }
.flash-dot { width: 9px; height: 9px; flex: 0 0 auto; background: var(--forest-bright); border-radius: 50%; }
.flash-error .flash-dot { background: var(--danger); }
.flash-info .flash-dot { background: var(--amber); }

.form-errors { margin-bottom: 21px; padding: 16px 18px; color: #762c26; background: #f9e5e2; border: 1px solid #efc4bf; border-radius: 13px; font-size: 12px; }
.form-errors strong { display: block; margin-bottom: 5px; }
.form-errors ul { margin: 0; padding-left: 18px; }

.stack-form { display: grid; gap: 18px; }
.stack-form label { display: grid; gap: 8px; }
.stack-form label > span:first-child,
.stack-form .label-row { color: var(--ink); font-size: 11px; font-weight: 800; }
.stack-form input,
.stack-form textarea,
.stack-form select { width: 100%; color: var(--ink); background: var(--white); border: 1px solid rgba(7,20,17,.16); border-radius: 12px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.stack-form input,
.stack-form select { height: 51px; padding: 0 15px; }
.stack-form textarea { min-height: 160px; padding: 14px 15px; resize: vertical; }
.stack-form input::placeholder,
.stack-form textarea::placeholder { color: #a2aaa6; }
.stack-form input:focus,
.stack-form textarea:focus,
.stack-form select:focus { background: #fff; border-color: var(--forest-bright); box-shadow: 0 0 0 4px rgba(30,96,67,.08); }
.stack-form input:disabled { color: #78837e; background: #ecece4; }
.stack-form label > small { color: var(--muted); font-size: 9px; }
.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.support-hero-grid { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; }
.support-pulse { position: relative; display: grid; min-height: 230px; place-items: center; }
.support-pulse > div { position: relative; z-index: 2; display: flex; width: 170px; height: 170px; align-items: center; justify-content: center; flex-direction: column; color: var(--ink); background: var(--acid); border-radius: 50%; text-align: center; box-shadow: 0 0 100px rgba(199,246,74,.18); }
.support-pulse .icon { width: 30px; height: 30px; margin-bottom: 8px; }
.support-pulse strong { font-size: 12px; }
.support-pulse small { margin-top: 4px; font-size: 8px; line-height: 1.4; }
.support-orbit { position: absolute; width: 230px; height: 230px; border: 1px dashed rgba(199,246,74,.3); border-radius: 50%; animation: orbit 25s linear infinite; }
.support-orbit::after { position: absolute; top: 17px; left: 45px; width: 10px; height: 10px; content: ""; background: var(--acid); border-radius: 50%; }

.support-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.support-options h2 { margin: 0 0 35px; font-family: var(--display); font-size: 52px; letter-spacing: -.055em; line-height: .95; }
.support-options h2 em { color: var(--forest-bright); font-family: var(--serif); font-weight: 400; }
.support-option { display: grid; grid-template-columns: 48px 1fr 22px; align-items: center; gap: 15px; padding: 17px 0; border-top: 1px solid var(--line); }
.support-option:nth-of-type(3) { border-bottom: 1px solid var(--line); }
.support-option .icon-box { width: 42px; height: 42px; }
.support-option .icon-box .icon { width: 19px; }
.support-option > div { display: flex; flex-direction: column; }
.support-option strong { font-size: 12px; }
.support-option small { margin-top: 2px; color: var(--muted); font-size: 9px; }
.support-option > .icon { width: 18px; transition: transform 180ms ease; }
.support-option:hover > .icon { transform: translateX(4px); }
.support-boundary { margin-top: 28px; padding: 20px; background: rgba(199,246,74,.28); border: 1px solid rgba(7,20,17,.15); border-radius: 14px; }
.support-boundary span { font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.support-boundary p { margin: 8px 0 0; color: #536159; font-size: 11px; line-height: 1.6; }

.support-form-card { padding: 38px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 22px 70px rgba(7,20,17,.08); }
.form-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
.form-card-head h2 { margin: 4px 0 0; font-family: var(--display); font-size: 34px; letter-spacing: -.05em; }
.form-step { display: grid; width: 38px; height: 38px; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-family: var(--mono); font-size: 9px; }

/* Status */
.status-hero { padding: 185px 0 100px; }
.status-hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 90px; }
.overall-status { display: flex; gap: 20px; padding: 28px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; }
.status-light { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 6px; background: var(--acid); border: 4px solid rgba(199,246,74,.18); border-radius: 50%; box-sizing: content-box; }
.status-light-limited { background: var(--amber); border-color: rgba(223,169,45,.18); }
.overall-status > div { display: flex; flex-direction: column; }
.overall-status small { color: #85988f; font-family: var(--mono); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.overall-status strong { margin-top: 5px; font-size: 16px; }
.overall-status p { margin: 8px 0 0; color: #93a69d; font-size: 11px; line-height: 1.6; }

.status-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 75px; }
.status-components { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.component-row { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 22px; border-top: 1px solid var(--line); }
.component-row:first-child { border: 0; }
.component-row > div { display: flex; align-items: center; gap: 15px; }
.component-icon { display: grid; width: 46px; height: 46px; place-items: center; color: var(--forest); background: #e9eadd; border-radius: 13px; }
.component-icon .icon { width: 20px; }
.component-row p { display: flex; flex-direction: column; margin: 0; }
.component-row strong { font-size: 12px; }
.component-row small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.component-row .status-label { color: var(--ink); border-color: var(--line); }
.status-operational i { background: #3ab06c; box-shadow: 0 0 9px rgba(58,176,108,.5); }
.status-planned i { background: #a4aaa7; }
.status-aside h2 { margin: 0 0 35px; font-family: var(--display); font-size: 53px; letter-spacing: -.055em; line-height: .95; }
.status-aside h2 em { color: var(--forest-bright); font-family: var(--serif); font-weight: 400; }
.phase-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.phase-list li { position: relative; display: grid; grid-template-columns: 37px 1fr; gap: 14px; min-height: 73px; }
.phase-list li::before { position: absolute; top: 36px; bottom: 0; left: 18px; width: 1px; content: ""; background: var(--line); }
.phase-list li:last-child::before { display: none; }
.phase-list li > span { position: relative; z-index: 2; display: grid; width: 37px; height: 37px; place-items: center; color: var(--muted); background: var(--cream); border: 1px solid var(--line); border-radius: 50%; font-family: var(--mono); font-size: 9px; }
.phase-list li.complete > span { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.phase-list li.current > span { color: var(--cream); background: var(--ink); border-color: var(--ink); }
.phase-list li > span .icon { width: 17px; }
.phase-list p { display: flex; flex-direction: column; margin: 0; }
.phase-list strong { font-size: 12px; }
.phase-list small { color: var(--muted); font-size: 9px; }

/* Legal */
.legal-hero { padding: 185px 0 100px; }
.legal-hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 100px; }
.legal-meta { padding: 26px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.legal-meta span { color: var(--acid); font-family: var(--mono); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.legal-meta strong { display: block; margin: 7px 0 8px; font-size: 14px; }
.legal-meta p { color: #91a39b; font-size: 11px; }
.legal-body { padding: 95px 0 120px; }
.legal-layout { display: grid; grid-template-columns: 230px 1fr; gap: 100px; align-items: start; }
.legal-index { position: sticky; top: 100px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 0; border-block: 1px solid var(--line); }
.legal-index strong { margin-bottom: 5px; font-family: var(--mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.legal-index a { color: var(--muted); font-size: 11px; }
.legal-index a:hover { color: var(--forest-bright); }
.legal-content { max-width: 790px; }
.legal-callout { display: grid; grid-template-columns: 48px 1fr; gap: 18px; margin-bottom: 55px; padding: 24px; background: var(--acid); border: 1px solid var(--ink); border-radius: 17px; }
.legal-callout > span { display: grid; width: 48px; height: 48px; place-items: center; color: var(--acid); background: var(--ink); border-radius: 14px; }
.legal-callout p { margin: 0; font-size: 12px; line-height: 1.7; }
.legal-callout strong { display: block; font-size: 13px; }
.legal-content > section { position: relative; padding: 0 0 48px; margin-bottom: 48px; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.legal-content > section:last-child { margin: 0; padding-bottom: 0; border: 0; }
.legal-number { display: block; margin-bottom: 12px; color: var(--forest-bright); font-family: var(--mono); font-size: 9px; font-weight: 800; }
.legal-content h2 { margin: 0 0 21px; font-family: var(--display); font-size: 38px; letter-spacing: -.045em; }
.legal-content h3 { margin: 28px 0 8px; font-size: 14px; }
.legal-content p,
.legal-content li { color: #4f5f57; font-size: 14px; line-height: 1.8; }
.legal-content p { margin: 0 0 17px; }
.legal-content ul { display: grid; gap: 7px; padding-left: 21px; }
.legal-content a { color: var(--forest-bright); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* Authentication */
.auth-page { background: var(--ink); }
.auth-page .site-header { display: none; }
.auth-main { min-height: 100vh; background: var(--ink); }
.auth-shell { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 100vh; }
.auth-art { position: relative; display: flex; overflow: hidden; min-height: 100vh; flex-direction: column; padding: 42px 56px; color: var(--cream); background: var(--ink); }
.auth-art-grid { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to bottom right, black, transparent 80%); }
.auth-art::after { position: absolute; right: -320px; bottom: -320px; width: 700px; height: 700px; content: ""; background: radial-gradient(circle, rgba(199,246,74,.18), transparent 67%); border-radius: 50%; }
.auth-brand { position: relative; z-index: 2; align-self: flex-start; }
.auth-art-copy { position: relative; z-index: 2; max-width: 610px; margin: auto 0 45px; }
.auth-art-copy h1 { font-size: clamp(58px, 6.4vw, 94px); }
.auth-art-copy > p:last-child { max-width: 540px; margin: 28px 0 0; color: #9dafA6; font-size: 15px; line-height: 1.7; }
.auth-art-foot { position: relative; z-index: 2; margin: 0; color: #62766c; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.auth-visual { position: absolute; z-index: 1; right: 20px; bottom: 40px; width: 290px; height: 290px; opacity: .65; }
.auth-pod { position: absolute; right: 0; bottom: 0; width: 220px; height: 220px; border: 1px solid rgba(199,246,74,.18); border-radius: 50%; }
.auth-pod::before,
.auth-pod::after { position: absolute; content: ""; border: 1px dashed rgba(199,246,74,.16); border-radius: 50%; }
.auth-pod::before { inset: 32px; }
.auth-pod::after { inset: 68px; background: rgba(199,246,74,.08); }
.auth-pod span { position: absolute; z-index: 2; width: 24px; height: 24px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 28px rgba(199,246,74,.4); }
.auth-pod span:nth-child(1) { top: 35px; left: 58px; }
.auth-pod span:nth-child(2) { top: 92px; right: 43px; }
.auth-pod span:nth-child(3) { bottom: 35px; left: 77px; }
.auth-pod i { position: absolute; inset: 91px; z-index: 3; background: var(--acid); border-radius: 50%; }
.auth-tag { position: absolute; z-index: 3; display: flex; flex-direction: column; padding: 8px 11px; color: #7e9188; background: rgba(7,20,17,.85); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; font-family: var(--mono); font-size: 6px; letter-spacing: .08em; }
.auth-tag strong { margin-top: 2px; color: var(--acid); font-size: 7px; }
.auth-tag-one { top: 50px; right: 70px; }
.auth-tag-two { right: 0; bottom: 54px; }

.auth-form-side { display: grid; min-height: 100vh; padding: 70px 50px; place-items: center; background: var(--cream); border-radius: 32px 0 0 32px; }
.auth-form-wrap { width: min(460px, 100%); }
.auth-form-register { width: min(500px, 100%); padding-block: 20px; }
.auth-form-heading { margin-bottom: 28px; }
.auth-form-heading h2,
.success-state h2 { margin: 5px 0 8px; font-family: var(--display); font-size: 43px; letter-spacing: -.055em; }
.auth-form-heading p,
.success-state p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.auth-form-heading a,
.label-row a { color: var(--forest-bright); font-weight: 800; }
.auth-form .label-row { display: flex; justify-content: space-between; }
.auth-form .label-row a { font-size: 9px; }
.password-field { position: relative; display: block; }
.password-field input { padding-right: 65px; }
.password-field button { position: absolute; top: 50%; right: 12px; padding: 5px; color: var(--forest-bright); background: none; border: 0; font-size: 9px; font-weight: 800; cursor: pointer; transform: translateY(-50%); }
.password-strength { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; }
.password-strength i { position: relative; display: block; height: 3px; overflow: hidden; background: #d5d7ce; border-radius: 3px; }
.password-strength i::after { display: block; width: 0; height: 100%; content: ""; background: var(--danger); transition: width 180ms ease, background 180ms ease; }
.password-strength i[data-score="1"]::after { width: 25%; }
.password-strength i[data-score="2"]::after { width: 50%; background: var(--amber); }
.password-strength i[data-score="3"]::after { width: 75%; background: var(--forest-bright); }
.password-strength i[data-score="4"]::after { width: 100%; background: #31a862; }
.password-strength small { color: var(--muted); font-size: 8px; }
.check-label { display: grid !important; grid-template-columns: 21px 1fr; align-items: start; gap: 10px !important; cursor: pointer; }
.check-label input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.check-label > span { display: grid; width: 20px; height: 20px; place-items: center; background: var(--white); border: 1px solid rgba(7,20,17,.2); border-radius: 6px; }
.check-label > span .icon { width: 13px; opacity: 0; }
.check-label input:checked + span { background: var(--acid); border-color: var(--ink); }
.check-label input:checked + span .icon { opacity: 1; }
.check-label p { margin: 1px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.check-label p a { color: var(--forest-bright); font-weight: 800; }
.auth-trust { display: flex; justify-content: center; gap: 18px; margin-top: 22px; color: var(--muted); }
.auth-trust span { display: flex; align-items: center; gap: 5px; font-size: 8px; }
.auth-trust .icon { width: 13px; }
.form-fine-print { margin: 16px 0 0; color: var(--muted); font-size: 9px; text-align: center; }
.mini-plan-card { position: relative; z-index: 3; max-width: 470px; margin-bottom: 42px; padding: 20px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 19px; backdrop-filter: blur(10px); }
.mini-plan-card > div { display: flex; align-items: center; gap: 12px; }
.mini-plan-card > div p { display: flex; flex-direction: column; margin: 0; }
.mini-plan-card > div p small { color: #758b81; font-family: var(--mono); font-size: 7px; letter-spacing: .08em; }
.mini-plan-card > div p strong { font-family: var(--display); font-size: 25px; }
.mini-price { display: flex; flex-direction: column; margin-left: auto; text-align: right; }
.mini-price b { color: var(--acid); font-size: 15px; }
.mini-price small { color: #788d83; font-size: 7px; }
.mini-plan-card ul { display: flex; gap: 15px; margin: 15px 0 0; padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.1); list-style: none; }
.mini-plan-card li { display: flex; align-items: center; gap: 4px; color: #a6b8af; font-size: 8px; }
.mini-plan-card li .icon { width: 12px; color: var(--acid); }
.auth-main-compact .auth-art-copy { margin-bottom: auto; }
.auth-shell-compact { grid-template-columns: .85fr 1.15fr; }
.success-state { text-align: center; }
.success-mark { display: grid; width: 70px; height: 70px; margin: 0 auto 24px; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; }
.success-mark .icon { width: 29px; }
.success-state .button { margin-top: 26px; }
.auth-back-link { display: inline-block; margin-top: 22px; color: var(--muted); font-size: 10px; font-weight: 800; }

/* Account application */
.account-page { background: #ebebe2; }
.account-layout { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }
.account-sidebar { position: fixed; z-index: 110; inset: 0 auto 0 0; display: flex; width: 248px; flex-direction: column; padding: 26px 20px 20px; color: var(--cream); background: var(--ink); }
.account-brand { padding: 0 11px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.account-identity { display: flex; align-items: center; gap: 11px; margin: 22px 5px 25px; padding: 12px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); border-radius: 13px; }
.avatar { display: grid; width: 37px; height: 37px; flex: 0 0 auto; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-family: var(--mono); font-size: 9px; font-weight: 800; }
.account-identity > div { display: flex; min-width: 0; flex-direction: column; }
.account-identity strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.account-identity small { overflow: hidden; margin-top: 2px; color: #7f9389; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.account-nav { display: grid; gap: 5px; }
.account-nav a,
.account-side-bottom a,
.account-side-bottom button { display: flex; width: 100%; min-height: 44px; align-items: center; gap: 12px; padding: 0 12px; color: #8da097; background: transparent; border: 0; border-radius: 10px; font-size: 11px; font-weight: 700; cursor: pointer; }
.account-nav .icon,
.account-side-bottom .icon { width: 18px; }
.account-nav a:hover,
.account-side-bottom a:hover,
.account-side-bottom button:hover { color: var(--cream); background: rgba(255,255,255,.05); }
.account-nav a.active { color: var(--ink); background: var(--acid); }
.account-side-bottom { display: grid; gap: 3px; margin-top: auto; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.09); }
.account-side-bottom form { margin: 0; }
.account-content { grid-column: 2; min-width: 0; padding: 48px 52px 80px; }
.account-mobile-bar { display: none; }
.account-topbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; max-width: 1260px; margin: 0 auto 34px; }
.account-topbar h1 { margin: 4px 0 3px; font-family: var(--display); font-size: 47px; letter-spacing: -.055em; line-height: 1; }
.account-topbar p:last-child { margin: 0; color: var(--muted); font-size: 12px; }
.account-alert { display: grid; grid-template-columns: 10px 1fr auto; align-items: center; gap: 16px; max-width: 1260px; margin: 0 auto 18px; padding: 16px 18px; background: #e3f3b6; border: 1px solid #bfd873; border-radius: 13px; }
.alert-pulse { width: 9px; height: 9px; background: var(--forest-bright); border-radius: 50%; box-shadow: 0 0 0 5px rgba(30,96,67,.1); }
.account-alert strong { font-size: 11px; }
.account-alert p { margin: 2px 0 0; color: #52634f; font-size: 9px; }
.account-alert a { display: flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 800; }
.account-alert a .icon { width: 15px; }
.dashboard-grid { display: grid; grid-template-columns: 1.15fr 1fr .8fr; max-width: 1260px; margin-inline: auto; gap: 16px; }
.dashboard-card { position: relative; overflow: hidden; min-height: 290px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.dashboard-card-head { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.dashboard-card-head .status-label { color: var(--forest); border-color: rgba(7,20,17,.12); }
.plan-summary { display: flex; align-items: center; gap: 14px; margin: 34px 0 26px; }
.plan-summary h2 { margin: 0; font-family: var(--display); font-size: 35px; letter-spacing: -.05em; }
.plan-summary p { margin: 2px 0 0; color: var(--muted); font-size: 9px; }
.plan-meter progress { display: block; width: 100%; height: 7px; overflow: hidden; appearance: none; background: #e0e1d8; border: 0; border-radius: 99px; }
.plan-meter progress::-webkit-progress-bar { background: #e0e1d8; border-radius: 99px; }
.plan-meter progress::-webkit-progress-value { background: var(--forest-bright); border-radius: 99px; }
.plan-meter progress::-moz-progress-bar { background: var(--forest-bright); border-radius: 99px; }
.plan-meter p { margin: 8px 0 0; color: var(--muted); font-size: 8px; }
.plan-meter p strong { color: var(--ink); }
.card-link { position: absolute; right: 24px; bottom: 21px; display: flex; align-items: center; gap: 6px; color: var(--forest); font-size: 9px; font-weight: 800; }
.card-link .icon { width: 14px; }
.tiny-label { padding: 4px 7px; color: var(--forest); background: rgba(30,96,67,.09); border-radius: 999px; }
.mini-network-map { position: relative; height: 150px; margin-top: 20px; }
.mini-network-map svg { position: absolute; inset: 5px 0 0; width: 100%; height: 120px; opacity: .22; }
.mini-network-map path { fill: none; stroke: var(--forest); stroke-width: 1; stroke-dasharray: 4 5; }
.map-dot { position: absolute; z-index: 2; display: flex; align-items: center; gap: 4px; color: var(--muted); font-family: var(--mono); font-size: 7px; }
.map-dot i { width: 8px; height: 8px; background: #a8afab; border-radius: 50%; }
.map-dot-lon { top: 45px; left: 43%; }
.map-dot-lon i { background: var(--acid); box-shadow: 0 0 0 5px rgba(199,246,74,.22), 0 0 18px rgba(70,100,30,.3); }
.map-dot-ams { top: 24px; left: 58%; }
.map-dot-use { top: 56px; left: 80%; }
.network-summary-foot { display: flex; align-items: center; justify-content: space-between; }
.network-summary-foot > div { display: flex; align-items: center; gap: 9px; }
.network-summary-foot p { display: flex; flex-direction: column; margin: 0; }
.network-summary-foot strong { font-size: 10px; }
.network-summary-foot small { color: var(--muted); font-size: 8px; }
.location-status-dot { width: 8px; height: 8px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 5px rgba(199,246,74,.16); }
.network-summary-foot .card-link { position: static; }
.privacy-summary-card { color: var(--cream); background: var(--forest); border-color: var(--forest); }
.privacy-summary-card .dashboard-card-head { color: #9bb0a6; }
.privacy-summary-card .dashboard-card-head .icon { color: var(--acid); }
.privacy-score { display: flex; align-items: center; gap: 14px; margin: 42px 0 18px; }
.privacy-score > strong { font-family: var(--display); font-size: 88px; line-height: .72; letter-spacing: -.08em; color: var(--acid); }
.privacy-score span { display: flex; flex-direction: column; }
.privacy-score b { font-size: 10px; }
.privacy-score small { color: #89a096; font-size: 8px; }
.privacy-summary-card > p { max-width: 250px; color: #a0b4aa; font-size: 10px; line-height: 1.6; }
.privacy-summary-card .card-link { color: var(--acid); }

.account-section { max-width: 1260px; margin: 18px auto 0; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.account-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.account-section-head > div { display: flex; flex-direction: column; }
.account-section-head span { color: var(--muted); font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.account-section-head h2 { margin: 3px 0 0; font-family: var(--display); font-size: 26px; letter-spacing: -.04em; }
.account-section-head > a { display: flex; align-items: center; gap: 6px; color: var(--forest); font-size: 9px; font-weight: 800; }
.account-section-head > a .icon { width: 14px; }
.empty-device-state { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 20px; padding: 22px; background: #ecece4; border-radius: 14px; }
.empty-device-visual { position: relative; display: grid; width: 82px; height: 72px; place-items: center; color: var(--forest); background: var(--acid); border-radius: 19px; transform: rotate(-3deg); }
.empty-device-visual .icon { width: 34px; }
.empty-device-state h3 { margin: 0 0 5px; font-size: 13px; }
.empty-device-state p { margin: 0; color: var(--muted); font-size: 9px; }
.device-table { display: grid; }
.device-row { display: grid; grid-template-columns: 44px 1fr auto auto; align-items: center; gap: 14px; min-height: 71px; border-top: 1px solid var(--line); }
.device-platform { display: grid; width: 40px; height: 40px; place-items: center; color: var(--forest); background: #e5e6dd; border-radius: 11px; }
.device-platform .icon { width: 20px; }
.device-row > div { display: flex; flex-direction: column; }
.device-row strong { font-size: 11px; }
.device-row small { color: var(--muted); font-size: 8px; }
.device-status { color: var(--muted); border-color: var(--line); }
.device-status-active i { background: #35ab67; }
.device-status-pending i { background: var(--amber); }
.device-status-revoked i { background: #9ca3a0; }
.device-row > a { display: flex; align-items: center; gap: 5px; font-size: 8px; font-weight: 800; }
.device-row > a .icon { width: 13px; }

/* Devices */
.slot-counter { display: flex; align-items: baseline; gap: 4px; padding: 11px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-family: var(--mono); font-size: 8px; }
.slot-counter strong { color: var(--forest); font-size: 17px; }
.device-page-grid { display: grid; grid-template-columns: 1.3fr .7fr; align-items: start; gap: 18px; max-width: 1260px; margin-inline: auto; }
.device-list-card,
.add-device-card,
.current-plan-panel,
.billing-state-panel,
.settings-card,
.danger-zone { padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.device-empty-large { display: flex; min-height: 320px; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.device-empty-large > span { display: grid; width: 82px; height: 82px; place-items: center; color: var(--forest); background: var(--acid); border-radius: 24px; transform: rotate(-4deg); }
.device-empty-large > span .icon { width: 36px; }
.device-empty-large h3 { margin: 22px 0 6px; font-family: var(--display); font-size: 24px; }
.device-empty-large p { max-width: 370px; margin: 0; color: var(--muted); font-size: 10px; }
.device-cards { display: grid; gap: 10px; }
.device-manage-card { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 15px; padding: 18px; background: #ecece4; border: 1px solid transparent; border-radius: 14px; }
.device-manage-card.revoked { opacity: .56; }
.device-platform.large { width: 48px; height: 48px; background: var(--paper); }
.device-manage-copy > div { display: flex; align-items: center; gap: 10px; }
.device-manage-copy h3 { margin: 0; font-size: 12px; }
.device-manage-copy > p { margin: 3px 0 10px; color: var(--muted); font-size: 8px; }
.device-details { display: flex; gap: 30px; }
.device-details span { display: flex; flex-direction: column; }
.device-details small { color: var(--muted); font-size: 7px; }
.device-details strong { margin-top: 2px; font-size: 8px; }
.device-actions { display: flex; align-items: center; gap: 8px; }
.device-actions form { margin: 0; }
.icon-button { display: grid; width: 39px; height: 39px; padding: 0; place-items: center; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.icon-button .icon { width: 16px; }
.icon-button.danger:hover { color: var(--danger); background: #f8e5e2; border-color: #efb9b3; }
.add-device-card { position: sticky; top: 28px; }
.add-device-head { display: flex; align-items: center; gap: 14px; }
.add-device-head > div { display: flex; flex-direction: column; }
.add-device-head span { color: var(--muted); font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.add-device-head h2 { margin: 2px 0 0; font-family: var(--display); font-size: 27px; letter-spacing: -.04em; }
.add-device-card > p { margin: 20px 0 23px; color: var(--muted); font-size: 10px; line-height: 1.7; }
.compact-form { gap: 15px; }
.device-privacy-note { display: flex; gap: 11px; margin-top: 22px; padding: 15px; color: var(--cream); background: var(--forest); border-radius: 12px; }
.device-privacy-note > .icon { width: 18px; color: var(--acid); }
.device-privacy-note p { display: flex; flex-direction: column; margin: 0; }
.device-privacy-note strong { font-size: 9px; }
.device-privacy-note span { margin-top: 2px; color: #9bb1a6; font-size: 8px; line-height: 1.5; }
.limit-reached { padding: 17px; background: #f3e8cf; border: 1px solid #e3c98d; border-radius: 12px; }
.limit-reached strong { font-size: 10px; }
.limit-reached p { margin: 4px 0 0; color: var(--muted); font-size: 8px; }

/* Billing */
.billing-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; max-width: 1260px; margin-inline: auto; }
.current-plan-panel { padding: 34px; color: var(--cream); background: var(--ink); border-color: var(--ink); }
.current-plan-top { display: flex; align-items: center; justify-content: space-between; }
.current-plan-top > div { display: flex; align-items: center; gap: 14px; }
.pea-icon-large { width: 62px; height: 62px; font-size: 24px; }
.current-plan-top > div > div { display: flex; flex-direction: column; }
.current-plan-top > div > div > span { color: #789087; font-family: var(--mono); font-size: 8px; letter-spacing: .09em; }
.current-plan-top h2 { margin: 2px 0 0; font-family: var(--display); font-size: 34px; }
.billing-price { display: flex; align-items: flex-start; margin: 42px 0 38px; }
.billing-price > span { margin-top: 12px; font-size: 20px; }
.billing-price strong { font-family: var(--display); font-size: 90px; letter-spacing: -.08em; line-height: .8; }
.billing-price small { align-self: flex-end; margin: 0 0 4px 9px; color: #83988e; font-family: var(--mono); font-size: 7px; text-transform: uppercase; }
.billing-includes { display: grid; grid-template-columns: repeat(3, 1fr); padding: 22px 0; border-block: 1px solid rgba(255,255,255,.1); }
.billing-includes > span { display: flex; gap: 10px; padding: 0 18px; border-left: 1px solid rgba(255,255,255,.1); }
.billing-includes > span:first-child { padding-left: 0; border: 0; }
.billing-includes .icon { width: 18px; color: var(--acid); }
.billing-includes p { display: flex; flex-direction: column; margin: 0; }
.billing-includes strong { font-size: 9px; }
.billing-includes small { color: #81968c; font-size: 7px; }
.billing-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.billing-actions .button:disabled { color: #72837b; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.13); }
.billing-actions > a { display: flex; align-items: center; gap: 6px; color: var(--acid); font-size: 8px; font-weight: 800; }
.billing-actions > a .icon { width: 14px; }
.billing-state-panel { display: flex; flex-direction: column; }
.billing-state-icon { display: grid; width: 60px; height: 60px; place-items: center; color: var(--ink); background: var(--acid); border-radius: 18px; }
.billing-state-icon .icon { width: 28px; }
.billing-state-panel .account-eyebrow { margin: 30px 0 0; }
.billing-state-panel h2 { margin: 4px 0 10px; font-family: var(--display); font-size: 31px; letter-spacing: -.05em; }
.billing-state-panel > p:not(.account-eyebrow) { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.billing-state-panel ul { display: grid; gap: 12px; margin: auto 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.billing-state-panel li { display: flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 800; }
.billing-state-panel li .icon { width: 16px; color: var(--forest-bright); }
.billing-timeline { max-width: 1260px; margin: 18px auto 0; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.timeline-grid article { position: relative; padding: 21px; background: #ecece4; border-left: 1px solid var(--line); }
.timeline-grid article:first-child { border: 0; border-radius: 12px 0 0 12px; }
.timeline-grid article:last-child { border-radius: 0 12px 12px 0; }
.timeline-grid article > span { display: grid; width: 30px; height: 30px; place-items: center; color: var(--muted); background: var(--paper); border: 1px solid var(--line); border-radius: 50%; font-family: var(--mono); font-size: 8px; }
.timeline-grid article.done > span { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.timeline-grid article.current { color: var(--cream); background: var(--forest); }
.timeline-grid article.current > span { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.timeline-grid h3 { margin: 17px 0 6px; font-size: 11px; }
.timeline-grid p { margin: 0; color: var(--muted); font-size: 8px; line-height: 1.6; }
.timeline-grid .current p { color: #9cb0a6; }

/* Settings */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1260px; margin-inline: auto; }
.settings-card { padding: 32px; }
.settings-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.settings-card-head > div { display: flex; flex-direction: column; }
.settings-card-head > div > span { color: var(--muted); font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.settings-card-head h2 { margin: 2px 0 0; font-family: var(--display); font-size: 28px; letter-spacing: -.04em; }
.settings-card .button { justify-self: start; margin-top: 5px; }
.danger-zone { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1260px; margin: 18px auto 0; background: #eee9e1; border-color: #d9cabe; }
.danger-zone > div { display: flex; flex-direction: column; }
.danger-zone span { color: #9a6854; font-family: var(--mono); font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.danger-zone h2 { margin: 4px 0; font-family: var(--display); font-size: 25px; letter-spacing: -.04em; }
.danger-zone p { margin: 0; color: var(--muted); font-size: 9px; }

/* Customer tickets */
.admin-gateway {
  color: var(--acid) !important;
  border: 1px solid rgba(199,246,74,.18) !important;
}

.ticket-summary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1260px;
  margin: 0 auto 18px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.ticket-summary-row > div {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  border-left: 1px solid var(--line);
}

.ticket-summary-row > div:first-child { border: 0; }
.summary-orb { width: 13px; height: 13px; border: 4px solid rgba(7,20,17,.08); border-radius: 50%; box-sizing: content-box; }
.summary-orb.open { background: var(--amber); }
.summary-orb.resolved { background: #34aa67; }
.summary-orb.total { background: var(--forest); }
.ticket-summary-row p { display: flex; flex-direction: column; margin: 0; }
.ticket-summary-row strong { font-family: var(--display); font-size: 27px; line-height: 1; }
.ticket-summary-row small { margin-top: 4px; color: var(--muted); font-size: 8px; }

.ticket-page-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: start;
  gap: 18px;
  max-width: 1260px;
  margin-inline: auto;
}

.ticket-list-panel,
.new-ticket-panel,
.conversation-panel,
.ticket-detail-aside,
.admin-queue-panel,
.admin-quick-panel,
.admin-ticket-table,
.admin-user-table {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.new-ticket-panel { position: sticky; top: 28px; }
.new-ticket-panel > p { margin: 19px 0 23px; color: var(--muted); font-size: 10px; line-height: 1.7; }
.ticket-empty { display: flex; min-height: 390px; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.ticket-empty > span { display: grid; width: 76px; height: 76px; place-items: center; color: var(--ink); background: var(--acid); border-radius: 22px; transform: rotate(-4deg); }
.ticket-empty > span .icon { width: 32px; }
.ticket-empty h3 { margin: 22px 0 7px; font-family: var(--display); font-size: 25px; }
.ticket-empty p { max-width: 370px; margin: 0 0 23px; color: var(--muted); font-size: 10px; }

.ticket-list { display: grid; }
.ticket-list-item { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 15px; min-height: 93px; padding: 15px 4px; border-top: 1px solid var(--line); transition: background 160ms ease, padding 160ms ease; }
.ticket-list-item:hover { padding-inline: 13px; background: #ecece4; border-radius: 12px; }
.ticket-category-icon { display: grid; width: 46px; height: 46px; place-items: center; color: var(--forest); background: #e5e7dc; border-radius: 13px; }
.ticket-category-icon .icon { width: 20px; }
.ticket-list-copy { min-width: 0; }
.ticket-list-copy > div { display: flex; align-items: center; gap: 10px; }
.ticket-list-copy strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.ticket-list-copy p { margin: 5px 0 0; color: var(--muted); font-size: 8px; }
.ticket-list-copy p span { color: var(--forest); font-family: var(--mono); font-weight: 800; }
.ticket-state { display: inline-flex; width: max-content; align-items: center; gap: 6px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--mono); font-size: 7px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.ticket-state i { width: 6px; height: 6px; background: #98a19c; border-radius: 50%; }
.ticket-state-open { color: #7d5710; background: #f8edcc; border-color: #e8ce8d; }
.ticket-state-open i { background: var(--amber); }
.ticket-state-in_progress { color: #185c3b; background: #def0e4; border-color: #a8d1b7; }
.ticket-state-in_progress i { background: #2e9e60; }
.ticket-state-resolved { color: #275c3c; background: #e5f2e8; border-color: #b7d7c0; }
.ticket-state-resolved i { background: #36aa68; }
.ticket-state-closed { color: #626d67; background: #e5e7e3; border-color: #cbd0cc; }
.ticket-reply-count { display: grid; grid-template-columns: auto 15px; align-items: center; column-gap: 9px; min-width: 72px; }
.ticket-reply-count strong { font-family: var(--display); font-size: 18px; text-align: right; }
.ticket-reply-count small { color: var(--muted); font-size: 7px; text-align: right; }
.ticket-reply-count .icon { grid-column: 2; grid-row: 1 / 3; width: 14px; }

.account-back { display: inline-block; margin-bottom: 11px; color: var(--muted); font-size: 9px; font-weight: 800; }
.ticket-detail-topbar { align-items: center; }
.ticket-detail-topbar h1 { max-width: 850px; font-size: 39px; }
.conversation-layout { display: grid; grid-template-columns: 1fr 310px; align-items: start; gap: 18px; max-width: 1260px; margin-inline: auto; }
.conversation-panel { display: grid; gap: 14px; }
.message-bubble { padding: 22px; border: 1px solid var(--line); border-radius: 16px; }
.customer-message { margin-right: 75px; background: #ecece4; }
.admin-message { margin-left: 75px; color: var(--cream); background: var(--forest); border-color: var(--forest); }
.message-author { display: flex; align-items: center; gap: 11px; }
.small-avatar { width: 35px; height: 35px; }
.admin-avatar { color: var(--ink); background: var(--acid); }
.message-author p { display: flex; flex-direction: column; margin: 0; }
.message-author strong { font-size: 10px; }
.message-author small { margin-top: 2px; color: var(--muted); font-size: 7px; }
.admin-message .message-author small { color: #8ea49a; }
.message-content { margin-top: 17px; color: #48584f; font-size: 12px; line-height: 1.75; }
.admin-message .message-content { color: #c0cec7; }
.conversation-reply { margin-top: 12px; padding: 25px; background: #f5f4ec; border: 1px dashed rgba(7,20,17,.2); border-radius: 16px; }
.conversation-reply h2 { margin: 0 0 18px; font-family: var(--display); font-size: 25px; letter-spacing: -.04em; }
.conversation-reply .button { justify-self: end; }
.closed-ticket-note { display: flex; align-items: center; gap: 12px; margin-top: 10px; padding: 18px; background: #e3e5e1; border-radius: 13px; }
.closed-ticket-note > .icon { width: 20px; color: var(--muted); }
.closed-ticket-note p { display: flex; flex: 1; flex-direction: column; margin: 0; }
.closed-ticket-note strong { font-size: 10px; }
.closed-ticket-note span { color: var(--muted); font-size: 8px; }
.closed-ticket-note a { font-size: 9px; font-weight: 800; }
.ticket-detail-aside { position: sticky; top: 28px; }
.ticket-detail-aside > .account-eyebrow { margin: 22px 0 16px; }
.ticket-detail-aside dl { display: grid; margin: 0; }
.ticket-detail-aside dl div { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-top: 1px solid var(--line); }
.ticket-detail-aside dt { color: var(--muted); font-size: 8px; }
.ticket-detail-aside dd { margin: 0; font-size: 8px; font-weight: 800; text-align: right; word-break: break-word; }
.ticket-help-note { margin-top: 20px; padding: 15px; color: var(--cream); background: var(--forest); border-radius: 12px; }
.ticket-help-note strong { font-size: 9px; }
.ticket-help-note p { margin: 5px 0 0; color: #9eb2a8; font-size: 8px; line-height: 1.6; }

/* Administration */
.admin-page { background: #e7e9df; }
.admin-sidebar { border-right: 2px solid var(--acid); }
.account-brand > small,
.account-mobile-bar .brand > small { margin-left: 5px; padding: 3px 6px; color: var(--ink); background: var(--acid); border-radius: 999px; font-family: var(--mono); font-size: 6px; letter-spacing: .08em; }
.admin-identity { border-color: rgba(199,246,74,.18); }
.admin-topbar .button { color: var(--ink); }
.admin-metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1260px; margin: 0 auto 18px; }
.admin-metric-grid article { display: flex; min-height: 138px; align-items: center; gap: 17px; padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; }
.metric-icon { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; border-radius: 14px; }
.metric-icon .icon { width: 21px; }
.metric-open { color: #714b09; background: #f5e2a5; }
.metric-progress { color: #175737; background: #cde9d6; }
.metric-users { color: var(--cream); background: var(--forest); }
.metric-devices { color: var(--ink); background: var(--acid); }
.admin-metric-grid p { display: flex; flex-direction: column; margin: 0; }
.admin-metric-grid small { color: var(--muted); font-family: var(--mono); font-size: 7px; font-weight: 800; letter-spacing: .07em; }
.admin-metric-grid strong { margin: 5px 0 1px; font-family: var(--display); font-size: 30px; line-height: 1; }
.admin-metric-grid p > span { color: var(--muted); font-size: 7px; }
.admin-dashboard-grid { display: grid; grid-template-columns: 1.3fr .7fr; align-items: start; gap: 18px; max-width: 1260px; margin-inline: auto; }
.admin-ticket-list { display: grid; }
.admin-ticket-list > a { display: grid; grid-template-columns: 90px 1fr auto 16px; align-items: center; gap: 13px; min-height: 72px; border-top: 1px solid var(--line); }
.admin-ticket-list > a > div { display: flex; min-width: 0; flex-direction: column; }
.admin-ticket-list strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.admin-ticket-list p { margin: 3px 0 0; color: var(--muted); font-size: 7px; }
.admin-ticket-list time { color: var(--muted); font-family: var(--mono); font-size: 7px; }
.admin-ticket-list > a > .icon { width: 14px; }
.admin-empty-state { display: flex; min-height: 250px; align-items: center; justify-content: center; flex-direction: column; color: var(--muted); text-align: center; }
.admin-empty-state > .icon { width: 34px; color: var(--forest); }
.admin-empty-state h3 { margin: 14px 0 4px; color: var(--ink); font-family: var(--display); font-size: 22px; }
.admin-empty-state p { margin: 0; font-size: 9px; }
.admin-quick-panel { color: var(--cream); background: var(--ink); border-color: var(--ink); }
.admin-quick-panel > .account-eyebrow { margin: 24px 0 4px; color: #82978d; }
.admin-quick-panel h2 { margin: 0 0 12px; font-family: var(--display); font-size: 31px; letter-spacing: -.05em; line-height: 1; }
.admin-quick-panel > p:not(.account-eyebrow) { margin: 0 0 25px; color: #91a49b; font-size: 10px; line-height: 1.7; }
.admin-quick-panel .button-outline { color: var(--cream); border-color: rgba(255,255,255,.2); }
.admin-security-note { display: flex; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.admin-security-note > .icon { width: 18px; color: var(--acid); }
.admin-security-note span { display: flex; flex-direction: column; }
.admin-security-note strong { font-size: 9px; }
.admin-security-note small { margin-top: 3px; color: #859990; font-size: 7px; }

.ticket-filters { display: flex; max-width: 1260px; margin: 0 auto 16px; overflow-x: auto; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.ticket-filters a { display: flex; min-width: 130px; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 0 17px; color: var(--muted); border-left: 1px solid var(--line); font-size: 9px; font-weight: 800; }
.ticket-filters a:first-child { border: 0; }
.ticket-filters a.active { color: var(--ink); background: var(--acid); }
.ticket-filters strong { display: grid; min-width: 22px; height: 22px; place-items: center; background: rgba(7,20,17,.08); border-radius: 50%; font-family: var(--mono); font-size: 7px; }
.admin-ticket-table { max-width: 1260px; margin-inline: auto; padding: 0; overflow: hidden; }
.admin-table-head,
.admin-ticket-row { display: grid; grid-template-columns: 1.4fr 1fr 120px 150px 20px; align-items: center; gap: 20px; padding: 0 22px; }
.admin-table-head { min-height: 46px; color: #829087; background: var(--ink); font-family: var(--mono); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.admin-ticket-row { min-height: 82px; border-top: 1px solid var(--line); transition: background 150ms ease; }
.admin-ticket-row:hover { background: #eeeee5; }
.admin-ticket-row > div { display: flex; min-width: 0; flex-direction: column; }
.admin-ticket-row strong { overflow: hidden; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.admin-ticket-row small { overflow: hidden; margin-top: 3px; color: var(--muted); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.admin-ticket-row > .icon { width: 15px; }
.admin-delivery-warning { margin-bottom: 18px; background: #f7e8bd; border-color: #e0c475; }
.admin-conversation-layout { grid-template-columns: 1fr 330px; }
.admin-reply-box { background: var(--ink); border: 0; }
.admin-reply-box h2 { color: var(--cream); }
.admin-reply-box .account-eyebrow { margin: 0 0 3px; color: var(--acid); }
.admin-reply-box .stack-form label > span { color: #bdcbc4; }
.admin-reply-actions { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 14px; }
.admin-reply-actions label { min-width: 180px; }
.admin-reply-actions .button { min-height: 51px; }
.admin-reply-note { margin: 15px 0 0; color: #7f9389; font-size: 8px; }
.status-update-form { display: grid; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.status-update-form label { display: grid; gap: 7px; }
.status-update-form label span { font-size: 8px; font-weight: 800; }
.status-update-form select { width: 100%; height: 43px; padding: 0 11px; background: var(--white); border: 1px solid var(--line); border-radius: 9px; font-size: 9px; }

.user-toolbar { display: flex; max-width: 1260px; align-items: flex-end; justify-content: space-between; gap: 25px; margin: 0 auto 16px; padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.user-toolbar form { flex: 1; }
.user-toolbar label { display: block; margin-bottom: 7px; font-size: 8px; font-weight: 800; }
.user-toolbar form > div { display: flex; gap: 9px; }
.user-toolbar input { width: min(500px, 100%); height: 44px; padding: 0 13px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.user-toolbar > p { margin: 0 0 12px; color: var(--muted); font-size: 8px; }
.admin-user-table { max-width: 1260px; margin-inline: auto; padding: 0; overflow: hidden; }
.admin-user-head,
.admin-user-row { display: grid; grid-template-columns: 1.3fr 120px 100px 250px; align-items: center; gap: 18px; padding: 0 22px; }
.admin-user-head { min-height: 46px; color: #829087; background: var(--ink); font-family: var(--mono); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.admin-user-row { min-height: 84px; border-top: 1px solid var(--line); }
.admin-user-identity { display: flex; min-width: 0; align-items: center; gap: 12px; }
.admin-user-identity .avatar { width: 39px; height: 39px; }
.admin-user-identity p { display: flex; min-width: 0; flex-direction: column; margin: 0; }
.admin-user-identity strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.admin-user-identity small { overflow: hidden; margin-top: 3px; color: var(--muted); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.user-status { display: inline-flex; width: max-content; align-items: center; gap: 6px; font-family: var(--mono); font-size: 7px; font-weight: 800; text-transform: uppercase; }
.user-status i { width: 7px; height: 7px; background: #9ca49f; border-radius: 50%; }
.user-status-active i { background: #35a967; box-shadow: 0 0 8px rgba(53,169,103,.4); }
.admin-user-row > a { color: var(--forest); font-size: 8px; font-weight: 800; }
.admin-user-row form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.admin-user-row select { min-width: 130px; height: 40px; padding: 0 10px; background: var(--white); border: 1px solid var(--line); border-radius: 9px; font-size: 8px; }
.admin-bootstrap-note { display: flex; max-width: 1260px; align-items: center; gap: 13px; margin: 16px auto 0; padding: 17px 20px; color: var(--cream); background: var(--forest); border-radius: 13px; }
.admin-bootstrap-note > .icon { width: 20px; color: var(--acid); }
.admin-bootstrap-note > div { display: flex; flex-direction: column; }
.admin-bootstrap-note strong { font-size: 9px; }
.admin-bootstrap-note p { margin: 2px 0 0; color: #9fb3a9; font-size: 8px; }

/* Responsive */
@media (max-width: 1160px) {
  :root { --shell: min(100% - 44px, 1100px); }
  .desktop-nav { margin-left: 30px; gap: 23px; }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 20px; }
  .hero-copy h1 { font-size: 74px; }
  .connection-visual { transform: scale(.9); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .pricing-preview-grid { gap: 30px; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .privacy-summary-card { grid-column: 1 / 3; min-height: 240px; }
  .privacy-score { margin-top: 28px; }
  .account-content { padding-inline: 32px; }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 36px, 900px); }
  .desktop-nav,
  .nav-actions { display: none; }
  .menu-button { display: inline-flex; }
  .site-header { height: 70px; background: rgba(7,20,17,.88); backdrop-filter: blur(16px); }
  .mobile-nav { position: fixed; top: 69px; right: 0; left: 0; display: flex; max-height: 0; overflow: hidden; flex-direction: column; gap: 0; padding: 0 18px; color: var(--cream); background: rgba(7,20,17,.98); opacity: 0; visibility: hidden; transition: max-height 300ms ease, opacity 220ms ease, padding 300ms ease, visibility 220ms ease; }
  .mobile-nav a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 15px; font-weight: 800; }
  .mobile-nav .button { margin: 14px 0 20px; border: 0; }
  .menu-open .mobile-nav { max-height: 560px; padding-top: 14px; opacity: 1; visibility: visible; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-copy h1 { font-size: clamp(66px, 10vw, 90px); }
  .connection-visual { width: min(650px, 100%); margin: 10px auto 0; transform: none; }
  .split-heading,
  .locations-heading,
  .how-grid,
  .faq-grid,
  .support-grid,
  .status-layout,
  .status-hero-inner,
  .legal-hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .locations-heading .eyebrow { grid-column: auto; margin-bottom: -10px; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 360px 360px; }
  .bento-large { grid-column: 1 / 3; grid-row: 1; }
  .bento-tall { grid-column: 1; grid-row: 2; }
  .bento-standard { grid-column: 2; grid-row: 2; }
  .bento-wide { grid-column: 1 / 3; grid-row: 3; }
  .how-sticky,
  .faq-heading,
  .legal-index { position: static; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 330px; }
  .pricing-preview-grid { grid-template-columns: 1fr 1fr; }
  .price-features { grid-row: 2; }
  .price-action { grid-column: 2; grid-row: 2; flex-direction: column; align-items: flex-start; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-note-grid { gap: 35px; }
  .support-hero-grid { grid-template-columns: 1fr; }
  .support-pulse { display: none; }
  .legal-layout { grid-template-columns: 1fr; gap: 45px; }
  .legal-index { flex-direction: row; overflow-x: auto; padding-bottom: 15px; white-space: nowrap; }
  .legal-index strong { display: none; }
  .auth-shell,
  .auth-shell-compact { grid-template-columns: 1fr; }
  .auth-art { min-height: 500px; padding: 34px; }
  .auth-art-copy { margin: auto 0 30px; }
  .auth-art-copy h1 { font-size: 65px; }
  .auth-form-side { min-height: auto; padding: 70px 30px; border-radius: 28px 28px 0 0; }
  .auth-visual { opacity: .35; }
  .account-layout { display: block; }
  .account-sidebar { transform: translateX(-102%); transition: transform 260ms ease; }
  .account-menu-open .account-sidebar { transform: none; }
  .account-content { padding: 0 22px 65px; }
  .account-mobile-bar { position: sticky; z-index: 80; top: 0; display: flex; height: 68px; align-items: center; justify-content: space-between; margin: 0 -22px 32px; padding: 0 22px; color: var(--cream); background: var(--ink); }
  .account-mobile-bar button { display: grid; padding: 8px; place-items: center; color: var(--cream); background: transparent; border: 0; }
  .account-topbar { margin-top: 0; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .device-page-grid,
  .billing-grid { grid-template-columns: 1fr; }
  .add-device-card { position: static; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 28px); --radius: 18px; --radius-lg: 24px; }
  .feature-section,
  .how-section,
  .locations-section,
  .faq-section,
  .pricing-main,
  .comparison-section,
  .support-main,
  .status-main,
  .incident-section { padding: 82px 0; }
  .hero { padding: 120px 0 65px; }
  .hero-copy h1 { font-size: clamp(54px, 16vw, 75px); line-height: .9; }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-proof div { min-width: 0; padding-right: 14px; margin-right: 0; }
  .hero-proof div:last-child { grid-column: 1 / 3; }
  .connection-visual { min-height: 510px; margin-top: 35px; }
  .connection-card { top: 18px; width: 100%; transform: translateX(-50%); }
  .floating-pill { display: none; }
  .orbit-one { width: 110vw; }
  .route-label { display: none; }
  .connection-meta strong { font-size: 8px; }
  .split-heading { gap: 28px; }
  .split-heading > p { font-size: 14px; }
  .section-heading h2,
  .how-sticky h2,
  .locations-heading h2,
  .price-lockup h2,
  .faq-heading h2,
  .centered-heading h2 { font-size: clamp(43px, 13vw, 60px); }
  .bento-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .bento-large,
  .bento-tall,
  .bento-standard,
  .bento-wide { grid-column: auto; grid-row: auto; min-height: 390px; }
  .bento-large { min-height: 520px; }
  .bento-card { padding: 25px; }
  .privacy-rings { width: 300px; height: 300px; }
  .device-stack { transform: scale(.8); transform-origin: top right; }
  .process-step { grid-template-columns: 35px 62px 1fr; gap: 14px; padding: 31px 0; }
  .step-icon { width: 58px; height: 58px; border-radius: 17px; }
  .process-step h3 { font-size: 23px; }
  .process-step p { font-size: 12px; }
  .locations-heading { gap: 25px; }
  .locations-heading > p { font-size: 14px; }
  .location-card { min-height: 350px; }
  .pricing-preview-grid { grid-template-columns: 1fr; gap: 25px; }
  .price-display { margin-top: 10px; }
  .price-features { grid-row: auto; }
  .price-action { grid-column: auto; grid-row: auto; }
  .plan-card { padding: 31px 22px; }
  .plan-ribbon { left: 23px; }
  .plan-price strong { font-size: 85px; }
  .comparison-table { overflow-x: auto; }
  .comparison-row { min-width: 680px; }
  .pricing-note-grid { grid-template-columns: 1fr; }
  .compact-cta-inner { align-items: flex-start; flex-direction: column; }
  .compact-cta h2 { font-size: 39px; }
  .faq-grid { gap: 45px; }
  .faq-list summary { min-height: 75px; font-size: 19px; }
  .closing-cta { min-height: 540px; }
  .closing-content h2 { font-size: 58px; }
  .footer-shell { grid-template-columns: 1fr; gap: 55px; padding-top: 60px; }
  .footer-links { gap: 20px; }
  .footer-base { align-items: flex-start; flex-direction: column; }
  .page-hero,
  .status-hero,
  .legal-hero { padding: 135px 0 75px; }
  .page-hero h1,
  .status-hero h1,
  .legal-hero h1 { font-size: 55px; }
  .page-hero-inner > p:last-child { font-size: 14px; }
  .two-columns { grid-template-columns: 1fr; }
  .support-form-card { padding: 25px 19px; }
  .status-hero-inner { gap: 30px; }
  .component-row { align-items: flex-start; flex-direction: column; }
  .component-row .status-label { margin-left: 61px; }
  .legal-body { padding: 65px 0 90px; }
  .legal-callout { grid-template-columns: 1fr; }
  .legal-content h2 { font-size: 32px; }
  .legal-content p,
  .legal-content li { font-size: 13px; }
  .auth-art { min-height: 440px; padding: 27px 22px; }
  .auth-art-copy h1 { font-size: 51px; }
  .auth-art-copy > p:last-child { font-size: 12px; }
  .auth-visual { display: none; }
  .mini-plan-card { margin-bottom: 28px; }
  .mini-plan-card ul { flex-wrap: wrap; }
  .auth-form-side { padding: 55px 20px; }
  .auth-form-heading h2,
  .success-state h2 { font-size: 37px; }
  .auth-trust { align-items: center; flex-direction: column; }
  .account-content { padding-inline: 14px; }
  .account-mobile-bar { margin-inline: -14px; padding-inline: 14px; }
  .account-topbar { align-items: flex-start; flex-direction: column; margin-bottom: 25px; }
  .account-topbar h1 { font-size: 40px; }
  .account-topbar .button { width: 100%; }
  .account-alert { grid-template-columns: 10px 1fr; }
  .account-alert > a { grid-column: 2; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .privacy-summary-card { grid-column: auto; }
  .empty-device-state { grid-template-columns: 1fr; text-align: center; }
  .empty-device-visual { margin-inline: auto; }
  .empty-device-state .button { width: 100%; }
  .device-row { grid-template-columns: 44px 1fr; padding: 13px 0; }
  .device-row .device-status,
  .device-row > a { grid-column: 2; justify-self: start; }
  .device-list-card,
  .add-device-card,
  .current-plan-panel,
  .billing-state-panel,
  .settings-card,
  .danger-zone,
  .account-section,
  .billing-timeline { padding: 20px; }
  .device-manage-card { grid-template-columns: 45px 1fr; }
  .device-actions { grid-column: 2; justify-content: flex-start; }
  .device-details { flex-direction: column; gap: 6px; }
  .billing-includes { grid-template-columns: 1fr; gap: 16px; }
  .billing-includes > span { padding: 0; border: 0; }
  .billing-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .billing-actions .button { width: 100%; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-grid article { border-top: 1px solid var(--line); border-left: 0; border-radius: 0 !important; }
  .timeline-grid article:first-child { border-top: 0; border-radius: 12px 12px 0 0 !important; }
  .timeline-grid article:last-child { border-radius: 0 0 12px 12px !important; }
  .settings-grid { grid-template-columns: 1fr; }
  .danger-zone { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 960px) {
  .ticket-page-grid,
  .conversation-layout,
  .admin-dashboard-grid,
  .admin-conversation-layout { grid-template-columns: 1fr; }
  .new-ticket-panel,
  .ticket-detail-aside { position: static; }
  .admin-metric-grid { grid-template-columns: 1fr 1fr; }
  .admin-ticket-table,
  .admin-user-table { overflow-x: auto; }
  .admin-table-head,
  .admin-ticket-row { min-width: 900px; }
  .admin-user-head,
  .admin-user-row { min-width: 820px; }
}

@media (max-width: 700px) {
  .ticket-summary-row { grid-template-columns: 1fr; }
  .ticket-summary-row > div { min-height: 67px; border-top: 1px solid var(--line); border-left: 0; }
  .ticket-summary-row > div:first-child { border-top: 0; }
  .ticket-list-panel,
  .new-ticket-panel,
  .conversation-panel,
  .ticket-detail-aside,
  .admin-queue-panel,
  .admin-quick-panel { padding: 20px; }
  .ticket-list-item { grid-template-columns: 44px 1fr; }
  .ticket-reply-count { grid-column: 2; justify-self: start; }
  .ticket-list-copy > div { align-items: flex-start; flex-direction: column; }
  .customer-message,
  .admin-message { margin-inline: 0; }
  .message-bubble { padding: 18px; }
  .conversation-reply { padding: 19px; }
  .admin-metric-grid { grid-template-columns: 1fr; }
  .admin-metric-grid article { min-height: 105px; }
  .admin-ticket-list > a { grid-template-columns: 1fr 16px; gap: 8px; padding: 15px 0; }
  .admin-ticket-list > a > .ticket-state { grid-column: 1; }
  .admin-ticket-list > a > div { grid-column: 1; }
  .admin-ticket-list time { grid-column: 1; }
  .admin-ticket-list > a > .icon { grid-column: 2; grid-row: 1 / 4; }
  .ticket-filters { justify-content: flex-start; }
  .ticket-filters a { min-width: 115px; }
  .admin-reply-actions { grid-template-columns: 1fr; }
  .admin-reply-actions .button { width: 100%; }
  .user-toolbar { align-items: stretch; flex-direction: column; }
  .user-toolbar form > div { flex-direction: column; }
  .user-toolbar .button { width: 100%; }
  .admin-bootstrap-note { align-items: flex-start; }
}

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

/* Admin VPN network monitoring */
.admin-overview-metrics { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.admin-metric-grid .metric-nodes { color: var(--acid); background: var(--ink); }
.admin-metric-grid .metric-download { color: var(--ink); background: #b9e7d2; }
.admin-metric-grid .metric-clear { color: var(--ink); background: var(--acid); }
.admin-metric-grid .metric-alert { color: var(--white); background: var(--danger); }
.admin-metric-grid p > span a { color: var(--forest); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(18,61,44,.25); text-underline-offset: 2px; }
.monitor-content { padding-bottom: 48px; }
.monitor-topbar { align-items: flex-end; }
.monitor-refresh { min-width: 142px; }
.monitor-refresh span { min-width: 28px; color: var(--muted-light); font-family: var(--mono); font-size: 8px; }
.monitor-summary-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.monitor-node-stack { display: grid; max-width: 1260px; margin-inline: auto; gap: 20px; }
.vpn-node-card { position: relative; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 20px 60px rgba(7,20,17,.06); }
.vpn-node-card::before { position: absolute; inset: 0 auto 0 0; width: 5px; content: ""; background: var(--amber); }
.vpn-node-card.is-online::before { background: var(--acid); }
.vpn-node-card.is-degraded::before { background: var(--amber); }
.vpn-node-card.is-offline::before { background: var(--danger); }
.vpn-node-card.is-awaiting::before { background: #98a39d; }
.vpn-node-head { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 25px 28px 22px 32px; border-bottom: 1px solid var(--line); }
.vpn-node-title { display: flex; min-width: 0; align-items: center; gap: 16px; }
.vpn-node-orb { display: grid; width: 52px; height: 52px; flex: 0 0 auto; place-items: center; color: var(--acid); background: var(--ink); border-radius: 50%; font-family: var(--mono); font-size: 10px; font-weight: 900; letter-spacing: .08em; box-shadow: inset 0 0 0 5px rgba(199,246,74,.08); }
.vpn-node-title .account-eyebrow { margin: 0 0 3px; }
.vpn-node-title h2 { margin: 0; font-family: var(--display); font-size: 31px; letter-spacing: -.045em; line-height: 1; }
.vpn-node-title div > span { display: block; margin-top: 6px; color: var(--muted); font-family: var(--mono); font-size: 8px; }
.vpn-node-state { display: flex; align-items: flex-end; flex-direction: column; gap: 7px; }
.vpn-node-state small { color: var(--muted); font-size: 8px; }
.node-state-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--mono); font-size: 8px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.node-state-badge i { width: 7px; height: 7px; background: #98a39d; border-radius: 50%; }
.node-state-online i { background: #53b86b; box-shadow: 0 0 0 4px rgba(83,184,107,.13); }
.node-state-degraded i { background: var(--amber); box-shadow: 0 0 0 4px rgba(223,169,45,.13); }
.node-state-offline i { background: var(--danger); box-shadow: 0 0 0 4px rgba(217,80,67,.13); }
.vpn-node-kpis { display: grid; grid-template-columns: repeat(5, 1fr); padding: 0 18px; border-bottom: 1px solid var(--line); }
.vpn-node-kpis > div { display: flex; min-width: 0; flex-direction: column; padding: 20px 14px; border-right: 1px solid var(--line); }
.vpn-node-kpis > div:last-child { border-right: 0; }
.vpn-node-kpis small, .monitor-panel-head small, .monitor-live-rates small { color: var(--muted); font-family: var(--mono); font-size: 7px; font-weight: 900; letter-spacing: .08em; }
.vpn-node-kpis strong { margin: 7px 0 3px; font-family: var(--display); font-size: 24px; letter-spacing: -.04em; line-height: 1; }
.vpn-node-kpis span { overflow: hidden; color: var(--muted); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.vpn-node-detail-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); }
.monitor-chart-panel, .monitor-health-panel { padding: 25px 28px 27px 32px; }
.monitor-health-panel { background: #eceee5; border-left: 1px solid var(--line); }
.monitor-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.monitor-panel-head h3 { margin: 3px 0 0; font-family: var(--display); font-size: 22px; letter-spacing: -.035em; }
.monitor-legend { display: flex; gap: 13px; color: var(--muted); font-size: 7px; }
.monitor-legend span { display: inline-flex; align-items: center; gap: 6px; }
.monitor-legend i { width: 13px; height: 3px; background: var(--forest); border-radius: 99px; }
.monitor-legend .legend-upload i { background: var(--acid); box-shadow: 0 0 0 1px rgba(7,20,17,.16); }
.monitor-chart { width: 100%; height: 128px; margin: 20px 0 8px; overflow: visible; }
.monitor-chart-grid { fill: none; stroke: rgba(7,20,17,.08); stroke-width: 1; vector-effect: non-scaling-stroke; }
.monitor-chart-line { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.chart-download { stroke: var(--forest); }
.chart-upload { stroke: var(--acid); filter: drop-shadow(0 2px 2px rgba(7,20,17,.16)); }
.monitor-chart-waiting { display: flex; min-height: 136px; align-items: center; justify-content: center; gap: 12px; color: var(--muted); }
.monitor-chart-waiting span { width: 8px; height: 8px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 6px rgba(199,246,74,.2); }
.monitor-chart-waiting p { max-width: 280px; margin: 0; font-size: 8px; line-height: 1.6; }
.monitor-live-rates { display: flex; gap: 26px; padding-top: 13px; border-top: 1px solid var(--line); }
.monitor-live-rates p { display: flex; flex-direction: column; margin: 0; }
.monitor-live-rates strong { margin-top: 2px; font-family: var(--mono); font-size: 10px; }
.capacity-pill { padding: 6px 9px; color: var(--forest); background: #dce4d9; border-radius: 999px; font-family: var(--mono); font-size: 7px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.capacity-limited { color: #76550a; background: #f2dfac; }
.capacity-full { color: #842c25; background: #f4cbc7; }
.monitor-resource { margin-top: 16px; }
.monitor-resource > div { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 8px; }
.monitor-resource strong { font-family: var(--mono); font-size: 8px; }
.monitor-resource meter { display: block; width: 100%; height: 8px; border: 0; background: transparent; }
.monitor-resource meter::-webkit-meter-bar { background: rgba(7,20,17,.1); border: 0; border-radius: 99px; }
.monitor-resource meter::-webkit-meter-optimum-value { background: var(--forest); border-radius: 99px; }
.monitor-resource meter::-moz-meter-bar { background: var(--forest); border-radius: 99px; }
.monitor-facts { display: grid; gap: 8px; margin: 20px 0 0; padding-top: 17px; border-top: 1px solid var(--line); }
.monitor-facts div { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.monitor-facts dt { color: var(--muted); font-size: 7px; }
.monitor-facts dd { overflow: hidden; margin: 0; font-family: var(--mono); font-size: 7px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.monitor-definition-note { display: flex; max-width: 1260px; align-items: flex-start; gap: 13px; margin: 17px auto 0; padding: 17px 20px; color: var(--cream); background: var(--forest); border-radius: 13px; }
.monitor-definition-note > .icon { width: 20px; color: var(--acid); }
.monitor-definition-note strong { font-size: 9px; }
.monitor-definition-note p { margin: 2px 0 0; color: #a9bbb2; font-size: 8px; }
.monitor-empty { display: flex; max-width: 1260px; min-height: 320px; align-items: center; justify-content: center; flex-direction: column; margin-inline: auto; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; text-align: center; }
.monitor-empty > .icon { width: 42px; color: var(--forest); }
.monitor-empty h2 { margin: 15px 0 4px; font-family: var(--display); font-size: 28px; }
.monitor-empty p { margin: 0; color: var(--muted); font-size: 9px; }

@media (max-width: 1180px) {
  .admin-overview-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vpn-node-kpis { grid-template-columns: repeat(3, 1fr); }
  .vpn-node-kpis > div:nth-child(3) { border-right: 0; }
  .vpn-node-kpis > div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 960px) {
  .admin-overview-metrics, .monitor-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vpn-node-detail-grid { grid-template-columns: 1fr; }
  .monitor-health-panel { border-top: 1px solid var(--line); border-left: 0; }
}
@media (max-width: 700px) {
  .admin-overview-metrics, .monitor-summary-grid { grid-template-columns: 1fr; }
  .monitor-topbar { align-items: flex-start; }
  .monitor-refresh { width: 100%; }
  .vpn-node-head { align-items: flex-start; flex-direction: column; padding: 22px 20px 19px 24px; }
  .vpn-node-state { align-items: flex-start; }
  .vpn-node-kpis { grid-template-columns: 1fr 1fr; padding: 0 12px; }
  .vpn-node-kpis > div, .vpn-node-kpis > div:nth-child(3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .vpn-node-kpis > div:nth-child(even) { border-right: 0; }
  .vpn-node-kpis > div:last-child { grid-column: 1 / -1; border-right: 0; }
  .monitor-chart-panel, .monitor-health-panel { padding: 22px 20px 24px; }
  .monitor-panel-head { align-items: flex-start; flex-direction: column; }
  .monitor-chart { height: 108px; }
  .monitor-definition-note { margin-inline: 0; }
}
