/* Landing page — colorful Ember treatment, layered on site.css tokens. */

.landing {
  --c-blue: #4fa6f7; --c-blue-2: #2b6fd6;
  --c-purple: #b47cf0; --c-purple-2: #8248c9;
  --c-pink: #f06fa0; --c-pink-2: #c9487a;
  --c-green: #6fce9c; --c-green-2: #2f9d63;
  --c-teal: #45c9c0; --c-teal-2: #1f9a91;
  --c-flame: #ff7a4d; --c-flame-2: #e0472b;
  background: var(--bg);
  position: relative;
  isolation: isolate;
}
.landing main, .landing { padding: 0; }

/* ---------- animated colorful backdrop ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; will-change: transform; }
.aurora .b1 { width: 620px; height: 620px; top: -14%; left: -10%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); animation: drift1 26s ease-in-out infinite; }
.aurora .b2 { width: 560px; height: 560px; top: 6%; right: -12%; background: radial-gradient(circle, var(--c-purple) 0%, transparent 70%); animation: drift2 32s ease-in-out infinite; }
.aurora .b3 { width: 520px; height: 520px; bottom: -16%; left: 16%; background: radial-gradient(circle, var(--c-teal) 0%, transparent 70%); animation: drift3 29s ease-in-out infinite; }
.aurora .b4 { width: 480px; height: 480px; bottom: 4%; right: 10%; background: radial-gradient(circle, var(--c-pink) 0%, transparent 70%); animation: drift4 35s ease-in-out infinite; }
.aurora .b5 { width: 440px; height: 440px; top: 40%; left: 42%; background: radial-gradient(circle, var(--c-blue) 0%, transparent 70%); animation: drift2 40s ease-in-out infinite reverse; opacity: .32; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px, 50px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px, 60px) scale(1.06); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px, -60px) scale(1.14); } }
@keyframes drift4 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,-40px) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .aurora .blob { animation: none; } }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { color: var(--muted); text-decoration: none; font-size: .95rem; }
.nav-link:hover { color: var(--text); }
.btn-nav {
  text-decoration: none; font-weight: 700; font-size: .88rem; color: #241505;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 10px 18px; border-radius: 10px;
  box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--accent) 60%, transparent);
  transition: filter .15s ease;
}
.btn-nav:hover { filter: brightness(1.08); }
@media (max-width: 720px) { .nav-link { display: none; } }

/* ---------- shared reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* cards inside a revealed section cascade in individually, instead of
   popping in as one flat block */
.reveal .step, .reveal .feat, .reveal .dev {
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.in .step, .reveal.in .feat, .reveal.in .dev { opacity: 1; transform: none; }
.reveal.in .steps .step:nth-child(1) { transition-delay: 0ms; }
.reveal.in .steps .step:nth-child(2) { transition-delay: 80ms; }
.reveal.in .steps .step:nth-child(3) { transition-delay: 160ms; }
.reveal.in .steps .step:nth-child(4) { transition-delay: 240ms; }
.reveal.in .features .feat:nth-child(1) { transition-delay: 0ms; }
.reveal.in .features .feat:nth-child(2) { transition-delay: 70ms; }
.reveal.in .features .feat:nth-child(3) { transition-delay: 140ms; }
.reveal.in .features .feat:nth-child(4) { transition-delay: 210ms; }
.reveal.in .features .feat:nth-child(5) { transition-delay: 280ms; }
.reveal.in .features .feat:nth-child(6) { transition-delay: 350ms; }
.reveal.in .devices .dev:nth-child(1) { transition-delay: 0ms; }
.reveal.in .devices .dev:nth-child(2) { transition-delay: 90ms; }
.reveal.in .devices .dev:nth-child(3) { transition-delay: 180ms; }
.reveal.in .devices .dev:nth-child(4) { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal .step, .reveal .feat, .reveal .dev { transition: none; opacity: 1; transform: none; }
}

/* ---------- mouse-tracking glow effects ---------- */
.cursor-glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(600px circle at var(--gx, 50%) var(--gy, 20%),
    color-mix(in srgb, var(--accent) 13%, transparent), transparent 62%);
  opacity: 0; transition: opacity .5s ease;
}
.cursor-glow.active { opacity: 1; }

.spotlight { position: relative; overflow: hidden; }
.spotlight::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
    color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%);
  opacity: 0; transition: opacity .25s ease;
}
/* Price cards hang a badge (GREAT BALANCE / BEST VALUE) half above their own
   top edge. .spotlight's overflow:hidden (needed elsewhere to keep the glow
   inside rounded corners) was clipping it — the glow's own border-radius
   above makes that clipping unnecessary here, so let this one overflow. */
.price-card.spotlight { overflow: visible; }
.spotlight:hover::before { opacity: 1; }
.spotlight > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  .cursor-glow { display: none; }
  .spotlight::before { display: none; }
}

/* ---------- hero ---------- */
.lp-hero {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 7vh 6vw 8vh;
  overflow-x: clip;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600; color: var(--muted);
  background: var(--panel); border: 1px solid var(--line);
  padding: 7px 13px; border-radius: 999px;
}
.pill svg { width: 14px; height: 14px; color: var(--accent); flex: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); font-weight: 800;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding: 6px 12px; border-radius: 999px;
}
.lp-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.06; margin: 18px 0 16px;
  letter-spacing: -.03em; font-weight: 800; text-wrap: balance;
}
.lp-hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), var(--c-pink) 55%, var(--c-purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--muted); font-size: 1.1rem; line-height: 1.65; max-width: 54ch; }
.lead em { color: var(--text); font-style: normal; font-weight: 600; }
.lp-cta { display: flex; gap: 12px; margin: 28px 0 6px; flex-wrap: wrap; }
.lp-cta-sub {
  display: inline-block; margin-top: 10px; color: var(--muted); font-size: .88rem;
  font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.lp-cta-sub:hover { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 60%, transparent); }
.lp-final .lp-cta-sub { display: block; margin-top: 16px; }
.btn.big { padding: 15px 26px; font-size: 1rem; border-radius: 13px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; width: auto; margin-top: 0; }
.btn.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #241505; font-weight: 700; border: 0; box-shadow: 0 14px 34px -12px color-mix(in srgb, var(--accent) 65%, transparent); }
.btn.primary:hover { filter: brightness(1.08); }
.btn.ghost { background: var(--panel-2); color: var(--text); border: 1px solid var(--line); font-weight: 600; }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

/* device mock art */
.lp-hero-art { position: relative; display: grid; place-items: center; min-height: 480px; }
.art-glow {
  position: absolute; width: 440px; height: 440px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--accent) 40%, transparent) 0%, transparent 45%),
    radial-gradient(circle at 65% 70%, color-mix(in srgb, var(--c-purple) 32%, transparent) 0%, transparent 50%);
  filter: blur(14px); z-index: 0;
}
/* Hero carousel — rotates through the three device renders (phone/tablet/TV)
   every 5s with a crossfade. No background/frame on the container — the
   images are pre-cropped tight to just the device, and the glow is a
   drop-shadow on the image itself (follows its own rectangle) rather than a
   box-shadow on a fixed tile, so it's just the glowing device floating on
   the page background, not a device-on-a-black-square. Aspect ratios differ
   per shot (portrait phone, wide tablet/TV) — object-fit:contain in a fixed
   box handles all three without stretching or cropping any of them. */
.hero-carousel {
  position: relative; z-index: 1;
  width: min(440px, 86vw); height: 440px;
}
.hero-carousel-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; opacity: 0; transition: opacity 1.1s ease;
  animation: heroCarouselGlow 3.2s ease-in-out infinite;
}
.hero-carousel-img.is-active { opacity: 1; }
@keyframes heroCarouselGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 14px color-mix(in srgb, var(--accent) 55%, transparent))
      drop-shadow(0 0 40px color-mix(in srgb, var(--c-purple) 35%, transparent));
  }
  50% {
    filter:
      drop-shadow(0 0 22px color-mix(in srgb, var(--accent) 75%, transparent))
      drop-shadow(0 0 64px color-mix(in srgb, var(--c-purple) 50%, transparent));
  }
}
@media (max-width: 900px) { .hero-carousel { width: min(360px, 80vw); height: 380px; } }

@media (max-width: 900px) { .lp-hero { grid-template-columns: 1fr; text-align: center; } .lead { margin-inline: auto; } .lp-cta { justify-content: center; } .lp-hero-art { min-height: 420px; } }

/* ---------- logo strip ---------- */
.lp-strip { max-width: 1080px; margin: 0 auto; padding: 6px 6vw 40px; text-align: center; }
.lp-strip .strip-label { color: var(--muted-2); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.strip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; color: var(--muted); font-weight: 700; font-size: .95rem; }
.strip-row span { display: inline-flex; align-items: center; gap: 8px; opacity: .9; }
.strip-row svg { width: 18px; height: 18px; color: var(--accent); }
.soon-badge {
  font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  background: var(--panel-2); color: var(--muted); border: 1px solid var(--line);
  padding: 2px 8px; border-radius: 999px; font-style: normal;
}

/* ---------- sections ---------- */
.lp-section { max-width: 1100px; margin: 0 auto; padding: 60px 6vw; position: relative; }
.lp-section.alt { background: linear-gradient(180deg, #ffffff06, #ffffff02); border-block: 1px solid var(--line-soft); max-width: none; }
.lp-section.alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); letter-spacing: -.02em; margin-bottom: 10px; }
.section-head p { color: var(--muted); line-height: 1.6; }

/* how-it-works steps */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.step {
  position: relative;
  background: linear-gradient(180deg, var(--panel), color-mix(in srgb, var(--panel) 90%, black));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px;
  transition: transform .2s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.step .n {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; color: #241505; background: linear-gradient(135deg, var(--accent), var(--accent-2)); margin-bottom: 16px;
}
.step .n svg { width: 20px; height: 20px; }
.step .step-num {
  position: absolute; top: 20px; right: 20px; font-weight: 800; font-size: 1.7rem;
  color: var(--line); line-height: 1; letter-spacing: -.02em; pointer-events: none;
}
.step h3 { font-size: 1.05rem; margin-bottom: 7px; letter-spacing: -.01em; }
.step p { color: var(--muted); font-size: .92rem; line-height: 1.55; }
.step-link {
  display: inline-block; margin-top: 10px; color: var(--accent); font-size: .88rem;
  font-weight: 600; text-decoration: none;
}
.step-link:hover { text-decoration: underline; }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* ---------- feature highlight rows (alternating) ---------- */
.hl-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 46px 0;
}
.hl-row:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
.hl-row.rev .hl-copy { order: 2; }
.hl-row.rev .hl-art { order: 1; }
.hl-tag { color: var(--accent); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.hl-copy h3 { font-size: clamp(1.35rem, 2.6vw, 1.9rem); margin: 10px 0 12px; letter-spacing: -.02em; line-height: 1.2; }
.hl-copy p { color: var(--muted); line-height: 1.65; max-width: 46ch; }
.hl-list { list-style: none; margin-top: 16px; display: grid; gap: 9px; padding: 0; }
.hl-list li { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: .93rem; }
.hl-list svg { width: 17px; height: 17px; color: var(--ok); flex: none; margin-top: 2px; }
.hl-art { display: grid; place-items: center; }
.hl-mock {
  width: 100%; max-width: 380px; border-radius: 18px; padding: 18px;
  background: linear-gradient(165deg, var(--panel), color-mix(in srgb, var(--panel) 88%, black));
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.hl-mock .mock-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.hl-mock .mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--panel-2); border: 1px solid var(--line); font-style: normal; }
.hl-mock .src-row { display: flex; align-items: center; justify-content: space-between; background: var(--panel-2); border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; margin-bottom: 9px; font-size: .85rem; }
.hl-mock .src-row .lbl { font-weight: 700; }
.hl-mock .src-row .tag { font-size: .68rem; color: var(--ok); background: color-mix(in srgb, var(--ok) 16%, transparent); padding: 3px 8px; border-radius: 999px; font-weight: 700; }
.hl-mock .src-row .tag.soon { color: var(--muted); background: color-mix(in srgb, var(--muted) 14%, transparent); }
.hl-mock .engine-track { height: 10px; border-radius: 999px; background: var(--panel-2); border: 1px solid var(--line); overflow: hidden; margin: 18px 0 8px; }
.hl-mock .engine-fill { height: 100%; width: 64%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--c-pink)); }
.hl-mock .engine-labels { display: flex; justify-content: space-between; font-size: .74rem; color: var(--muted-2); }
.hl-mock .swatches { display: grid; grid-template-columns: repeat(auto-fit, minmax(64px, 1fr)); gap: 10px; margin-top: 4px; }
.swatch { border-radius: 12px; padding: 12px 8px; text-align: center; border: 1px solid var(--line-soft); }
.swatch b { display: block; width: 26px; height: 26px; border-radius: 8px; margin: 0 auto 8px; }
.swatch span { font-size: .72rem; color: var(--muted); font-weight: 600; }
.swatch.ember { background: #2f2620; } .swatch.ember b { background: linear-gradient(135deg,#f5a83d,#e2762b); }
.swatch.plum  { background: #241826; } .swatch.plum b  { background: linear-gradient(135deg,#c876e0,#8b3fae); }
.swatch.green { background: #172420; } .swatch.green b { background: linear-gradient(135deg,#6fce9c,#2f8f5f); }
.swatch.day   { background: #2a2a26; } .swatch.day b   { background: linear-gradient(135deg,#fdf6e8,#e7dcc2); }
.swatch.midnight { background: #131c2c; } .swatch.midnight b { background: linear-gradient(135deg,#6fbfff,#2f6fd6); }
.swatch.snow  { background: #131c2c; } .swatch.snow b  { background: linear-gradient(135deg,#5b8dfb,#2451c9); }
.swatch.cinema { background: #2a1418; } .swatch.cinema b { background: linear-gradient(135deg,#ff5a72,#c0182f); }
@media (max-width: 860px) { .hl-row, .hl-row.rev { grid-template-columns: 1fr; gap: 26px; } .hl-row.rev .hl-copy, .hl-row.rev .hl-art { order: unset; } }

/* ---------- device collage (phone + tablet + TV, real app screens) ---------- */
/* Real device photos, side by side — same tight-cropped, no-background,
   glowing-device treatment as the hero carousel, just static (all three
   showing at once) rather than rotating. */
.device-photo-row {
  display: flex; align-items: flex-end; justify-content: center; flex-wrap: wrap;
  gap: 20px; max-width: 900px; margin: 0 auto 50px;
}
.device-photo {
  animation: heroCarouselGlow 3.2s ease-in-out infinite;
}
.dp-tv     { height: 220px; }
.dp-tablet { height: 190px; }
.dp-phone  { height: 260px; }

@media (max-width: 700px) {
  .dp-tv     { height: 150px; }
  .dp-tablet { height: 130px; }
  .dp-phone  { height: 190px; }
}

/* ---------- devices (picture-style colorful icons) ---------- */
.devices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dev {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  background: linear-gradient(180deg, var(--panel), color-mix(in srgb, var(--panel) 90%, black));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 16px;
  transition: transform .2s ease, border-color .2s ease;
}
.dev:hover { transform: translateY(-4px); }
.dev .ico {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; flex: none;
  box-shadow: 0 10px 24px -10px var(--dev-shadow, transparent);
}
.dev .ico svg { width: 30px; height: 30px; }
.dev span.label { font-size: .96rem; color: var(--text); font-weight: 700; }
.dev small { display: block; color: var(--muted-2); font-size: .72rem; margin-top: 3px; font-weight: 600; }
.dev.c-blue   { --dev-shadow: color-mix(in srgb, var(--c-blue) 55%, transparent); }
.dev.c-blue .ico   { background: linear-gradient(150deg, var(--c-blue), var(--c-blue-2)); color: #eaf4ff; }
.dev.c-green  { --dev-shadow: color-mix(in srgb, var(--c-green) 55%, transparent); }
.dev.c-green .ico  { background: linear-gradient(150deg, var(--c-green), var(--c-green-2)); color: #eafff2; }
.dev.c-flame  { --dev-shadow: color-mix(in srgb, var(--c-flame) 55%, transparent); }
.dev.c-flame .ico  { background: linear-gradient(150deg, var(--c-flame), var(--c-flame-2)); color: #fff3ea; }
.dev.c-purple { --dev-shadow: color-mix(in srgb, var(--c-purple) 55%, transparent); }
.dev.c-purple .ico { background: linear-gradient(150deg, var(--c-purple), var(--c-purple-2)); color: #f7eeff; }
.devices-note { text-align: center; color: var(--muted); max-width: 60ch; margin: 26px auto 0; line-height: 1.6; }
@media (max-width: 720px) { .devices { grid-template-columns: 1fr 1fr; } }

/* ---------- why-choose grid (colorful cards) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat {
  background: linear-gradient(180deg, var(--panel), color-mix(in srgb, var(--panel) 90%, black));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  border-top: 3px solid var(--feat-color, var(--accent));
  transition: transform .2s ease, box-shadow .2s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -18px var(--feat-color, var(--accent)); }
.feat .ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px;
  background: linear-gradient(150deg, var(--feat-color, var(--accent)), var(--feat-color-2, var(--accent-2)));
  color: #fff;
}
.feat .ico svg { width: 22px; height: 22px; }
.feat h3 { font-size: 1.02rem; margin-bottom: 7px; letter-spacing: -.01em; }
.feat p { color: var(--muted); font-size: .9rem; line-height: 1.55; }
.feat.c-amber  { --feat-color: var(--accent); --feat-color-2: var(--accent-2); }
.feat.c-purple { --feat-color: var(--c-purple); --feat-color-2: var(--c-purple-2); }
.feat.c-teal   { --feat-color: var(--c-teal); --feat-color-2: var(--c-teal-2); }
.feat.c-blue   { --feat-color: var(--c-blue); --feat-color-2: var(--c-blue-2); }
.feat.c-flame  { --feat-color: var(--c-flame); --feat-color-2: var(--c-flame-2); }
.feat.c-green  { --feat-color: var(--c-green); --feat-color-2: var(--c-green-2); }
@media (max-width: 860px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .features { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 980px; margin: 0 auto; }
.price-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), color-mix(in srgb, var(--panel) 90%, black));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  display: flex; flex-direction: column;
}
.price-card.featured { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent); }
.price-card .badge-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #241505;
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.price-card .amount { font-size: 2.1rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 2px; }
.price-card .amount .was { font-size: 1rem; font-weight: 600; color: var(--muted-2); text-decoration: line-through; margin-left: 8px; }
.price-card .per { font-size: .85rem; color: var(--muted); font-weight: 500; }
.price-card .desc { color: var(--muted); font-size: .88rem; margin: 10px 0 16px; line-height: 1.5; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; flex: 1; }
.price-card ul li { display: flex; align-items: flex-start; gap: 8px; color: var(--muted); font-size: .88rem; }
.price-card ul svg { width: 16px; height: 16px; color: var(--ok); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: 0; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }

/* Legacy packages: usually 2 tiers, not 3. Fixed columns (like the Plans
   grid above it) rather than auto-fit — a content-width-driven auto-fit
   track can wrap to a new row on its own depending on viewport/zoom; a
   fixed repeat() only ever changes column count at the explicit 860px
   breakpoint below, same as Plans, so it stays one row until then. */
#legacyPricingGrid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }

/* A quieter, boxed callout instead of a full section header — this is an
   alternative to the pricing above it, not a second competing headline. */
#legacy-pricing .section-head {
  max-width: 560px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 32px;
}
#legacy-pricing .section-head h2 { font-size: 1.25rem; margin-bottom: 6px; }
#legacy-pricing .section-head p { font-size: .88rem; }

.pricing-addons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 900px; margin: 28px auto 0; }
.addon-chip {
  display: flex; align-items: center; gap: 10px; max-width: 380px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  font-size: .85rem; color: var(--muted);
}
.addon-chip svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.addon-chip strong { color: var(--text); }

/* ---------- faq ---------- */
.faq { max-width: 740px; margin: 0 auto; display: grid; gap: 10px; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 13px; padding: 4px 20px;
  transition: border-color .15s ease;
}
.faq details[open] { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--accent); font-weight: 800; font-size: 1.2rem; flex: none;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); line-height: 1.6; padding: 0 0 18px; font-size: .93rem; }

/* ---------- legal disclaimer ---------- */
.legal-box {
  border: 1px solid color-mix(in srgb, var(--warn) 35%, var(--line));
  background: linear-gradient(180deg, var(--panel), color-mix(in srgb, var(--panel) 90%, black));
  border-radius: var(--radius); padding: 30px 32px;
  max-width: 900px; margin: 0 auto;
}
.legal-box .legal-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.legal-box .legal-head .ico {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none;
  background: color-mix(in srgb, var(--warn) 20%, transparent); color: var(--warn);
}
.legal-box .legal-head .ico svg { width: 20px; height: 20px; }
.legal-box h2 { font-size: 1.2rem; letter-spacing: -.01em; }
.legal-box p { color: var(--muted); font-size: .88rem; line-height: 1.65; margin-top: 12px; }
.legal-box strong { color: var(--text); }

/* ---------- final CTA ---------- */
.lp-final {
  text-align: center; padding: 80px 6vw; margin: 20px 6vw 0; border-radius: 28px;
  max-width: 1100px; margin-inline: auto;
  background:
    radial-gradient(700px 320px at 50% -20%, color-mix(in srgb, var(--accent) 30%, transparent), transparent),
    linear-gradient(180deg, var(--panel), color-mix(in srgb, var(--panel) 88%, black));
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.lp-final h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 12px; letter-spacing: -.02em; }
.lp-final p { color: var(--muted); margin-bottom: 26px; }

/* ---------- support / help centre ---------- */
.support-hero { max-width: 640px; margin: 8vh auto 0; padding: 0 6vw; text-align: center; }
.support-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -.02em; margin: 16px 0 10px; }
.support-hero .lead { margin: 0 auto; }
.search-box { position: relative; max-width: 460px; margin: 28px auto 0; }
.search-box svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--muted-2); pointer-events: none;
}
.search-box input { padding-left: 44px; border-radius: 999px; }

.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
.help-card {
  background: linear-gradient(180deg, var(--panel), color-mix(in srgb, var(--panel) 90%, black));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  border-top: 3px solid var(--feat-color, var(--accent));
}
.help-card.c-amber  { --feat-color: var(--accent); }
.help-card.c-purple { --feat-color: var(--c-purple); }
.help-card.c-teal   { --feat-color: var(--c-teal); }
.help-card.c-blue   { --feat-color: var(--c-blue); }
.help-card.c-flame  { --feat-color: var(--c-flame); }
.help-card.c-green  { --feat-color: var(--c-green); }
.help-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.help-card-head .ico {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none;
  background: color-mix(in srgb, var(--feat-color, var(--accent)) 18%, transparent); color: var(--feat-color, var(--accent));
}
.help-card-head .ico svg { width: 19px; height: 19px; }
.help-card-head h2 { font-size: 1rem; letter-spacing: -.01em; }
.help-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 3px; }
.help-card li a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  text-decoration: none; color: var(--muted); font-size: .9rem; padding: 8px 0;
  transition: color .15s ease;
}
.help-card li a:hover { color: var(--text); }
.help-card li a svg { width: 14px; height: 14px; color: var(--feat-color, var(--accent)); flex: none; opacity: 0; transition: opacity .15s ease; }
.help-card li a:hover svg { opacity: 1; }
.help-empty { text-align: center; color: var(--muted); padding: 40px 0; }
@media (max-width: 860px) { .help-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .help-grid { grid-template-columns: 1fr; } }

.article-box { max-width: 680px; margin: 8vh auto 0; }
.article-box .crumb { color: var(--muted-2); font-size: .82rem; margin-bottom: 14px; }
.article-box .crumb a { color: var(--muted-2); text-decoration: none; }
.article-box .crumb a:hover { color: var(--text); }
.article-box h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.02em; margin-bottom: 22px; }

/* ---------- rendered article body content ---------- */
.a-content { color: var(--text); line-height: 1.65; font-size: .95rem; }
.a-content > *:first-child { margin-top: 0; }
.a-content p { color: var(--muted); margin: 0 0 14px; }
.a-content h2 { font-size: 1.08rem; letter-spacing: -.01em; margin: 26px 0 10px; }
.a-content h2:first-child { margin-top: 0; }
.a-content ol.a-steps { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 14px; counter-reset: astep; }
.a-content ol.a-steps li { position: relative; padding-left: 42px; color: var(--muted); }
.a-content ol.a-steps li::before {
  counter-increment: astep; content: counter(astep);
  position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 9px;
  display: grid; place-items: center; font-weight: 800; font-size: .85rem; color: #241505;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.a-content ol.a-steps li b { color: var(--text); }
.a-content ul.a-plain { margin: 0 0 16px; padding-left: 20px; color: var(--muted); display: grid; gap: 6px; }
.a-content code { background: var(--panel-2); border: 1px solid var(--line); border-radius: 5px; padding: 1px 6px; font-size: .88em; color: var(--accent); }
.a-content .a-note, .a-content .a-todo {
  border-radius: var(--radius-sm); padding: 13px 16px; margin: 0 0 18px; font-size: .87rem; line-height: 1.6;
  border: 1px solid; display: flex; gap: 10px; align-items: flex-start;
}
.a-content .a-note { background: rgba(90,150,220,.1); border-color: rgba(90,150,220,.3); color: var(--text); }
.a-content .a-todo { background: rgba(232,193,90,.1); border-color: rgba(232,193,90,.32); color: var(--text); }
.a-content .a-note svg, .a-content .a-todo svg { width: 17px; height: 17px; flex: none; margin-top: 1px; }
.a-content .a-note svg { color: #6fa3e0; }
.a-content .a-todo svg { color: var(--warn); }
.a-content .a-note b, .a-content .a-todo b { color: var(--text); }
.a-content .a-shot {
  border: 1px dashed var(--line); border-radius: var(--radius-sm); background: var(--panel-2);
  padding: 26px 16px; text-align: center; margin: 0 0 18px; color: var(--muted-2); font-size: .82rem;
}
.a-content .a-shot svg { width: 26px; height: 26px; margin-bottom: 8px; color: var(--muted-2); }
.a-content .a-photos { display: flex; flex-wrap: wrap; gap: 16px; margin: 0 0 20px; }
.a-content .a-photo { flex: 0 0 auto; width: 200px; text-align: center; }
.a-content .a-photo img {
  width: 100%; border-radius: 16px; border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.35); display: block;
}
.a-content .a-photo-cap { margin-top: 9px; font-size: .8rem; color: var(--muted-2); line-height: 1.4; }
.a-content .a-photos.single { justify-content: flex-start; }
.a-content .a-photos.single .a-photo { width: 220px; }
.a-content .a-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 18px; }
.a-content .a-links a {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  background: var(--panel-2); border: 1px solid var(--line); color: var(--text);
  padding: 9px 14px; border-radius: var(--radius-sm); font-size: .87rem; font-weight: 600;
  transition: border-color .15s ease, color .15s ease;
}
.a-content .a-links a:hover { border-color: var(--accent); color: var(--accent); }
.a-content .a-links a svg { width: 15px; height: 15px; }

/* ---------- footer ---------- */
.lp-footer { max-width: 1100px; margin: 0 auto; padding: 50px 6vw 34px; border-top: 1px solid var(--line-soft); }
.lp-footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; padding-bottom: 26px; }
.lp-footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; }
.lp-footer-brand img { width: 28px; height: 28px; border-radius: 8px; }
.lp-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.lp-footer-links a { color: var(--muted); text-decoration: none; font-size: .9rem; }
.lp-footer-links a:hover { color: var(--text); }
.lp-footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 22px; border-top: 1px solid var(--line-soft); color: var(--muted-2); font-size: .82rem; }
.lp-footer .fine { max-width: 72ch; margin-top: 18px; font-size: .78rem; line-height: 1.6; color: var(--muted-2); }
