/* RocketVPN dark theme — inspired by ru.rvpn.space dark_star.
   Lives at /css/rvpn-dark.css. Stand-alone; does not depend on
   bootstrap.css (the new templates skip bootstrap entirely). */

/* ----- Inter via Google Fonts (could later switch to self-hosted) ----- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* ----- Design tokens ----- */
:root {
  /* Backgrounds (deepest -> elevated) */
  --bg-deep: #02031C;
  --bg-page: #0F0B22;
  --bg-section: #14142B;
  --bg-card: #1C1641;
  --bg-card-hover: #261E4E;

  /* Brand violet */
  --accent: #6239EC;
  --accent-bright: #835FFD;
  --accent-deep: #332170;
  --magenta: #8c36a4;

  /* Text */
  --text: #ffffff;
  --text-2: #a0a0c7;
  --text-muted: #8C8CAE;

  /* Status */
  --danger: #FF1D38;
  --success: #2ecc71;

  /* Borders / overlays */
  --border: rgba(140, 140, 174, 0.15);
  --border-strong: rgba(140, 140, 174, 0.3);
  --overlay: rgba(255, 255, 255, 0.04);

  /* Layout */
  --radius: 8px;
  --radius-lg: 14px;
  --gutter: 24px;
  --container: 1200px;
  --shadow-card: 0 8px 32px rgba(2, 3, 28, 0.45);
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-page) 40%, var(--bg-section) 100%);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--accent-bright); text-decoration: none; transition: color .15s; }
a:hover { color: #b8a4ff; }

h1, h2, h3, h4 { color: var(--text); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--text-2); }

/* ----- Container ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----- Header (top-bar + main nav) ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2, 3, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

/* Top bar: brand left, flags + auth right */
.site-header .top-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.site-header .brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.site-header .brand img { height: 38px; width: auto; display: block;
  filter: brightness(0) invert(1); /* white logo on dark */
}
.site-header .brand .slogan {
  display: none;
  color: var(--text-2); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .12em;
}
@media (min-width: 992px) {
  .site-header .brand .slogan { display: inline; }
}

.site-header .top-right { display: flex; align-items: center; gap: 18px; }

/* Flags */
.site-header .flagi {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 6px; align-items: center;
}
.site-header .flagi li { display: inline-flex; }
.site-header .flagi a {
  display: inline-block; line-height: 0;
  border: 1px solid transparent; border-radius: 3px;
  padding: 2px; transition: border-color .15s, transform .1s;
}
.site-header .flagi a img { width: 26px; height: 17px; display: block;
  border-radius: 2px; }
.site-header .flagi a:hover { border-color: var(--accent-bright); }
.site-header .flagi a.active { border-color: var(--accent-bright); }

/* Auth buttons (Sign up / Sign in) */
.site-header .auth { display: inline-flex; gap: 8px; }
.site-header .auth a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 6px;
  font-size: .9rem; font-weight: 600;
  text-decoration: none; transition: background .15s, color .15s;
}
.site-header .auth a svg { width: 16px; height: 16px; }
.site-header .auth .btn-register {
  background: var(--accent); color: #fff;
  border: 1px solid var(--accent);
}
.site-header .auth .btn-register:hover { background: var(--accent-bright); border-color: var(--accent-bright); }
.site-header .auth .btn-login {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong);
}
.site-header .auth .btn-login:hover { border-color: var(--accent-bright); color: var(--accent-bright); }

/* Main nav row (below top-bar) */
.site-header .nav-row {
  border-top: 1px solid var(--border);
  background: rgba(15, 11, 34, 0.6);
}
.site-header .main-nav {
  display: flex; align-items: stretch;
  list-style: none; padding: 0; margin: 0;
}
.site-header .main-nav > li {
  position: relative;
}
.site-header .main-nav > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 16px 18px;
  color: var(--text-2);
  text-decoration: none; font-size: .92rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em;
  transition: color .15s, background .15s;
  border-bottom: 2px solid transparent;
}
.site-header .main-nav > li > a:hover,
.site-header .main-nav > li.current > a {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-bottom-color: var(--accent-bright);
}
.site-header .main-nav > li > a.icon-home svg { width: 18px; height: 18px; }
.site-header .main-nav > li > a.has-dropdown::after {
  content: ""; display: inline-block;
  width: 0; height: 0; margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .6;
}

/* Dropdowns
   - The sub-menu sits flush against the parent (top: 100%) and uses an
     8px transparent top padding as a "bridge" so the mouse can cross
     the gap between parent <a> and first item without closing the menu.
   - 200ms close delay (transition-delay only when leaving) gives the
     user a grace window if they accidentally drift off the menu.
   - Higher opacity background + brighter border + violet top-edge glow
     so the menu is clearly distinguishable from the page underneath. */
/* The sub-menu is hidden via display:none (not visibility), so it
   doesn't intercept mouse events in the boundary pixels between
   parent and dropdown. JS toggles .is-open which flips display. */
.site-header .main-nav .sub-menu {
  display: none;
  position: absolute; top: 100%; left: 0; min-width: 260px;
  list-style: none; margin: 0; padding: 10px 0;
  background: #1C1641;
  border: 1px solid rgba(131, 95, 253, 0.45);
  border-top: 2px solid var(--accent-bright);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow:
    0 16px 48px rgba(2, 3, 28, 0.85),
    0 0 24px rgba(131, 95, 253, 0.25);
  z-index: 250;
}
.site-header .main-nav > li.is-open > .sub-menu {
  display: block;
  animation: dropdown-fade .12s ease-out;
}
@keyframes dropdown-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Bridge: invisible padding stretches the hoverable area down so the
   mouse can travel from <a> into the menu without leaving the hover.
   .has-children class is added by both the HTML and the JS for browsers
   that don't support :has(). */
.site-header .main-nav > li.has-children > a,
.site-header .main-nav > li:has(> .sub-menu) > a {
  padding-bottom: 18px;
}
.site-header .main-nav .sub-menu::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: -10px; height: 12px;
  /* Visible-area extension so mouse moving from parent <a> into the
     dropdown doesn't pass over a "no-hover" gap. */
  pointer-events: auto;
}
.site-header .main-nav .sub-menu a {
  display: block; padding: 10px 18px;
  color: var(--text-2); text-decoration: none;
  font-size: .9rem; font-weight: 500;
  transition: color .15s, background .15s, padding-left .15s;
  border-left: 3px solid transparent;
}
.site-header .main-nav .sub-menu a:hover {
  color: var(--text);
  background: rgba(131, 95, 253, 0.18);
  border-left-color: var(--accent-bright);
  padding-left: 22px;
}

/* Mobile: collapse main-nav to a hamburger */
.site-header .nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 7px 11px; border-radius: 6px;
  cursor: pointer; font-size: 1.1rem;
}
@media (max-width: 900px) {
  .site-header .top-bar { gap: 12px; flex-wrap: wrap; }
  .site-header .nav-toggle { display: inline-block; }
  .site-header .main-nav { display: none; flex-direction: column; }
  .site-header .nav-row.open .main-nav { display: flex; }
  .site-header .main-nav > li > a { padding: 14px 18px; border-bottom: 1px solid var(--border); }
  .site-header .main-nav .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,0.02); border: none; border-radius: 0;
    box-shadow: none; padding-left: 12px;
  }
}
@media (max-width: 600px) {
  .site-header .auth a { padding: 8px 12px; font-size: .85rem; }
  .site-header .auth a span { display: none; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8em 1.6em; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background .15s, transform .05s, box-shadow .15s;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(98, 57, 236, 0.4);
}
.btn-primary:hover { background: var(--accent-bright); color: #fff; }
.btn-primary:active { transform: translateY(1px); }
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--overlay); border-color: var(--accent-bright); color: var(--text); }
.btn-lg { padding: 1em 2em; font-size: 1.05rem; }

/* ----- Hero ----- */
.hero {
  text-align: center;
  padding: 96px 0 80px;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(98, 57, 236, 0.25), transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 60%, rgba(140, 54, 164, 0.18), transparent 70%);
}
.hero > * { position: relative; }
.hero h1 { margin-bottom: .5em; }
.hero .lede { font-size: 1.15rem; color: var(--text-2); max-width: 680px; margin: 0 auto 2em; }
.hero .actions { display: inline-flex; gap: 1em; flex-wrap: wrap; justify-content: center; }

/* ----- Feature grid ----- */
.features {
  padding: 64px 0;
}
.features .section-title { text-align: center; margin-bottom: 3rem; }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter);
  justify-content: center;
}
.feature-grid .feature-card {
  flex: 1 1 260px;
  max-width: 320px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s, background .2s;
}
.feature-card:hover {
  border-color: var(--accent-bright);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.feature-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--magenta));
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.4rem;
}
.feature-card h3 { color: var(--text); margin-bottom: .5em; }
.feature-card p { margin: 0; font-size: .95rem; }

/* ----- Pricing ----- */
.pricing { padding: 64px 0; }
.pricing .section-title { text-align: center; margin-bottom: 3rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gutter);
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color .2s, transform .2s;
  /* Flex column so the CTA button can stick to the bottom regardless
     of feature-list length across cards. */
  display: flex;
  flex-direction: column;
}
.price-card > .btn { margin-top: auto; }
.price-card.popular {
  border-color: var(--accent-bright);
  background: linear-gradient(180deg, var(--bg-card-hover), var(--bg-card));
}
.price-card.popular::before {
  content: attr(data-popular); position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-bright); color: #fff;
  padding: .25em .9em; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
  white-space: nowrap;
}
.price-card .tier-name { color: var(--text-2); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 600; }
.price-card .price { font-size: 2.4rem; font-weight: 800; margin: .35em 0 .15em; }
.price-card .price .currency { font-size: 1.2rem; font-weight: 500; vertical-align: top; }
.price-card .period { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.2em; }
.price-card .discount {
  display: inline-block;
  background: rgba(131, 95, 253, 0.12);
  color: var(--text-2);
  border: 1px solid rgba(131, 95, 253, 0.35);
  padding: .15em .7em; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1em;
}
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.5em; text-align: left; }
.price-card ul li { padding: .4em 0; color: var(--text-2); font-size: .92rem;
  border-bottom: 1px solid var(--border); }
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before { content: "✓"; color: var(--accent-bright); font-weight: 700; margin-right: .5em; }
.price-card .btn { width: 100%; }

/* ----- Footer (ported 1:1 from ru.rvpn.space dark_star) ----- */
.site-footer { display: block; }
.site-footer .footer {
  background: #14142B;
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
  margin-top: 64px;
}
.site-footer .text-wrapper {
  max-width: 1182px;
  width: 100%;
  padding: 0 var(--gutter);
}
.site-footer .foter-net {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  align-items: start;
  margin-top: 36px;
  margin-bottom: 32px;
}
.site-footer .footer-links-block { width: 550px; max-width: 100%; border: none; }
.site-footer .footer-links-block p._p01 {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #8C8CAE;
  margin: 0;
}
.site-footer .footer-links-block .links {
  margin-top: 19px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.site-footer .footer-links-block .links a {
  display: inline-block;
  position: relative;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #8C8CAE;
  text-decoration: none;
}
.site-footer .footer-links-block .links a:hover { text-decoration: underline; color: #a5a5cd; }
.site-footer .footer-links-block .links .email-block { position: relative; padding-left: 27px; }
.site-footer .footer-links-block .links .email-block:before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 16px; height: 12px; margin-top: -6px;
  background: url('/images/dark/i03.svg') 50% 50% no-repeat;
}
.site-footer .footer-links-block .links .chats-block { position: relative; padding-left: 27px; }
.site-footer .footer-links-block .links .chats-block:before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 18px; height: 16px; margin-top: -8px;
  background: url('/images/dark/i04.svg') 50% 50% no-repeat;
}
.site-footer .footer-links-block .links .chats-block a:nth-child(2) { position: relative; margin-left: 23px; }
.site-footer .footer-links-block .links .chats-block a:nth-child(2):before {
  content: ""; position: absolute; left: -12px; top: 50%;
  width: 1px; height: 12px; margin-top: -6px;
  background: #8C8CAE;
}
.site-footer .footer-links-block .links .wchat-block { position: relative; padding-left: 27px; }
.site-footer .footer-links-block .links .wchat-block:before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 16px; height: 14px; margin-top: -7px;
  background: url('/images/dark/i05.svg') 50% 50% no-repeat;
}
.site-footer .footer-links-block .icons {
  margin-top: 20px;
  width: 360px; max-width: 100%; height: 36px;
  background: url('/images/dark/i06_2.svg') 50% 50% no-repeat;
  background-size: 100% auto;
}
.site-footer .footer-reg-form-block {
  margin-left: auto;
  width: 575px; max-width: 100%;
  padding: 0 0 16px 9px;
}
.site-footer .footer-reg-form-block .std-home-link {
  display: block; width: 131px; height: 46px;
  background: url('/images/dark/home-link.svg') 50% 50% no-repeat;
  opacity: 0.9; transition: opacity 0.3s;
  text-decoration: none;
}
.site-footer .footer-reg-form-block .std-home-link:hover { opacity: 1; }
.site-footer .footer-reg-form-block p._p01 {
  margin: 16px 0 0; font-family: 'Inter'; font-weight: 400;
  font-size: 18px; line-height: 24px; color: #8C8CAE;
}
.site-footer .footer-reg-form-block p._p02 {
  margin-top: 16px; font-family: 'Inter';
  font-weight: 400; font-size: 12px; line-height: 15px;
  color: #8C8CAE; opacity: 0.5;
}
.site-footer .footer-reg-form-block p._p02 a {
  color: #8C8CAE; transition: color 0.3s; text-decoration: none;
}
.site-footer .footer-reg-form-block p._p02 a:hover { color: #aaaac3; }
/* Footer registration form — input + slanted-left submit (matches ru.rvpn.space) */
.site-footer .footer-reg-form {
  margin-top: 24px;
  display: flex; align-items: stretch; gap: 0;
  border: 1px solid rgba(140, 140, 174, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 4px 4px 4px 0;
  position: relative;
}
.site-footer .footer-reg-form .frf-input {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px 0 18px;
}
.site-footer .footer-reg-form .frf-icon {
  width: 18px; height: 18px;
  color: rgba(140, 140, 174, 0.75);
  flex-shrink: 0;
}
.site-footer .footer-reg-form input[type="email"],
.site-footer .footer-reg-form input[type="text"] {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  padding: 16px 0;
  color: #fff;
  font-family: 'Inter', sans-serif; font-size: 15px;
}
.site-footer .footer-reg-form input::placeholder {
  color: rgba(140, 140, 174, 0.75);
}
.site-footer .footer-reg-form .frf-submit {
  background: var(--accent);
  color: #fff;
  border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  padding: 0 28px 0 36px;
  height: 52px;
  /* Diagonal left edge — slanted in by ~22px */
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 10px;
  margin-left: -10px;
  transition: background .15s, filter .15s;
  white-space: nowrap;
}
.site-footer .footer-reg-form .frf-submit:hover {
  background: var(--accent-bright);
  filter: drop-shadow(0 0 12px rgba(131, 95, 253, 0.55));
}
@media (max-width: 600px) {
  .site-footer .footer-reg-form { flex-direction: column; padding: 0; border: none; }
  .site-footer .footer-reg-form .frf-input {
    padding: 0 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(140,140,174,0.25);
    border-radius: 10px;
    margin-bottom: 8px;
  }
  .site-footer .footer-reg-form .frf-submit {
    clip-path: none; border-radius: 10px;
    margin-left: 0; width: 100%;
  }
}

.site-footer .footer-main-menu {
  display: flex; gap: 20px; margin-top: 53px; border: none;
  flex-wrap: wrap;
}
.site-footer .footer-main-menu a {
  font-family: 'Inter'; font-weight: 400; font-size: 16px; line-height: 19px;
  color: #8C8CAE; text-decoration: none;
}
.site-footer .footer-main-menu a:hover { text-decoration: underline; }
.site-footer .footer-main-menu a:active { color: #aaaac3; }

.site-footer .footer-lg {
  position: relative; display: flex; gap: 20px;
  margin-top: 53px; margin-left: auto; border: none;
}
.site-footer .footer-lg:before {
  position: absolute; content: ""; top: 50%; left: -20px;
  width: 1px; height: 20px; margin-top: -10px;
  background: rgba(140, 140, 174, 0.2);
}
.site-footer .footer-lg a {
  font-family: 'Inter'; font-weight: 400; font-size: 16px; line-height: 19px;
  color: #8C8CAE; text-decoration: none;
}
.site-footer .footer-lg a:hover { text-decoration: underline; }
.site-footer .footer-lg a.active { color: #fff; }

.site-footer .footer-hr {
  margin-top: 54px; width: 100%; border: none;
  height: 1px; background: #8C8CAE; opacity: 0.2;
}
.site-footer .footer-rights {
  border: none; margin-top: 24px;
  font-family: 'Inter'; font-weight: 400; font-size: 12px; line-height: 15px;
  color: #8C8CAE;
}
.site-footer .footer-second-menu {
  display: flex; margin-top: 24px; margin-left: auto; border: none;
  gap: 13px 16px;
}
.site-footer .footer-second-menu a {
  font-family: 'Inter'; font-weight: 400; font-size: 12px; line-height: 19px;
  color: #8C8CAE; text-decoration: none;
}
.site-footer .footer-second-menu a:hover { text-decoration: underline; }
.site-footer .footer-second-menu a:active { color: #aaaac3; }

@media (max-width: 1199px) {
  .site-footer .footer-reg-form-block .std-home-link {
    background: url('/images/dark/home-link-small.svg') 50% 50% no-repeat;
  }
}
@media (max-width: 991px) {
  .site-footer .foter-net { flex-direction: column; }
  .site-footer .footer-links-block,
  .site-footer .footer-reg-form-block { width: 100%; margin-left: 0; padding-left: 0; }
  .site-footer .footer-reg-form-block { margin-top: 32px; }
  .site-footer .footer-main-menu { margin-top: 38px; }
  .site-footer .footer-lg { margin-top: 19px; margin-left: 0; }
  .site-footer .footer-lg:before { display: none; }
  .site-footer .footer-second-menu { margin-left: 0; align-self: start; flex-direction: column; }
  .site-footer .footer-rights { align-self: start; }
}
@media (max-width: 600px) {
  .site-footer .footer-land-reg-form .form-fields-cont { flex-direction: column; padding: 0; background: transparent; }
  .site-footer .footer-land-reg-form input[type="text"] {
    background: rgba(255,255,255,0.05); border-radius: 8px; margin-bottom: 8px;
  }
  .site-footer .footer-land-reg-form button[type="submit"] { width: 100%; }
}

/* ----- Mobile nav (simple toggle) ----- */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: var(--bg-section);
    padding: 1.5em var(--gutter); border-bottom: 1px solid var(--border);
    gap: 1em; }
  .nav-toggle { display: inline-block; background: none; border: 1px solid var(--border-strong);
    color: var(--text); padding: .4em .7em; border-radius: 6px; cursor: pointer; }
}
.nav-toggle { display: none; background: none; border: none; color: inherit; }

/* ----- Section helper ----- */
.section-eyebrow { color: var(--accent-bright); text-transform: uppercase; letter-spacing: .12em;
  font-size: .8rem; font-weight: 600; margin-bottom: .5em; display: block; }

/* ----- Utility ----- */
.text-center { text-align: center; }
