/* =========================================================
   Rocketon Landing — Custom Styles
   Palette: bg #F8F2E9 | menu #010D21 | header #010B1A | btn #F29702
   ========================================================= */
:root {
  --bg: #F8F2E9;
  --menu: #010D21;
  --header: #010B1A;
  --btn: #F29702;
  --btn-hover: #d98302;
  --ink: #14110b;
  --ink-soft: #4a463c;
  --card: #ffffff;
  --line: #e7ddcb;
  --accent-blue: #2a6df4;
  --space-grad: linear-gradient(160deg, #010B1A 0%, #04122b 55%, #071b3d 100%);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(1, 11, 26, 0.10);
  --shadow-lg: 0 22px 50px rgba(1, 11, 26, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; line-height: 1.18; color: var(--header); font-weight: 800; }
h1 { font-size: clamp(2rem, 5.2vw, 3.3rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.35rem); margin: 0 0 14px; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin: 0 0 10px; }
h4 { font-size: 1.08rem; margin: 0 0 8px; }
p { margin: 0 0 16px; color: var(--ink-soft); }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.eyebrow { display: inline-block; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; color: var(--btn); margin-bottom: 12px; }
.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--btn); color: #1a1205; font-weight: 800; font-size: 1.02rem;
  padding: 15px 34px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 8px 22px rgba(242, 151, 2, 0.38); transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  letter-spacing: .02em; text-transform: uppercase; font-family: 'Sora', sans-serif;
}
.btn:hover { background: var(--btn-hover); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(242, 151, 2, 0.5); }
.btn--lg { padding: 18px 46px; font-size: 1.12rem; }
.btn--ghost { background: transparent; color: var(--btn); box-shadow: none; border: 2px solid var(--btn); }
.btn--ghost:hover { background: var(--btn); color: #1a1205; }
.btn i { font-size: .95em; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--header);
  border-bottom: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
/* ---- Crafted logo lockup (header + footer) ---- */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--space-grad);
  border: 1px solid rgba(242, 151, 2, .35);
  box-shadow: 0 6px 18px rgba(1, 11, 26, .45), inset 0 0 14px rgba(42, 109, 244, .18);
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(242,151,2,.30), transparent 55%);
  opacity: .9;
}
.brand-mark svg { position: relative; z-index: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); }
.brand:hover .brand-mark { transform: translateY(-2px) rotate(-4deg); box-shadow: 0 10px 24px rgba(242,151,2,.30), inset 0 0 16px rgba(42,109,244,.25); }

.brand-lock { display: flex; flex-direction: column; line-height: 1; }
.brand-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .07em;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #dfe7f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-text span {
  -webkit-text-fill-color: initial;
  background: linear-gradient(180deg, #ffc24d 0%, #f29702 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-tag {
  margin-top: 3px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .56rem;
  letter-spacing: .28em;
  color: #8fa1c4;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: #d7dceb; font-weight: 600; font-size: .95rem; padding: 9px 14px; border-radius: 8px; transition: color .2s, background .2s; }
.nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.header-cta { margin-left: 12px; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Mobile nav */
@media (max-width: 920px) {
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--menu); padding: 14px 20px 24px; gap: 2px; transform: translateY(-130%);
    transition: transform .3s ease; box-shadow: var(--shadow-lg); max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 13px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .header-cta { margin: 14px 0 0; }
  .header-cta .btn { width: 100%; }
  .menu-toggle { display: block; }
}

/* Hero */
.hero { background: var(--space-grad); color: #fff; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.7), transparent),
                    radial-gradient(1.5px 1.5px at 60% 20%, rgba(255,255,255,.5), transparent),
                    radial-gradient(2px 2px at 80% 60%, rgba(255,255,255,.6), transparent),
                    radial-gradient(1px 1px at 35% 75%, rgba(255,255,255,.4), transparent),
                    radial-gradient(1.5px 1.5px at 90% 35%, rgba(255,255,255,.5), transparent);
  background-repeat: repeat; opacity: .8; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 78px 0 84px; position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--btn); }
.hero p { color: #c5cee0; font-size: 1.14rem; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-stats { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat b { display: block; font-family: 'Sora', sans-serif; font-size: 1.7rem; color: var(--btn); }
.hero-stat span { font-size: .85rem; color: #9fb0d0; }
.hero-art { position: relative; text-align: center; }
.hero-art img { max-width: 480px; margin: 0 auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero-updated { margin-top: 22px; font-size: .82rem; color: #8294b8; display: inline-flex; align-items: center; gap: 7px; }

/* Trust strip */
.trust-strip { background: var(--menu); color: #cfd8ec; padding: 20px 0; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 600; }
.trust-item i { color: var(--btn); font-size: 1.05rem; }

/* Cards / grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ico { width: 52px; height: 52px; border-radius: 12px; background: rgba(242,151,2,.12); color: var(--btn); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.card p:last-child { margin-bottom: 0; }

/* Split / feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.split-media.framed { background: var(--space-grad); padding: 18px; border-radius: var(--radius); }
.split-media.framed img { box-shadow: none; border: none; }

/* Alt section bg */
.bg-dark { background: var(--space-grad); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: #c2cce0; }
.bg-dark .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.09); color: #e6ebf6; box-shadow: none; }
.bg-dark .card h3 { color: #fff; }
.bg-dark .card p { color: #b9c4dc; }
.bg-soft { background: #fff; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(2,1fr); }
.step { display: flex; gap: 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.step .num { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--btn); color: #1a1205; font-family: 'Sora',sans-serif; font-weight: 800; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; }
.step h4 { margin-top: 2px; }
.step p { margin-bottom: 0; font-size: .98rem; }

/* Table */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
table.specs { width: 100%; border-collapse: collapse; background: #fff; min-width: 460px; }
table.specs th, table.specs td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); }
table.specs th { background: var(--header); color: #fff; font-family: 'Sora',sans-serif; }
table.specs tr:last-child td { border-bottom: none; }
table.specs td:first-child { font-weight: 700; color: var(--header); width: 42%; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery figure { margin: 0; background: var(--space-grad); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.gallery img { border-radius: 10px; }
.gallery figcaption { color: #aebbd6; font-size: .82rem; text-align: center; margin-top: 10px; }

/* Showcase — single centred image with caption (stands alone, plenty of air) */
.showcase { max-width: 760px; margin: 0 auto; }
.showcase figure { margin: 0; background: var(--space-grad); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-lg); }
.showcase img { border-radius: 12px; width: 100%; }
.showcase figcaption { color: #aebbd6; font-size: .9rem; text-align: center; margin-top: 14px; }
.bg-soft .showcase figcaption { color: var(--ink-soft); }

/* Inline feature image inside a text block (centred, framed, spaced) */
.inline-media { margin: 30px auto 6px; max-width: 620px; }
.inline-media figure { margin: 0; background: var(--space-grad); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.inline-media img { border-radius: 10px; width: 100%; }
.inline-media figcaption { color: #aebbd6; font-size: .85rem; text-align: center; margin-top: 10px; }

/* Pros/cons */
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.pc h3 { display: flex; align-items: center; gap: 10px; }
.pc ul { list-style: none; padding: 0; margin: 0; }
.pc li { display: flex; gap: 11px; padding: 9px 0; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.pc li:last-child { border-bottom: none; }
.pc.pros i { color: #1f9d4d; } .pc.cons i { color: #c9442e; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: 'Sora',sans-serif; font-weight: 700; font-size: 1.06rem; color: var(--header); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q i { color: var(--btn); transition: transform .25s; flex: 0 0 auto; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 22px; }
.faq-a p { margin: 0; }

/* TOC */
.toc { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--btn); border-radius: 12px; padding: 24px 28px; box-shadow: var(--shadow); }
.toc h2 { font-size: 1.3rem; margin-bottom: 14px; }
.toc ol { margin: 0; padding-left: 22px; columns: 2; column-gap: 36px; }
.toc li { margin-bottom: 9px; color: var(--ink-soft); break-inside: avoid; }
.toc a:hover { color: var(--btn); }

/* CTA band */
.cta-band { background: var(--space-grad); color: #fff; border-radius: var(--radius); padding: 50px 40px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c5cee0; max-width: 620px; margin: 0 auto 26px; }

/* Bonus cards */
.bonus { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.bonus .card { text-align: center; }
.bonus .tag { display: inline-block; background: rgba(242,151,2,.14); color: var(--btn); font-weight: 700; font-size: .78rem; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }

/* Crypto chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: .92rem; color: #e6ebf6; }
.chip i { color: var(--btn); }

/* Footer */
.site-footer { background: var(--menu); color: #aab6cf; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 36px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-grid a { display: block; color: #9fadc8; padding: 5px 0; font-size: .94rem; }
.footer-grid a:hover { color: var(--btn); }
.footer-brand .brand--footer { margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; color: #8b99b6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #7e8cab; }
.age-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); padding: 6px 12px; border-radius: 8px; font-weight: 700; color: #cfd8ec; }

.note { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px; box-shadow: var(--shadow); }
.note strong { color: var(--header); }

/* Article prose lists */
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink-soft); }
.prose ul li::before { content: "\f135"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--btn); position: absolute; left: 0; top: 1px; font-size: .85rem; }

/* Responsive */
@media (max-width: 920px) {
  .section { padding: 52px 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 54px 0 60px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 300px; }
  .split, .pc-grid { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4, .bonus { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .bonus, .gallery { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 18px; }
}

/* ===================== E-E-A-T: skip link, byline, verdict, methodology ===================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--btn);
  color: #1a1206;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-top: 22px;
  font-size: .92rem;
  color: #cdd6e8;
}
.byline i { color: var(--btn); margin-right: 6px; }
.byline strong { color: #fff; }
.byline .byline-meta { color: #8fd6a6; }
.byline .hero-updated { color: #aebbd6; }

.verdict {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin: 44px auto 0;
  max-width: 880px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 6px solid var(--btn);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.verdict-score {
  text-align: center;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.verdict-num {
  font-family: 'Sora', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--btn);
}
.verdict-stars { color: var(--btn); letter-spacing: 2px; font-size: 1.1rem; }
.verdict-out { font-size: .82rem; color: var(--ink-soft); }
.verdict-body { flex: 1 1 320px; }
.verdict-body h3 { margin: 0 0 8px; font-size: 1.3rem; }
.verdict-body p { margin: 0 0 8px; }
.verdict-sign { font-size: .9rem; color: var(--ink-soft); }
.verdict-sign i { color: var(--btn); margin-right: 6px; }
.verdict-sign strong { color: var(--ink); }

@media (max-width: 640px) {
  .verdict { flex-direction: column; text-align: center; padding: 24px; }
  .byline { font-size: .85rem; }
}

/* ===================== <picture> behaves like its <img> ===================== */
picture { display: contents; }
