/* ==========================================================================
   ARK: Survival Evolved landing page — v4 layout.
   All rules scoped under #ark-lp so nothing leaks into the rest of the site.
   Palette + type + spacing follow .agents/ark-page-design-tokens.md 1:1.
   Buttons use .a-btn* so they don't collide with the global core.css .btn.
   ========================================================================== */

#ark-lp {
  --bg: #0a0614;
  --bg-lift: #141026;
  --bg-card: #1c1636;
  --bg-elev: #251c47;
  --border: #2d2452;
  --border-lit: #4b3a80;
  --text: #f4f2ff;
  --text-2: #c2b8e0;
  --text-3: #8d84a8;

  --pink: #ec4899;
  --pink-hot: #f472b6;
  --pink-deep: #be185d;
  --purple: #a78bfa;
  --purple-hot: #c4b5fd;
  --purple-deep: #7c3aed;

  --bone: #e8dcc0;
  --bone-shadow: rgba(232, 220, 192, 0.15);

  --good: #10b981;
  --warn: #fbbf24;
  --bad: #f87171;

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", ui-sans-serif, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", ui-sans-serif, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  color: var(--text);
  font: 400 15px/1.55 var(--font-sans);
}

#ark-lp .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- typography ---------- */
#ark-lp .eyebrow { font: 600 11px/1 var(--font-sans); letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); display: inline-block; }
#ark-lp .eyebrow.bone { color: var(--bone); }
#ark-lp h1, #ark-lp h2, #ark-lp h3, #ark-lp h4 { margin: 0; text-wrap: balance; font-family: var(--font-display); color: var(--text); }
#ark-lp h1 { font-weight: 850; font-size: clamp(36px, 5.5vw, 58px); letter-spacing: -0.03em; line-height: 1.02; }
#ark-lp h2 { font-weight: 800; font-size: clamp(26px, 3vw, 34px); letter-spacing: -0.02em; line-height: 1.1; }
#ark-lp h3 { font-weight: 700; font-size: 22px; letter-spacing: -0.01em; line-height: 1.15; }
#ark-lp h4 { font-weight: 700; font-size: 17px; line-height: 1.2; }
#ark-lp p { margin: 0; color: var(--text-2); }
#ark-lp .mono { font-family: var(--font-mono); }

/* ARK "bone-carved" inline wordmark for the word ARK inside headings */
#ark-lp .ark-mark {
  color: var(--bone); font-weight: 900; letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(0,0,0,0.6), 0 -1px 0 rgba(255,255,255,0.08), 0 6px 20px var(--bone-shadow);
  display: inline-block; padding: 0 2px;
  background: linear-gradient(180deg, #f2e6c8 0%, #cdbb8f 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- buttons (a-btn* to avoid core .btn) ---------- */
#ark-lp .a-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border-radius: 999px; padding: 10px 18px; font: 700 14px var(--font-sans); border: 1px solid transparent; cursor: pointer; text-decoration: none !important; transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease; }
#ark-lp .a-btn-pink { background: var(--pink); color: #fff !important; }
#ark-lp .a-btn-pink:hover { background: var(--pink-hot); transform: translateY(-1px); }
#ark-lp .a-btn-primary { background: var(--purple-deep); color: #fff !important; }
#ark-lp .a-btn-primary:hover { background: var(--purple); transform: translateY(-1px); }
#ark-lp .a-btn-ghost { background: transparent; color: var(--text) !important; border-color: var(--border-lit); }
#ark-lp .a-btn-ghost:hover { border-color: var(--pink); }
#ark-lp .a-btn-lg { padding: 14px 24px; font-size: 15px; }

/* ---------- section rhythm ---------- */
#ark-lp section { padding: 80px 0; margin-top: 0; }
#ark-lp section.tight { padding: 56px 0; }
#ark-lp .section-head { display: flex; flex-direction: column; gap: 10px; max-width: 720px; margin-bottom: 40px; }
#ark-lp .section-head.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- hero (real ARK backdrop + dark overlay) ---------- */
#ark-lp .hero { position: relative; overflow: hidden; padding: 72px 0 88px; border-bottom: 1px solid var(--border); background: var(--bg-lift); }
#ark-lp .hero-bg { position: absolute; inset: 0; z-index: 0; display: block; }
#ark-lp .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
#ark-lp .hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,6,20,0.55) 0%, rgba(10,6,20,0.88) 100%),
    radial-gradient(1200px 500px at 100% 20%, rgba(236,72,153,0.14), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(124,58,237,0.18), transparent 60%);
}
#ark-lp .hero > .container { position: relative; z-index: 2; }
#ark-lp .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { #ark-lp .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
#ark-lp .hero-logo { margin-bottom: 6px; }
#ark-lp .hero-logo img { height: 48px; width: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
#ark-lp .hero-copy h1 { margin-top: 12px; }
#ark-lp .hero-copy .sub { margin-top: 18px; font-size: 17px; max-width: 46ch; color: var(--text-2); line-height: 1.5; }
#ark-lp .hero-trust { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; color: var(--text-3); }
#ark-lp .hero-trust span { display: inline-flex; gap: 6px; align-items: center; }
#ark-lp .hero-trust .dot { color: var(--border-lit); }
#ark-lp .hero-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
#ark-lp .hero-microstats { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; border-top: 1px solid var(--border); padding-top: 24px; }
@media (max-width: 575px) { #ark-lp .hero-microstats { grid-template-columns: repeat(2, 1fr); } }
#ark-lp .hero-microstats .stat .n { font: 800 22px var(--font-mono); letter-spacing: -0.02em; color: var(--text); }
#ark-lp .hero-microstats .stat .l { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* hero live-server visual */
#ark-lp .hero-vis { position: relative; border-radius: 20px; padding: 24px; background: radial-gradient(600px 300px at 100% 0%, rgba(236,72,153,0.16), transparent 70%), radial-gradient(500px 400px at 0% 100%, rgba(124,58,237,0.30), transparent 70%), linear-gradient(160deg, var(--bg-card) 0%, var(--bg-lift) 100%); border: 1px solid var(--border-lit); box-shadow: 0 20px 60px -20px rgba(124,58,237,0.4); }
#ark-lp .hero-vis-header { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px dashed var(--border-lit); }
#ark-lp .hero-vis-header .t { font-size: 13px; color: var(--text-3); }
#ark-lp .hero-vis-header .live { display: flex; align-items: center; gap: 6px; font: 600 11px/1 var(--font-sans); color: var(--good); text-transform: uppercase; letter-spacing: 0.1em; }
#ark-lp .hero-vis-header .live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(16,185,129,0.18); animation: ark-pulse 1.8s infinite; }
@keyframes ark-pulse { 50% { box-shadow: 0 0 0 7px rgba(16,185,129,0.05); } }
#ark-lp .hero-vis-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--border); font-size: 13px; }
#ark-lp .hero-vis-row:last-of-type { border-bottom: 0; }
#ark-lp .hero-vis-row .k { color: var(--text-3); }
#ark-lp .hero-vis-row .v { color: var(--text); font-family: var(--font-mono); font-size: 12px; }
#ark-lp .hero-vis-cta { margin-top: 16px; padding: 14px; border-radius: 12px; background: linear-gradient(135deg, rgba(236,72,153,0.14), rgba(124,58,237,0.10)); border: 1px solid var(--border-lit); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
#ark-lp .hero-vis-cta .price { font: 800 20px var(--font-mono); color: var(--text); }
#ark-lp .hero-vis-cta .price .strike { font-weight: 500; font-size: 13px; text-decoration: line-through; color: var(--text-3); margin-right: 8px; }

/* ---------- stats strip ---------- */
#ark-lp .strip { padding: 22px 0; background: var(--bg-lift); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
#ark-lp .strip-inner { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; text-align: center; }
@media (max-width: 575px) { #ark-lp .strip-inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { #ark-lp .strip-inner { grid-template-columns: repeat(2, 1fr); } }
#ark-lp .strip .n { font: 800 20px var(--font-mono); color: var(--text); letter-spacing: -0.02em; }
#ark-lp .strip .l { font-size: 11px; color: var(--text-3); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- hardware (specs + status panel over the OXY brand backdrop) ---------- */
#ark-lp .hardware-sect { position: relative; overflow: hidden; }
#ark-lp .hardware-sect .block-bg { z-index: 0; }
#ark-lp .hardware-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(10,6,20,0.65), rgba(10,6,20,0.85)); }
#ark-lp .hardware-sect > .container { position: relative; z-index: 2; }
#ark-lp .hw-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { #ark-lp .hw-grid { grid-template-columns: 1fr; } }
#ark-lp .hw-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
@media (max-width: 500px) { #ark-lp .hw-cards { grid-template-columns: 1fr; } }
#ark-lp .hw-card { padding: 16px; border-radius: 12px; background: var(--bg-card); border: 1px solid var(--border); }
#ark-lp .hw-card .l { font: 600 11px/1 var(--font-sans); text-transform: uppercase; letter-spacing: 0.1em; color: var(--pink); }
#ark-lp .hw-card .v { margin-top: 8px; font: 700 15px var(--font-mono); color: var(--text); }
#ark-lp .hw-card .h { margin-top: 6px; font-size: 12px; color: var(--text-3); }

/* server-status panel (stylized summary, not a Pterodactyl screenshot) */
#ark-lp .panel { border-radius: 16px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border-lit); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6); }
#ark-lp .panel-topbar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--bg-lift); border-bottom: 1px solid var(--border); font: 600 11px/1 var(--font-sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
#ark-lp .panel-topbar .dot { width: 10px; height: 10px; border-radius: 50%; background: #3a2f5a; }
#ark-lp .panel-topbar .dot.red { background: #e05a5a; }
#ark-lp .panel-topbar .dot.yel { background: #d9a63c; }
#ark-lp .panel-topbar .dot.grn { background: #4bb676; }
#ark-lp .panel-topbar .path { margin-left: 16px; }
#ark-lp .panel-body { padding: 20px; display: grid; gap: 14px; }
#ark-lp .meter { display: grid; grid-template-columns: 90px 1fr 60px; align-items: center; gap: 12px; font-size: 12px; }
#ark-lp .meter .k { color: var(--text-3); font-family: var(--font-mono); }
#ark-lp .meter .track { height: 6px; background: var(--bg-elev); border-radius: 999px; overflow: hidden; }
#ark-lp .meter .fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--pink), var(--pink-deep)); }
#ark-lp .meter .fill.warm { background: linear-gradient(90deg, var(--purple), var(--purple-deep)); }
#ark-lp .meter .v { text-align: right; font-family: var(--font-mono); color: var(--text); font-weight: 600; }
#ark-lp .panel-foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 14px 20px; border-top: 1px solid var(--border); background: rgba(0,0,0,0.2); font-size: 12px; }
#ark-lp .panel-foot div { display: flex; flex-direction: column; gap: 2px; }
#ark-lp .panel-foot .k { color: var(--text-3); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
#ark-lp .panel-foot .v { color: var(--text); font-family: var(--font-mono); }

/* ---------- plans ---------- */
#ark-lp .plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
@media (max-width: 700px) { #ark-lp .plans { grid-template-columns: 1fr; } }
#ark-lp .plan { position: relative; padding: 24px 18px 20px; border-radius: 16px; background: var(--bg-card); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; transition: transform .18s ease, border-color .18s ease; }
#ark-lp .plan:hover { transform: translateY(-3px); border-color: var(--border-lit); }
#ark-lp .plan.featured { background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-card) 100%); border-color: var(--pink); box-shadow: 0 20px 40px -20px rgba(236,72,153,0.3); transform: translateY(-6px); z-index: 2; }
#ark-lp .plan.featured:hover { transform: translateY(-9px); }
#ark-lp .plan.mods { border-color: var(--purple); }
#ark-lp .plan .ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--pink); color: #fff; padding: 4px 12px; border-radius: 999px; font: 700 10px/1 var(--font-sans); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
#ark-lp .plan.mods .ribbon { background: var(--purple); color: #0a0614; }
#ark-lp .plan .dino-badge { position: absolute; top: 18px; right: 12px; color: var(--text-3); opacity: 0.35; z-index: 1; pointer-events: none; }
#ark-lp .plan h3 { color: var(--text); }
#ark-lp .plan .use { font-size: 13px; color: var(--text-3); line-height: 1.4; min-height: 36px; }
#ark-lp .plan-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; padding-top: 8px; border-top: 1px dashed var(--border); }
#ark-lp .plan-price .strike { text-decoration: line-through; color: var(--text-3); font: 400 13px var(--font-mono); }
#ark-lp .plan-price .now { font: 800 24px var(--font-mono); color: var(--text); letter-spacing: -0.02em; }
#ark-lp .plan-price .per { font-size: 12px; color: var(--text-3); }
#ark-lp .plan-price .off { display: inline-block; padding: 2px 6px; border-radius: 6px; background: rgba(236,72,153,0.14); color: var(--pink); font: 700 10px var(--font-mono); letter-spacing: 0.05em; }
#ark-lp .plan-specs { display: grid; gap: 6px; font-family: var(--font-mono); font-size: 12px; }
#ark-lp .plan-specs .row { display: flex; justify-content: space-between; gap: 8px; }
#ark-lp .plan-specs .k { color: var(--text-3); }
#ark-lp .plan-specs .v { color: var(--text); text-align: right; }
#ark-lp .plan-cta { margin-top: auto; padding-top: 8px; }
#ark-lp .plan-cta .a-btn { width: 100%; }
#ark-lp .plan.extra { display: none; }
#ark-lp .plans.show-all .plan.extra { display: flex; }
#ark-lp .plans-controls { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 32px; font-size: 13px; color: var(--text-3); flex-wrap: wrap; }
#ark-lp .plans-controls button { background: transparent; color: var(--pink); border: 1px solid var(--border-lit); padding: 8px 16px; border-radius: 999px; font: 600 13px var(--font-sans); cursor: pointer; }
#ark-lp .plans-controls button:hover { border-color: var(--pink); background: rgba(236,72,153,0.06); }

/* RAM guide table */
#ark-lp .ram-guide { margin-top: 40px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-card); }
#ark-lp .ram-guide-head { padding: 16px 20px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; border-bottom: 1px solid var(--border); background: var(--bg-lift); }
#ark-lp .ram-guide-head .l { font: 600 12px/1 var(--font-sans); text-transform: uppercase; letter-spacing: 0.12em; color: var(--pink); }
#ark-lp .ram-guide-head .src { margin-left: auto; font: 500 11px var(--font-mono); color: var(--text-3); }
#ark-lp .ram-guide-head .src a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
#ark-lp .ram-table-wrap { overflow-x: auto; }
#ark-lp .ram-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 560px; }
#ark-lp .ram-table th, #ark-lp .ram-table td { padding: 12px 20px; text-align: left; border-bottom: 1px solid var(--border); }
#ark-lp .ram-table th { font: 600 11px/1 var(--font-sans); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); }
#ark-lp .ram-table td { color: var(--text); font-family: var(--font-mono); font-size: 12.5px; }
#ark-lp .ram-table tr:last-child td { border-bottom: 0; }
#ark-lp .ram-table .pill { display: inline-block; padding: 2px 8px; border-radius: 999px; font: 600 10px var(--font-sans); letter-spacing: 0.05em; white-space: nowrap; }
#ark-lp .ram-table .pill.boost { background: rgba(16,185,129,0.12); color: var(--good); }
#ark-lp .ram-table .pill.surge { background: rgba(236,72,153,0.14); color: var(--pink); }
#ark-lp .ram-table .pill.blaze { background: rgba(167,139,250,0.14); color: var(--purple); }
#ark-lp .ram-note { margin-top: 14px; font-size: 13px; color: var(--text-3); line-height: 1.55; }

/* ---------- comparison ---------- */
#ark-lp .cmp-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--border); }
#ark-lp .cmp { width: 100%; border-collapse: collapse; background: var(--bg-card); min-width: 760px; }
#ark-lp .cmp th, #ark-lp .cmp td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--border); font-size: 13px; }
#ark-lp .cmp th:first-child, #ark-lp .cmp td:first-child { text-align: left; }
#ark-lp .cmp thead th { font: 700 13px var(--font-sans); color: var(--text); background: var(--bg-lift); }
#ark-lp .cmp thead th.oxy { color: var(--pink); border-bottom: 2px solid var(--pink); position: relative; }
#ark-lp .cmp thead th.oxy::before { content: "You"; display: block; font: 600 10px var(--font-sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
#ark-lp .cmp tbody th { text-align: left; font: 500 13px var(--font-sans); color: var(--text-2); background: rgba(255,255,255,0.01); }
#ark-lp .cmp .yes { color: var(--good); font-weight: 700; }
#ark-lp .cmp .no { color: var(--bad); }
#ark-lp .cmp .mid { color: var(--warn); font-size: 12px; }
#ark-lp .cmp td.oxy { background: rgba(236,72,153,0.05); font-weight: 600; color: var(--text); }
#ark-lp .cmp .mono { font-family: var(--font-mono); font-size: 12px; }

/* ---------- maps grid (12, 4x3) ---------- */
#ark-lp .maps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { #ark-lp .maps { grid-template-columns: repeat(2, 1fr); } }
#ark-lp .map { position: relative; border-radius: 16px; overflow: hidden; padding: 18px; background: var(--bg-card); border: 1px solid var(--border); min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; gap: 8px; transition: transform .18s ease, border-color .18s ease; }
#ark-lp .map:hover { transform: translateY(-3px); border-color: var(--border-lit); }
/* real map preview image + dark gradient overlay for text legibility */
#ark-lp .map .bg { position: absolute; inset: 0; z-index: 0; }
#ark-lp .map .bg img { width: 100%; height: 100%; object-fit: cover; }
#ark-lp .map .bg::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(10,6,20,0.3) 0%, rgba(10,6,20,0.85) 100%); }
#ark-lp .map .creature { display: none; }
#ark-lp .map > * { position: relative; z-index: 1; }
#ark-lp .map .name { font: 700 15px var(--font-display); color: var(--text); }
#ark-lp .map .meta { display: flex; gap: 12px; font-size: 11px; color: var(--text-2); font-family: var(--font-mono); }
#ark-lp .map .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
#ark-lp .map .tag { padding: 2px 8px; border-radius: 999px; background: rgba(255,255,255,0.08); font: 600 10px var(--font-sans); letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-2); }
#ark-lp .map .tag.warn { background: rgba(251,191,36,0.14); color: var(--warn); }

/* ---------- four-up ---------- */
#ark-lp .four-up { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { #ark-lp .four-up { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { #ark-lp .four-up { grid-template-columns: 1fr; } }
#ark-lp .feature { padding: 24px; border-radius: 16px; background: var(--bg-card); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
#ark-lp .feature .icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(236,72,153,0.14); color: var(--pink); }
#ark-lp .feature.purple .icon { background: rgba(167,139,250,0.14); color: var(--purple); }
#ark-lp .feature h3 { font-size: 18px; }
#ark-lp .feature p { font-size: 14px; }
#ark-lp .feature p strong { color: var(--text); }
#ark-lp .feature a { color: var(--pink); font: 600 13px var(--font-sans); margin-top: auto; padding-top: 4px; display: inline-flex; align-items: center; gap: 4px; text-decoration: none; }
#ark-lp .feature.purple a { color: var(--purple); }
#ark-lp .feature a:hover { color: var(--pink-hot); }

/* honest crossplay explainer */
#ark-lp .cross-explain { padding: 20px; margin-top: 24px; border-radius: 14px; background: linear-gradient(180deg, var(--bg-card), var(--bg-lift)); border: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { #ark-lp .cross-explain { grid-template-columns: 1fr; } }
#ark-lp .cross-explain .col h4 { font-size: 14px; margin-bottom: 6px; }
#ark-lp .cross-explain .col p { font-size: 13px; }
#ark-lp .cross-explain .col.yes h4 { color: var(--good); }
#ark-lp .cross-explain .col.yes h4::before { content: "✓ "; }
#ark-lp .cross-explain .col.no h4 { color: var(--bad); }
#ark-lp .cross-explain .col.no h4::before { content: "✗ "; }

/* ---------- cluster + generic info box ---------- */
#ark-lp .infobox { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-left: 3px solid var(--pink); border-radius: 12px; padding: 16px 20px; margin-top: 24px; font-size: 14px; line-height: 1.55; color: var(--text-2); }
#ark-lp .infobox strong { color: var(--text); }

/* ---------- faq + benefits ---------- */
#ark-lp .faq-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { #ark-lp .faq-grid { grid-template-columns: 1fr; } }
#ark-lp .faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
#ark-lp .faq-item:first-child { border-top: 1px solid var(--border); }
#ark-lp .faq-item summary { display: flex; justify-content: space-between; gap: 20px; font: 600 15px var(--font-sans); color: var(--text); cursor: pointer; list-style: none; }
#ark-lp .faq-item summary::-webkit-details-marker { display: none; }
#ark-lp .faq-item summary::after { content: "+"; color: var(--pink); font: 300 22px var(--font-mono); line-height: 0.7; }
#ark-lp .faq-item[open] summary::after { content: "\2212"; }
#ark-lp .faq-item .a { padding-top: 12px; font-size: 14px; line-height: 1.55; color: var(--text-2); max-width: 60ch; }
#ark-lp .faq-side { display: flex; flex-direction: column; gap: 12px; padding: 20px; border-radius: 14px; background: linear-gradient(180deg, var(--bg-card), var(--bg-lift)); border: 1px solid var(--border-lit); position: sticky; top: calc(var(--s-header, 84px) + 16px); }
#ark-lp .faq-side .l { font: 600 11px var(--font-sans); text-transform: uppercase; letter-spacing: 0.12em; color: var(--pink); }
#ark-lp .faq-side .h { font: 700 17px var(--font-display); color: var(--text); }
#ark-lp .faq-side ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; }
#ark-lp .faq-side li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-2); }
#ark-lp .faq-side li::before { content: "\2713"; color: var(--good); font-weight: 700; }

/* ---------- trial band (real ARK backdrop, left-heavy overlay) ---------- */
#ark-lp .trial { position: relative; overflow: hidden; padding: 48px; border-radius: 20px; border: 1px solid var(--border-lit); display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; background: linear-gradient(160deg, var(--bg-card), var(--bg-lift)); }
@media (max-width: 800px) { #ark-lp .trial { grid-template-columns: 1fr; padding: 32px; } }
#ark-lp .trial-bg { position: absolute; inset: 0; z-index: 0; }
#ark-lp .trial-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
#ark-lp .trial::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(10,6,20,0.94) 0%, rgba(10,6,20,0.78) 42%, rgba(10,6,20,0.35) 100%), radial-gradient(500px 300px at 92% 82%, rgba(124,58,237,0.28), transparent 60%); }
#ark-lp .trial > *:not(.trial-bg) { position: relative; z-index: 2; }
#ark-lp .trial h2 { font-size: 28px; }
#ark-lp .trial-cta { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
#ark-lp .trial-check { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text-2); }
#ark-lp .trial-check span { display: flex; align-items: center; gap: 8px; }
#ark-lp .trial-check span::before { content: "\2713"; color: var(--good); font-weight: 800; font-family: var(--font-mono); }

/* ---------- testimonials ---------- */
#ark-lp .testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { #ark-lp .testis { grid-template-columns: 1fr; } }
#ark-lp .testi { padding: 22px; border-radius: 16px; background: var(--bg-card); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
#ark-lp .testi .q { font-size: 14px; line-height: 1.55; color: var(--text); }
#ark-lp .testi .q::before { content: "\201C"; font: 900 26px var(--font-display); color: var(--pink); line-height: 0; margin-right: 4px; }
#ark-lp .testi .who { display: flex; align-items: center; gap: 10px; margin-top: auto; font-size: 12px; }
#ark-lp .testi .who .av { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--pink), var(--pink-deep)); color: #fff; font: 700 12px var(--font-display); }
#ark-lp .testi .who .n { color: var(--text); font-weight: 600; }
#ark-lp .testi .who .l { color: var(--text-3); font-family: var(--font-mono); font-size: 11px; }
#ark-lp .testi .stars { color: var(--warn); letter-spacing: 2px; font-size: 13px; }

/* ---------- related placeholder ---------- */
#ark-lp .related-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { #ark-lp .related-list { grid-template-columns: 1fr; } }

/* OXY house-style gradient signature (reuses core.css .sect-bg.gradient / .gradient-oxy).
   Sections need position:relative to anchor the absolute .sect-bg, plus per-section
   sizing of the skull like sfeatures.css does. */
#ark-lp .sect-faq, #ark-lp .sect-maps { position: relative; }
#ark-lp .sect-faq .gradient-oxy { --g-rd: 480px; opacity: 0.7; transform: translate(50%, 10%); }
#ark-lp .sect-maps .gradient-oxy { --g-rd: 540px; transform: translate(50%, 10%); }

/* ---------- single-line hardware spec eyebrow (above pricing heading) ---------- */
#ark-lp .spec-line { margin-top: 8px; font: 500 12px/1.5 var(--font-mono); color: var(--text-3); letter-spacing: 0.01em; }

/* ---------- feature-card add-on badge (opt-in extras, e.g. Dedicated IP) ---------- */
#ark-lp .feature .addon { align-self: flex-start; margin-top: auto; display: inline-flex; align-items: center; padding: 5px 11px; border-radius: 999px; background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.28); color: var(--purple); font: 700 11px var(--font-mono); letter-spacing: 0.02em; }

@media (prefers-reduced-motion: reduce) { #ark-lp * { animation: none !important; } }
