:root {
  --navy: #0b1a2f;
  --navy-900: #071221;
  --navy-800: #0f243d;
  --navy-700: #16304f;
  --accent: #e85d04;
  --accent-soft: #f48c06;
  --text: #f5f7fa;
  --muted: rgba(245, 247, 250, 0.55);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Sora", "Segoe UI", system-ui, sans-serif;
  --radius: 1rem;
  --radius-sm: .65rem;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy-900);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
.main { flex: 1; }

.font-display { font-family: var(--font-display); font-weight: 600; }
.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--accent-soft) 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.btn-primary, .btn-secondary, button.btn-primary, button.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.55rem; border-radius: var(--radius-sm); font-weight: 600; border: none; cursor: pointer;
  font-size: .95rem; font-family: var(--font-body);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 28px rgba(232, 93, 4, 0.28);
}
.btn-primary:hover { background: var(--accent-soft); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,.04); border: 1px solid var(--border); color: #fff;
}
.btn-secondary:hover { background: var(--surface-strong); border-color: rgba(255,255,255,.18); transform: translateY(-1px); }
.badge {
  display: inline-flex; padding: .25rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 600;
  background: rgba(232,93,4,.1); color: var(--accent-soft); border: 1px solid rgba(232,93,4,.2);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-subtitle { color: rgba(255,255,255,.5); font-size: 1.05rem; margin: 0 0 1.5rem; line-height: 1.6; }
.stat-number { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 650; }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-copy, .btn-primary, .btn-secondary {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
}

/* Header */
.top-banner {
  background: rgba(232,93,4,.92); color: #fff; text-align: center; padding: .65rem 1rem; font-size: .875rem; font-weight: 500;
}
.top-banner a { text-decoration: underline; margin-left: .75rem; font-weight: 600; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,18,33,.88); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 4rem; gap: 1rem; }
.logo {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 650; font-size: 1.2rem; letter-spacing: -0.02em;
}
.logo-mark {
  width: 2rem; height: 2rem; border-radius: .55rem; display: grid; place-items: center;
  background: rgba(232,93,4,.2); border: 1px solid rgba(232,93,4,.4); color: var(--accent); font-size: .85rem;
  font-family: var(--font-display); font-weight: 700;
}
.nav-links { display: none; align-items: center; gap: .15rem; }
.nav-links a, .nav-links summary {
  padding: .5rem 1rem; border-radius: .5rem; font-size: .875rem; color: rgba(255,255,255,.7); cursor: pointer; list-style: none;
}
.nav-links a:hover, .nav-links summary:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-links details { position: relative; }
.nav-links details summary::-webkit-details-marker { display: none; }
.dropdown {
  position: absolute; top: calc(100% + .35rem); left: 0; min-width: 220px;
  background: rgba(7,18,33,.98); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: .75rem; z-index: 60;
}
.dropdown a { display: block; padding: .4rem .55rem; border-radius: .4rem; font-size: .875rem; color: rgba(255,255,255,.7); }
.dropdown a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.user-chip {
  display: none; padding: .35rem .75rem; font-size: .75rem; border-radius: .5rem;
  color: var(--accent-soft); background: rgba(232,93,4,.1); border: 1px solid rgba(232,93,4,.25);
}
.menu-btn {
  display: inline-flex; background: transparent; border: none; color: rgba(255,255,255,.6); padding: .5rem; cursor: pointer;
}
.mobile-nav { display: none; border-top: 1px solid rgba(255,255,255,.1); padding: .75rem 0 1rem; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: .5rem .75rem; border-radius: .5rem; font-size: .875rem; color: rgba(255,255,255,.7); }
.mobile-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .user-chip { display: inline-flex; }
  .menu-btn { display: none; }
}

/* Hero – brand-first, full-bleed, no clutter */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,18,33,.35) 0%, rgba(7,18,33,.72) 45%, rgba(7,18,33,.96) 100%),
    linear-gradient(120deg, rgba(11,26,47,.85), rgba(232,93,4,.22)),
    url("../img/hero.jpg") center / cover no-repeat,
    var(--navy-900);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 30%, rgba(232,93,4,.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(15,36,61,.5), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  width: 100%;
  padding: 7rem 0 4.5rem;
}
.hero-copy {
  max-width: 38rem;
  animation: heroIn .9s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 1.15rem;
  color: #fff;
}
.hero-brand span {
  display: block;
  background: linear-gradient(120deg, #fff 10%, var(--accent-soft) 70%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 1rem;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.hero p.lead {
  color: rgba(255,255,255,.58);
  font-size: 1.05rem;
  max-width: 34rem;
  margin: 0 0 1.75rem;
  line-height: 1.65;
}
.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.section { padding: 5rem 0; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(15,36,61,.55), rgba(15,36,61,.85));
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.section-head {
  max-width: 36rem;
  margin: 0 0 2.5rem;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Service list – no card grid clutter */
.service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.08);
}
.service-row {
  display: grid;
  gap: .75rem 1.5rem;
  grid-template-columns: 1fr;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s ease, padding-left .2s ease;
}
.service-row:hover {
  background: rgba(255,255,255,.03);
  padding-left: .5rem;
}
.service-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.service-row p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: .95rem;
}
.service-row .go {
  color: var(--accent-soft);
  font-size: .85rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 14rem 1fr auto;
  }
}

.why-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .why-split { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; }
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.why-point {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.why-point h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.why-point p { margin: 0; color: rgba(255,255,255,.48); font-size: .92rem; }

.cta-band {
  text-align: center;
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(232,93,4,.18), transparent 65%),
    var(--navy-900);
}
.cta-band .section-title { margin-left: auto; margin-right: auto; }
.cta-band .section-subtitle { margin-left: auto; margin-right: auto; max-width: 28rem; }

.grid-3 { display: grid; gap: 1.15rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.center { text-align: center; }
.muted { color: rgba(255,255,255,.45); }
.small { font-size: .875rem; }

/* Forms */
.input-field, input.input-field, textarea.input-field, select.input-field {
  width: 100%; padding: .7rem .9rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); color: #fff; outline: none;
  font-family: var(--font-body);
}
.input-field:focus { border-color: rgba(232,93,4,.55); box-shadow: 0 0 0 3px rgba(232,93,4,.12); }
label { display: block; font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: .35rem; }
.form-stack { display: flex; flex-direction: column; gap: 1rem; }
.alert { padding: .85rem 1.05rem; border-radius: var(--radius-sm); font-size: .875rem; margin-bottom: 1rem; border: 1px solid transparent; }
.alert-ok { background: rgba(16,185,129,.12); color: #34d399; border-color: rgba(16,185,129,.22); }
.alert-err { background: rgba(248,113,113,.12); color: #f87171; border-color: rgba(248,113,113,.22); }

table.data { width: 100%; border-collapse: collapse; font-size: .875rem; }
table.data th {
  text-align: left; color: rgba(255,255,255,.4); font-weight: 500;
  padding: .85rem 1.1rem; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
}
table.data td { padding: .9rem 1.1rem; border-bottom: 1px solid rgba(255,255,255,.05); }
table.data tbody tr:hover td { background: rgba(255,255,255,.025); }
table.data .empty-cell { padding: 2rem 1.1rem; text-align: center; }

.empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
}
.empty-state p { margin: 0 0 1rem; color: rgba(255,255,255,.5); }
.empty-state .btn-primary, .empty-state .btn-secondary { margin-top: .25rem; }

/* Portal nav – tab bar */
.portal-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: .15rem;
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.portal-nav a {
  flex: 0 0 auto;
  padding: .7rem .95rem;
  border-radius: 0;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.portal-nav a:hover { color: #fff; background: transparent; }
.portal-nav a.active {
  color: #fff;
  border-bottom-color: var(--accent);
  background: transparent;
}
.portal-nav a.portal-nav-out {
  margin-left: auto;
  color: rgba(255,255,255,.4);
}
.portal-nav a.portal-nav-out:hover { color: var(--accent-soft); }

/* Dashboard metrics – no heavy cards */
.dash-welcome { margin-bottom: 1.75rem; }
.dash-welcome h1 { margin-bottom: .4rem; }
.dash-metrics {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin-bottom: 2.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) {
  .dash-metrics { grid-template-columns: repeat(3, 1fr); }
}
.dash-metric {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 768px) {
  .dash-metric {
    border-bottom: 0;
    border-right: 1px solid rgba(255,255,255,.08);
    padding: 1.35rem 1.25rem 1.35rem 0;
  }
  .dash-metric:last-child { border-right: 0; padding-right: 0; }
  .dash-metric:not(:first-child) { padding-left: 1.25rem; }
}
.dash-metric .lbl {
  margin: 0 0 .35rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  font-weight: 600;
}
.dash-metric .val {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}
.dash-metric a.more {
  display: inline-block;
  margin-top: .45rem;
  font-size: .8rem;
  color: var(--accent-soft);
  font-weight: 600;
}
.dash-side-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .dash-side-metrics { grid-template-columns: repeat(3, 1fr); }
}
.dash-side-metrics .item {
  padding: .85rem 0;
}
.dash-side-metrics .item .lbl {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.4); margin: 0 0 .25rem; font-weight: 600;
}
.dash-side-metrics .item .val {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 650; margin: 0;
}
.dash-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.admin-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .admin-layout { grid-template-columns: 15.5rem 1fr; } }
.admin-side {
  padding: 1rem !important;
  position: sticky;
  top: 5.5rem;
  align-self: start;
  max-height: calc(100vh - 6.5rem);
  overflow-y: auto;
}
.admin-side .admin-brand {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.35); margin: 0 0 .85rem; font-weight: 700;
}
.admin-side .nav-group {
  margin: .85rem 0 .35rem;
  padding: .15rem .85rem;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.32);
  font-weight: 700;
}
.admin-side .nav-group:first-of-type { margin-top: .15rem; }
.admin-side a {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .55rem .85rem; border-radius: .65rem; font-size: .85rem;
  color: rgba(255,255,255,.65); margin-bottom: .1rem; transition: .15s;
}
.admin-side a:hover { background: rgba(255,255,255,.05); color: #fff; }
.admin-side a.active { background: rgba(232,93,4,.14); color: #fff; border: 1px solid rgba(232,93,4,.25); }
.admin-side .nav-count {
  min-width: 1.35rem; height: 1.35rem; padding: 0 .35rem; border-radius: 999px;
  background: rgba(232,93,4,.25); color: #f48c06; font-size: .7rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.admin-side .nav-foot { margin-top: .85rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.08); }
.admin-side .nav-foot a { color: var(--accent-soft); }

.admin-hero { margin-bottom: 1.5rem; }
.admin-hero h1 { margin-bottom: .35rem; }
.admin-stats { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .admin-stats { grid-template-columns: repeat(3, 1fr); } }
.admin-stat {
  display: block; padding: 1.15rem 1.25rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: .15s;
}
.admin-stat:hover { background: var(--surface-strong); border-color: rgba(232,93,4,.3); transform: translateY(-1px); }
.admin-stat .lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin: 0 0 .4rem; font-weight: 700; }
.admin-stat .val { font-family: var(--font-display); font-size: 2rem; font-weight: 650; margin: 0; }

.pill {
  display: inline-flex; align-items: center; padding: .2rem .55rem; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .02em;
}
.pill-open { background: rgba(232,93,4,.18); color: #f48c06; border: 1px solid rgba(232,93,4,.3); }
.pill-paid { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.3); }
.pill-cancel { background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1); }
.pill-new { background: rgba(232,93,4,.18); color: #f48c06; border: 1px solid rgba(232,93,4,.3); }
.pill-read { background: rgba(56,189,248,.12); color: #7dd3fc; border: 1px solid rgba(56,189,248,.28); }
.pill-done { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.3); }
.pill-live { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.3); }
.pill-draft { background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1); }
.pill-active { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.3); }
.pill-susp { background: rgba(248,113,113,.12); color: #f87171; border: 1px solid rgba(248,113,113,.25); }

.btn-sm { padding: .4rem .75rem !important; font-size: .8rem !important; }
.btn-success { background: #059669 !important; color: #fff !important; border: none; box-shadow: none; }
.btn-success:hover { background: #10b981 !important; }
.btn-row { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.admin-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.admin-filter a {
  padding: .35rem .75rem; border-radius: 999px; font-size: .8rem;
  border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); background: rgba(255,255,255,.03);
}
.admin-filter a.active, .admin-filter a:hover { border-color: rgba(232,93,4,.4); color: #fff; background: rgba(232,93,4,.12); }
.admin-section-title { font-size: 1rem; margin: 0 0 1rem; font-family: var(--font-display); font-weight: 600; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.06); padding-top: 3rem; margin-top: auto; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-grid h3 { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 .75rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .45rem; }
.footer-grid a { color: rgba(255,255,255,.4); font-size: .875rem; }
.footer-grid a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05); background: rgba(255,255,255,.02);
  padding: 1.25rem 0; font-size: .75rem; color: rgba(255,255,255,.35);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}

/* Cookie */
#nb-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990; padding: 12px 16px; pointer-events: none; }
.nb-card {
  pointer-events: auto; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px;
  background: rgba(7,18,33,.97); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 16px 20px;
}
@media (min-width: 640px) { .nb-card { flex-direction: row; align-items: center; } }
.nb-btn { padding: 8px 14px; border-radius: 10px; font-size: 12px; font-weight: 500; cursor: pointer; border: 1px solid transparent; background: transparent; color: rgba(255,255,255,.6); font-family: var(--font-body); }
.nb-ghost { border-color: rgba(255,255,255,.1); }
.nb-primary { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }

/* Installer */
.install-wrap { min-height: 100vh; display: grid; place-items: center; padding: 2rem 1rem; background: var(--navy-900); }
.install-card { width: 100%; max-width: 520px; }
.install-steps { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.install-steps span {
  flex: 1; height: 4px; border-radius: 99px; background: rgba(255,255,255,.1);
}
.install-steps span.on { background: var(--accent); }

.btn-ghost {
  background: transparent; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7);
  padding: .35rem .65rem; border-radius: 8px; cursor: pointer; font-size: .8rem; font-family: var(--font-body);
}
.btn-ghost:hover { color: #fff; border-color: rgba(232,93,4,.4); }
.btn-ghost.small { font-size: .75rem; padding: .25rem .5rem; }
.hint-box {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: .85rem 1rem; line-height: 1.55;
}
.hint-box code { font-size: .8em; color: var(--accent-soft); }
.svc-dl { display: grid; gap: .55rem; margin: 0; }
.svc-dl > div { display: grid; grid-template-columns: 7rem 1fr; gap: .5rem; align-items: baseline; }
.svc-dl dt { margin: 0; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); }
.svc-dl dd { margin: 0; font-size: .9rem; word-break: break-all; }
.svc-dl code { font-size: .85em; color: rgba(255,255,255,.85); }

.access-creds {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .85rem 1rem;
}
.cred-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr auto;
  gap: .5rem;
  align-items: center;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cred-row:last-child { border-bottom: 0; }
.cred-row > span { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); }
.cred-val { font-size: .85rem; color: rgba(255,255,255,.9); word-break: break-all; }
@media (max-width: 640px) {
  .cred-row { grid-template-columns: 1fr; }
}

/* WhatsApp vs cookie */
.wa-float { bottom: 5.5rem !important; }
@media (min-width: 640px) {
  .wa-float { bottom: 1.1rem !important; }
}
