:root {
  --bg: #030303;
  --panel: rgba(18,18,18,.86);
  --panel-2: rgba(26,26,26,.92);
  --ink: #f7f4ed;
  --muted: #a9a39a;
  --line: rgba(255,255,255,.12);
  /* Brand palette — matches the Genie Render logo (blue → purple gradient).
     The historic --gold / --gold-2 accent names are kept (used in ~40 rules)
     but now point at the brand blue/purple so the whole site rebrands at once. */
  --brand-blue: #2B71F4;
  --brand-purple: #7C3FD0;
  --brand-grad: linear-gradient(135deg, #2B71F4, #7C3FD0);
  --gold: #5f8bff;        /* accent (links, headings, prices) — brand blue */
  --gold-2: #7C3FD0;      /* second gradient stop — brand purple */
  --dark-gold: #10132e;   /* dark accent tint — deep navy */
  /* One shared content width + gutter so the header, sections and footer all
     line up on wide screens (no more "content jumped right" misalignment). */
  --maxw: 1280px;
  --edge: max(24px, calc((100% - var(--maxw)) / 2));
}
* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 74% 9%, rgba(43,113,244,.17), transparent 31rem),
    radial-gradient(circle at 12% 34%, rgba(124,63,208,.08), transparent 22rem),
    #030303;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 18px var(--edge);
  background: rgba(3,3,3,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}
.brand, .nav, .actions, .footer-brand { display: flex; align-items: center; gap: 14px; }
.brand { color: #fff; font-weight: 900; text-decoration: none; letter-spacing: .14em; text-transform: uppercase; }
.brand span:last-child { font-size: 17px; line-height: .95; }
/* Real logo image (assets/logo-icon.png) — replaces the old CSS-drawn mark.
   Layered drop-shadows give the gradient "G" a thin light edge + a soft blue
   glow so it never blends into a dark (or busy) background. */
.brand-logo {
  width: 34px;
  height: auto;
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,.55))
    drop-shadow(0 2px 16px rgba(84,124,250,.5));
}
.footer-brand .brand-logo { width: 40px; }
.nav { gap: clamp(14px, 2vw, 30px); }
.nav a, .link-button {
  color: #f2eee7;
  text-decoration: none;
  font-weight: 760;
  font-size: 13px;
  white-space: nowrap;
}
.nav a:hover, .link-button:hover { color: var(--gold); }
.sign-in {
  padding: 11px 23px;
  border: 1px solid rgba(84,124,250,.48);
  border-radius: 7px;
  color: var(--gold) !important;
}
.nav-cta {
  padding: 12px 23px;
  border-radius: 7px;
  background: linear-gradient(180deg, #2B71F4, #7C3FD0);
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 14px 32px rgba(43,113,244,.22);
}
.inline-form { margin: 0; }
.link-button { border: 0; background: transparent; padding: 0; cursor: pointer; }
.flash { margin: 18px var(--edge) 0; padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line); background: var(--panel); }
.flash-success { border-color: rgba(128,194,113,.4); background: rgba(72,138,66,.18); }
.flash-warning { border-color: rgba(84,124,250,.4); background: rgba(84,124,250,.12); }
.concept-wrap {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
}
.concept-hero {
  position: relative;
  min-height: 435px;
  isolation: isolate;
  overflow: hidden;
}
.concept-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #030303 0 28%, rgba(3,3,3,.72) 43%, rgba(3,3,3,.08) 74%, #030303 100%),
    linear-gradient(0deg, #030303 0, rgba(3,3,3,0) 34%);
}
.hero-bg {
  position: absolute;
  inset: -20px 0 0 34%;
  z-index: -2;
  opacity: .96;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(310px, 470px) 1fr;
  align-items: center;
  min-height: 435px;
  padding: 36px 0 68px;
}
.concept-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 66px);
  line-height: .98;
  letter-spacing: -0.02em;
}
.concept-copy h1 span { color: var(--gold); }
.concept-copy p {
  width: min(360px, 100%);
  margin: 24px 0;
  color: #dfd9ce;
  font-size: 16px;
  line-height: 1.65;
}
.hero-actions { justify-content: flex-start; gap: 14px; }
.button, .small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
}
.button.primary, .small-button {
  background: linear-gradient(180deg, #2B71F4, #7C3FD0);
  color: #ffffff;
  border-color: #7C3FD0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 12px 24px rgba(43,113,244,.18);
}
.button.outline, .button.ghost {
  color: var(--gold);
  border-color: rgba(84,124,250,.42);
}
.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(28,28,28,.92), rgba(14,14,14,.92));
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.feature-strip article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px 26px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.feature-strip article:last-child { border-right: 0; }
.feature-strip .icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--gold);
  background: radial-gradient(circle, rgba(84,124,250,.16), rgba(84,124,250,.04));
  font-size: 27px;
}
.feature-strip strong { display: block; font-size: 14px; }
.feature-strip small { display: block; color: var(--muted); margin-top: 4px; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .09em;
  font-weight: 900;
}
.centered { text-align: center; }
.why-section {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 42px 0 46px;
}
.why-copy h2, .feature-section h2, .beta-cta h2 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.why-copy p:not(.eyebrow), .beta-cta p {
  color: var(--muted);
  line-height: 1.65;
}
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 900;
}
.text-link:after { content: "→"; margin-left: 12px; }
.render-showcase { position: relative; min-height: 260px; }
.interior-img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}
.sphere-tray {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: min(365px, 72%);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(12,12,12,.93);
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.sphere-tray img { width: 100%; height: 96px; object-fit: cover; }
.feature-section { padding: 22px 0 16px; }
.feature-section h2 {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.concept-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.concept-cards article {
  overflow: hidden;
  min-height: 192px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(28,28,28,.9), rgba(14,14,14,.94));
}
.concept-cards img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}
.concept-cards div { padding: 12px 14px 16px; }
.concept-cards h3 { margin: 0 0 6px; font-size: 16px; }
.concept-cards p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.42; }
.beta-cta {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 18px;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24,24,24,.9), rgba(9,9,9,.94));
}
.beta-cta img {
  width: 170px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.beta-cta h2 { font-size: clamp(24px, 2.6vw, 34px); }
.beta-cta .actions { justify-content: flex-end; }
.page-hero, .feature-list, .pricing-grid, .form-shell, .dashboard-grid, .auth-page, .admin-shell {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 0;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
}
.lead, .wide-card p, .price-card p, .form-note, .note { color: var(--muted); line-height: 1.65; }
.feature-grid, .metric-grid, .pricing-grid, .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.wide-card, .price-card, .auth-card, .stat, .feature-grid article, .metric-grid div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 420px)); }
.price, .price-card p.price { font-size: 52px; font-weight: 900; margin: 20px 0 8px; color: var(--gold); }
.auth-page { display: grid; place-items: center; min-height: 68vh; }
.auth-page { gap: 18px; }
.auth-card, .panel-form { width: min(100%, 460px); display: grid; gap: 16px; }
.compact-card { padding-top: 18px; padding-bottom: 18px; }
.compact-card h2 { margin: 0; font-size: 20px; }
label { display: grid; gap: 7px; color: var(--muted); font-weight: 750; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  padding: 12px 13px;
  background: rgba(255,255,255,.92);
  color: #101010;
  font: inherit;
}
.dashboard-grid { display: grid; gap: 18px; }
.check-row {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  color: #f2eadb;
}
.check-row input { width: auto; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; overflow-wrap: anywhere; }
.pill { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: rgba(84,124,250,.13); color: var(--gold); font-weight: 800; }
.admin-shell { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
.admin-nav { position: sticky; top: 100px; display: grid; gap: 8px; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 10px; }
.admin-nav a { padding: 11px 12px; border-radius: 7px; text-decoration: none; color: var(--muted); font-weight: 800; }
.admin-nav a.active, .admin-nav a:hover { background: var(--gold); color: #ffffff; }
.admin-content { min-width: 0; display: grid; gap: 18px; }
.admin-title-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.admin-two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat strong, .metric-grid strong { display: block; font-size: 32px; }
.inline-grid { display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 10px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.row-actions { display: flex; align-items: center; gap: 8px; }
.row-actions form { margin: 0; }
.small-button.secondary { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); box-shadow: none; }
.small-button.danger { background: #8d2424; color: #fff; border-color: #a83c3c; box-shadow: none; }
.wide-form { width: 100%; }
.mini-form { display: grid; grid-template-columns: 120px 165px auto; gap: 8px; align-items: center; }
.mini-form input, .mini-form select { padding: 8px 9px; font-size: 13px; }
.message-list { display: grid; gap: 14px; }
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 22px clamp(22px, 6vw, 82px);
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(18,18,18,.9), #060606);
}
.site-footer p { color: var(--muted); margin: 4px 0 0; }
.footer-columns {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
}
.footer-columns div { display: flex; gap: 18px; align-items: center; }
.footer-columns h4 { display: none; }
.footer-columns a, .footer-columns span { color: #e9e2d6; text-decoration: none; font-size: 13px; }
@media (max-width: 1050px) {
  .site-header, .nav, .site-footer, .footer-columns, .footer-columns div { align-items: flex-start; flex-direction: column; }
  .nav { gap: 12px; }
  .hero-bg { inset-left: 18%; opacity: .52; }
  .feature-strip, .why-section, .concept-cards, .beta-cta, .admin-shell, .form-grid, .mini-form, .admin-two-col { grid-template-columns: 1fr; }
  .feature-strip article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .feature-strip article:last-child { border-bottom: 0; }
  .concept-cards { grid-template-columns: repeat(2, 1fr); }
  .beta-cta .actions { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .concept-wrap, .page-hero, .feature-list, .pricing-grid, .form-shell, .dashboard-grid, .auth-page, .admin-shell { width: min(100% - 28px, var(--maxw)); }
  .concept-hero, .hero-grid { min-height: 620px; }
  .hero-bg { inset: 160px -120px 0 5%; opacity: .6; }
  .concept-cards, .pricing-grid, .feature-grid, .metric-grid, .stat-grid { grid-template-columns: 1fr; }
  .sphere-tray { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 12px; }
}

/* Landing-page CMS editor */
.cms-form { display: grid; gap: 22px; }
.cms-form .wide-card { display: grid; gap: 14px; }
.cms-form label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.cms-form label.full { grid-column: 1 / -1; }
.cms-form textarea { min-height: 72px; resize: vertical; }
.cms-card { border: 1px solid rgba(255,255,255,.10); border-radius: 12px; padding: 14px; display: grid; gap: 12px; }
.cms-card legend { padding: 0 8px; color: var(--gold); font-weight: 700; font-size: 13px; }
.cms-image { display: grid; gap: 8px; align-content: start; }
.cms-image-label { font-size: 13px; color: var(--muted); }
.cms-thumb { width: 100%; max-width: 240px; height: 120px; object-fit: cover; border-radius: 10px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.cms-reset { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.cms-reset input { width: auto; }

/* Support tickets */
.pill-open    { background: rgba(84,124,250,.16); color: var(--gold); }
.pill-answered{ background: rgba(75,200,120,.16); color: #6fe39a; }
.pill-closed  { background: rgba(255,255,255,.10); color: var(--muted); }
.ticket-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; color: var(--muted); margin: 6px 0 18px; }
.ticket-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.ticket-thread { display: grid; gap: 14px; margin-bottom: 24px; }
.ticket-msg { border: 1px solid rgba(255,255,255,.10); border-radius: 12px; padding: 14px 16px; background: rgba(255,255,255,.03); }
.ticket-msg.is-staff { border-color: rgba(84,124,250,.30); background: rgba(84,124,250,.06); }
.ticket-msg-head { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; font-size: 14px; }
.ticket-msg-time { color: var(--muted); font-size: 12px; margin-left: auto; }
.ticket-msg-body { line-height: 1.6; }
.ticket-atts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ticket-att { font-size: 13px; padding: 5px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; color: var(--gold); text-decoration: none; }
.ticket-att:hover { background: rgba(84,124,250,.10); }
.ticket-reply { width: 100%; margin-bottom: 14px; }

/* Avatars + profiles */
.avatar { border-radius: 50%; object-fit: cover; display: inline-block; vertical-align: middle; background: rgba(255,255,255,.06); }
.avatar-initial { display: inline-grid; place-items: center; background: radial-gradient(circle at 30% 30%, rgba(84,124,250,.9), rgba(124,63,208,.85)); color: #ffffff; font-weight: 800; }
.profile-avatar-row { display: flex; gap: 16px; align-items: center; }
.profile-card { display: flex; gap: 20px; align-items: center; }
.profile-bio { color: var(--muted); line-height: 1.6; margin-top: 8px; }

/* Community forum */
.forum-cats { display: grid; gap: 12px; }
.forum-cat { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.10); border-radius: 12px; background: rgba(255,255,255,.03); text-decoration: none; color: inherit; }
.forum-cat:hover { border-color: rgba(84,124,250,.35); background: rgba(84,124,250,.06); }
.forum-cat h2 { margin: 0 0 4px; font-size: 18px; }
.forum-cat p { margin: 0; color: var(--muted); font-size: 14px; }
.forum-count { color: var(--gold); font-weight: 700; font-size: 13px; white-space: nowrap; }
.forum-thread { display: grid; gap: 14px; margin: 18px 0 24px; }
.forum-post { display: flex; gap: 14px; border: 1px solid rgba(255,255,255,.10); border-radius: 12px; padding: 14px 16px; background: rgba(255,255,255,.03); }
.forum-post.is-hidden { opacity: .55; }
.forum-post-aside { flex: 0 0 auto; }
.forum-post-main { flex: 1; min-width: 0; }
.forum-post-head { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; font-size: 14px; }
.forum-post-body { line-height: 1.65; white-space: pre-wrap; word-wrap: break-word; }
.forum-images { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.forum-images img { max-width: 220px; max-height: 200px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12); object-fit: cover; }
.forum-post-actions { display: flex; gap: 14px; align-items: center; margin-top: 12px; }
.forum-post-actions form { display: inline; }
.danger-link { color: #e88; }

/* Diagnostics / bug-report panel */
.muted { color: var(--text-muted, #8a8f98); }
.diag-filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 14px 0; }
.chip {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: inherit; text-decoration: none;
  font-size: 13px; border: 1px solid rgba(255,255,255,0.10); cursor: pointer;
}
.chip:hover { background: rgba(255,255,255,0.12); }
.chip.active { background: #2B71F4; color: #1a1a1a; border-color: #2B71F4; }
.diag-list { display: flex; flex-direction: column; gap: 12px; }
.diag-row.resolved { opacity: 0.55; }
.diag-head { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.diag-time { margin-left: auto; font-size: 12px; }
.diag-summary { margin: 8px 0 4px; font-weight: 500; }
.diag-meta { font-size: 12px; margin: 2px 0 8px; }
.badge {
  display: inline-block; padding: 2px 8px; border-radius: 6px; font-size: 11px;
  font-weight: 700; letter-spacing: 0.03em; background: rgba(255,255,255,0.10);
}
.badge-app { background: #2d6cdf; color: #fff; }
.badge-server { background: #7a4ddb; color: #fff; }
.sev-error { background: #d9434e; color: #fff; }
.sev-warning { background: #e0922f; color: #1a1a1a; }
.sev-info { background: rgba(255,255,255,0.14); }
.diag-sealed {
  width: 100%; font-family: ui-monospace, Menlo, monospace; font-size: 11px;
  background: rgba(0,0,0,0.30); color: #b9c0cc; border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px; padding: 8px; margin: 6px 0; resize: vertical; word-break: break-all;
}
.diag-actions { display: flex; gap: 8px; margin-top: 8px; }
.btn-small {
  padding: 5px 12px; border-radius: 6px; font-size: 13px; cursor: pointer;
  background: rgba(255,255,255,0.08); color: inherit; border: 1px solid rgba(255,255,255,0.12);
}
.btn-small:hover { background: rgba(255,255,255,0.16); }
.btn-small.danger { color: #ff6b6b; border-color: rgba(255,107,107,0.4); }

/* ============================================================
   POLISH LAYER — motion, parallax, gallery, checkout, docs,
   community, footer. Appended 2026-06-29. Theme vars reused.
   ============================================================ */

/* ---- Scroll reveal ---- */
[data-reveal]{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change:opacity,transform;
}
[data-reveal="fade"]{ transform:none; }
[data-reveal="left"]{ transform:translateX(-32px); }
[data-reveal="right"]{ transform:translateX(32px); }
[data-reveal="zoom"]{ transform:scale(.94); }
[data-reveal].is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ---- Keyframes ---- */
@keyframes floaty { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-9px); } }
@keyframes glowPulse { 0%,100%{ opacity:.5; } 50%{ opacity:.9; } }
@keyframes shimmer { 0%{ background-position:-160% 0; } 100%{ background-position:260% 0; } }
@keyframes scrollCue { 0%{ transform:translateY(0); opacity:0; } 30%{ opacity:1; } 70%{ opacity:1; } 100%{ transform:translateY(12px); opacity:0; } }

/* ---- Header motion ---- */
.site-header{ transition:min-height .3s ease, padding .3s ease, background .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled{
  min-height:64px; padding-top:10px; padding-bottom:10px;
  background:rgba(3,3,3,.92);
  box-shadow:0 10px 34px rgba(0,0,0,.45);
}
.nav a:not(.sign-in):not(.nav-cta){ position:relative; transition:color .2s ease; }
.nav a:not(.sign-in):not(.nav-cta)::after{
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0;
  background:linear-gradient(90deg,var(--gold),var(--gold-2));
  transition:width .26s cubic-bezier(.22,.61,.36,1); border-radius:2px;
}
.nav a:not(.sign-in):not(.nav-cta):hover::after{ width:100%; }
.brand-mark{ transition:transform .4s ease, box-shadow .4s ease; }
.brand:hover .brand-mark{ transform:translateY(-2px) rotate(-4deg); box-shadow:0 0 30px rgba(84,124,250,.6); }
.sign-in, .nav-cta{ transition:transform .2s ease, box-shadow .25s ease, filter .2s ease; }
.sign-in:hover{ transform:translateY(-1px); box-shadow:0 8px 22px rgba(84,124,250,.18); }
.nav-cta:hover{ transform:translateY(-1px); filter:brightness(1.05); box-shadow:0 16px 34px rgba(43,113,244,.4); }

/* ---- Button motion + shine ---- */
.button, .small-button{ position:relative; overflow:hidden; transition:transform .2s ease, box-shadow .25s ease, filter .2s ease; }
.button:hover, .small-button:hover{ transform:translateY(-2px); }
.button.primary:hover, .small-button:hover{ box-shadow:inset 0 1px 0 rgba(255,255,255,.5), 0 18px 38px rgba(43,113,244,.34); filter:brightness(1.04); }
.button.outline:hover, .button.ghost:hover{ background:rgba(84,124,250,.10); box-shadow:0 12px 28px rgba(84,124,250,.14); }
.button.primary::before, .nav-cta::before{
  content:""; position:absolute; top:0; left:0; width:60%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform:translateX(-180%) skewX(-18deg); pointer-events:none;
}
.button.primary:hover::before, .nav-cta:hover::before{ animation:shimmer 1.1s ease; }

/* ---- Hero parallax ---- */
.concept-hero[data-parallax-scene]{ cursor:default; }
.hero-bg{ transition:transform .2s ease-out; }
.hero-orb{
  position:absolute; z-index:-1; border-radius:50%; pointer-events:none;
  filter:blur(34px); animation:glowPulse 7s ease-in-out infinite;
}
.hero-orb.a{ width:340px; height:340px; left:46%; top:-40px; background:radial-gradient(circle,rgba(84,124,250,.30),transparent 70%); }
.hero-orb.b{ width:260px; height:260px; right:6%; bottom:-30px; background:radial-gradient(circle,rgba(124,63,208,.26),transparent 70%); animation-delay:1.6s; }
.concept-copy h1 span{ display:inline-block; }
.scroll-cue{
  position:absolute; left:50%; bottom:18px; transform:translateX(-50%);
  width:24px; height:38px; border:2px solid rgba(255,255,255,.32); border-radius:14px; z-index:3;
}
.scroll-cue::after{
  content:""; position:absolute; left:50%; top:7px; transform:translateX(-50%);
  width:4px; height:8px; border-radius:3px; background:var(--gold);
  animation:scrollCue 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce){ .hero-orb, .scroll-cue::after{ animation:none; } }

/* ---- Feature strip + concept cards hover ---- */
.feature-strip article{ transition:background .25s ease; }
.feature-strip article:hover{ background:rgba(84,124,250,.06); }
.feature-strip .icon{ transition:transform .35s ease, box-shadow .35s ease; }
.feature-strip article:hover .icon{ transform:translateY(-3px) scale(1.06); box-shadow:0 0 24px rgba(84,124,250,.3); }
.concept-cards article{ transition:transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease, box-shadow .3s ease; }
.concept-cards article:hover{ transform:translateY(-6px); border-color:rgba(84,124,250,.4); box-shadow:0 24px 50px rgba(0,0,0,.55); }
.concept-cards img{ transition:transform .5s ease; }
.concept-cards article:hover img{ transform:scale(1.07); }
.interior-img, .sphere-tray img{ transition:transform .5s ease; }
.render-showcase:hover .interior-img{ transform:scale(1.02); }

/* ---- Section section spacing helper ---- */
.section-head{ text-align:center; max-width:680px; margin:0 auto 6px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; margin-top:30px;
}
.gallery-item{
  position:relative; overflow:hidden; border-radius:12px; border:1px solid var(--line);
  background:var(--panel); aspect-ratio:4/3; cursor:pointer;
  transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.gallery-item:hover{ transform:translateY(-5px); border-color:rgba(84,124,250,.45); box-shadow:0 26px 56px rgba(0,0,0,.55); }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-cap{
  position:absolute; inset:auto 0 0 0; padding:34px 16px 14px; pointer-events:none;
  background:linear-gradient(0deg, rgba(3,3,3,.92), rgba(3,3,3,.55) 55%, transparent);
  transform:translateY(8px); opacity:0; transition:opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .gallery-cap{ opacity:1; transform:none; }
.gallery-cap strong{ display:block; font-size:15px; }
.gallery-cap small{ color:var(--muted); }
.gallery-badge{
  position:absolute; top:10px; left:10px; z-index:2; padding:4px 10px; border-radius:999px;
  font-size:11px; font-weight:800; letter-spacing:.04em; text-transform:uppercase;
  background:linear-gradient(180deg,#2B71F4,#7C3FD0); color:#ffffff;
}
.gallery-empty{ text-align:center; color:var(--muted); padding:40px; border:1px dashed var(--line); border-radius:12px; }
@media (max-width:900px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .gallery-grid{ grid-template-columns:1fr; } }

/* Featured gallery widget (home) */
.featured-gallery{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:26px; }
.featured-gallery .gallery-item{ aspect-ratio:1/1; }
.featured-gallery .gallery-item.lead{ grid-column:span 2; grid-row:span 2; aspect-ratio:auto; }
@media (max-width:900px){ .featured-gallery{ grid-template-columns:repeat(2,1fr); } .featured-gallery .gallery-item.lead{ grid-column:span 2; grid-row:auto; } }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:100; display:none; place-items:center;
  background:rgba(3,3,3,.92); backdrop-filter:blur(8px); padding:24px;
}
.lightbox.is-open{ display:grid; }
.lightbox img{ max-width:92vw; max-height:84vh; border-radius:12px; box-shadow:0 30px 90px rgba(0,0,0,.7); }
.lightbox-cap{ text-align:center; color:var(--ink); margin-top:14px; }
.lightbox-close{ position:absolute; top:20px; right:26px; font-size:30px; color:#fff; background:none; border:0; cursor:pointer; line-height:1; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-wrap{
  width:min(960px, calc(100% - 40px)); margin:0 auto; padding:clamp(40px,7vw,72px) 0;
  display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start;
}
@media (max-width:760px){ .checkout-wrap{ grid-template-columns:1fr; } }
.checkout-card{ background:var(--panel); border:1px solid var(--line); border-radius:14px; padding:26px; }
.checkout-card h2{ margin:0 0 16px; font-size:20px; }
.co-row{ display:flex; justify-content:space-between; align-items:baseline; padding:11px 0; border-bottom:1px solid var(--line); }
.co-row:last-of-type{ border-bottom:0; }
.co-total{ display:flex; justify-content:space-between; align-items:center; margin-top:14px; padding-top:16px; border-top:2px solid var(--line); }
.co-total .big{ font-size:32px; font-weight:900; color:var(--gold); }
.co-checks{ list-style:none; padding:0; margin:18px 0 0; }
.co-checks li{ position:relative; padding:6px 0 6px 26px; color:var(--muted); font-size:14px; }
.co-checks li::before{ content:"✓"; position:absolute; left:0; color:var(--gold); font-weight:900; }
.plan-toggle{ display:flex; gap:8px; margin-bottom:18px; }
.plan-toggle a{ flex:1; text-align:center; padding:12px; border:1px solid var(--line); border-radius:10px; text-decoration:none; color:var(--muted); font-weight:800; transition:.18s; }
.plan-toggle a.active{ border-color:var(--gold); background:rgba(84,124,250,.1); color:var(--gold); }
.pay-tabs{ display:flex; gap:8px; margin-bottom:18px; }
.pay-tab{ flex:1; text-align:center; padding:12px; border:1px solid var(--line); border-radius:10px; cursor:pointer; font-weight:800; font-size:14px; color:var(--muted); background:rgba(255,255,255,.02); transition:.18s; }
.pay-tab.active{ border-color:var(--gold); background:rgba(84,124,250,.1); color:var(--gold); }
.pay-panel{ display:none; }
.pay-panel.active{ display:block; animation:fadeInPanel .3s ease; }
@keyframes fadeInPanel{ from{ opacity:0; transform:translateY(6px); } to{ opacity:1; transform:none; } }
.qr-img{ width:220px; height:220px; object-fit:contain; background:#fff; border-radius:14px; padding:10px; display:block; margin:0 auto 14px; }
.pay-trust{ font-size:12px; color:var(--muted); text-align:center; margin-top:14px; }
.disc-badge{ display:inline-block; background:rgba(75,200,120,.16); color:#6fe39a; font-size:12px; font-weight:800; padding:4px 11px; border-radius:999px; margin-bottom:12px; }

/* ============================================================
   DOCS / CONTACT (Documentation page)
   ============================================================ */
.docs-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:8px; }
@media (max-width:900px){ .docs-grid{ grid-template-columns:1fr; } }
.docs-card{
  display:block; text-decoration:none; color:inherit; border:1px solid var(--line); border-radius:14px;
  padding:22px; background:linear-gradient(180deg, rgba(28,28,28,.8), rgba(12,12,12,.9));
  transition:transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease, box-shadow .3s ease;
}
.docs-card:hover{ transform:translateY(-5px); border-color:rgba(84,124,250,.4); box-shadow:0 22px 48px rgba(0,0,0,.5); }
.docs-icon{
  display:grid; place-items:center; width:48px; height:48px; border-radius:14px; margin-bottom:14px;
  color:var(--gold); background:radial-gradient(circle, rgba(84,124,250,.18), rgba(84,124,250,.04));
}
.docs-card h3{ margin:0 0 6px; font-size:17px; }
.docs-card p{ margin:0; color:var(--muted); font-size:14px; line-height:1.55; }
.docs-hero-media{ border-radius:14px; overflow:hidden; border:1px solid var(--line); margin-top:8px; }
.docs-hero-media img{ width:100%; height:320px; object-fit:cover; }
.docs-split{ display:grid; grid-template-columns:1.1fr .9fr; gap:30px; align-items:center; }
@media (max-width:820px){ .docs-split{ grid-template-columns:1fr; } }
.docs-faq{ display:grid; gap:12px; }
.docs-faq details{ border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.03); padding:4px 16px; }
.docs-faq summary{ cursor:pointer; padding:12px 0; font-weight:800; list-style:none; }
.docs-faq summary::-webkit-details-marker{ display:none; }
.docs-faq summary::before{ content:"+"; color:var(--gold); font-weight:900; margin-right:10px; }
.docs-faq details[open] summary::before{ content:"–"; }
.docs-faq p{ margin:0 0 14px; color:var(--muted); line-height:1.6; }

/* ============================================================
   COMMUNITY FORUM (color + icons + buttons)
   ============================================================ */
.forum-hero{ display:flex; justify-content:space-between; align-items:flex-end; gap:18px; flex-wrap:wrap; }
.forum-cat{ position:relative; overflow:hidden; transition:transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.forum-cat::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:4px;
  background:linear-gradient(180deg, var(--gold), var(--gold-2)); opacity:.0; transition:opacity .25s ease;
}
.forum-cat:hover{ transform:translateX(2px); box-shadow:0 16px 38px rgba(0,0,0,.4); }
.forum-cat:hover::before{ opacity:1; }
.forum-cat-left{ display:flex; gap:16px; align-items:center; }
.forum-cat-ico{
  display:grid; place-items:center; flex:0 0 46px; width:46px; height:46px; border-radius:13px;
  color:var(--gold); background:radial-gradient(circle, rgba(84,124,250,.18), rgba(84,124,250,.05));
}
.forum-count{ display:inline-flex; align-items:center; gap:6px; padding:6px 12px; border-radius:999px; background:rgba(84,124,250,.1); border:1px solid rgba(84,124,250,.22); }
.forum-toolbar{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin:18px 0; }
.forum-post{ transition:border-color .25s ease, background .25s ease; }
.forum-post:hover{ border-color:rgba(84,124,250,.22); }
.forum-post.is-op{ border-color:rgba(84,124,250,.3); background:rgba(84,124,250,.05); }
.forum-images img{ transition:transform .4s ease; cursor:pointer; }
.forum-images img:hover{ transform:scale(1.04); }
.topic-row{
  display:flex; justify-content:space-between; align-items:center; gap:14px; padding:15px 18px;
  border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.03);
  text-decoration:none; color:inherit; transition:border-color .2s ease, background .2s ease, transform .2s ease;
}
.topic-row:hover{ border-color:rgba(84,124,250,.32); background:rgba(84,124,250,.05); transform:translateX(2px); }
.topic-row h3{ margin:0; font-size:16px; }
.topic-meta{ color:var(--muted); font-size:13px; margin-top:3px; }
.topic-replies{ color:var(--gold); font-weight:800; font-size:13px; white-space:nowrap; }

/* ============================================================
   FOOTER (redesigned, multi-column)
   ============================================================ */
.site-footer{
  display:block; padding:0;
  border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(16,16,16,.92), #050505);
}
.footer-top{
  display:grid; grid-template-columns:1.4fr repeat(3, 1fr); gap:34px;
  width:min(var(--maxw), calc(100% - 48px)); margin:0 auto; padding:52px 0 36px;
}
.footer-brand{ display:flex; gap:14px; align-items:flex-start; }
.footer-brand .brand-mark{ flex:0 0 auto; }
.footer-brand strong{ font-size:16px; letter-spacing:.04em; }
.footer-brand p{ color:var(--muted); margin:6px 0 14px; max-width:280px; line-height:1.6; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  display:grid; place-items:center; width:36px; height:36px; border-radius:10px; color:var(--muted);
  border:1px solid var(--line); background:rgba(255,255,255,.03); transition:.2s;
}
.footer-social a:hover{ color:var(--gold); border-color:rgba(84,124,250,.4); transform:translateY(-2px); }
.footer-col h4{ display:block; color:#fff; font-size:13px; letter-spacing:.06em; text-transform:uppercase; margin:0 0 14px; }
.footer-col a, .footer-col span{ display:block; color:var(--muted); text-decoration:none; font-size:14px; padding:5px 0; transition:color .18s ease; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.07);
  display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
  width:min(var(--maxw), calc(100% - 48px)); margin:0 auto; padding:18px 0;
  color:var(--muted); font-size:13px;
}
.footer-bottom .footer-made{ color:var(--muted); }
@media (max-width:900px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns:1fr; } }

/* ============================================================
   FEATURES PAGE — alternating rows + spec grid + stat band
   ============================================================ */
.feature-hero-media{ margin-top:30px; border-radius:16px; overflow:hidden; border:1px solid var(--line); box-shadow:0 30px 80px rgba(0,0,0,.5); position:relative; }
.feature-hero-media img{ width:100%; height:clamp(280px,42vw,520px); object-fit:cover; }
.feature-hero-media .badge-row{ position:absolute; left:18px; bottom:16px; display:flex; gap:8px; flex-wrap:wrap; }
.feature-hero-media .badge-row .pill{ background:rgba(3,3,3,.7); border:1px solid rgba(84,124,250,.3); backdrop-filter:blur(6px); }

.stat-band{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin:42px auto 8px; }
.stat-band .stat{ text-align:center; }
.stat-band .stat strong{ color:var(--gold); font-size:30px; }
.stat-band .stat span{ display:block; color:var(--muted); font-size:13px; margin-top:6px; }
@media (max-width:760px){ .stat-band{ grid-template-columns:repeat(2,1fr); } }

.feature-rows{ display:grid; gap:clamp(28px,5vw,64px); margin-top:18px; }
.feature-row{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,4vw,52px); align-items:center; }
.feature-row.flip .feature-row-media{ order:2; }
.feature-row-media{ border-radius:14px; overflow:hidden; border:1px solid var(--line); box-shadow:0 24px 56px rgba(0,0,0,.45); }
.feature-row-media img{ width:100%; height:clamp(240px,30vw,360px); object-fit:cover; transition:transform .6s ease; }
.feature-row-media:hover img{ transform:scale(1.05); }
.feature-row-copy .eyebrow{ margin-bottom:10px; }
.feature-row-copy h2{ margin:0 0 14px; font-size:clamp(24px,2.8vw,34px); line-height:1.1; letter-spacing:-.01em; }
.feature-row-copy p{ color:var(--muted); line-height:1.7; }
.feature-row-copy ul{ list-style:none; padding:0; margin:16px 0 0; display:grid; gap:8px; }
.feature-row-copy li{ position:relative; padding-left:26px; color:#ded7c9; }
.feature-row-copy li::before{ content:""; position:absolute; left:0; top:7px; width:14px; height:14px; border-radius:4px; background:linear-gradient(180deg,#2B71F4,#7C3FD0); }
@media (max-width:820px){ .feature-row{ grid-template-columns:1fr; } .feature-row.flip .feature-row-media{ order:0; } }

.spec-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:26px; }
@media (max-width:900px){ .spec-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .spec-grid{ grid-template-columns:1fr; } }
.spec-card{ border:1px solid var(--line); border-radius:14px; padding:22px; background:linear-gradient(180deg,rgba(26,26,26,.8),rgba(12,12,12,.92)); transition:transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease, box-shadow .3s ease; }
.spec-card:hover{ transform:translateY(-5px); border-color:rgba(84,124,250,.4); box-shadow:0 22px 48px rgba(0,0,0,.5); }
.spec-icon{ display:grid; place-items:center; width:44px; height:44px; border-radius:12px; margin-bottom:14px; color:var(--gold); background:radial-gradient(circle,rgba(84,124,250,.18),rgba(84,124,250,.04)); }
.spec-card h3{ margin:0 0 6px; font-size:16px; }
.spec-card p{ margin:0; color:var(--muted); font-size:14px; line-height:1.55; }

/* ============================================================
   EQUAL-HEIGHT CARD ALIGNMENT (pricing + documentation bottom
   blocks): cards stretch to equal height and the call-to-action
   pins to the bottom so buttons line up regardless of text length.
   ============================================================ */
.pricing-grid { align-items: stretch; }
.price-card { display: flex; flex-direction: column; }
.price-card > .co-checks { margin-bottom: 18px; }
.price-card > .button { margin-top: auto; }

.equal-cards { align-items: stretch; }
.equal-cards > .wide-card { display: flex; flex-direction: column; }
.equal-cards > .wide-card > p:last-of-type { margin-top: auto; margin-bottom: 0; }

/* ---- Image loading UX: dark placeholder + fade-in (JS-driven; no-JS stays visible) ---- */
.gallery-item img, .featured-gallery img, .forum-images img { background:#141414; }
img.img-fade { opacity:0; transition:opacity .5s ease; }
img.img-fade.is-loaded { opacity:1; }

/* Billing details grid (checkout + account) */
.billing-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.billing-grid label { display:flex; flex-direction:column; gap:5px; font-size:13px; color:var(--muted,#b9b3a7); }
.billing-grid label.bf-wide { grid-column:1 / -1; }
.billing-grid input { width:100%; padding:9px 11px; border-radius:8px; border:1px solid var(--line,#2a2a2a); background:var(--input-bg,#111); color:var(--text,#f2eede); font-size:14px; }
.billing-grid input:focus { outline:none; border-color:var(--gold,#2B71F4); }
@media (max-width:560px){ .billing-grid { grid-template-columns:1fr; } }

/* Print: show only the invoice card */
@media print {
  header, footer, .page-hero, .button, .small-button { display:none !important; }
  .dashboard-grid { display:block; }
}


/* ============ Coming Soon — "Genie Render" hero concept ============ */
.soon2 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050109;
}
/* Centred stage — caps the composition width so on ultra-wide screens (2560px+)
   the text and the "G" stay balanced in a centred band instead of pinning to
   opposite edges with a big void between. */
.soon2-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/* Legibility scrim: keeps the left text column dark over the bright "G" at any
   width (invisible on wide screens where the left of the art is already black). */
.soon2-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5,1,9,.94) 0%, rgba(5,1,9,.72) 33%, rgba(5,1,9,.18) 66%, rgba(5,1,9,0) 100%);
}
/* Cosmic background + 3D glass "G" (right). Slightly oversized so parallax
   never exposes an edge. On ultra-wide screens the art is capped to the stage,
   so its side edges are feathered to transparent — the panel melts into the
   #050109 void instead of reading as a hard-edged rectangle (esp. the bright
   "G" glow on the right). Mask travels WITH the layer so parallax stays clean. */
.soon2-bg {
  position: absolute;
  inset: -5% -5% -5% -5%;
  z-index: 0;
  background: #050109 url('/assets/soon-bg.jpg') no-repeat center right / cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 95%, transparent 100%);
  will-change: transform;
}
@media (max-width: 900px) {
  /* Narrow/portrait: shrink the G to the lower-right, fade it, and darken the
     top so the heading + form stay crisp instead of sitting on a giant "G". */
  .soon2-bg { background-size: auto 58%; background-position: right bottom; opacity: .4; }
  .soon2-stage::after { background: linear-gradient(180deg, rgba(5,1,9,.72) 0%, rgba(5,1,9,.3) 40%, rgba(5,1,9,.55) 72%, rgba(5,1,9,.9) 100%); }
  .soon2-inner { padding: 40px 26px 64px; }
}
/* Ambient colour glows that drift with the cursor. */
.soon2-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(60px); pointer-events: none; will-change: transform; }
.soon2-glow--a { width: 46vw; height: 46vw; left: -10vw; top: 10vh; background: radial-gradient(circle, rgba(43,113,244,.20), transparent 65%); }
.soon2-glow--b { width: 40vw; height: 40vw; right: -6vw; bottom: -8vh; background: radial-gradient(circle, rgba(124,63,208,.22), transparent 65%); }

.soon2-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 48px clamp(24px, 3.5vw, 76px);
}
.soon2-content { width: 100%; max-width: 700px; will-change: transform; }

.soon2-logo { width: min(300px, 70%); height: auto; margin: 0 0 34px; filter: drop-shadow(0 8px 30px rgba(84,124,250,.35)); }

.soon2-title {
  margin: 0;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: .96;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  background: linear-gradient(100deg, #5b8cff 8%, #9b7cff 52%, #c58bff 92%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 4px 40px rgba(91,124,255,.35));
}
.soon2-divider { display: flex; align-items: center; gap: 10px; margin: 20px 0 26px; }
.soon2-divider span { height: 2px; width: 130px; background: linear-gradient(90deg, transparent, #5b8cff, #9b7cff); border-radius: 2px; }
.soon2-divider i { width: 6px; height: 6px; border-radius: 50%; background: #7fa2ff; box-shadow: 0 0 14px 3px rgba(127,162,255,.8); animation: soon2-pulse 2.4s ease-in-out infinite; }

.soon2-sub { margin: 0 0 30px; max-width: 500px; color: #c7cbe0; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; }

.soon2-countdown { display: flex; gap: 12px; margin: 0 0 26px; }
.soon2-unit { min-width: 68px; padding: 12px 6px; text-align: center; border: 1px solid rgba(120,150,255,.22); border-radius: 12px; background: rgba(20,16,40,.5); backdrop-filter: blur(6px); }
.soon2-unit strong { display: block; font-size: 26px; font-weight: 900; color: #fff; font-variant-numeric: tabular-nums; }
.soon2-unit span { display: block; margin-top: 3px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #9aa0c0; }

.soon2-form { display: flex; max-width: 520px; padding: 6px; gap: 6px; border: 1px solid rgba(120,150,255,.28); border-radius: 14px; background: rgba(14,12,28,.6); backdrop-filter: blur(10px); box-shadow: 0 20px 50px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.05); }
.soon2-input { flex: 1; min-height: 50px; padding: 0 18px; border: 0; background: transparent; color: #fff; font-size: 15px; }
.soon2-input::placeholder { color: #8b8fae; }
.soon2-input:focus { outline: none; }
.soon2-submit {
  min-height: 50px; padding: 0 26px; border: 0; border-radius: 10px; cursor: pointer;
  font-weight: 800; font-size: 14px; color: #fff; white-space: nowrap;
  background: linear-gradient(180deg, #3b74ff, #6b3fe0);
  box-shadow: 0 8px 22px rgba(59,116,255,.4), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.soon2-submit:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 12px 30px rgba(59,116,255,.55); }
.soon2-submit:active { transform: translateY(0); }

.soon2-note { display: inline-flex; align-items: center; gap: 8px; margin: 16px 0 44px; color: #9aa0c0; font-size: 13px; }
.soon2-note svg { color: #7fa2ff; }

.soon2-features { display: flex; flex-wrap: wrap; gap: 26px 30px; }
.soon2-feat { flex: 1 1 0; min-width: 150px; will-change: transform; transition: transform .3s ease; }
.soon2-feat img { width: 46px; height: 46px; object-fit: contain; margin-bottom: 12px; filter: drop-shadow(0 4px 16px rgba(91,124,255,.5)); animation: soon2-float 6s ease-in-out infinite; }
.soon2-feat:nth-child(2) img { animation-delay: -2s; }
.soon2-feat:nth-child(3) img { animation-delay: -4s; }
.soon2-feat strong { display: block; color: #fff; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 6px; }
.soon2-feat span { display: block; color: #9aa0c0; font-size: 13px; line-height: 1.55; }
.soon2-feat:hover { transform: translateY(-4px); }
.soon2-feat:hover img { filter: drop-shadow(0 6px 22px rgba(120,90,255,.9)); }

.soon2-copy { position: absolute; z-index: 2; left: 0; right: 0; bottom: 18px; text-align: center; color: #5c607a; font-size: 12px; margin: 0; }

/* Entrance reveal — pure CSS (self-plays on load, no JS dependency), staggered
   by the inline --d so content can never flash blank if JS is slow to run. */
.reveal { opacity: 0; animation: soon2-reveal .7s cubic-bezier(.2,.7,.2,1) var(--d, 0s) forwards; }
@keyframes soon2-reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@keyframes soon2-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .55; } }
@keyframes soon2-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 640px) {
  .soon2-form { flex-direction: column; }
  .soon2-features { gap: 24px 30px; }
  .soon2-feat { max-width: 100%; flex: 1 1 40%; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; }
  .soon2-divider i, .soon2-feat img { animation: none; }
}
/* Honeypot — off-screen, never shown to humans (bots fill it → rejected). */
.soon2-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
