:root {
  --bg: #08090c;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.105);
  --text: #f7f7f8;
  --muted: #a2a5ad;
  --muted-2: #71757f;
  --gold: #f8d77b;
  --gold-2: #fbbf24;
  --cyan: #8ee9ff;
  --green: #8ef6bd;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 40px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-padding {
  padding: 92px 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(84px);
  opacity: 0.9;
}

.glow-one {
  width: 560px;
  height: 560px;
  left: -260px;
  top: -260px;
  background: rgba(251, 191, 36, 0.12);
}

.glow-two {
  width: 500px;
  height: 500px;
  right: -180px;
  top: 180px;
  background: rgba(14, 165, 233, 0.12);
}

.glow-three {
  width: 620px;
  height: 620px;
  left: 38%;
  bottom: -360px;
  background: rgba(168, 85, 247, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.76);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark,
.footer-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  color: #111111;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.22);
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted-2);
  font-size: 12px;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a,
.site-footer a {
  transition: color 0.25s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: #111111;
  background: linear-gradient(90deg, #fcd34d, #fef3c7, #f59e0b);
  box-shadow: 0 0 36px rgba(251, 191, 36, 0.23);
}

.btn-primary:hover {
  box-shadow: 0 0 52px rgba(251, 191, 36, 0.36);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: rgba(253, 230, 138, 0.45);
  background: rgba(255, 255, 255, 0.072);
}

.small-btn {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 13px;
}

.hero {
  padding-top: 112px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 10px 15px;
  border: 1px solid rgba(248, 215, 123, 0.22);
  border-radius: 999px;
  color: #fff4c7;
  background: rgba(248, 215, 123, 0.065);
  font-size: 14px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(48px, 7.1vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.hero-text {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 650px;
  margin-top: 48px;
}

.stat-card {
  min-height: 110px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.stat-card strong {
  display: block;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.hero-preview {
  position: relative;
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: 48px 0 -36px 0;
  border-radius: var(--radius-xl);
  background: rgba(251, 191, 36, 0.12);
  filter: blur(62px);
}

.preview-shell {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  background: rgba(17, 19, 25, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.preview-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #0b0d12;
}

.preview-header,
.card-top,
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-header strong,
.preview-header small {
  display: block;
}

.preview-header strong {
  font-size: 14px;
}

.preview-header small {
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(52, 211, 153, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.product-card {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
}

.product-image {
  aspect-ratio: 4 / 3;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #27272a, #101014 55%, #050506);
}

.product-image span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.28), transparent 38%), linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
}

.product-kicker,
.plugin-category,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(248, 215, 123, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.product-kicker {
  margin-top: 20px;
  color: var(--muted-2);
}

.product-card h2 {
  margin-top: 8px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.product-card > p:last-of-type {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.trust-item {
  display: flex;
  gap: 13px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(0, 0, 0, 0.2);
}

.icon-box,
.plugin-icon,
.principle-icon,
.doc-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--gold);
  background: rgba(248, 215, 123, 0.1);
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item small {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.5;
}

.section-head {
  margin-bottom: 42px;
}

.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-head h2 {
  max-width: 720px;
  margin-top: 16px;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.split-head > p,
.compact-head > p,
.doc-card p,
.cta-box p,
.principle-item p,
.plugin-description {
  color: var(--muted);
  line-height: 1.72;
}

.split-head > p {
  max-width: 430px;
  font-size: 14px;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plugin-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
}

.plugin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.11), transparent 52%, rgba(103, 232, 249, 0.075));
}

.plugin-card:hover::before {
  opacity: 1;
}

.plugin-card > * {
  position: relative;
  z-index: 1;
}

.card-status {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d1d5db;
  background: rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 700;
}

.plugin-category {
  margin-top: 30px;
}

.plugin-card h3 {
  margin-top: 12px;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.plugin-description {
  min-height: 122px;
  margin-top: 16px;
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-row span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}

.card-bottom {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.card-bottom small,
.card-bottom strong {
  display: block;
}

.card-bottom small {
  color: var(--muted-2);
  font-size: 12px;
}

.card-bottom strong {
  margin-top: 3px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.philosophy-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.035);
}

.compact-head {
  margin-bottom: 0;
}

.compact-head > p {
  margin-top: 20px;
}

.principle-list {
  display: grid;
  gap: 15px;
}

.principle-item {
  display: flex;
  gap: 17px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.18);
}

.principle-item h3 {
  font-size: 17px;
}

.principle-item p {
  margin-top: 5px;
  font-size: 14px;
}

.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.doc-card {
  min-height: 380px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.gold-card {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(255, 255, 255, 0.035));
}

.blue-icon {
  color: var(--cyan);
  background: rgba(103, 232, 249, 0.1);
}

.doc-card h2 {
  margin-top: 24px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.doc-card p {
  margin-top: 18px;
  margin-bottom: 28px;
  font-size: 14px;
}

.final-cta {
  padding-top: 30px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 46px;
  border: 1px solid rgba(248, 215, 123, 0.22);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 20% 10%, rgba(251, 191, 36, 0.18), transparent 34%), linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
}

.cta-box h2 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.cta-box p {
  max-width: 650px;
  margin-top: 20px;
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  color: var(--muted-2);
  font-size: 14px;
}

.footer-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.reveal {
  animation: fadeUp 0.72s ease both;
}

.reveal-delay {
  animation-delay: 0.16s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .philosophy-box,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .split-head {
    display: block;
  }

  .split-head > p {
    margin-top: 18px;
  }

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

  .plugin-card {
    min-height: auto;
  }

  .plugin-description {
    min-height: auto;
  }

  .header-btn {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-padding {
    padding: 64px 0;
  }

  .hero {
    padding-top: 74px;
  }

  .header-inner {
    min-height: 74px;
  }

  .main-nav {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 15px;
  }

  .brand strong {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .card-bottom,
  .footer-inner,
  .site-footer nav {
    align-items: stretch;
  }

  .hero-actions,
  .footer-inner,
  .site-footer nav {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .preview-shell,
  .preview-panel,
  .product-card,
  .philosophy-box,
  .doc-card,
  .cta-box,
  .plugin-card {
    border-radius: 26px;
  }

  .preview-shell,
  .preview-panel,
  .product-card {
    padding: 14px;
  }

  .philosophy-box,
  .doc-card,
  .cta-box,
  .plugin-card {
    padding: 24px;
  }

  .principle-item {
    flex-direction: column;
  }

  .site-footer nav {
    gap: 12px;
  }
}

@media (max-width: 440px) {
  .eyebrow {
    align-items: flex-start;
    border-radius: 20px;
  }

  .preview-header,
  .card-top,
  .card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Inner pages: Login + Support */
.main-nav a.active {
  color: var(--text);
}

.page-hero {
  padding-top: 112px;
}

.compact-page-hero {
  padding-bottom: 74px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 64px;
  align-items: center;
}

.login-hero-grid {
  grid-template-columns: 0.95fr 0.8fr;
}

.page-copy h1 {
  margin-top: 18px;
  max-width: 780px;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.page-copy > p:not(.section-label) {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.page-badges span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
}

.login-card,
.support-summary,
.ticket-panel,
.support-note-card,
.portal-card,
.resource-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.login-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.login-card::before,
.support-summary::before,
.ticket-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 0%, rgba(251, 191, 36, 0.14), transparent 36%), linear-gradient(135deg, rgba(255,255,255,0.06), transparent 55%);
}

.login-card > *,
.support-summary > *,
.ticket-panel > * {
  position: relative;
  z-index: 1;
}

.login-card-head {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 28px;
}

.login-card-head h2,
.ticket-panel h2 {
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.login-card-head p,
.ticket-panel > p,
.support-note-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.mock-form {
  display: grid;
  gap: 16px;
}

.mock-form label {
  display: grid;
  gap: 8px;
  color: #d5d7dc;
  font-size: 13px;
  font-weight: 700;
}

.mock-form input,
.mock-form select,
.mock-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 15px;
  color: var(--text);
  outline: none;
  background: rgba(0, 0, 0, 0.22);
  font: inherit;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.mock-form textarea {
  resize: vertical;
  min-height: 132px;
}

.mock-form input:focus,
.mock-form select:focus,
.mock-form textarea:focus {
  border-color: rgba(248, 215, 123, 0.52);
  background: rgba(0, 0, 0, 0.32);
}

.form-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.checkbox-line {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px !important;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.checkbox-line input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-2);
}

.form-row-between a {
  color: var(--gold);
  font-weight: 700;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.login-divider {
  position: relative;
  margin: 28px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.login-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}

.login-divider span {
  position: relative;
  padding: 0 12px;
  background: #0d0f14;
}

.portal-preview-section {
  padding-top: 18px;
}

.portal-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portal-card,
.resource-card {
  border-radius: 28px;
  padding: 26px;
}

.portal-card h3,
.resource-card h3,
.support-note-card h3 {
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.portal-card p,
.resource-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.support-summary {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.support-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.support-metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.2);
}

.support-metrics strong,
.support-metrics span {
  display: block;
}

.support-metrics strong {
  font-size: 26px;
  letter-spacing: -0.04em;
}

.support-metrics span {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}

.support-checklist {
  margin-top: 18px;
}

.resource-grid {
  grid-template-columns: repeat(4, 1fr);
}

.resource-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 20px;
  align-items: start;
}

.ticket-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 40px;
}

.ticket-panel h2 {
  max-width: 620px;
  margin-top: 14px;
}

.ticket-panel > p:not(.section-label) {
  max-width: 690px;
  margin-top: 16px;
  margin-bottom: 28px;
}

.form-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-note-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.support-note-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.support-note-card li {
  position: relative;
  padding-left: 24px;
}

.support-note-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .page-hero-grid,
  .login-hero-grid,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .portal-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding-top: 74px;
  }

  .page-copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .login-card,
  .support-summary,
  .ticket-panel,
  .support-note-card,
  .portal-card,
  .resource-card {
    border-radius: 26px;
    padding: 24px;
  }

  .portal-grid,
  .resource-grid,
  .form-two-cols,
  .support-metrics {
    grid-template-columns: 1fr;
  }

  .form-row-between {
    align-items: flex-start;
  }

  .form-row-between {
    flex-direction: column;
  }
}

/* WordPress integration */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

body.page-template-default .entry-content,
body.single .entry-content {
  color: var(--muted);
}

.current-menu-item > a,
.current_page_item > a,
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
  color: var(--text);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.support-notice,
.login-notice {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.support-notice.success,
.login-notice.success {
  border-color: rgba(52, 211, 153, 0.28);
  background: rgba(52, 211, 153, 0.08);
  color: #bff7d7;
}

.support-notice.error,
.login-notice.error {
  border-color: rgba(248, 113, 113, 0.28);
  background: rgba(248, 113, 113, 0.08);
  color: #fecaca;
}

.wp-content-section {
  padding: 80px 0;
}

.wp-content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 42px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.wp-content-card h1,
.wp-content-card h2,
.wp-content-card h3 {
  color: var(--text);
}

.wp-content-card a {
  color: var(--gold);
  font-weight: 700;
}

.login-card .logged-in-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.main-nav li,
.site-footer nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li a,
.site-footer nav li a {
  display: inline-flex;
}

/* Verified customer support gates */
.muted-pill {
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-gate-section,
.verified-strip-section {
  padding-top: 26px;
}

.gate-card-wrap {
  display: grid;
  place-items: center;
}

.gate-card {
  width: min(100%, 760px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at 20% 10%, rgba(248, 215, 123, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.gate-card .doc-icon {
  margin-bottom: 22px;
}

.gate-card h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.045em;
}

.gate-card p:not(.section-label) {
  max-width: 610px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

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

.verify-layout {
  align-items: stretch;
}

.inline-help-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 700;
}

.verified-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 28px;
  padding: 18px;
  background: rgba(52, 211, 153, 0.07);
}

.verified-strip strong,
.verified-strip small {
  display: block;
}

.verified-strip strong {
  color: var(--text);
  font-size: 15px;
}

.verified-strip small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.6;
}

/* VelumaDev brand assets and plugin pages */
.brand-with-logo {
  min-width: 228px;
}

.brand-logo-img {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.custom-brand-logo-img {
  max-height: 58px;
  width: auto;
}

.footer-mark-img {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.18);
}

.plugin-icon img,
.doc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plugin-library-panel,
.plugin-detail-preview,
.overview-content-card,
.archive-card-visual,
.screenshot-card,
.feature-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.plugin-library-panel {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.plugin-library-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(248, 215, 123, 0.14);
  filter: blur(58px);
}

.panel-mark {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
}

.plugin-library-panel h2 {
  position: relative;
  max-width: 460px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.plugin-library-panel p {
  position: relative;
  max-width: 470px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.mini-metrics {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-metrics span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.plugin-archive-grid {
  align-items: stretch;
}

.archive-product-card {
  display: flex;
  flex-direction: column;
}

.archive-card-visual {
  display: block;
  margin: -6px -6px 22px;
  border-radius: 28px;
  overflow: hidden;
}

.archive-card-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.plugin-detail-hero {
  padding-top: 100px;
}

.plugin-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.back-link:hover {
  color: var(--gold);
}

.plugin-detail-copy h1 {
  font-size: clamp(48px, 6.3vw, 74px);
}

.plugin-badges {
  margin-top: 26px;
}

.plugin-detail-preview {
  border-radius: var(--radius-xl);
  padding: 12px;
  background:
    radial-gradient(circle at 20% 10%, rgba(248, 215, 123, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.045);
}

.plugin-detail-preview img {
  width: 100%;
  border-radius: 32px;
}

.plugin-overview-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 26px;
  align-items: start;
}

.overview-content-card {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
}

.plugin-entry-content {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.plugin-entry-content p + p {
  margin-top: 18px;
}

.plugin-side-card .btn {
  margin-top: 24px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.screenshot-card {
  margin: 0;
  border-radius: var(--radius-lg);
  padding: 10px;
  overflow: hidden;
}

.screenshot-card img {
  width: 100%;
  border-radius: 24px;
}

.wide-screenshot {
  grid-column: span 2;
}

.centered-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.feature-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.feature-card h3 {
  margin-top: 18px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.changelog-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.changelog-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.changelog-item strong {
  display: block;
  color: var(--gold);
  font-size: 14px;
}

.changelog-item p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .plugin-detail-grid,
  .plugin-overview-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand-with-logo {
    min-width: 0;
  }

  .brand-logo-img {
    width: 176px;
  }

  .screenshot-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .wide-screenshot {
    grid-column: auto;
  }
}

/* Final layout, plugin cards, customer support states, and mobile navigation. */

.header-inner {
  min-height: 74px;
}

.brand-with-logo {
  min-width: 245px;
}

.brand-logo-img {
  width: 232px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(251, 191, 36, 0.14));
}

.home .hero.section-padding {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 74px);
  padding-top: clamp(10px, 2vh, 26px);
  padding-bottom: clamp(22px, 3vh, 38px);
}

.home .hero-grid {
  gap: clamp(42px, 5vw, 76px);
}

.home h1 {
  font-size: clamp(46px, 5.3vw, 72px);
  line-height: 1.08;
}

.home .hero-text {
  margin-top: 24px;
}

.home .hero-actions {
  margin-top: 32px;
}

.home .stats-grid {
  margin-top: 38px;
}

.home .preview-shell {
  padding: 14px;
}

.home .preview-panel {
  padding: 0;
  overflow: hidden;
}

.compact-product-preview {
  position: relative;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 31px;
}

.compact-product-preview .product-image.has-preview-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 244px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  background: #07080c;
}

.compact-product-preview .product-image.has-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.compact-product-preview .product-kicker,
.compact-product-preview h2,
.compact-product-preview > p:last-of-type {
  margin-left: 18px;
  margin-right: 18px;
}

.compact-product-preview .product-kicker {
  margin-top: 18px;
}

.compact-product-preview .trust-list {
  margin: 16px 18px 18px;
}

.homepage-plugin-grid {
  align-items: stretch;
}

.homepage-plugin-grid .plugin-card {
  min-height: auto;
  padding: 0;
}

.plugin-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: rgba(0, 0, 0, 0.32);
}

.plugin-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plugin-media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.plugin-media-overlay .card-status {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 6px 12px;
  border-top: 1px solid rgba(248, 215, 123, 0.28);
  border-left: 1px solid rgba(248, 215, 123, 0.28);
  border-right: 0;
  border-bottom: 0;
  border-radius: 16px 0 0 0;
  color: #fff3c4;
  background: rgba(8, 9, 12, 0.92);
  font-size: 11px;
  line-height: 1;
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.homepage-plugin-grid .plugin-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.homepage-plugin-grid .plugin-card-body h3 {
  margin: 0;
  font-size: var(--vd-plugin-title-size, clamp(28px, 2.8vw, 38px));
  line-height: 1.08;
  color: var(--vd-plugin-title-color, var(--text));
}

.homepage-plugin-grid .plugin-divider {
  display: block;
  width: 100%;
  height: 1px;
  flex: 0 0 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(248, 215, 123, 0.12), rgba(255, 255, 255, 0.045), rgba(248, 215, 123, 0.10), rgba(255, 255, 255, 0));
}

.homepage-plugin-grid .plugin-description {
  min-height: 102px;
  margin: 0;
  font-size: var(--vd-plugin-text-size, 15px);
  color: var(--vd-plugin-text-color, var(--muted));
}

.homepage-plugin-grid .plugin-card-actions {
  display: flex;
  width: calc(100% + 56px);
  max-width: calc(100% + 56px);
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 12px -28px -28px;
  padding: 16px 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.98), rgba(9, 12, 18, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.homepage-plugin-grid .plugin-card-actions .btn {
  width: auto;
  min-width: 0;
  max-width: 100%;
  flex: 0 0 auto;
  padding: 15px 24px;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.homepage-plugin-grid .plugin-card-actions .plugin-buy-button {
  padding-left: 30px;
  padding-right: 30px;
}

.homepage-plugin-grid .plugin-card-actions .btn:only-child {
  min-width: 220px;
}

.homepage-plugin-grid .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-1px);
}

.license-verify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 24px;
}

.license-verify-form .license-code-field {
  margin: 0;
}

.license-verify-form .form-submit {
  width: auto;
  min-width: 190px;
}

.license-mini-notes {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 12px;
}

.expired-pill {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.12);
}

.muted-pill {
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.08);
}

.support-expired-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.support-expired-details > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
}

.support-expired-details small,
.support-expired-details strong {
  display: block;
}

.support-expired-details small {
  color: var(--muted-2);
  font-size: 12px;
}

.support-expired-details strong {
  margin-top: 5px;
  font-size: 16px;
}

.support-notice {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.05);
}

.support-notice.success {
  border-color: rgba(52, 211, 153, 0.22);
  color: #bbf7d0;
  background: rgba(52, 211, 153, 0.09);
}

.support-notice.error,
.support-notice.warning {
  border-color: rgba(248, 113, 113, 0.24);
  color: #fecaca;
  background: rgba(248, 113, 113, 0.09);
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.mobile-menu-toggle {
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu-toggle i {
  position: relative;
  display: block;
  width: 17px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-nav-inner {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 18px;
}

.mobile-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 700;
}

.mobile-nav .mobile-support-btn {
  justify-content: center;
  color: #111111;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 1180px) and (min-width: 761px) {
  .compact-product-preview .product-image.has-preview-image {
    min-height: 180px;
  }

  .homepage-plugin-grid .plugin-card-actions {
    width: calc(100% + 56px);
    max-width: calc(100% + 56px);
    margin: 12px -28px -28px;
    padding: 16px 18px 18px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .homepage-plugin-grid .plugin-card-actions .btn {
    width: auto;
    min-width: 0;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .home .hero.section-padding {
    display: block;
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .main-nav,
  .header-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .brand-with-logo {
    min-width: 0;
  }

  .brand-logo-img {
    width: 196px;
  }

  .compact-product-preview .product-image.has-preview-image {
    aspect-ratio: 4 / 3;
    min-height: 190px;
  }

  .license-verify-form {
    grid-template-columns: 1fr;
  }

  .license-verify-form .form-submit {
    width: 100%;
    min-width: 0;
  }

  .support-expired-details {
    grid-template-columns: 1fr;
  }

  .homepage-plugin-grid .plugin-card-actions {
    width: calc(100% + 56px);
    max-width: calc(100% + 56px);
    margin: 12px -28px -28px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 12px 16px 16px;
  }

  .homepage-plugin-grid .plugin-card-actions .btn {
    width: auto;
    min-width: 0;
    white-space: nowrap;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Customer authentication portal */
.auth-hero-section {
  padding-top: 96px;
}

.auth-heading-wrap {
  max-width: 880px;
  margin-bottom: 34px;
}

.auth-heading-wrap h1 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(42px, 5.5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.auth-heading-wrap > p:not(.section-label) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.auth-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.auth-panel {
  min-height: 100%;
}

.auth-panel .login-card-head {
  align-items: flex-start;
}

.required-star {
  color: #ffb4b4;
}

.auth-under-row {
  margin-top: 2px;
}

.auth-muted-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.65;
}

.auth-form .form-submit {
  margin-top: 2px;
}

.site-header .header-btn {
  min-width: max-content;
}

@media (max-width: 900px) {
  .auth-panel-grid {
    grid-template-columns: 1fr;
  }
}

/* Support page and verified license panel */
.support-active-section {
  padding-top: 110px;
}

.support-active-layout {
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
}

.support-form-panel {
  min-width: 0;
}

.support-summary-metrics {
  margin-top: 0;
}

@media (max-width: 1040px) {
  .support-active-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .support-active-section {
    padding-top: 84px;
  }
}

/* My Account license manager */
.account-section {
  padding-top: 110px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
}

.account-main-panel h1 {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.account-main-panel > p:not(.section-label) {
  max-width: 760px;
  margin-top: 16px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.account-license-list {
  display: grid;
  gap: 14px;
}

.account-license-card,
.account-empty-state,
.account-add-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.18);
}

.account-license-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.account-license-card.is-active {
  border-color: rgba(52, 211, 153, 0.18);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.055), rgba(0, 0, 0, 0.18));
}

.account-license-card.is-expired {
  border-color: rgba(248, 113, 113, 0.18);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.045), rgba(0, 0, 0, 0.18));
}

.account-license-status {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-license-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.account-license-card p {
  margin: 8px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
}

.account-license-meta {
  min-width: 148px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.18);
}

.account-license-meta small,
.account-license-meta strong {
  display: block;
}

.account-license-meta small {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.account-license-meta strong {
  margin-top: 6px;
  color: var(--text);
  font-size: 14px;
}

.account-remove-form {
  margin: 0;
}

.account-remove-button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.account-remove-button:hover {
  color: #fecaca;
  border-color: rgba(248, 113, 113, 0.28);
  background: rgba(248, 113, 113, 0.08);
}

.account-empty-state {
  padding: 22px;
}

.account-empty-state strong,
.account-empty-state span {
  display: block;
}

.account-empty-state span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.account-side-panel {
  display: grid;
  gap: 18px;
}

.account-add-card {
  padding: 18px;
}

.account-add-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.account-add-card p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.account-side-actions {
  display: grid;
  gap: 10px;
}

.account-side-actions .btn {
  justify-content: center;
}

@media (max-width: 1040px) {
  .account-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .account-section {
    padding-top: 84px;
  }

  .account-license-card {
    grid-template-columns: 1fr;
  }

  .account-license-meta {
    width: 100%;
  }

  .account-remove-button {
    width: 100%;
  }
}

/* Auto-dismiss status notices */
.support-notice,
.login-notice {
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, margin 0.35s ease, padding 0.35s ease, border-width 0.35s ease;
  max-height: 220px;
  overflow: hidden;
}

.support-notice.vd-notice-is-hiding,
.login-notice.vd-notice-is-hiding {
  opacity: 0;
  transform: translateY(-6px);
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
}

.account-side-actions-primary {
  order: 3;
  margin: 0;
}

.account-add-card {
  order: 4;
}

.account-side-actions-secondary {
  order: 5;
  margin-top: 0;
}

.account-side-panel > .preview-header {
  order: 1;
}

.account-side-panel > .support-summary-metrics,
.account-side-panel > .support-metrics {
  order: 2;
}

.support-side-account-panel {
  align-self: start;
}

.support-side-account-panel .account-add-card,
.support-side-account-panel .account-side-actions .btn {
  width: 100%;
}

.support-active-layout,
.account-layout {
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
}

@media (max-width: 1040px) {
  .support-active-layout,
  .account-layout {
    grid-template-columns: 1fr;
  }
}


/* Coming Soon page */
.coming-soon-main {
  min-height: calc(100vh - 160px);
}

.coming-soon-hero {
  padding-top: 104px;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  gap: 28px;
  align-items: stretch;
}

.coming-soon-copy,
.coming-soon-panel,
.coming-feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.coming-soon-copy::before,
.coming-soon-panel::before,
.coming-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(251, 191, 36, 0.14), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 58%);
}

.coming-soon-copy > *,
.coming-soon-panel > *,
.coming-feature-card > * {
  position: relative;
  z-index: 1;
}

.coming-soon-copy {
  padding: 40px;
}

.coming-soon-copy h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(46px, 5.9vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.coming-soon-copy p {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.coming-soon-note {
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(248, 215, 123, 0.18);
  border-radius: 22px;
  color: #f6e9b7;
  background: rgba(248, 215, 123, 0.06);
  font-size: 14px;
  line-height: 1.7;
}

.coming-soon-panel {
  padding: 28px;
}

.coming-countdown-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.coming-countdown-kicker strong {
  font-size: 15px;
  letter-spacing: -0.03em;
}

.coming-countdown-kicker span {
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.countdown-item {
  padding: 20px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.18);
  text-align: center;
}

.countdown-item strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.countdown-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-countdown-meta {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.coming-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.coming-meta-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.coming-meta-row:last-child {
  padding-bottom: 0;
}

.coming-meta-icon {
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #111111;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-weight: 800;
}

.coming-meta-row strong {
  display: block;
  font-size: 15px;
}

.coming-meta-row p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.coming-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.coming-feature-card {
  padding: 28px;
}

.coming-feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #111111;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-size: 18px;
  font-weight: 800;
}

.coming-feature-card h2,
.coming-feature-card h3 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.coming-feature-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.coming-feature-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.coming-feature-card li {
  position: relative;
  padding-left: 18px;
  color: #d7d9df;
  font-size: 14px;
  line-height: 1.65;
}

.coming-feature-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

@media (max-width: 1040px) {
  .coming-soon-grid,
  .coming-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .coming-soon-copy,
  .coming-soon-panel,
  .coming-feature-card {
    padding: 24px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coming-soon-copy h1 {
    font-size: clamp(38px, 10vw, 54px);
  }
}




/* VelumaDev Customer Portal theme spacing */
.vdcp-theme-support-section {
  padding-top: 112px;
}

.vdcp-theme-support-section .vdcp-card,
.vdcp-theme-support-section .vdcp-tabs,
.vdcp-theme-support-section .vdcp-page-head {
  max-width: none;
}

@media (max-width: 760px) {
  .vdcp-theme-support-section {
    padding-top: 86px;
  }
}


/* VelumaDev Customer Portal v0.2 safety layout */
.vdcp-theme-support-section .container { max-width: 1440px; }
.vdcp-theme-support-section .vdcp-card,
.vdcp-theme-support-section .vdcp-tabs,
.vdcp-theme-support-section .vdcp-page-head { max-width: none; }
.vdcp-theme-support-section .vdcp-ticket-form { margin-left: 0; margin-right: auto; }
