:root {
  --bg: #070914;
  --bg-2: #0d1224;
  --surface: rgba(17, 22, 38, 0.88);
  --surface-2: rgba(26, 33, 56, 0.9);
  --line: rgba(255, 255, 255, 0.11);
  --text: #e9edf8;
  --muted: #9aa4c2;
  --accent: #ff0a5f;
  --accent-2: #11b0ff;
  --ok: #22c55e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(255, 10, 95, 0.23), transparent 38%),
    radial-gradient(circle at 85% 0%, rgba(17, 176, 255, 0.22), transparent 42%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.shell {
  width: min(1120px, 100% - 36px);
  margin: 24px auto 38px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  background: rgba(7, 10, 20, 0.75);
  border-radius: 18px;
  padding: 12px 14px;
}

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

.site-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.site-brand-tagline {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 16px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

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

.site-actions {
  display: flex;
  gap: 9px;
}

.ghost-link,
.site-btn {
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 14px;
}

.site-btn {
  border: 0;
  background: linear-gradient(135deg, var(--accent), #ff2f53);
}

.site-btn.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(8, 12, 24, 0.78);
}

.hero {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(12, 17, 32, 0.94), rgba(8, 11, 22, 0.93));
  padding: 26px;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.74rem;
  color: #f7adc7;
}

h1 {
  margin: 10px 0 10px;
  font-size: clamp(1.7rem, 5vw, 3rem);
}

.hero p {
  color: var(--muted);
  margin: 0;
  max-width: 78ch;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface);
}

.card.featured {
  border-color: rgba(255, 10, 95, 0.44);
  box-shadow: inset 0 0 0 1px rgba(255, 10, 95, 0.33);
}

.card .tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.card .price {
  margin: 12px 0;
  font-size: 1.85rem;
  font-weight: 800;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 7px;
}

.product-layout {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.product-tier {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface);
  cursor: pointer;
}

.product-tier.active {
  border-color: rgba(255, 10, 95, 0.44);
  box-shadow: inset 0 0 0 1px rgba(255, 10, 95, 0.33);
}

.tier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tier-price-preview {
  color: var(--muted);
  font-weight: 700;
}

.tier-plans {
  margin-top: 14px;
  display: none;
  gap: 10px;
}

.product-tier.active .tier-plans {
  display: grid;
}

.tier-plan-btn {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(6, 10, 22, 0.85);
  color: var(--text);
  padding: 10px 12px;
  cursor: pointer;
}

.tier-plan-btn.selected {
  border-color: rgba(17, 176, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(17, 176, 255, 0.5);
}

.tier-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tier-actions .ghost-link,
.tier-actions .site-btn {
  padding: 9px 12px;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 52px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 14px;
  background: rgba(9, 14, 28, 0.72);
}

.cart-pill:hover,
.cart-pill:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(13, 18, 34, 0.92);
}

.cart-pill-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.cart-pill-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.73rem;
  font-weight: 800;
  color: #ffe7f0;
  background: linear-gradient(135deg, var(--accent), #ff2f53);
  box-shadow: 0 8px 16px rgba(255, 10, 95, 0.35);
}

.cart-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.cart-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px;
}

.cart-item .meta {
  color: var(--muted);
  margin-top: 4px;
}

.cart-actions {
  margin-top: 18px;
  gap: 12px;
}

.cart-add-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cart-add-modal[hidden] {
  display: none;
}

.cart-add-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 12, 0.68);
  backdrop-filter: blur(5px);
}

.cart-add-modal-panel {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top left, rgba(255, 10, 95, 0.19), transparent 34%),
    radial-gradient(circle at right 10% top 0%, rgba(17, 176, 255, 0.13), transparent 28%),
    linear-gradient(168deg, rgba(17, 22, 38, 0.96), rgba(8, 11, 22, 0.97));
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5);
  padding: 24px;
}

.cart-add-modal-panel h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.cart-add-modal-panel p {
  margin: 0;
  color: var(--muted);
}

.cart-add-modal-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-add-modal-actions .site-btn,
.cart-add-modal-actions .ghost-link {
  min-height: 42px;
}

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

.kv .card {
  background: var(--surface-2);
}

.lock-page {
  width: min(520px, calc(100% - 30px));
  margin: 74px auto;
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 3;
}

.lock-shell {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 0;
  padding: 24px;
  background: linear-gradient(172deg, rgba(15, 22, 40, 0.94), rgba(9, 14, 28, 0.96));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 102, 0.38);
  background: linear-gradient(180deg, rgba(245, 182, 56, 0.2), rgba(245, 182, 56, 0.1));
  color: #ffd785;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.68rem;
}

.lock-shell h1 {
  margin-top: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.65rem, 4.6vw, 2.28rem);
}

.lock-title-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 182, 56, 0.14);
  box-shadow: inset 0 0 0 1px rgba(245, 182, 56, 0.3);
  flex: 0 0 auto;
}

.lock-title-icon svg {
  width: 17px;
  height: 17px;
  fill: #ffd785;
}

.lock-shell > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.lock-shell > p + p {
  margin-top: 8px;
}

.lock-shell form {
  margin-top: 18px;
}

.lock-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lock-actions .site-btn,
.lock-actions .ghost-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.support-shell {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(12, 19, 34, 0.9), rgba(9, 15, 29, 0.9));
  padding: 16px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.support-kicker {
  margin: 0;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  color: #9bc8ff;
}

.support-copy {
  margin: 9px 0 0;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.5;
}

.support-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(88, 101, 242, 0.16);
  box-shadow: inset 0 0 0 1px rgba(88, 101, 242, 0.38);
  flex: 0 0 auto;
}

.support-icon svg {
  width: 18px;
  height: 18px;
  fill: #dbe2ff;
}

.support-btn {
  margin-top: 14px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(255, 10, 95, 0.24);
}

.support-btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}

.construction-tape {
  position: fixed;
  top: 14px;
  width: min(300px, 38vw);
  height: 28px;
  border-radius: 5px;
  z-index: 2;
  background:
    repeating-linear-gradient(135deg, #1a1a1f 0 20px, #f2bf4b 20px 40px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.36);
  opacity: 0.78;
}

.construction-tape::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.tape-left {
  left: -28px;
  transform: rotate(-22deg);
  transform-origin: left center;
}

.tape-right {
  right: -28px;
  transform: rotate(22deg);
  transform-origin: right center;
}

label {
  display: block;
  font-weight: 700;
  margin: 16px 0 8px;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(6, 10, 22, 0.9);
  color: var(--text);
  border-radius: 12px;
  padding: 12px;
}

.flash {
  min-height: 24px;
  margin-top: 12px;
  font-size: 0.94rem;
}

.flash.error {
  color: #f87171;
}

.flash.success {
  color: var(--ok);
}

.site-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(7, 10, 20, 0.78);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

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

.product-page-hero {
  display: grid;
  gap: 24px;
}

.product-intro {
  max-width: 720px;
}

.product-intro-featured {
  max-width: 760px;
}

.featured-tier {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  border-color: rgba(255, 10, 95, 0.34);
  background:
    radial-gradient(circle at top left, rgba(255, 10, 95, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(17, 176, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(17, 22, 38, 0.96), rgba(9, 13, 24, 0.96));
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.featured-tier-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 18% 10%, rgba(255, 10, 95, 0.18), transparent 30%), radial-gradient(circle at 82% 0%, rgba(17, 176, 255, 0.14), transparent 24%);
  pointer-events: none;
}

.featured-tier > * {
  position: relative;
  z-index: 1;
}

.tier-head-featured {
  align-items: flex-start;
}

.tier-head-copy {
  max-width: 56ch;
}

.tier-description {
  margin: 12px 0 0;
  color: #d6dced;
  max-width: 58ch;
}

.tier-content-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.tier-side-rail {
  display: grid;
  gap: 14px;
  align-content: start;
}

.tier-live-badge,
.tier-savings-badge,
.roadmap-preview-badge,
.support-card-label,
.roadmap-timeline-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-live-badge {
  margin-bottom: 10px;
  background: linear-gradient(135deg, rgba(255, 10, 95, 0.22), rgba(255, 47, 83, 0.18));
  border: 1px solid rgba(255, 10, 95, 0.42);
  color: #ffd0de;
}

.tier-subtitle {
  margin-top: 10px !important;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.tier-price-block {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.tier-price-preview {
  color: var(--text);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tier-savings-badge {
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #c8f6d7;
}

.tier-feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tier-feature-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(6, 10, 22, 0.72);
  color: var(--text);
  font-weight: 700;
}

.tier-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 12px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffd0de;
  background: rgba(255, 10, 95, 0.18);
}

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

.tier-plan-btn {
  display: grid;
  gap: 4px;
  text-align: left;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(6, 10, 22, 0.8);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.tier-plan-btn strong {
  font-size: 1.18rem;
}

.tier-plan-label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.tier-plan-savings {
  justify-self: start;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #c8f6d7;
  font-size: 0.74rem;
  font-weight: 800;
}

.future-tiers {
  display: none;
}

.roadmap-preview,
.support-section {
  margin-top: 14px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.section-heading h2,
.support-card h3,
.roadmap-timeline-content h2 {
  margin: 0;
}

.support-grid,
.roadmap-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-grid-single {
  grid-template-columns: minmax(0, 620px);
  justify-content: start;
}

.support-page-hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 10, 95, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(17, 176, 255, 0.12), transparent 26%),
    linear-gradient(170deg, rgba(12, 17, 32, 0.96), rgba(8, 11, 22, 0.95));
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.26);
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.support-hero-copy {
  display: grid;
  gap: 18px;
}

.support-hero-copy h1 {
  margin: 0;
  max-width: 13ch;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.support-lead {
  margin: 0;
  max-width: 62ch;
  font-size: 1.04rem;
  line-height: 1.62;
  color: #c8d2ee;
}

.support-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(10, 15, 28, 0.74);
  color: #dfe7fb;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.support-step-card {
  min-height: 180px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 22, 38, 0.94), rgba(8, 12, 24, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.support-step-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.support-step-card h2 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.support-step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.support-hero-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 10, 95, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 10, 95, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(17, 176, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(16, 22, 40, 0.98), rgba(9, 14, 26, 0.98));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.support-hero-panel h2 {
  margin: 0;
  font-size: 1.6rem;
}

.support-hero-panel > p {
  margin: 0;
  color: #d0d8ef;
  line-height: 1.58;
}

.support-panel-points {
  display: grid;
  gap: 12px;
}

.support-panel-points div {
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 10, 20, 0.58);
}

.support-panel-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.support-panel-points p,
.support-panel-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-panel-btn {
  width: 100%;
  min-height: 50px;
  justify-content: center;
  font-size: 0.96rem;
}

.support-section-tight {
  margin-top: 28px;
}

.support-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-topic-card {
  min-height: 210px;
  background: radial-gradient(circle at top right, rgba(17, 176, 255, 0.08), transparent 24%), rgba(17, 22, 38, 0.92);
}

.support-topic-card h3 {
  font-size: 1.22rem;
}

.support-card,
.roadmap-preview-card,
.roadmap-timeline-content {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 18px;
}

.support-card {
  display: grid;
  gap: 12px;
}

.support-card p,
.roadmap-preview-card p,
.roadmap-timeline-content p {
  margin: 0;
  color: var(--muted);
}

.support-card .ghost-link,
.support-card .site-btn {
  width: fit-content;
}

.support-card-label {
  background: rgba(17, 176, 255, 0.14);
  border: 1px solid rgba(17, 176, 255, 0.3);
  color: #cbeaff;
  width: fit-content;
}

.roadmap-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-preview-card {
  display: grid;
  gap: 12px;
  min-height: 136px;
  background:
    radial-gradient(circle at top right, rgba(255, 10, 95, 0.1), transparent 24%),
    rgba(17, 22, 38, 0.9);
}

.roadmap-preview-card.roadmap-now,
.roadmap-preview-card.roadmap-dev,
.roadmap-preview-card.roadmap-planned {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.roadmap-now {
  border-color: rgba(34, 197, 94, 0.34);
}

.roadmap-dev {
  border-color: rgba(245, 182, 56, 0.34);
}

.roadmap-planned {
  border-color: rgba(17, 176, 255, 0.28);
}

.roadmap-preview-badge {
  width: fit-content;
  letter-spacing: 0.08em;
}

.roadmap-now .roadmap-preview-badge,
.roadmap-now .roadmap-timeline-label {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.32);
  color: #c8f6d7;
}

.roadmap-dev .roadmap-preview-badge,
.roadmap-dev .roadmap-timeline-label {
  background: rgba(245, 182, 56, 0.14);
  border: 1px solid rgba(245, 182, 56, 0.3);
  color: #ffe2a3;
}

.roadmap-planned .roadmap-preview-badge,
.roadmap-planned .roadmap-timeline-label {
  background: rgba(17, 176, 255, 0.14);
  border: 1px solid rgba(17, 176, 255, 0.3);
  color: #cbeaff;
}

.roadmap-timeline {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.roadmap-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
}

.roadmap-timeline-line {
  position: relative;
}

.roadmap-timeline-line::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: -16px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}

.roadmap-timeline-item:last-child .roadmap-timeline-line::before {
  display: none;
}

.roadmap-timeline-content {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.roadmap-timeline-content h2 {
  margin-top: 10px;
  font-size: 1.12rem;
}

.roadmap-page .product-intro {
  max-width: 640px;
}

.roadmap-hero-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 10, 95, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 10, 95, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(17, 176, 255, 0.11), transparent 26%),
    rgba(10, 14, 26, 0.62);
}

.roadmap-hero-copy {
  max-width: 640px;
}

.roadmap-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.roadmap-status-strip article {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(17, 22, 38, 0.72);
}

.roadmap-status-strip span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
}

.roadmap-status-strip strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

.roadmap-timeline-premium {
  margin-top: 20px;
}

@media (max-width: 940px) {
  .site-header {
    flex-wrap: wrap;
  }

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

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
  }

  .product-layout,
  .support-grid,
  .roadmap-preview-grid {
    grid-template-columns: 1fr;
  }

  .support-hero-grid,
  .support-steps,
  .support-grid-expanded {
    grid-template-columns: 1fr;
  }

  .tier-content-grid,
  .roadmap-status-strip {
    grid-template-columns: 1fr;
  }

  .featured-tier {
    padding: 18px;
  }

  .tier-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tier-price-block {
    justify-items: start;
  }

  .tier-content-grid {
    margin-top: 18px;
  }

  .tier-feature-list {
    grid-template-columns: 1fr;
  }

  .tier-plan-chips {
    grid-template-columns: 1fr;
  }

  .roadmap-timeline-item {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .roadmap-timeline-line::before {
    left: 8px;
  }

  .lock-page {
    margin-top: 86px;
  }

  .construction-tape {
    height: 24px;
    width: min(230px, 46vw);
    top: 18px;
    opacity: 0.68;
  }

  .tape-left {
    left: -48px;
    transform: rotate(-25deg);
  }

  .tape-right {
    right: -48px;
    transform: rotate(25deg);
  }

  .lock-shell h1 {
    align-items: flex-start;
  }

  .lock-actions {
    flex-direction: column;
  }

  .lock-actions .site-btn,
  .lock-actions .ghost-link,
  .support-btn {
    width: 100%;
  }

  .cart-actions .site-btn,
  .cart-actions .ghost-link,
  .cart-add-modal-actions .site-btn,
  .cart-add-modal-actions .ghost-link {
    width: 100%;
    justify-content: center;
  }

  .roadmap-hero-card {
    padding: 18px;
  }

  .support-page-hero {
    padding: 22px;
  }

  .support-hero-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .support-hero-copy h1 {
    max-width: 16ch;
  }

  .support-step-card {
    min-height: unset;
  }
}
