/* InsideStox — shared site styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0d14; --panel: #121929; --panel2: #0d1420; --line: #1e2d4a; --line2: #1a2840;
  --txt: #e4e9f2; --dim: #a3adc2; --dimmer: #8b95ab; --faint: #78829a;
  --cyan: #00c9ff; --purple: #7b2fff; --green: #5de05d; --red: #ff5555; --blue: #5abfff;
}
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg); color: var(--txt); min-height: 100vh; display: flex; flex-direction: column; }
a { color: #5599cc; text-decoration: none; }
a:hover { color: #77bbee; }

/* NAV */
.topnav { background: #0d1321; border-bottom: 1px solid var(--line); padding: 10px 28px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: 13px; }
.brand { display: flex; align-items: center; gap: 9px; margin-right: 4px; }
.brand img { height: 26px; width: auto; display: block; }
.brand .name { font-size: 16px; font-weight: 700; letter-spacing: -.2px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.topnav .brand:hover .name { filter: brightness(1.2); }
.topnav a { color: var(--dim); font-weight: 600; }
.topnav a:hover { color: var(--txt); }
.topnav a.on { color: var(--cyan); }
.topnav .spacer { flex: 1; }

/* MOBILE NAV — hamburger.
   .navlinks uses display:contents on desktop so its children behave as direct
   flex items of .topnav; the desktop bar is byte-for-byte what it was before
   the wrapper existed. Under the breakpoint it becomes a drop-down panel. */
.topnav { position: relative; }
.navlinks { display: contents; }
.navtoggle { display: none; width: 34px; height: 30px; padding: 6px 5px;
  background: none; border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
  flex-direction: column; justify-content: space-between; }
.navtoggle span { display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--dim); transition: transform .18s ease, opacity .18s ease; }
.navtoggle:hover span { background: var(--txt); }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 780px) {
  .topnav { flex-wrap: nowrap; gap: 12px; padding: 10px 16px; }
  .navtoggle { display: flex; }
  .navlinks { display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0; z-index: 90;
    background: #0d1321; border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(0,0,0,.5); }
  .navlinks.open { display: flex; }
  .navlinks a { padding: 13px 20px; font-size: 15px; border-top: 1px solid var(--line2); }
  .navlinks .spacer { display: none; }   /* would expand vertically in a column */
  #navAccount { margin-left: auto; }     /* spacer is hidden, so push right here */
}

/* ACCOUNT WIDGET */
.acct { position: relative; display: inline-block; }
.acct-btn { width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #00a8d8, #6a28e0); color: #fff;
  font-weight: 700; font-size: 14px; font-family: inherit; line-height: 1; }
.acct-btn:hover { filter: brightness(1.15); }
.acct-menu { display: none; position: absolute; right: 0; top: 38px; min-width: 210px; z-index: 100;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5); overflow: hidden; }
.acct-menu.open { display: block; }
.acct-menu a { display: block; padding: 10px 14px; font-size: 13px; color: var(--dim); font-weight: 600; }
.acct-menu a:hover { background: var(--panel2); color: var(--txt); }
.acct-id { padding: 10px 14px; font-size: 12px; color: var(--faint); border-bottom: 1px solid var(--line2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acct-plan { margin-left: 7px; font-size: 10px; padding: 1px 7px; border-radius: 8px;
  background: #10203a; color: #5abfff; text-transform: uppercase; }

/* HEADER / BRAND */
.brandbar { background: linear-gradient(135deg, #121929 0%, #0d1321 100%); border-bottom: 1px solid var(--line);
  padding: 18px 28px; display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 26px; }
.logo-text { font-size: 22px; font-weight: 700; background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-size: 12px; color: var(--faint); margin-top: 2px; }

/* LAYOUT */
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; width: 100%; }
main { flex: 1; }
.page-title { font-size: 28px; font-weight: 700; margin: 36px 0 8px; }
.page-lede { font-size: 15px; color: var(--dim); line-height: 1.7; margin-bottom: 28px; max-width: 700px; }
.section { margin: 34px 0; }
.section h2 { font-size: 19px; margin-bottom: 12px; }
.section h3 { font-size: 15px; margin: 18px 0 8px; color: #aabbdd; }
.section p { font-size: 14px; color: var(--dim); line-height: 1.75; margin-bottom: 12px; }
.section p strong, .section li strong { color: #aabbcc; }
.section ul, .section ol { margin: 0 0 12px 22px; }
.section li { font-size: 14px; color: var(--dim); line-height: 1.75; margin-bottom: 6px; }

/* HERO */
.hero { text-align: center; padding: 72px 24px 56px; background:
  radial-gradient(ellipse at 50% -20%, rgba(123,47,255,0.15), transparent 60%),
  radial-gradient(ellipse at 80% 10%, rgba(0,201,255,0.08), transparent 50%); }
.hero-logo { height: 92px; width: auto; display: block; margin: 0 auto 22px;
  filter: drop-shadow(0 6px 18px rgba(123,47,255,.35)); }
.hero h1 { font-size: 40px; font-weight: 800; line-height: 1.2; max-width: 720px; margin: 0 auto 18px; }
.hero h1 .grad { background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 16px; color: var(--dim); max-width: 620px; margin: 0 auto 30px; line-height: 1.7; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 26px; border-radius: 10px; font-size: 15px; font-weight: 700; transition: all .15s; }
.btn-primary { background: linear-gradient(135deg, #00a8d8, #6a28e0); color: #fff; }
.btn-primary:hover { filter: brightness(1.15); color: #fff; }
.btn-ghost { border: 1px solid var(--line); color: var(--dim); background: var(--panel2); }
.btn-ghost:hover { color: var(--txt); border-color: #2a4a7a; }

/* STAT STRIP */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin: -20px auto 10px; }
.stat-box { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 14px; text-align: center; }
.stat-value { font-size: 22px; font-weight: 800; color: var(--cyan); }
.stat-value.pos { color: var(--green); }
.stat-label { font-size: 10px; color: var(--faint); text-transform: uppercase; letter-spacing: .6px; margin-top: 4px; }

/* FEATURE CARDS */
.cards3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.fcard { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.fcard .ico { font-size: 26px; margin-bottom: 10px; }
.fcard h3 { font-size: 15px; margin-bottom: 8px; color: var(--txt); }
.fcard p { font-size: 13px; color: var(--dim); line-height: 1.65; }

/* STEPS */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.step { background: var(--panel2); border: 1px solid var(--line2); border-radius: 12px; padding: 18px; position: relative; }
.step::before { counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px;
  border-radius: 50%; background: linear-gradient(135deg, #00a8d8, #6a28e0); color: #fff;
  font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.step h3 { font-size: 14px; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--dim); line-height: 1.6; }

/* CALLOUTS / TABLES */
.callout { background: var(--panel2); border-left: 3px solid var(--purple); border-radius: 0 8px 8px 0;
  padding: 14px 18px; font-size: 13px; color: var(--dim); line-height: 1.7; margin: 18px 0; }
.callout strong { color: #aabbcc; }
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; margin: 12px 0 18px; }
.tbl th { text-align: left; color: var(--faint); padding: 8px 10px; font-weight: 600; border-bottom: 1px solid var(--line); }
.tbl td { padding: 8px 10px; color: #99aacc; border-bottom: 1px solid #111825; line-height: 1.5; }

/* FAQ */
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { padding: 14px 18px; cursor: pointer; font-size: 14px; font-weight: 600; color: #ccd; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "▸ "; color: var(--cyan); }
.faq-item[open] summary::before { content: "▾ "; }
.faq-item .a { padding: 0 18px 16px; font-size: 13px; color: var(--dim); line-height: 1.7; }

/* FORMS */
.form-grid { display: grid; gap: 14px; max-width: 560px; }
.form-grid label { font-size: 12px; color: var(--dim); font-weight: 600; display: block; margin-bottom: 5px; }
.form-grid input, .form-grid textarea { width: 100%; background: var(--panel2); border: 1px solid var(--line);
  border-radius: 8px; padding: 11px 13px; color: var(--txt); font-size: 14px; font-family: inherit; }
.form-grid input:focus, .form-grid textarea:focus { outline: none; border-color: var(--cyan); }
.form-note { font-size: 12px; color: var(--faint); }
.form-ok { background: #0f2a0f; border: 1px solid #1a4a1a; color: #7add9a; border-radius: 8px; padding: 12px 16px; font-size: 13px; margin-bottom: 16px; }
.form-err { background: #2a1010; border: 1px solid #4a1a1a; color: #ff8888; border-radius: 8px; padding: 12px 16px; font-size: 13px; margin-bottom: 16px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.pwfield { position: relative; }
.pwfield input { padding-right: 42px !important; }
.pwtoggle-btn { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer;
  color: var(--faint); border-radius: 6px; padding: 0; }
.pwtoggle-btn:hover { color: var(--txt); background: rgba(255,255,255,0.05); }

.hero-note { font-size: 12px; color: var(--faint); margin-top: 14px; }

/* COUNTDOWN */
.countdown { margin: 0 auto 26px; display: inline-block; padding: 14px 22px; border-radius: 12px;
  background: rgba(106,40,224,.12); border: 1px solid #6a28e0; }
.cd-label { font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; color: #c08aff;
  font-weight: 700; margin-bottom: 8px; }
.cd-units { display: flex; gap: 16px; justify-content: center; }
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 46px; }
.cd-num { font-size: 26px; font-weight: 800; color: var(--txt); line-height: 1;
  font-variant-numeric: tabular-nums; }
.cd-cap { font-size: 10px; text-transform: uppercase; letter-spacing: .6px; color: var(--faint); margin-top: 4px; }
@media (max-width: 480px) {
  .countdown { padding: 12px 16px; }
  .cd-units { gap: 10px; }
  .cd-num { font-size: 21px; }
  .cd-unit { min-width: 38px; }
}
.hero-offer { display: inline-block; background: rgba(106,40,224,.14); border: 1px solid #6a28e0;
  border-radius: 12px; padding: 14px 22px; font-size: 14px; color: var(--txt); line-height: 1.6; }
.hero-offer a { color: #c08aff; font-weight: 700; white-space: nowrap; }

/* FOUNDING OFFER BANNER */
.founding-banner { position: relative; margin: 26px 0 8px; padding: 26px 28px;
  background: linear-gradient(135deg, rgba(0,168,216,.10), rgba(106,40,224,.12));
  border: 1px solid #6a28e0; border-radius: 14px; }
.founding-banner .fb-tag { display: inline-block; background: linear-gradient(135deg, #00a8d8, #6a28e0);
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 10px; margin-bottom: 12px; }
.founding-banner h2 { font-size: 21px; margin-bottom: 10px; color: var(--txt); }
.founding-banner p { font-size: 14px; color: var(--dim); line-height: 1.7; margin-bottom: 18px; max-width: 680px; }
.founding-banner .fb-note { font-size: 12px; color: var(--faint); margin-top: 12px; }

/* PRICING */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin: 24px 0 8px; }
.plan { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; position: relative; }
.plan.best { border-color: #6a28e0; box-shadow: 0 0 0 1px rgba(123,47,255,.25); }
.plan-tag { position: absolute; top: -11px; left: 24px; background: linear-gradient(135deg, #00a8d8, #6a28e0);
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 10px; }
.plan-name { font-size: 13px; color: var(--dim); text-transform: uppercase; letter-spacing: .8px; font-weight: 700; margin-bottom: 8px; }
.plan-price { font-size: 38px; font-weight: 800; color: var(--txt); line-height: 1; }
.plan-price span { font-size: 15px; font-weight: 500; color: var(--dimmer); margin-left: 4px; }
.plan-note { font-size: 12px; color: var(--faint); margin-top: 6px; }
.plan-feats { list-style: none; margin: 18px 0 22px; padding: 0; }
.plan-feats li { font-size: 13px; color: var(--dim); line-height: 1.5; padding: 6px 0 6px 24px; position: relative; }
.plan-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.plan .btn { width: 100%; text-align: center; }

/* FOOTER */
footer { border-top: 1px solid var(--line2); margin-top: 48px; padding: 26px 28px; }
.foot-inner { max-width: 960px; margin: 0 auto; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12px; }
.foot-links a { color: var(--dimmer); }
.foot-links a:hover { color: var(--dim); }
.foot-copy { font-size: 11px; color: var(--faint); }
.foot-disc { max-width: 960px; margin: 14px auto 0; font-size: 11px; color: var(--faint); line-height: 1.6; }

@media (max-width: 640px) {
  .hero h1 { font-size: 28px; }
  .hero { padding: 48px 16px 40px; }
  .topnav, .brandbar { padding-left: 16px; padding-right: 16px; }
  .page-title { font-size: 22px; }
}
