:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --card: #121212;
  --card-soft: #171717;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --primary: #ffffff;
  --primary-strong: #ececec;
  --border: #2a2a2a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 70% -10%, #202020 0%, var(--bg) 60%);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-banner {
  background:
    radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.16), transparent 26%),
    linear-gradient(135deg, #14110a 0%, #070707 48%, #101010 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.promo-badge {
  background: linear-gradient(135deg, #d4af37 0%, #f4df8f 50%, #b8860b 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #090909;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.2);
}

.promo-text {
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 500;
  flex: 1;
  min-width: 200px;
  letter-spacing: 0.01em;
}

.promo-text strong {
  color: #f4df8f;
  font-weight: 800;
}

.promo-features {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-left: 12px;
  font-weight: 400;
}

.btn-promo {
  background: linear-gradient(135deg, #ffffff 0%, #f4df8f 100%);
  color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 10px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.28);
  transition: all 0.3s ease;
}

.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.promo-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 300;
}

.promo-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.promo-modal.is-hidden {
  display: none;
}

.promo-modal-card {
  position: relative;
  width: min(620px, 100%);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.24), transparent 34%),
    linear-gradient(145deg, #181818 0%, #070707 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.7), 0 0 70px rgba(212, 175, 55, 0.08);
  overflow: hidden;
}

.promo-modal-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.promo-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.35rem;
  cursor: pointer;
}

.promo-modal-kicker {
  margin: 0 0 14px;
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.promo-modal h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.promo-modal-text {
  max-width: 56ch;
  color: var(--muted);
  margin: 20px 0 0;
  font-size: 1.02rem;
}

.promo-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.promo-modal-grid span {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #f2f2f2;
  font-weight: 700;
  text-align: center;
}

.promo-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.brand-text small {
  color: #bfbfbf;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-content: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, #ffffff 0%, #f4f4f4 26%, #cfcfcf 58%, #8f8f8f 100%);
  color: #080808;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 11px;
}

.brand-mark::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 14px;
  background: rgba(255, 255, 255, 0.38);
  transform: rotate(-35deg);
  top: -6px;
  left: -18px;
}

.brand-orbit {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  transform: rotate(-22deg) scaleX(1.32);
}

.brand-letter {
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.08em;
}

.site-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

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

.nav-login {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  color: #ffffff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
}

.hero {
  padding: 92px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e2e2e2;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 8px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.14;
  margin: 0;
  max-width: 17ch;
  text-wrap: balance;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
  margin-top: 20px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(140deg, var(--primary), var(--primary-strong));
  color: #0a0a0a;
  border-color: #f5f5f5;
}

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

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
}

.badges {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badges li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.86rem;
}

.hero-card {
  background: linear-gradient(160deg, var(--card-soft), #0b0b0b);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.hero-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics div {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.hero-metrics strong {
  display: block;
  font-size: 1.1rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.trust-seals {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-seals p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #e3e3e3;
}

.hero-card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
}

.hero-card-footer a {
  color: #ffffff;
  text-decoration: none;
}

.section {
  padding: 78px 0;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.section-subtitle {
  color: var(--muted);
  margin-top: -4px;
  max-width: 70ch;
}

.plans {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.plan h3 {
  margin: 0;
}

.price {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 10px 0 16px;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.plan ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
}

.featured {
  outline: 2px solid rgba(255, 255, 255, 0.38);
  transform: scale(1.01);
}

.free-plan {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 34%),
    linear-gradient(160deg, #18150d, #0c0c0c);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.08), 0 14px 28px rgba(0, 0, 0, 0.28);
}

.free-plan .price {
  color: #f4df8f;
}

.ribbon {
  position: absolute;
  right: 14px;
  top: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.73rem;
  margin: 0;
}

.alt {
  background: rgba(255, 255, 255, 0.01);
}

.trust-band {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.015);
}

.trust-items {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.trust-items p {
  margin: 0;
  color: #d8d8d8;
  font-size: 0.9rem;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.checklist {
  color: var(--muted);
  padding-left: 18px;
}

.info-box {
  background: linear-gradient(160deg, #151515, #0a0a0a);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.timeline {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.timeline p {
  margin: 8px 0;
  color: var(--muted);
}

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

.payments article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.payments p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.process-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.process-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f0f0f0;
  font-weight: 700;
  font-size: 0.85rem;
}

.process-card h3 {
  margin: 12px 0 8px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.cta {
  padding-top: 50px;
}

.cta-box {
  background: linear-gradient(140deg, #161616, #0a0a0a);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

.contact-items {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-links {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #dddddd;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.legal-links a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.legal-page {
  background: radial-gradient(1000px 500px at 70% -10%, #202020 0%, var(--bg) 62%);
}

.legal-wrap {
  padding: 92px 0 54px;
}

.legal-card {
  max-width: 900px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 10px;
}

.legal-card h2 {
  margin-top: 22px;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 18px;
}

.legal-top-link {
  margin-top: 24px;
}

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(212, 175, 55, 0.14), transparent 30%),
    radial-gradient(1000px 500px at 80% -10%, #202020 0%, var(--bg) 62%);
}

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 0;
}

.auth-shell {
  width: min(1080px, 92%);
  position: relative;
}

.auth-exit {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 20;
  width: 46px;
  height: 46px;
  display: grid;
  place-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.65rem;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.auth-exit:hover {
  background: rgba(255, 255, 255, 0.15);
}

.auth-brand {
  display: inline-flex;
  margin-bottom: 26px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.auth-panel,
.auth-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.auth-panel {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-kicker {
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.auth-panel h1 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  letter-spacing: -0.06em;
}

.auth-panel p {
  color: var(--muted);
  max-width: 58ch;
}

.auth-points {
  margin: 22px 0 0;
  padding-left: 18px;
  color: #e6e6e6;
}

.auth-card {
  padding: 24px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  margin-bottom: 20px;
}

.auth-tab {
  border: 0;
  border-radius: 10px;
  padding: 12px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.is-active {
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  color: #0a0a0a;
}

.auth-form {
  display: none;
}

.auth-form.is-active {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #f2f2f2;
  font-weight: 700;
  font-size: 0.9rem;
}

.auth-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
}

.auth-feedback {
  display: none;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.auth-note {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
}

.auth-feedback.success {
  display: block;
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(134, 239, 172, 0.28);
}

.auth-feedback.error {
  display: block;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(252, 165, 165, 0.28);
}

.client-dashboard {
  display: grid;
  gap: 18px;
}

.client-hero-card,
.client-cards article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.client-hero-card {
  padding: 34px;
}

.client-hero-card h1 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: -0.06em;
}

.client-hero-card p {
  color: var(--muted);
}

.client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

.client-cards article {
  padding: 20px;
}

.client-cards span {
  display: block;
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-cards strong {
  display: block;
  margin-top: 10px;
  font-size: 1.25rem;
}

.client-cards p {
  color: var(--muted);
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .plans,
  .payments,
  .process-grid,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .nav {
    position: relative;
  }

  .menu-toggle {
    display: inline-grid;
    place-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, 92vw);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(14px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
  }

  .nav-login {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%) !important;
    color: #0a0a0a !important;
    border-color: rgba(255, 255, 255, 0.35);
  }

  .hero {
    padding-top: 48px;
  }

  .trust-items p {
    text-align: left;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-panel,
  .auth-card {
    padding: 24px;
  }

  .auth-panel h1 {
    max-width: 14ch;
  }

  .client-cards {
    grid-template-columns: 1fr;
  }
}

.user-menu {
  position: relative;
  display: none;
}

.user-menu.is-visible {
  display: block;
}

.user-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.09);
  color: #ffffff;
  padding: 6px 12px 6px 6px;
  font-weight: 800;
  cursor: pointer;
}

.user-avatar {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #f4df8f 100%);
  color: #080808;
  font-size: 0.78rem;
  font-weight: 900;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 210px;
  display: none;
  padding: 10px;
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
  z-index: 120;
}

.user-menu.is-open .user-dropdown {
  display: grid;
  gap: 6px;
}

.user-dropdown a,
.user-dropdown button {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  text-align: left;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .user-menu.is-visible {
    display: block;
  }

  .user-menu-button {
    width: 100%;
    justify-content: center;
  }

  .user-dropdown {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }
}
