:root {
  --bg: #020304;
  --surface: #0c0f12;
  --surface2: #141820;
  --text: #f2f5fa;
  --muted: #a4acb8;
  --accent: #ff7a00;
  --accent-dim: rgba(255, 122, 0, 0.12);
  --border: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(255, 122, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.site-shell {
  min-height: 100vh;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(2, 3, 5, 0.9) 0%, rgba(2, 3, 5, 0.74) 35%, rgba(2, 3, 5, 0.34) 56%, rgba(2, 3, 5, 0.14) 72%, rgba(2, 3, 5, 0.28) 100%),
    url("bg.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right top;
  background-size: auto, 1474px 979px;
}

.topbar {
  position: relative;
  z-index: 30;
  width: min(1440px, 100%);
  margin: 0 auto;
  min-height: 80px;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(255, 122, 0, 0.25));
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(1rem, 2.25vw, 2.35rem);
}

.nav-links a {
  text-decoration: none;
  color: #e8edf3;
  font-size: 0.98rem;
  font-weight: 600;
  opacity: 0.95;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  color: #fff;
  opacity: 1;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 16px;
  padding: 0.78rem 1.55rem;
  font-weight: 700;
  font-size: 1.43rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #ff8a19 0%, #ff6a00 84%);
  box-shadow: 0 14px 26px rgba(255, 106, 0, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 34px rgba(255, 106, 0, 0.33);
}

.btn-ghost {
  color: #f4f7fb;
  border-color: var(--border);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.btn-lg {
  min-width: 330px;
  padding: 1.05rem 1.6rem;
  font-size: 0.98rem;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f5f8ff;
  border-radius: 2px;
  margin: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  width: 100%;
  margin: 0.5rem auto 0;
  position: relative;
  overflow: visible;
  background: none;
}

.hero-grid {
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: minmax(360px, 640px) 1fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.4rem, 3vw, 2.3rem) clamp(0.2rem, 2vw, 1.1rem) clamp(1.5rem, 3vw, 2.1rem) clamp(1rem, 3.6vw, 2.9rem);
}

.pill {
  margin: 0;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 14, 0.55);
  border-radius: 999px;
  padding: 0.52rem 1rem;
  font-weight: 700;
  font-size: 1.3735vh;
  letter-spacing: -0.01em;
  color: #ff8d2c;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.13);
}

h1 {
  margin: 1.1rem 0 0;
  color: #f5f7fb;
  line-height: 0.93;
  font-size: clamp(2.613rem, 6.2645vw, 5.896rem);
  letter-spacing: -0.04em;
  font-weight: 800;
}

h1 span {
  color: var(--accent);
}

.subtitle {
  margin: 1.5rem 0 0;
  max-width: 640px;
  font-size: clamp(1.0854rem, 1.7755vw, 2.0301rem);
  line-height: 1.32;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.subtitle strong {
  color: var(--accent);
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-art {
  min-height: 100%;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.hiw {
  background: var(--bg);
  padding: 4.3rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hiw::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.hiw-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hiw h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-sub {
  margin: 0 auto 3.5rem;
  max-width: 520px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}

.hiw-cta {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

.hiw-img-wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hiw-img {
  width: 100%;
  max-width: 1450px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing {
  background: var(--surface);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.06) 0%, transparent 68%);
  pointer-events: none;
}

.pricing-inner {
  width: min(1300px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
  text-align: center;
}

.pricing h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
}

.pricing-card--popular {
  border-color: rgba(255,106,0,0.4);
  box-shadow: 0 0 0 1px rgba(255,106,0,0.15);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff8a19, #ff6a00);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1.1rem;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  z-index: 1;
}

.pc-header {
  margin: 1.3rem 1.1rem 0;
  padding: 1.1rem 1.2rem 1rem;
  border: 1px solid rgba(255,106,0,0.45);
  border-radius: 14px;
  text-align: center;
}

.pc-size-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.pc-size-value {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  padding: 0.9rem 1.1rem;
}

.pc-stat {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 11px;
  padding: 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pc-stat--highlight { border-color: rgba(255,106,0,0.55); }
.pc-stat--full { grid-column: 1 / -1; }

.pc-stat-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}

.pc-stat-icon svg { width: 100%; height: 100%; display: block; }

.pc-stat-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #5a5a5a;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.pc-stat-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.pc-rules {
  margin: 0 1.1rem;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}

.pc-rules-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.pc-rules-summary::-webkit-details-marker { display: none; }
.pc-rules-summary::marker { display: none; }

.pc-rules-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.pc-rules-shield { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

.pc-rules-chevron {
  width: 15px;
  height: 15px;
  color: var(--accent);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.pc-rules[open] .pc-rules-chevron { transform: rotate(180deg); }

.pc-rules-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pc-rule-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.2;
}

.pc-rule-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent); }
.pc-rule-icon svg { width: 100%; height: 100%; display: block; }
.pc-rule-name { color: var(--text); font-weight: 500; }
.pc-rule-val { color: #5a5a5a; font-weight: 400; }

.pc-footer {
  padding: 1rem 1.1rem 1.3rem;
  margin-top: auto;
}

.pc-price-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.pc-price-value {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pc-price-sub {
  font-size: 0.72rem;
  color: #5a5a5a;
  font-weight: 400;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}

.pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(90deg, #ff8a19, #ff5f00);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 10px;
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: 0 4px 20px rgba(255,106,0,0.35);
}

.pc-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.pc-cta-icon { display: flex; align-items: center; flex-shrink: 0; width: 16px; height: 16px; }
.pc-cta-icon svg { width: 100%; height: 100%; display: block; }

.pricing-note {
  margin: 2rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-note a { color: var(--accent); text-decoration: none; font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 0.45rem 1.3rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.pricing-tab:hover { border-color: var(--border-accent); color: var(--text); }
.pricing-tab.active { background: var(--accent-dim); border-color: var(--border-accent); color: var(--accent); }

.pricing-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 3rem 0;
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ─────────────────────────────────────────
   WHY FULLPORT FUNDED
───────────────────────────────────────── */
.why {
  background-color: var(--bg);
  padding: clamp(2.7rem, 9vw, 10.8rem);
  position: relative;
}

.why-inner { display: none; }

.why-frame-wrap { width: 100%; }

.why-frame-link {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  outline-offset: 4px;
}

.why-frame {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transition: box-shadow 240ms ease, border-color 240ms ease;
}

.why-frame-link:hover .why-frame {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7);
}

.why-img { width: 100%; height: auto; display: block; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testi {
  background-color: var(--surface);
  padding: clamp(2.7rem, 9vw, 10.8rem);
  position: relative;
}

.testi-inner { display: none; }

.testi-frame-wrap { width: 100%; }

.testi-frame-link {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  outline-offset: 4px;
}

.testi-frame {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transition: box-shadow 240ms ease, border-color 240ms ease;
}

.testi-frame-link:hover .testi-frame {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7);
}

.testi-img { width: 100%; height: auto; display: block; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section {
  background: var(--bg);
  padding: 6rem 0 7rem;
}

.faq-inner {
  width: min(800px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
  text-align: center;
}

.faq-section h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.faq-list {
  margin-top: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-item[open] { border-color: var(--border-accent); }

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  transition: background 200ms ease, border-color 200ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--accent-dim);
  border-color: var(--border-accent);
}

.faq-body { padding: 0 1.5rem 1.4rem; }

.faq-body p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--muted);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: #010203;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 6px rgba(255, 122, 0, 0.2));
}

.footer-tagline {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 300px;
}

.footer-socials { display: flex; gap: 0.6rem; }

.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-link:hover {
  border-color: var(--border-accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-group h4 {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-nav-group a {
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-nav-group a:hover { color: var(--text); }

.footer-disclaimer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-disclaimer-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-disclaimer-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-disclaimer-block p {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.65;
  color: rgba(164, 172, 184, 0.5);
}

.footer-bottom {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal {
  margin: 0;
  font-size: 0.77rem;
  line-height: 1.65;
  color: rgba(164, 172, 184, 0.55);
}

.footer-copy {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(164, 172, 184, 0.5);
}

.footer-copy a { color: var(--muted); text-decoration: none; }
.footer-copy a:hover { color: var(--text); }

/* ─────────────────────────────────────────
   MOBILE STICKY BAR (hidden on desktop)
───────────────────────────────────────── */
.mobile-sticky-bar {
  display: none;
}

/* ═════════════════════════════════════════
   MOBILE BREAKPOINTS
   (≤ 700px — switches to mobile layout)
═════════════════════════════════════════ */
@media (max-width: 700px) {

  body {
    -webkit-text-size-adjust: 100%;
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  /* Nav */
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    grid-template-columns: auto auto;
    gap: 1rem;
    min-height: 60px;
    background: rgba(2, 3, 4, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding-top: env(safe-area-inset-top, 0px);
    width: 100%;
    margin: 0;
  }

  .brand-logo { height: 34px; }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
  }

  .menu-toggle span { margin: 0; }

  .nav-links,
  .top-actions {
    display: none;
  }

  .topbar.menu-open {
    align-items: start;
    padding-bottom: 1rem;
  }

  .topbar.menu-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0.25rem;
    padding: 0.5rem 0;
    background: none;
    border: none;
  }

  .topbar.menu-open .nav-links a {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 0.6rem;
    font-size: 1rem;
    border-radius: 10px;
    transition: background 160ms ease;
  }

  .topbar.menu-open .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .topbar.menu-open .top-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }

  .topbar.menu-open .top-actions .btn {
    width: 100%;
    height: 48px;
    font-size: 0.95rem;
    padding: 0;
    border-radius: 12px;
  }

  /* Site shell — push content below fixed nav */
  .site-shell {
    padding-top: 60px;
    min-height: 100svh;
    background-image:
      linear-gradient(180deg, rgba(2, 3, 5, 0.97) 0%, rgba(2, 3, 5, 0.80) 45%, rgba(2, 3, 5, 0.70) 100%),
      url("bg.webp");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, center center;
    background-size: auto, cover;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 60px);
    align-items: center;
  }

  .hero-copy {
    padding: 2rem 1.3rem 2.5rem;
  }

  .hero-art { display: none; }

  h1 {
    font-size: clamp(3rem, 13.5vw, 4.5rem);
    margin-top: 1rem;
  }

  .pill {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .subtitle {
    font-size: 1rem;
    margin-top: 1.1rem;
  }

  /* CTA buttons stacked full-width */
  .cta-row {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.6rem;
  }

  .btn-lg {
    min-width: 100%;
    height: 54px;
    padding: 0 1.2rem;
    font-size: 1rem;
    border-radius: 14px;
  }

  /* Sections */
  .hiw { padding: 3rem 0 2.5rem; }
  .hiw::before { width: 280px; height: 280px; top: -60px; }

  .hiw-inner { padding: 0 1.1rem; }
  .hiw h2, .faq-section h2 { font-size: 1.85rem; }
  .section-sub { margin-bottom: 1.8rem; font-size: 0.93rem; }
  .hiw-img-wrap { margin-top: 1.5rem; }
  .hiw-img { border-radius: 14px; }
  .hiw-cta { margin-top: 1.5rem; }
  .hiw-cta .btn-lg { min-width: 100%; height: 54px; font-size: 1rem; border-radius: 14px; }

  .pricing { padding: 3rem 0 2.5rem; }
  .pricing-inner { padding: 0 1.1rem; }
  .pricing h2 { font-size: 1.85rem; }
  .pricing-grid { grid-template-columns: 1fr !important; padding: 0; }
  .pricing-tabs { padding: 0; }

  .why { padding: 1.5rem 0; }
  .why-frame-wrap, .testi-frame-wrap { padding: 0; }
  .why-frame, .testi-frame { border-radius: 0; border-left: none; border-right: none; }

  .testi { padding: 1.5rem 0; }

  .faq-section { padding: 3rem 0 2.5rem; }
  .faq-inner { padding: 0 1.1rem; }
  .faq-item summary { padding: 1rem 1.1rem; min-height: 54px; }
  .faq-body { padding: 0 1.1rem 1.1rem; }

  /* Footer */
  .site-footer { padding: 2.5rem 0 1.5rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-disclaimer {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Mobile sticky CTA bar */
  .mobile-sticky-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    padding: 0.75rem 1.1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(4, 5, 7, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-sticky-bar.visible { transform: translateY(0); }

  .mobile-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(120deg, #ff8a19 0%, #ff6a00 84%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 28px rgba(255, 106, 0, 0.35);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-sticky-cta:active { opacity: 0.88; }
}

@media (max-width: 560px) {
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}
