:root{
  --rs-blue:#0295E9;
  --glass: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --shadow: 0 10px 35px rgba(0,0,0,.35);
  --glow: 0 0 0 1px rgba(2,149,233,.22), 0 0 45px rgba(2,149,233,.14);

  --hue: 203;
  --hue2: 160;

  --o1x: 0px; --o1y: 0px;
  --o2x: 0px; --o2y: 0px;
  --o3x: 0px; --o3y: 0px;

  --sweepX: 0px;
  --sweepY: 0px;
}

@property --hue { syntax: '<number>'; inherits: true; initial-value: 203; }
@property --hue2 { syntax: '<number>'; inherits: true; initial-value: 160; }
@property --o1x { syntax: '<length>'; inherits: true; initial-value: 0px; }
@property --o1y { syntax: '<length>'; inherits: true; initial-value: 0px; }
@property --o2x { syntax: '<length>'; inherits: true; initial-value: 0px; }
@property --o2y { syntax: '<length>'; inherits: true; initial-value: 0px; }
@property --o3x { syntax: '<length>'; inherits: true; initial-value: 0px; }
@property --o3y { syntax: '<length>'; inherits: true; initial-value: 0px; }
@property --sweepX { syntax: '<length>'; inherits: true; initial-value: 0px; }
@property --sweepY { syntax: '<length>'; inherits: true; initial-value: 0px; }

html, body { height: 100%; }
body{
  background: #070A10;
  overflow-x: hidden;
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.rs-bg{
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  transition:
    --hue 700ms ease,
    --hue2 700ms ease,
    --o1x 700ms ease, --o1y 700ms ease,
    --o2x 700ms ease, --o2y 700ms ease,
    --o3x 700ms ease, --o3y 700ms ease,
    --sweepX 700ms ease, --sweepY 700ms ease;
  background:
    radial-gradient(1200px 700px at 20% 10%, hsla(var(--hue) 100% 60% / 0.22), transparent 55%),
    radial-gradient(900px 600px at 80% 40%, hsla(calc(var(--hue) + 8) 100% 60% / 0.12), transparent 60%),
    radial-gradient(1100px 700px at 50% 95%, hsla(var(--hue2) 100% 55% / 0.08), transparent 60%),
    linear-gradient(180deg, #05070C 0%, #070A10 55%, #05070C 100%);
}

.rs-sweep{
  position:absolute;
  inset:-200px;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 30% 35%, hsla(var(--hue) 100% 60% / 0.08), transparent 55%),
    radial-gradient(800px 460px at 70% 35%, hsla(calc(var(--hue) + 10) 100% 60% / 0.06), transparent 55%),
    radial-gradient(900px 520px at 50% 85%, hsla(var(--hue2) 100% 55% / 0.05), transparent 60%);
  transform: translate3d(var(--sweepX), var(--sweepY), 0);
  filter: blur(18px);
  opacity: .8;
  mix-blend-mode: screen;
}

.rs-orb{
  position:absolute;
  border-radius:9999px;
  filter: blur(28px);
  opacity: .78;
  transform: translateZ(0);
  pointer-events:none;
}
.rs-orb-1{
  width: 520px; height: 520px; left:-140px; top:-180px;
  background: hsla(var(--hue) 100% 60% / 0.22);
  animation: orbFloat1 16s ease-in-out infinite;
}
.rs-orb-2{
  width: 420px; height: 420px; right:-120px; top:90px;
  background: hsla(calc(var(--hue) + 10) 100% 60% / 0.16);
  animation: orbFloat2 18s ease-in-out infinite;
}
.rs-orb-3{
  width: 520px; height: 520px; left:20%; bottom:-260px;
  background: hsla(var(--hue2) 100% 55% / 0.10);
  animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1{
  0%,100%{ transform: translate3d(var(--o1x), var(--o1y),0) scale(1); }
  50%{ transform: translate3d(calc(var(--o1x) + 14px), calc(var(--o1y) + 22px),0) scale(1.03); }
}
@keyframes orbFloat2{
  0%,100%{ transform: translate3d(var(--o2x), var(--o2y),0) scale(1); }
  50%{ transform: translate3d(calc(var(--o2x) - 16px), calc(var(--o2y) + 18px),0) scale(1.03); }
}
@keyframes orbFloat3{
  0%,100%{ transform: translate3d(var(--o3x), var(--o3y),0) scale(1); }
  50%{ transform: translate3d(calc(var(--o3x) + 10px), calc(var(--o3y) - 16px),0) scale(1.03); }
}

.rs-grid{
  position:absolute;
  inset:-1px;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .08;
  mask-image: radial-gradient(900px 600px at 50% 30%, rgba(0,0,0,1), transparent 70%);
}

.rs-vignette{
  position:absolute;
  inset:0;
  background: radial-gradient(900px 700px at 50% 18%, transparent 40%, rgba(0,0,0,.58) 100%);
  pointer-events:none;
}

.glass{
  border: 1px solid var(--stroke);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
}
.glass-soft{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
}

.rs-container{
  width: min(1120px, calc(100vw - 28px));
  margin: 0 auto;
}

.rs-topbar{
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 16px;
  padding-bottom: 16px;
}
.rs-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 14px;
}

.rs-brand{ display:flex; align-items:center; gap: 10px; user-select:none; cursor:pointer; }
.rs-brandmark{
  height: 40px; width: 40px;
  border-radius: 16px;
  border: 1px solid rgba(2,149,233,.30);
  background: linear-gradient(135deg, rgba(2,149,233,.25), rgba(255,255,255,.02));
  box-shadow: 0 0 0 1px rgba(2,149,233,.18), 0 0 30px rgba(2,149,233,.10);
  display:flex; align-items:center; justify-content:center;
}
.rs-brandmark svg{ opacity:.95; filter: drop-shadow(0 12px 18px rgba(0,0,0,.35)); }
.rs-brandname{ font-weight: 900; letter-spacing: .08em; font-size: 16px; color: rgba(255,255,255,.92); }
.rs-brandsub{ font-size: 12px; color: rgba(255,255,255,.55); margin-top: -2px; }

.rs-nav-desktop{ display:none; gap: 8px; align-items:center; justify-content:center; flex-wrap: wrap; }
@media (min-width: 900px){ .rs-nav-desktop{ display:flex; } }

.rs-navlink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 16px;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
  text-decoration:none;
  font-weight: 650;
  font-size: 14px;
  cursor:pointer;
  user-select:none;
  white-space: nowrap;
}
.rs-navlink:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  box-shadow: 0 0 0 1px rgba(2,149,233,.14);
}
.rs-navlink.is-active{
  background: rgba(2,149,233,.14);
  border-color: rgba(2,149,233,.30);
  color: rgba(255,255,255,.95);
  box-shadow: var(--glow);
}

.rs-iconbtn{
  height: 44px; width: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease;
  cursor:pointer;
  user-select:none;
}
.rs-iconbtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(2,149,233,.22);
  box-shadow: 0 0 0 1px rgba(2,149,233,.14);
}
@media (min-width: 900px){ .rs-iconbtn{ display:none; } }

.rs-drawer-overlay{
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.rs-drawer{
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 61;
  transform: translate3d(0, -10px, 0);
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}
.rs-drawer-inner{ padding: 14px; }
.rs-drawer.is-open, .rs-drawer-overlay.is-open{ opacity: 1; pointer-events: auto; }
.rs-drawer.is-open{ transform: translate3d(0, 0, 0); }
.rs-drawer-grid{ display:grid; gap: 8px; margin-top: 10px; }
.rs-drawer-link{
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  font-weight: 750;
  cursor:pointer;
  user-select:none;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
  text-decoration:none;
}
.rs-drawer-link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(2,149,233,.22);
  transform: translateY(-1px);
}
.rs-drawer-muted{ font-weight: 650; color: rgba(255,255,255,.55); font-size: 12px; }

.rs-card{ padding: 26px; }
@media (min-width: 640px){ .rs-card{ padding: 34px; } }

.rs-pill{
  border: 1px solid rgba(2,149,233,.25);
  background: rgba(2,149,233,.10);
  color: rgba(255,255,255,.86);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.rs-dot{ width: 8px; height: 8px; border-radius: 999px; background: rgba(2,149,233,.95); box-shadow: 0 0 14px rgba(2,149,233,.45); }

.rs-btn{
  border-radius: 16px;
  padding: 11px 14px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items:center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
  text-decoration:none;
  user-select:none;
  cursor:pointer;
  white-space: nowrap;
}
.rs-btn:hover{ transform: translateY(-1px); }
.rs-btn-primary{
  background: linear-gradient(135deg, rgba(2,149,233,.30), rgba(2,149,233,.10));
  border-color: rgba(2,149,233,.35);
  box-shadow: var(--glow);
  color: rgba(255,255,255,.95);
}
.rs-btn-primary:hover{ box-shadow: 0 0 0 1px rgba(2,149,233,.30), 0 0 70px rgba(2,149,233,.18); }
.rs-btn-secondary{ background: rgba(255,255,255,.06); color: rgba(255,255,255,.92); }
.rs-btn-secondary:hover{ background: rgba(255,255,255,.08); box-shadow: 0 0 0 1px rgba(2,149,233,.14); }
.rs-btn-ghost{ background: transparent; color: rgba(255,255,255,.75); }
.rs-btn-ghost:hover{ background: rgba(255,255,255,.06); color: rgba(255,255,255,.95); }

.rs-hoverlift{ transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.rs-hoverlift:hover{ transform: translateY(-4px); box-shadow: var(--glow); background: rgba(255,255,255,.07); border-color: rgba(2,149,233,.22); }

.rs-li{ position: relative; padding-left: 16px; }
.rs-li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  height:6px; width:6px;
  border-radius:999px;
  background: rgba(2,149,233,.85);
  box-shadow: 0 0 12px rgba(2,149,233,.35);
  transform: translateY(-50%);
}

.rs-label{ font-size: 12px; color: rgba(255,255,255,.65); display:block; margin-bottom: 6px; }
.rs-input{
  width:100%;
  border-radius: 16px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease, transform .16s ease;
}
.rs-input:focus{
  border-color: rgba(2,149,233,.35);
  box-shadow: var(--glow);
  background: rgba(0,0,0,.18);
  transform: translateY(-1px);
}

.rs-footerlink{
  font-size: 13px;
  color: rgba(255,255,255,.60);
  padding: 8px 10px;
  border-radius: 14px;
  text-decoration: none;
  transition: background .16s ease, color .16s ease;
  cursor:pointer;
}
.rs-footerlink:hover{ background: rgba(255,255,255,.06); color: rgba(255,255,255,.92); }

.rs-thumb{
  height: 120px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  user-select:none;
}

.rs-badge{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 120px;
}
.rs-badge img{
  max-height: 92px;
  width: auto;
  opacity: .95;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.rs-price{
  font-size: 40px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
}
.rs-muted{ color: rgba(255,255,255,.65); }
.rs-price-anim{ display: inline-block; transition: transform .18s ease, filter .18s ease; will-change: transform, filter; }
.rs-price-anim.is-bumping{ transform: translateY(-1px) scale(1.02); filter: drop-shadow(0 12px 22px rgba(0,0,0,.35)); }

.rs-module{
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
  transition:
    opacity 240ms cubic-bezier(.2,.9,.2,1),
    transform 240ms cubic-bezier(.2,.9,.2,1),
    filter 240ms cubic-bezier(.2,.9,.2,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform, filter;
}
.rs-prep .rs-module{ opacity: 0; filter: blur(1.5px); }
.rs-prep .rs-module[data-anim="up"]    { transform: translate3d(0, 16px, 0) scale(.992); }
.rs-prep .rs-module[data-anim="down"]  { transform: translate3d(0, -16px, 0) scale(.992); }
.rs-prep .rs-module[data-anim="left"]  { transform: translate3d(-18px, 0, 0) scale(.992); }
.rs-prep .rs-module[data-anim="right"] { transform: translate3d(18px, 0, 0) scale(.992); }
.rs-prep .rs-module[data-anim="zoom"]  { transform: translate3d(0, 0, 0) scale(.984); }
.rs-prep .rs-module:not([data-anim])   { transform: translate3d(0, 16px, 0) scale(.992); }

.rs-leave-forward .rs-module,
.rs-leave-back .rs-module{
  opacity: 0;
  filter: blur(1.5px);
  transition-delay: 0ms;
}
.rs-leave-forward .rs-module[data-anim="up"]    { transform: translate3d(0, -12px, 0) scale(.996); }
.rs-leave-forward .rs-module[data-anim="down"]  { transform: translate3d(0,  12px, 0) scale(.996); }
.rs-leave-forward .rs-module[data-anim="left"]  { transform: translate3d(-14px, 0, 0) scale(.996); }
.rs-leave-forward .rs-module[data-anim="right"] { transform: translate3d( 14px, 0, 0) scale(.996); }
.rs-leave-forward .rs-module[data-anim="zoom"]  { transform: translate3d(0, 0, 0) scale(1.01); }

.rs-leave-back .rs-module[data-anim="up"]    { transform: translate3d(0,  12px, 0) scale(.996); }
.rs-leave-back .rs-module[data-anim="down"]  { transform: translate3d(0, -12px, 0) scale(.996); }
.rs-leave-back .rs-module[data-anim="left"]  { transform: translate3d( 14px, 0, 0) scale(.996); }
.rs-leave-back .rs-module[data-anim="right"] { transform: translate3d(-14px, 0, 0) scale(.996); }
.rs-leave-back .rs-module[data-anim="zoom"]  { transform: translate3d(0, 0, 0) scale(.99); }

@media (prefers-reduced-motion: reduce){
  .rs-module{ transition:none !important; opacity:1 !important; transform:none !important; filter:none !important; }
  .rs-bg{ transition:none !important; }
  .rs-orb{ animation:none !important; }
  .rs-price-anim{ transition:none !important; }
}

.rs-toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 80;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  max-width: calc(100vw - 20px);
}

.rs-modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.rs-modal{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, calc(-50% + 8px), 0);
  z-index: 91;
  width: min(760px, calc(100vw - 18px));
  opacity: 0;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}
.rs-modal.is-open{
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0);
}
.rs-modal-overlay.is-open{ opacity: 1; pointer-events: auto; }

.rs-modal-inner{ padding: 18px; }
.rs-modal-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
}
.rs-modal-title{ font-weight: 950; font-size: 18px; letter-spacing: -0.01em; }
.rs-modal-sub{ color: rgba(255,255,255,.60); font-size: 12px; margin-top: 4px; }
.rs-chip{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.80);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  user-select:none;
}
.rs-error{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding: 10px;
  color: rgba(255,255,255,.80);
  font-size: 12px;
}
.hidden{ display:none !important; }
