:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #131313;
    --bg-card-hover: #181818;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --border-accent: rgba(255, 255, 255, 0.22);
    --text: #f5f5f5;
    --text-muted: #a1a1a1;
    --text-dim: #6b6b6b;
    --accent: #ffffff;
    --accent-dim: rgba(255, 255, 255, 0.04);
    --green: #7cff8a;
    --green-bg: rgba(124, 255, 138, 0.08);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-default: cubic-bezier(0.32, 0.72, 0, 1);
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100vh;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
      radial-gradient(circle at 80% 100%, rgba(255, 255, 255, 0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
  }

  .mono {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
    font-feature-settings: 'ss01', 'ss02', 'cv01';
  }

  /* === NAV === */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid var(--border);
    transition: border-color 200ms var(--ease-out);
  }

  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 220ms var(--ease-out), color 220ms var(--ease-out);
  }

  .logo:hover .logo-icon {
    border-color: rgba(124, 255, 138, 0.4);
  }

  .nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
  }

  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 160ms var(--ease-out), background 160ms var(--ease-out);
  }

  .nav-links a:hover {
    color: var(--text);
    background: var(--accent-dim);
  }

  /* === HERO === */
  main {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 600ms var(--ease-out) 100ms forwards;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(124, 255, 138, 0.7);
  }

  h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 700ms var(--ease-out) 200ms forwards;
  }

  h1 .accent {
    color: var(--text-dim);
    font-weight: 400;
    font-style: italic;
    font-family: 'Geist', sans-serif;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.55;
    opacity: 0;
    animation: fadeUp 700ms var(--ease-out) 300ms forwards;
  }

  .hero-cta {
    display: inline-flex;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 700ms var(--ease-out) 400ms forwards;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 140ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms var(--ease-out);
    cursor: pointer;
    border: 1px solid transparent;
    font-family: inherit;
  }

  .btn:active {
    transform: scale(0.97);
  }

  .btn-primary {
    background: var(--text);
    color: var(--bg);
  }

  .btn-primary:hover {
    background: #e5e5e5;
  }

  .btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border-color: var(--border-strong);
  }

  .btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
  }

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

  /* === SECTION === */
  section {
    padding: 80px 0;
    position: relative;
  }

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

  .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }

  h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  h2 .accent {
    color: var(--text-dim);
    font-weight: 400;
    font-style: italic;
  }

  .section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.55;
  }

  /* === PRICING CARDS === */
  .server-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 56px;
  }

  .server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out);
    position: relative;
    overflow: hidden;
  }

  .server-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
  }

  .server-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
  }

  .server-card-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .server-card-tag {
    font-size: 11px;
    color: var(--text-dim);
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
  }

  .server-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-top: 1px dashed var(--border);
  }

  .price-row:first-of-type {
    border-top: none;
  }

  .price-tier {
    font-size: 13px;
    color: var(--text-muted);
  }

  .price-value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
  }

  .price-value .premium {
    color: var(--green);
  }

  /* === TIER COMPARISON === */
  .tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
  }

  .tier {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
  }

  .tier:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }

  .tier.premium {
    border-color: rgba(124, 255, 138, 0.25);
    background: linear-gradient(180deg, rgba(124, 255, 138, 0.03) 0%, var(--bg-card) 60%);
  }

  .tier.premium::before {
    content: 'Recommended';
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--green);
    color: var(--bg);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.02em;
  }

  .tier-name {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }

  .tier-tag {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
  }

  .tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
  }

  .tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.45;
  }

  .tier-features li strong {
    color: var(--text);
    font-weight: 500;
  }

  .check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--text);
  }

  .tier.premium .check {
    color: var(--green);
  }

  .tier-meta {
    padding-top: 20px;
    border-top: 1px dashed var(--border);
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
  }

  /* === MONTHLY === */
  .monthly-callout {
    margin-top: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }

  .monthly-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-bg);
    border: 1px solid rgba(124, 255, 138, 0.15);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .monthly-content {
    flex: 1;
    min-width: 200px;
  }

  .monthly-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
  }

  .monthly-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  .monthly-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    color: var(--green);
    white-space: nowrap;
  }

  /* === STANDALONE SERVICES TABLE === */
  .services-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }

  .service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: background 160ms var(--ease-out);
  }

  .service-row:last-child {
    border-bottom: none;
  }

  .service-row:hover {
    background: var(--bg-card-hover);
  }

  .service-name {
    font-size: 14px;
    color: var(--text);
  }

  .service-desc {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
  }

  .service-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    flex-shrink: 0;
    margin-left: 16px;
  }

  /* === ADD ONS === */
  .addons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
  }

  .addon {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out);
  }

  .addon:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
  }

  .addon-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
  }

  .addon-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
    min-height: 36px;
  }

  .addon-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 500;
    color: var(--green);
  }

  /* === PLUGIN TIERS === */
  .plugin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }

  .plugin-tier {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
  }

  .plugin-tier:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }

  .plugin-tier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
  }

  .plugin-tier-name {
    font-size: 16px;
    font-weight: 600;
  }

  .plugin-tier-difficulty {
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    padding: 3px 8px;
    border-radius: 5px;
    background: var(--bg-elevated);
    color: var(--text-muted);
    border: 1px solid var(--border);
  }

  .plugin-tier.easy .plugin-tier-difficulty { color: #93c5fd; border-color: rgba(147, 197, 253, 0.2); }
  .plugin-tier.medium .plugin-tier-difficulty { color: #fbbf24; border-color: rgba(251, 191, 36, 0.2); }
  .plugin-tier.hard .plugin-tier-difficulty { color: #f87171; border-color: rgba(248, 113, 113, 0.2); }

  .plugin-tier-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
    min-height: 40px;
  }

  .plugin-license {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px dashed var(--border);
  }

  .plugin-license:last-child {
    padding-bottom: 0;
  }

  .license-name {
    font-size: 13px;
    color: var(--text-muted);
  }

  .license-name-tag {
    font-size: 10px;
    margin-left: 6px;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
  }

  .license-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 500;
  }

  /* === HOW IT WORKS === */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    counter-reset: step;
  }

  .step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    counter-increment: step;
    transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out);
  }

  .step:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
  }

  .step::before {
    content: '0' counter(step);
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
  }

  .step-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    max-width: 80%;
  }

  .step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
  }

  /* === CTA === */
  .cta-section {
    margin: 60px 0 40px;
    padding: 56px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, transparent 0%, rgba(124, 255, 138, 0.04) 100%);
    pointer-events: none;
  }

  .cta-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    position: relative;
  }

  .cta-desc {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.55;
    position: relative;
  }

  .cta-buttons {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  /* === FOOTER === */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    margin-top: 60px;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-dim);
  }

  .footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
  }

  .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 160ms var(--ease-out);
  }

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

  /* === MODAL / ORDER BUILDER === */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
  }

  .modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .modal {
    background: var(--bg-elevated);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    transform: scale(0.96) translateY(8px);
    opacity: 0;
    transition: transform 280ms var(--ease-out), opacity 220ms var(--ease-out);
    overflow: hidden;
  }

  .modal-backdrop.open .modal {
    transform: scale(1) translateY(0);
    opacity: 1;
  }

  .modal-header {
    padding: 24px 28px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
  }

  .modal-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 4px;
  }

  .modal-subtitle {
    font-size: 13px;
    color: var(--text-muted);
  }

  .modal-close {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 160ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms var(--ease-out);
    font-family: inherit;
    flex-shrink: 0;
  }

  .modal-close:hover {
    color: var(--text);
    background: var(--bg-card);
    border-color: var(--border-strong);
  }

  .modal-close:active {
    transform: scale(0.94);
  }

  .modal-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
  }

  .modal-body::-webkit-scrollbar {
    width: 8px;
  }

  .modal-body::-webkit-scrollbar-track {
    background: transparent;
  }

  .modal-body::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 4px;
  }

  .modal-section {
    margin-bottom: 26px;
  }

  .modal-section:last-child {
    margin-bottom: 0;
  }

  .modal-section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .modal-section-label .step-num {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 5px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* Option grid (for server type, tier) */
  .opt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
  }

  .opt-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .opt {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out), transform 120ms var(--ease-out);
    text-align: left;
    font-family: inherit;
    color: var(--text);
    position: relative;
  }

  .opt:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
  }

  .opt:active {
    transform: scale(0.98);
  }

  .opt.selected {
    border-color: var(--green);
    background: var(--green-bg);
  }

  .opt.selected::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230a0a0a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
  }

  .opt-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
  }

  .opt-meta {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
  }

  /* Checkbox list (for addons, services) */
  .check-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out);
    font-family: inherit;
    color: var(--text);
    text-align: left;
    width: 100%;
  }

  .check-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
  }

  .check-item.selected {
    border-color: var(--green);
    background: var(--green-bg);
  }

  .check-box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid var(--border-accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
  }

  .check-item.selected .check-box {
    background: var(--green);
    border-color: var(--green);
  }

  .check-box svg {
    width: 12px;
    height: 12px;
    color: var(--bg);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
  }

  .check-item.selected .check-box svg {
    opacity: 1;
    transform: scale(1);
  }

  .check-info {
    flex: 1;
    min-width: 0;
  }

  .check-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1px;
  }

  .check-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  .check-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
    white-space: nowrap;
  }

  /* Custom plugin slots */
  .plugin-slot {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
  }

  .plugin-slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .plugin-slot-title {
    font-size: 13px;
    font-weight: 500;
  }

  .plugin-slot-remove {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: color 140ms var(--ease-out), border-color 140ms var(--ease-out);
  }

  .plugin-slot-remove:hover {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.3);
  }

  .plugin-slot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 8px;
  }

  .plugin-slot-grid .opt {
    padding: 8px 10px;
  }

  .plugin-slot-grid .opt .opt-name {
    font-size: 12px;
  }

  .plugin-slot-description {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 12px;
    resize: vertical;
    min-height: 50px;
    transition: border-color 160ms var(--ease-out);
  }

  .plugin-slot-description:focus {
    outline: none;
    border-color: var(--border-accent);
  }

  .plugin-slot-description::placeholder {
    color: var(--text-dim);
  }

  .add-plugin-btn {
    width: 100%;
    background: transparent;
    border: 1px dashed var(--border-strong);
    color: var(--text-muted);
    border-radius: 10px;
    padding: 11px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out);
  }

  .add-plugin-btn:hover {
    color: var(--text);
    border-color: var(--border-accent);
    background: var(--bg-card);
  }

  /* Notes textarea */
  .notes-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    resize: vertical;
    min-height: 70px;
    transition: border-color 160ms var(--ease-out);
  }

  .notes-input:focus {
    outline: none;
    border-color: var(--border-accent);
  }

  .notes-input::placeholder {
    color: var(--text-dim);
  }

  /* Discord username */
  .name-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    transition: border-color 160ms var(--ease-out);
  }

  .name-input:focus {
    outline: none;
    border-color: var(--border-accent);
  }

  .name-input::placeholder {
    color: var(--text-dim);
  }

  /* Modal footer */
  .modal-footer {
    padding: 18px 28px;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
    flex-shrink: 0;
  }

  .total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
  }

  .total-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
  }

  .total-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    color: var(--green);
  }

  .total-value .monthly-tag {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
  }

  .footer-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-actions .footer-btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 11px 12px;
    font-size: 13px;
  }

  .footer-actions #copy-msg {
    flex: 0 0 auto;
    min-width: 80px;
  }

  /* === CONFIRMATION SCREEN === */
  .modal-confirm {
    position: absolute;
    inset: 0;
    background: var(--bg-elevated);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 220ms var(--ease-out), transform 280ms var(--ease-out);
    z-index: 2;
    overflow: hidden;
  }

  .modal-confirm.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .confirm-inner {
    padding: 32px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
  }

  .confirm-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-bg);
    border: 1px solid rgba(124, 255, 138, 0.25);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    animation: confirmPop 480ms var(--ease-out);
  }

  @keyframes confirmPop {
    0% { transform: scale(0.6); opacity: 0; }
    60% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }

  .confirm-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 8px;
  }

  .confirm-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .confirm-subtitle #confirm-target {
    color: var(--green);
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
  }

  .confirm-preview-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }

  .confirm-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text);
    white-space: pre-wrap;
    word-break: break-word;
    overflow-y: auto;
    max-height: 280px;
    margin: 0 0 20px;
    flex: 0 1 auto;
  }

  .confirm-preview::-webkit-scrollbar {
    width: 6px;
  }

  .confirm-preview::-webkit-scrollbar-track {
    background: transparent;
  }

  .confirm-preview::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 3px;
  }

  .confirm-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
  }

  .confirm-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 11px 12px;
    font-size: 13px;
  }

  .copy-feedback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--green);
    color: var(--bg);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms var(--ease-out);
    white-space: nowrap;
  }

  .copy-feedback.show {
    opacity: 1;
  }

  /* Empty state for total */
  .total-empty {
    color: var(--text-dim);
    font-size: 13px;
  }

  /* === SCROLL REVEAL === */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  }

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

  /* === RESPONSIVE === */
  @media (max-width: 640px) {
    .nav-inner { padding: 14px 20px; }
    main { padding: 0 20px; }
    .nav-links { gap: 0; }
    .nav-links a { padding: 8px 10px; font-size: 13px; }
    .hero { padding: 130px 0 70px; }
    section { padding: 60px 0; }
    .cta-section { padding: 40px 24px; }
    .monthly-callout { padding: 22px; }
    .step::before { display: none; }
    .step-title { max-width: 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
  }
