/* Arkride site styles — dark theme inspired by your reference image */
:root {
  --bg0: #0f0e14;
  --bg1: #151422;
  --card: #1b1a29;
  --muted: #a7a3b5;
  --text: #e8e6f3;
  --accent: #ffd65a;
  --accent-soft: #ffe89b;
  --brand: #c7b8ff;
  --outline: #2a2938;
  --ok: #5be19a;
}
* { box-sizing: border-box; }
.hidden { display: none !important; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(1200px 800px at 20% -10%, #1a1830 0%, var(--bg0) 60%), var(--bg0);
  color: var(--text);
  font: 400 16px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
img { max-width: 100%; display: block; }

.container { width: min(1120px, 92%); margin-inline: auto; }
.section { padding: 72px 0; }
.section-title { font-size: 28px; font-weight: 800; letter-spacing: 0.2px; margin: 0 0 20px; }
.lead { color: var(--muted); max-width: 56ch; }
.muted { color: var(--muted); }
.link { color: var(--accent); text-decoration: none; }
.link:hover { text-decoration: underline; }

.btn {
  appearance: none;
  border: 1px solid var(--outline);
  background: transparent;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn:hover { border-color: #3a394c; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-accent { background: linear-gradient(180deg, var(--accent), #f7c942); color: #2a2300; border-color: #0000; }
.btn-accent:hover { filter: brightness(0.98); }
.btn-accent-soft { background: rgba(255, 214, 90, 0.15); border-color: #423b19; color: var(--accent); }

.badge { color: var(--muted); background: #1c1b27; border: 1px solid var(--outline); padding: 6px 10px; border-radius: 999px; font-size: 12px; }
.dot { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; display: inline-block; margin: 0 10px; }

.card-header, .card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card-title { font-weight: 700; }
.chip { font-size: 12px; padding: 4px 8px; border-radius: 999px; background: #26243a; color: var(--brand); border: 1px solid var(--outline); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: saturate(150%) blur(8px); background: rgba(15,14,20,0.7); border-bottom: 1px solid var(--outline); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 1px; }
.logo { width: 44px; height: 44px; padding: 6px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(160deg, #2a2740, #1b1a29); color: var(--brand); font-weight: 800; border: 1px solid var(--outline); overflow: hidden; }
.logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; display: block; transform: translateY(-5px); }
.brand-text { color: var(--text); }

.nav-toggle { display: none; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; align-items: center; }
.nav-list a { color: var(--text); text-decoration: none; font-weight: 600; position: relative; }
.nav-list a:hover { color: var(--accent); }
/* Current page indicator */
.nav-list a[aria-current="page"] { color: var(--accent); }
.nav-list a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); border-radius: 999px; }
/* Make the top-right Buy button less bright */
.nav-list .btn.btn-accent { background: #171627; color: var(--text); border-color: var(--outline); }
.nav-list .btn.btn-accent:hover { filter: none; border-color: #3a394c; }

/* Hero */
.hero { padding-top: 56px; }
.hero-grid { display: grid; gap: 28px; grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.hero-copy h1 { font-size: clamp(34px, 5vw, 56px); margin: 0 0 12px; line-height: 1.05; }
.cta { display: flex; gap: 12px; margin-top: 16px; }
.meta { margin-top: 14px; }

.hero-card { background: linear-gradient(180deg, #171627, #12101b); border: 1px solid var(--outline); border-radius: 16px; padding: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.35); min-height: 280px; }
.updates-feed { display: grid; gap: 10px; margin-top: 12px; max-height: 250px; overflow: auto; }
.update-item { background: #141323; border: 1px solid var(--outline); border-radius: 12px; padding: 10px; }
.update-title { font-weight: 600; }
.update-meta { color: var(--muted); font-size: 12px; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.feature-card { background: var(--card); border: 1px solid var(--outline); border-radius: 14px; padding: 18px; min-height: 140px; }
.feature-card h3 { margin: 0 0 6px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.price-card { background: linear-gradient(180deg, #171627, #131222); border: 1px solid var(--outline); border-radius: 16px; padding: 20px; }

/* Tables */
.table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--outline); border-radius: 12px; overflow: hidden; }
.table th, .table td { padding: 10px 12px; border-bottom: 1px solid var(--outline); }
.table th { text-align: left; color: var(--muted); font-weight: 700; background: #151427; }
.table tr:last-child td { border-bottom: none; }
.t-nowrap { white-space: nowrap; }
.btn-sm { padding: 6px 10px; font-size: 12px; border-radius: 8px; }
.input-sm { padding: 6px 8px; border-radius: 8px; border: 1px solid var(--outline); background: #141323; color: var(--text); }
.price-head { color: var(--muted); font-weight: 700; }
.price-tag { font-size: 28px; font-weight: 800; margin: 4px 0 10px; color: var(--accent); }
.price-list { margin: 0 0 14px; padding-left: 18px; color: var(--muted); }
.featured { outline: 1px solid #4b3a15; background: linear-gradient(180deg, #1b182b, #171420); }
.price-old { color: var(--muted); text-decoration: line-through; margin-right: 6px; font-weight: 600; }
.price-new { color: var(--accent); font-weight: 800; }
.discount-chip { font-size: 12px; padding: 2px 6px; border-radius: 999px; background: #26243a; color: var(--accent); border: 1px solid var(--outline); margin-left: 6px; }

/* Updates full */
.updates-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.upd-card { background: var(--card); border: 1px solid var(--outline); border-radius: 14px; padding: 16px; }

/* Licensing section */
.license-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 18px; align-items: start; }
.license-card { background: var(--card); border: 1px solid var(--outline); border-radius: 16px; padding: 18px; }
.license-types { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 8px; color: var(--muted); }
.license-types .code { display: inline-block; min-width: 56px; text-align: center; margin-right: 8px; padding: 4px 8px; border-radius: 8px; background: #26243a; color: var(--brand); border: 1px solid var(--outline); }

/* Inputs */
.input { padding: 10px 12px; border-radius: 10px; border: 1px solid var(--outline); background: #141323; color: var(--text); width: 100%; }

/* Simple form layout */
.form-card { background: var(--card); border: 1px solid var(--outline); border-radius: 16px; padding: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.radio-group { display: grid; gap: 8px; }
.label { font-weight: 600; margin-bottom: 6px; }
.help { color: var(--muted); font-size: 12px; }

/* About/Contact */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; }
.about-card, .contact-card { background: var(--card); border: 1px solid var(--outline); border-radius: 16px; padding: 18px; }
.contact-list { margin: 0 0 12px; padding-left: 0; list-style: none; }
.faq { background: #141323; border: 1px solid var(--outline); border-radius: 10px; padding: 10px 12px; margin: 8px 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--outline); padding: 20px 0; background: #0f0e14; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); }
.footer-links a { color: var(--muted); text-decoration: none; margin-left: 12px; }
.footer-links a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pricing-grid { grid-template-columns: 1fr; }
  .updates-list { grid-template-columns: 1fr; }
  .license-grid, .about-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; background: transparent; color: var(--text); border: 1px solid var(--outline); border-radius: 8px; padding: 6px 10px; }
  .nav-list { display: none; position: absolute; right: 4%; top: 54px; background: #131223; border: 1px solid var(--outline); border-radius: 12px; padding: 10px; gap: 10px; flex-direction: column; width: 220px; }
  .nav-list.open { display: flex; }
}

/* Modal */
.modal { position: fixed; inset: 0; display: grid; place-items: center; z-index: 1000; }
.modal.hidden { display: none !important; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); }
.modal-dialog { position: relative; width: min(980px, 94%); max-height: 88vh; overflow: auto; background: var(--card); border: 1px solid var(--outline); border-radius: 16px; padding: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.modal-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 4px 4px 8px; border-bottom: 1px solid var(--outline); }
.modal-title { font-weight: 800; }
.modal-body { padding: 10px 4px; }

