:root {
  --bg: #030712;
  --panel: #0f172a;
  --panel-2: #050816;
  --border: rgba(148, 163, 184, .18);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --dim: #94a3b8;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --violet: #8b5cf6;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --------- Animations --------- */
@keyframes rj-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(2deg); }
}
@keyframes rj-pulse {
  0%, 100% { opacity: .45; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.08); }
}
@keyframes rj-slide-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rj-shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes rj-border-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Reveal: always visible. No JS gating. */
.rj-reveal { opacity: 1; }

/* Hero entrance: pure CSS auto-play on load (no JS class toggle). */
.hero-enter { animation: rj-slide-up .8s ease both; }
.hero-enter.d1 { animation-delay: .08s; }
.hero-enter.d2 { animation-delay: .16s; }

.rj-glass {
  background: linear-gradient(180deg, rgba(15, 23, 42, .86), rgba(15, 23, 42, .46));
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}

.rj-gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rj-animated-border { position: relative; overflow: hidden; border-radius: 32px; padding: 1px; }
.rj-animated-border::before {
  content: "";
  position: absolute;
  inset: -55%;
  background: conic-gradient(from 90deg, transparent, rgba(6, 182, 212, .75), rgba(236, 72, 153, .75), transparent);
  animation: rj-border-spin 7s linear infinite;
}
.rj-animated-border > * { position: relative; z-index: 1; }

.rj-card-hover { transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.rj-card-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, .55);
  box-shadow: 0 28px 90px rgba(6, 182, 212, .12);
}

.rj-shine { position: relative; overflow: hidden; }
.rj-shine::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: translateX(-120%);
  animation: rj-shimmer 4.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rj-reveal { opacity: 1; transform: none; }
}

/* --------- Hero --------- */
main { position: relative; overflow: hidden; }

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}
.blob.cyan   { left: -160px; top: 80px;   width: 340px; height: 340px; background: rgba(6, 182, 212, .22); animation: rj-pulse 7s ease-in-out infinite; }
.blob.pink   { right: -140px; top: 200px; width: 400px; height: 400px; background: rgba(236, 72, 153, .22); animation: rj-pulse 8s ease-in-out infinite; }
.blob.violet { bottom: 60px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: rgba(139, 92, 246, .14); }

nav.top {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  display: grid; place-items: center;
  font-weight: 900; letter-spacing: -.02em;
  border: 1px solid rgba(255,255,255,.15);
}
.brand p { margin: 0; }
.brand .name { font-weight: 700; font-size: 14px; }
.brand .sub { font-size: 12px; color: var(--dim); }

.nav-cta {
  display: inline-flex; align-items: center;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(6,182,212,.3);
  color: #cffafe; font-size: 14px; font-weight: 600;
  transition: background .2s ease, border-color .2s ease;
}
.nav-cta:hover { border-color: rgba(6,182,212,.7); background: rgba(6,182,212,.1); }

.hero {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0 96px;
}

.chip {
  display: inline-flex;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(6,182,212,.25);
  background: rgba(6,182,212,.1);
  color: #cffafe; font-size: 14px; font-weight: 500;
  margin-bottom: 24px;
}
.chip.pink { border-color: rgba(236,72,153,.25); background: rgba(236,72,153,.1); color: #fce7f3; }

h1.title {
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.03em;
  margin: 0;
  max-width: 780px;
}

.lead {
  margin-top: 28px;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
}

.cta-row { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  color: white;
  font-weight: 900; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 20px 60px rgba(236,72,153,.25);
  transition: transform .2s ease;
  border: 0; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { transform: scale(1.02); }
.btn-outline {
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  font-weight: 900; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); }

.quick-tags {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 620px;
}
.quick-tag {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  text-align: center; font-weight: 600; font-size: 14px; color: #e2e8f0;
}

/* Hero preview card */
.preview-card {
  border-radius: 32px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(15,23,42,.86), rgba(15,23,42,.46));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.portrait-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(6,182,212,.2), rgba(236,72,153,.2));
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.portrait-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.portrait-badge {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(3,7,18,.65), rgba(3,7,18,.9));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.pb-eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #cffafe; font-weight: 700;
}
.pb-name {
  margin-top: 6px;
  font-size: 22px; font-weight: 900; letter-spacing: -.02em; color: white;
}

.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.metric {
  border-radius: 16px; padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.metric .big { font-size: 26px; font-weight: 900; }
.metric .lbl { margin-top: 4px; font-size: 12px; color: var(--dim); }

.funnel-line {
  margin-top: 16px;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(6,182,212,.2);
  background: rgba(6,182,212,.1);
}
.funnel-line .k { font-size: 14px; font-weight: 700; color: #cffafe; }
.funnel-line .v { margin-top: 8px; font-size: 14px; color: var(--muted); }

.note-below { margin-top: 20px; text-align: center; font-size: 13px; color: #64748b; }

/* --------- Section defaults --------- */
section.block { padding: 80px 0; position: relative; }

.kicker { font-size: 13px; letter-spacing: .25em; text-transform: uppercase; font-weight: 700; color: #67e8f9; }
.kicker.pink { color: #f9a8d4; }

h2.h {
  margin: 16px 0 0;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
}

.grid-2 { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; }
.grid-2 .rj-glass { border-radius: 24px; padding: 32px; }
.grid-2 .rj-glass p.body { font-size: 18px; line-height: 1.65; color: var(--muted); margin: 0; }

.snap-grid { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.snap-cell {
  padding: 16px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.snap-cell .k { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #64748b; }
.snap-cell .v { margin-top: 8px; font-weight: 700; color: white; }

.three { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.three article {
  border-radius: 24px; padding: 28px;
  background: linear-gradient(180deg, rgba(15,23,42,.86), rgba(15,23,42,.46));
  border: 1px solid var(--border);
}
.three .num {
  width: 44px; height: 44px; border-radius: 14px;
  display: inline-grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  font-weight: 900; color: white;
}
.three h3 { margin: 24px 0 0; font-size: 24px; font-weight: 900; }
.three p { margin: 16px 0 0; color: var(--muted); line-height: 1.6; }

/* Build cards */
.build-header { text-align: center; max-width: 720px; margin: 0 auto; }
.build-header p.lead { margin-top: 20px; font-size: 18px; }

.build-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.build-card {
  border-radius: 24px; padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.build-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  margin: -8px -8px 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(6,182,212,.15), rgba(236,72,153,.15));
}
.build-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.build-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,7,18,0) 55%, rgba(3,7,18,.4) 100%);
  pointer-events: none;
}
.build-card h3 { margin: 0; font-size: 20px; font-weight: 900; }
.build-card p { margin: 12px 0 0; color: var(--dim); line-height: 1.6; }
.build-card .num { margin-top: 24px; font-size: 13px; font-weight: 700; color: #7dd3fc; }

/* Offer ladder */
.ladder-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.ladder-wrap .sticky { position: sticky; top: 32px; }
.ladder-list { border-radius: 24px; overflow: hidden; background: linear-gradient(180deg, rgba(15,23,42,.86), rgba(15,23,42,.46)); border: 1px solid var(--border); }
.ladder-row {
  display: grid; grid-template-columns: .35fr 1fr .35fr;
  align-items: center; gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ladder-row:last-child { border-bottom: 0; }
.ladder-row .stage { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #67e8f9; }
.ladder-row .name { font-weight: 600; color: white; }
.ladder-row .price {
  justify-self: end;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.06); font-size: 13px; font-weight: 700; color: #e2e8f0;
}

/* Proof */
.proof-header { text-align: center; max-width: 720px; margin: 0 auto; }
.proof-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.proof-card {
  border-radius: 24px; padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(15,23,42,.7);
}
.proof-card h3 { margin: 0; font-size: 24px; font-weight: 900; }
.proof-card p { margin: 16px 0 0; color: var(--muted); line-height: 1.6; }
.proof-banner {
  margin-top: 40px;
  border-radius: 24px; padding: 28px; text-align: center;
  border: 1px solid rgba(236,72,153,.25); background: rgba(236,72,153,.1);
}
.proof-banner p { margin: 0; font-size: 28px; font-weight: 900; letter-spacing: -.02em; }

.credit-proof { margin-top: 24px; text-align: center; }
.credit-proof-label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dim);
}
.credit-proof-frame {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #0b1230;
  padding: 4px;
  transition: border-color .28s ease, box-shadow .28s ease;
}
.credit-proof-frame:hover { border-color: rgba(6,182,212,.55); box-shadow: 0 20px 60px rgba(6,182,212,.12); }
.credit-proof-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Screenshots */
.screens-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.screens-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.screen-card {
  border-radius: 24px; padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  display: block;
}
.screen-frame {
  border-radius: 20px; padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: var(--panel-2);
}
.screen-hero {
  aspect-ratio: 16/9;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(6,182,212,.2), rgba(15,23,42,1) 60%, rgba(236,72,153,.2));
  font-weight: 900; font-size: 26px; color: white;
  text-align: center; padding: 12px;
  overflow: hidden;
  position: relative;
}
.screen-hero-photo { padding: 0; }
.screen-hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.screen-hero-label {
  position: absolute; left: 12px; bottom: 12px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(3,7,18,.75);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px; font-weight: 800;
  backdrop-filter: blur(6px);
}
.screen-card h3 { margin: 20px 0 0; font-size: 20px; font-weight: 900; }
.screen-card p.cap { margin: 8px 0 0; color: var(--dim); line-height: 1.55; }
.screen-card .open { margin-top: 16px; font-size: 13px; font-weight: 700; color: #7dd3fc; }
.screen-card:hover .open { color: #f9a8d4; }

/* Follow the brand / socials */
.social-header { text-align: center; max-width: 720px; margin: 0 auto; }
.social-header p.lead { margin-top: 20px; font-size: 18px; }

.social-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.social-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  font-size: 20px; color: white;
  flex-shrink: 0;
}
.social-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.social-name { font-weight: 800; font-size: 16px; color: white; }
.social-handle { font-size: 13px; color: var(--dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.social-arrow { margin-left: auto; font-size: 16px; color: #7dd3fc; flex-shrink: 0; }
.social-card:hover .social-arrow { color: #f9a8d4; }

/* Footer */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.footer-socials { display: flex; gap: 16px; align-items: center; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--dim);
  font-size: 15px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.footer-socials a:hover { color: #cffafe; border-color: rgba(6,182,212,.5); background: rgba(6,182,212,.1); }

/* Closing */
.closing-wrap { border-radius: 32px; padding: 1px; }
.closing-card {
  border-radius: 32px;
  background: var(--panel-2);
  padding: 64px;
  text-align: center;
}
.closing-card h2 { margin: 20px 0 0; font-size: clamp(40px, 5vw, 72px); font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.closing-card p { margin: 28px auto 0; max-width: 720px; font-size: 20px; line-height: 1.6; color: var(--muted); }
.closing-tags { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; margin-left: auto; margin-right: auto; }
.closing-tag {
  padding: 20px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  font-weight: 900;
}
.closing-card .cta { margin-top: 40px; }

footer.site {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 13px;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 0 64px; }
  .grid-2, .ladder-wrap { grid-template-columns: 1fr; }
  .three, .build-grid, .screens-grid { grid-template-columns: 1fr; }
  .proof-grid, .snap-grid, .metric-grid, .quick-tags { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .closing-tags { grid-template-columns: 1fr; }
  .closing-card { padding: 40px 24px; }
  .nav-cta { display: none; }
  .footer-inner { justify-content: flex-start; }
}
