/* ==========================================================================
   PILBEAM SERVICES — ADDITIONAL CSS
   --------------------------------------------------------------------------
   WordPress: Appearance → Customize → Additional CSS  (paste this whole file)

   Every visual rule lives here, keyed to "ps-" classes. Tailwind in the
   static build only handles layout (grid / flex / spacing), which you
   recreate with Elementor Container settings.

   In Elementor, add the class in:  Widget/Container → Advanced → CSS Classes
   Selectors below also target Elementor's own markup (.elementor-button,
   .elementor-heading-title, .e-n-accordion-item, …) so the same class works
   on the static HTML and on native Elementor widgets.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS  (dark is the default theme)
   -------------------------------------------------------------------------- */
:root {
  --ps-bg: #0B1220;
  --ps-bg-alt: #0E1628;
  --ps-surface: #111A2E;
  --ps-surface-2: #172238;
  --ps-border: rgba(255, 255, 255, .08);
  --ps-border-strong: rgba(255, 255, 255, .16);
  --ps-text: #F1F5F9;
  --ps-muted: #94A3B8;
  --ps-emerald: #10B981;
  --ps-indigo: #6366F1;
  --ps-rose: #F43F5E;
  --ps-amber: #F59E0B;

  /* Brand gradient (decoration) + deeper version for buttons so white
     text passes WCAG AA contrast */
  --ps-grad: linear-gradient(135deg, #6366F1 0%, #10B981 100%);
  --ps-grad-deep: linear-gradient(135deg, #4F46E5 0%, #047857 100%);

  --ps-glass: rgba(17, 26, 46, .66);
  --ps-shadow: 0 24px 60px -24px rgba(0, 0, 0, .55);
  --ps-glow: 0 0 0 1px rgba(99, 102, 241, .35), 0 10px 30px -8px rgba(16, 185, 129, .45);

  --ps-radius-xl: 28px;
  --ps-radius-lg: 20px;
  --ps-radius: 16px;
  --ps-radius-sm: 10px;

  --ps-font-display: "Space Grotesk", system-ui, sans-serif;
  --ps-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ps-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --ps-header-h: 72px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --ps-bg: #F8FAFC;
  --ps-bg-alt: #EEF2F7;
  --ps-surface: #FFFFFF;
  --ps-surface-2: #F1F5F9;
  --ps-border: rgba(15, 23, 42, .08);
  --ps-border-strong: rgba(15, 23, 42, .16);
  --ps-text: #0F172A;
  --ps-muted: #475569;
  /* Same accents, one step deeper so text/icons stay AA on white */
  --ps-emerald: #059669;
  --ps-indigo: #4F46E5;
  --ps-rose: #E11D48;
  --ps-amber: #B45309;
  --ps-glass: rgba(255, 255, 255, .74);
  --ps-shadow: 0 24px 60px -28px rgba(15, 23, 42, .25);
  color-scheme: light;
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ps-header-h) + 16px);
}

html body {
  margin: 0;
  background: var(--ps-bg);
  color: var(--ps-text);
  font-family: var(--ps-font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .3s ease, color .3s ease;
}

::selection { background: rgba(99, 102, 241, .35); }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--ps-emerald);
  outline-offset: 3px;
  border-radius: 6px;
}

.ps-skip {
  position: absolute;
  left: 12px;
  top: -64px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ps-text);
  color: var(--ps-bg);
  font-weight: 600;
  text-decoration: none;
  transition: top .2s ease;
}
.ps-skip:focus { top: 12px; }

.ps-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Responsive visibility — mirrors Elementor Advanced → Responsive → Hide on … */
@media (max-width: 639px) { .ps-hide-mobile { display: none !important; } }
@media (max-width: 1023px) { .ps-hide-tablet-down { display: none !important; } }
@media (min-width: 1024px) { .ps-hide-desktop { display: none !important; } }

.ps-media img,
.ps-media svg { display: block; width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   Elementor: Container → Content Width "Boxed" 1200px, padding L/R 20 (mobile) / 32
   -------------------------------------------------------------------------- */
.ps-container {
  width: 100%;
  max-width: 1264px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
@media (min-width: 768px) { .ps-container { padding-inline: 32px; } }

.ps-section { position: relative; padding-block: clamp(64px, 8vw, 112px); }
.ps-section--alt { background: var(--ps-bg-alt); }
.ps-section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
.ps-h1, .ps-h1 .elementor-heading-title,
.ps-h2, .ps-h2 .elementor-heading-title,
.ps-h3, .ps-h3 .elementor-heading-title,
.ps-h4, .ps-h4 .elementor-heading-title {
  margin: 0;
  font-family: var(--ps-font-display);
  color: var(--ps-text);
  letter-spacing: -.02em;
  text-wrap: balance;
}
.ps-h1, .ps-h1 .elementor-heading-title {
  text-wrap: pretty;
  font-size: clamp(2.25rem, 1.2rem + 4.2vw, 4rem);
  line-height: 1.04;
  font-weight: 700;
}
.ps-h2, .ps-h2 .elementor-heading-title {
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.5rem);
  line-height: 1.12;
  font-weight: 700;
}
.ps-h3, .ps-h3 .elementor-heading-title {
  font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem);
  line-height: 1.25;
  font-weight: 600;
}
.ps-h4, .ps-h4 .elementor-heading-title {
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -.01em;
}

.ps-lead, .ps-lead p {
  font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ps-muted);
  max-width: 60ch;
  margin: 0;
}
.ps-body, .ps-body p { color: var(--ps-muted); margin: 0; }
.ps-prose p { color: var(--ps-muted); margin: 0; max-width: 68ch; }
.ps-prose p + p { margin-top: 1em; }
.ps-small { font-size: .875rem; color: var(--ps-muted); }
.ps-mono { font-family: var(--ps-font-mono); font-variant-numeric: tabular-nums; }

.ps-section-head { max-width: 720px; }
.ps-section-head > * + * { margin-top: 14px; }
.ps-section-head--center { margin-inline: auto; text-align: center; }
.ps-section-head--center .ps-lead { margin-inline: auto; }

.ps-link, .ps-link a {
  color: var(--ps-emerald);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.ps-link:hover, .ps-link a:hover { text-decoration-thickness: 2px; }

/* Things the site owner must fill in before launch (amber, dashed) */
.ps-ph {
  font-family: var(--ps-font-mono);
  font-size: .88em;
  padding: 1px 6px;
  border-radius: 6px;
  border: 1px dashed currentColor;
  color: var(--ps-amber);
  background: rgba(245, 158, 11, .08);
  white-space: nowrap;
}

/* Small pill label */
.ps-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--ps-border-strong);
  background: var(--ps-glass);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ps-text);
}
.ps-badge::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ps-emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .18);
}

/* --------------------------------------------------------------------------
   5. BUTTONS   (Elementor: Button widget → CSS class e.g. "ps-btn ps-btn--primary")
   -------------------------------------------------------------------------- */
a.ps-btn, button.ps-btn, .ps-btn .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--ps-font-body);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  transition: box-shadow .2s ease, background-color .2s ease, color .2s ease,
              border-color .2s ease, transform .2s ease;
}
a.ps-btn svg, button.ps-btn svg { width: 18px; height: 18px; }

a.ps-btn--primary, button.ps-btn--primary, .ps-btn--primary .elementor-button {
  background: var(--ps-grad-deep);
  color: #fff;
}
a.ps-btn--primary:hover, button.ps-btn--primary:hover, .ps-btn--primary .elementor-button:hover {
  box-shadow: var(--ps-glow);
  transform: translateY(-1px);
  color: #fff;
}

a.ps-btn--ghost, button.ps-btn--ghost, .ps-btn--ghost .elementor-button {
  background: transparent;
  color: var(--ps-text);
  border-color: var(--ps-border-strong);
}
a.ps-btn--ghost:hover, button.ps-btn--ghost:hover, .ps-btn--ghost .elementor-button:hover {
  background: var(--ps-text);
  color: var(--ps-bg);
  border-color: var(--ps-text);
}

/* For use on the gradient CTA banner */
a.ps-btn--light, button.ps-btn--light, .ps-btn--light .elementor-button {
  background: #fff;
  color: #0B1220;
}
a.ps-btn--light:hover, button.ps-btn--light:hover, .ps-btn--light .elementor-button:hover {
  background: #E2E8F0;
  color: #0B1220;
}
a.ps-btn--outline-light, button.ps-btn--outline-light, .ps-btn--outline-light .elementor-button {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}
a.ps-btn--outline-light:hover, button.ps-btn--outline-light:hover, .ps-btn--outline-light .elementor-button:hover {
  background: #fff;
  color: #0B1220;
  border-color: #fff;
}

a.ps-btn--sm, button.ps-btn--sm, .ps-btn--sm .elementor-button {
  min-height: 40px;
  padding: 0 18px;
  font-size: .875rem;
}
a.ps-btn--block, button.ps-btn--block, .ps-btn--block .elementor-button { width: 100%; }

/* Round icon button (theme toggle, menu, close) */
.ps-iconbtn {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--ps-border-strong);
  background: transparent;
  color: var(--ps-text);
  cursor: pointer;
  transition: background-color .2s ease;
}
.ps-iconbtn:hover { background: var(--ps-surface-2); }
.ps-iconbtn svg { width: 18px; height: 18px; }

.ps-theme-toggle .ps-i-moon { display: none; }
html[data-theme="light"] .ps-theme-toggle .ps-i-sun { display: none; }
html[data-theme="light"] .ps-theme-toggle .ps-i-moon { display: block; }

/* --------------------------------------------------------------------------
   6. RISK BAR
   -------------------------------------------------------------------------- */
.ps-riskbar {
  background: var(--ps-surface);
  border-bottom: 1px solid var(--ps-border);
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--ps-muted);
}
.ps-riskbar[hidden] { display: none; }
.ps-riskbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding-block: 8px;
}
.ps-riskbar p { flex: 1; margin: 0; }
.ps-riskbar strong { color: var(--ps-text); font-weight: 600; }
.ps-riskbar .ps-iconbtn { width: 32px; height: 32px; border-color: transparent; flex: none; }

/* --------------------------------------------------------------------------
   7. HEADER + NAVIGATION
   -------------------------------------------------------------------------- */
.ps-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease;
}
.ps-header.is-scrolled {
  background: var(--ps-glass);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--ps-border);
}
.ps-header__bar { height: var(--ps-header-h); }

.ps-logo, .ps-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ps-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ps-text);
  text-decoration: none;
  white-space: nowrap;
}
.ps-logo img { width: 36px; height: 36px; flex: none; }

.ps-nav ul { display: flex; gap: 4px; margin: 0; padding: 0; list-style: none; }
.ps-nav a,
.ps-nav .elementor-nav-menu--main .elementor-item {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ps-muted);
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}
.ps-nav a:hover,
.ps-nav .elementor-nav-menu--main .elementor-item:hover { color: var(--ps-text); background: var(--ps-surface); }
.ps-nav a[aria-current="page"],
.ps-nav .elementor-nav-menu--main .elementor-item-active { color: var(--ps-text); background: var(--ps-surface-2); }
.ps-nav .elementor-nav-menu--main .elementor-item::after,
.ps-nav .elementor-nav-menu--main .elementor-item::before { display: none; }

/* Full-screen mobile menu */
.ps-mobile {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  background: var(--ps-bg);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .35s;
}
.ps-mobile.is-open {
  transform: none;
  visibility: visible;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), visibility 0s;
}
.ps-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--ps-header-h);
  border-bottom: 1px solid var(--ps-border);
}
.ps-mobile nav ul { list-style: none; margin: 0; padding: 12px 0 0; }
.ps-mobile nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--ps-border);
  font-family: var(--ps-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ps-text);
  text-decoration: none;
}
.ps-mobile nav a[aria-current="page"] { color: var(--ps-emerald); }
.ps-mobile__actions { display: grid; gap: 12px; margin-top: auto; padding-block: 24px 32px; }
body.ps-lock { overflow: hidden; }

/* --------------------------------------------------------------------------
   8. HEROES
   -------------------------------------------------------------------------- */
.ps-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(40px, 6vw, 88px) clamp(64px, 8vw, 112px);
}
.ps-hero::before,
.ps-pagehero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(620px 420px at 82% 18%, rgba(99, 102, 241, .22), transparent 70%),
    radial-gradient(520px 380px at 68% 82%, rgba(16, 185, 129, .16), transparent 70%);
}
.ps-hero::after,
.ps-pagehero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--ps-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--ps-border) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 15%, transparent 68%);
  mask-image: radial-gradient(ellipse at 70% 40%, #000 15%, transparent 68%);
}
.ps-hero > *, .ps-pagehero > * { position: relative; z-index: 1; }
.ps-hero__visual img { display: block; width: 100%; max-width: 600px; height: auto; margin-inline: auto; }

.ps-trust { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 0; padding: 0; list-style: none; }
.ps-trust li { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--ps-muted); }
.ps-trust svg { width: 18px; height: 18px; flex: none; color: var(--ps-emerald); }

/* Inner page hero */
.ps-pagehero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 96px) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--ps-border);
}
.ps-pagehero::before {
  background:
    radial-gradient(560px 360px at 12% 0%, rgba(99, 102, 241, .2), transparent 70%),
    radial-gradient(480px 320px at 95% 100%, rgba(16, 185, 129, .12), transparent 70%);
}
.ps-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: .875rem;
  color: var(--ps-muted);
}
.ps-crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.ps-crumbs a { color: var(--ps-muted); text-decoration: none; }
.ps-crumbs a:hover { color: var(--ps-text); }
.ps-crumbs [aria-current] { color: var(--ps-text); }

/* --------------------------------------------------------------------------
   9. NUMBERED STEPS (How it works / Ready to trade)
   -------------------------------------------------------------------------- */
.ps-steps {
  position: relative;
  display: grid;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ps-step { position: relative; text-align: center; }
.ps-step__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--ps-bg);
  font-family: var(--ps-font-mono);
  font-weight: 600;
  font-size: .9375rem;
  color: var(--ps-text);
}
.ps-section--alt .ps-step__num { background: var(--ps-bg-alt); }
.ps-step__num::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1.5px;
  background: var(--ps-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.ps-step p { max-width: 32ch; margin: 8px auto 0; color: var(--ps-muted); }

@media (min-width: 768px) {
  .ps-steps--3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .ps-steps--3::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 16.66%;
    right: 16.66%;
    height: 1.5px;
    background: var(--ps-grad);
    opacity: .5;
  }
  .ps-steps--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .ps-steps--4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .ps-steps--4::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1.5px;
    background: var(--ps-grad);
    opacity: .5;
  }
}

/* --------------------------------------------------------------------------
   10. CARDS + BENTO
   Elementor: Container → CSS class "ps-card" (Grid container for the bento)
   -------------------------------------------------------------------------- */
.ps-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--ps-radius-lg);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  box-sizing: border-box;
}
.ps-card--glass {
  background: var(--ps-glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.ps-card--feature {
  background:
    radial-gradient(420px 260px at 100% 0%, rgba(99, 102, 241, .14), transparent 70%),
    var(--ps-surface);
}
.ps-card h3 { margin-bottom: 8px; }
.ps-card p { margin: 0; color: var(--ps-muted); }
.ps-card__media { margin: 28px -28px -28px; }
.ps-card__media img { display: block; width: 100%; height: auto; }

.ps-icon, .ps-card__icon, .ps-icon .elementor-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  background: rgba(99, 102, 241, .12);
  color: var(--ps-indigo);
}
.ps-card__icon { margin-bottom: 20px; }
.ps-icon svg, .ps-card__icon svg { width: 22px; height: 22px; }
.ps-icon--emerald, .ps-icon--emerald .elementor-icon { background: rgba(16, 185, 129, .12); color: var(--ps-emerald); }
.ps-icon .elementor-icon svg { fill: currentColor; }

/* Live price card */
.ps-live {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ps-muted);
}
.ps-live::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ps-emerald);
  animation: ps-pulse 2s ease-out infinite;
}
@keyframes ps-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .55); }
  100% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

/* Feature chips (Elementor: Icon Box widget, class "ps-chip") */
.ps-chip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--ps-radius);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
}
.ps-chip h3, .ps-chip .elementor-icon-box-title {
  margin: 0 0 4px;
  font-family: var(--ps-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ps-text);
}
.ps-chip p, .ps-chip .elementor-icon-box-description { margin: 0; font-size: .9rem; line-height: 1.55; color: var(--ps-muted); }
.ps-chip .ps-icon { width: 40px; height: 40px; border-radius: 10px; }
.ps-chip .ps-icon svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   11. LISTS + NOTES
   -------------------------------------------------------------------------- */
.ps-checklist, .ps-checklist .elementor-icon-list-items {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ps-checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--ps-text); }
.ps-checklist li > svg { flex: none; width: 20px; height: 20px; margin-top: 3px; color: var(--ps-emerald); }
.ps-checklist li strong { display: block; font-weight: 600; color: var(--ps-text); }
.ps-checklist li span { color: var(--ps-muted); }
.ps-checklist .elementor-icon-list-icon svg { fill: var(--ps-emerald); width: 18px; height: 18px; }
.ps-checklist .elementor-icon-list-text { color: var(--ps-text); }

.ps-note {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--ps-radius);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface-2);
  font-size: .875rem;
  line-height: 1.55;
  color: var(--ps-muted);
}
.ps-note p { margin: 0; }
.ps-note > svg { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--ps-indigo); }
.ps-note--safe { border-color: rgba(16, 185, 129, .35); background: rgba(16, 185, 129, .08); color: var(--ps-text); }
.ps-note--safe > svg { color: var(--ps-emerald); }

/* --------------------------------------------------------------------------
   12. TABS  (static: buttons · Elementor: Nested Tabs, class "ps-tabs-el")
   -------------------------------------------------------------------------- */
.ps-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 4px;
  max-width: 100%;
  padding: 4px;
  overflow-x: auto;
  border-radius: 999px;
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  scrollbar-width: none;
}
.ps-tabs::-webkit-scrollbar { display: none; }
.ps-tab,
.ps-tabs-el .e-n-tab-title {
  appearance: none;
  flex: none;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ps-muted);
  font: 600 .9rem/1 var(--ps-font-body);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.ps-tab:hover:not([aria-selected="true"]):not([aria-pressed="true"]) { color: var(--ps-text); }
.ps-tab[aria-selected="true"], .ps-tab[aria-pressed="true"],
.ps-tabs-el .e-n-tab-title[aria-selected="true"] { background: var(--ps-text); color: var(--ps-bg); }

/* TradingView slots */
.ps-tv-panel {
  position: relative;
  min-height: 476px;
  padding: 8px;
  border-radius: var(--ps-radius-lg);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
}
.ps-tv-panel[hidden] { display: none; }
.ps-tv-ticker {
  min-height: 46px;
  border-block: 1px solid var(--ps-border);
  background: var(--ps-surface);
}
[data-tv]:empty::before {
  content: "Loading market data…";
  display: grid;
  place-items: center;
  min-height: inherit;
  height: 100%;
  font-size: .875rem;
  color: var(--ps-muted);
}
.ps-tv-attr { font-size: .75rem; color: var(--ps-muted); }
.ps-tv-attr a { color: var(--ps-muted); }

/* --------------------------------------------------------------------------
   13. ACCORDION  (static: <details> · Elementor: Accordion (nested), class "ps-faq")
   -------------------------------------------------------------------------- */
.ps-acc, .ps-faq .e-n-accordion { display: grid; gap: 12px; }
.ps-acc-item,
.ps-faq .e-n-accordion-item {
  overflow: hidden;
  border-radius: var(--ps-radius);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  transition: border-color .2s ease;
}
.ps-acc-item[hidden] { display: none; }
.ps-acc-item[open], .ps-faq .e-n-accordion-item[open] { border-color: var(--ps-border-strong); }
.ps-acc-item > summary,
.ps-faq .e-n-accordion-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  list-style: none;
  cursor: pointer;
  font-family: var(--ps-font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ps-text);
}
.ps-acc-item > summary::-webkit-details-marker { display: none; }
.ps-acc-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--ps-border-strong);
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.ps-acc-icon svg { width: 16px; height: 16px; }
.ps-acc-item[open] .ps-acc-icon { transform: rotate(180deg); background: var(--ps-text); color: var(--ps-bg); border-color: var(--ps-text); }
.ps-acc-body,
.ps-faq .e-n-accordion-item > .e-con { padding: 0 22px 22px; color: var(--ps-muted); }
.ps-acc-body p { margin: 0; max-width: 72ch; }
.ps-acc-body p + p { margin-top: .8em; }

/* Search field */
.ps-search { position: relative; max-width: 560px; }
.ps-search svg {
  position: absolute;
  left: 18px; top: 50%;
  width: 20px; height: 20px;
  transform: translateY(-50%);
  color: var(--ps-muted);
  pointer-events: none;
}
.ps-search .ps-input { min-height: 56px; padding-left: 50px; border-radius: 999px; background: var(--ps-surface); }

/* --------------------------------------------------------------------------
   14. PRICING + COMPARISON TABLE
   -------------------------------------------------------------------------- */
.ps-pricing {
  display: flex;
  gap: 16px;
  margin-inline: -20px;
  padding: 8px 20px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.ps-pricing > * { flex: 0 0 min(300px, 82%); scroll-snap-align: start; }
@media (min-width: 768px) { .ps-pricing { margin-inline: -32px; padding-inline: 32px; } }
@media (min-width: 1280px) {
  .ps-pricing {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }
}

.ps-plan {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--ps-radius-lg);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
  box-sizing: border-box;
}
.ps-plan--featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--ps-surface), var(--ps-surface)) padding-box,
    var(--ps-grad) border-box;
  box-shadow: var(--ps-shadow);
}
.ps-plan__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 28px; }
.ps-plan__name { margin: 0; font-family: var(--ps-font-display); font-size: 1.125rem; font-weight: 600; color: var(--ps-text); }
.ps-plan__tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ps-grad-deep);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}
.ps-plan__label { margin: 20px 0 4px; font-size: .8125rem; color: var(--ps-muted); }
.ps-plan__price { margin: 0; font-family: var(--ps-font-mono); font-size: 1.375rem; font-weight: 600; color: var(--ps-text); }
.ps-plan__meta { margin: 6px 0 0; font-size: .875rem; color: var(--ps-muted); }
.ps-plan .ps-checklist { gap: 10px; margin: 20px 0 24px; padding-top: 20px; border-top: 1px solid var(--ps-border); font-size: .9rem; }
.ps-plan .ps-checklist li > svg { width: 18px; height: 18px; margin-top: 2px; }
.ps-plan__cta { margin-top: auto; }
.ps-plan__terms { margin: 12px 0 0; text-align: center; font-size: .75rem; color: var(--ps-muted); }
.ps-plan__terms a { color: var(--ps-muted); }

.ps-table-wrap {
  overflow-x: auto;
  border-radius: var(--ps-radius-lg);
  border: 1px solid var(--ps-border);
  background: var(--ps-surface);
}
.ps-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: .9375rem; }
.ps-table caption { text-align: left; }
.ps-table th, .ps-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--ps-border);
  color: var(--ps-muted);
}
.ps-table thead th {
  background: var(--ps-surface-2);
  font-family: var(--ps-font-display);
  font-weight: 600;
  color: var(--ps-text);
}
.ps-table th[scope="row"], .ps-table thead th:first-child {
  position: sticky;
  left: 0;
  text-align: left;
  font-weight: 500;
  color: var(--ps-text);
  background: var(--ps-surface);
}
.ps-table thead th:first-child { background: var(--ps-surface-2); width: 32%; }
.ps-table tbody tr:last-child > * { border-bottom: 0; }
.ps-table svg { width: 18px; height: 18px; vertical-align: middle; }
.ps-yes { color: var(--ps-emerald); }
.ps-no { color: var(--ps-muted); opacity: .55; }

/* --------------------------------------------------------------------------
   15. FORMS  (static form · Elementor Pro Form widget, class "ps-form")
   -------------------------------------------------------------------------- */
.ps-form { display: grid; gap: 18px; }
.ps-field label,
.ps-form .elementor-field-label {
  display: block;
  margin-bottom: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ps-text);
}
.ps-field .ps-opt { font-weight: 400; color: var(--ps-muted); }
.ps-input,
.ps-form .elementor-field-group .elementor-field-textual,
.ps-form .elementor-field-group select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--ps-border-strong);
  background: var(--ps-bg);
  color: var(--ps-text);
  font: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ps-input::placeholder { color: var(--ps-muted); opacity: .8; }
.ps-input:focus,
.ps-form .elementor-field-group .elementor-field-textual:focus {
  outline: none;
  border-color: var(--ps-indigo);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, .2);
}
textarea.ps-input { min-height: 150px; resize: vertical; }
select.ps-input {
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.ps-input[aria-invalid="true"] { border-color: var(--ps-rose); }
.ps-field__err { margin: 6px 0 0; font-size: .8125rem; color: var(--ps-rose); }
.ps-field__err[hidden] { display: none; }
.ps-phone { display: grid; grid-template-columns: 116px 1fr; gap: 8px; }
.ps-check { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--ps-muted); }
.ps-check input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--ps-emerald); }
.ps-check a { color: var(--ps-text); }
.ps-form-success { text-align: center; padding-block: 32px; }
.ps-form-success[hidden] { display: none; }
.ps-form-success:focus { outline: none; }
.ps-form-success .ps-icon { margin: 0 auto 16px; width: 56px; height: 56px; border-radius: 50%; }

/* Contact info list */
.ps-info { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.ps-info li { display: flex; align-items: flex-start; gap: 14px; }
.ps-info dt, .ps-info .ps-info__label { font-size: .8125rem; color: var(--ps-muted); }
.ps-info a, .ps-info .ps-info__value { color: var(--ps-text); font-weight: 500; text-decoration: none; }
.ps-info a:hover { text-decoration: underline; text-underline-offset: 4px; }

.ps-map {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  padding: 24px;
  border-radius: var(--ps-radius-lg);
  border: 1px dashed var(--ps-border-strong);
  background-color: var(--ps-surface);
  background-image: radial-gradient(var(--ps-border-strong) 1px, transparent 1px);
  background-size: 18px 18px;
  text-align: center;
  color: var(--ps-muted);
  font-size: .875rem;
}
.ps-map svg { width: 28px; height: 28px; margin: 0 auto 8px; color: var(--ps-emerald); }

/* --------------------------------------------------------------------------
   16. CTA BANNER
   -------------------------------------------------------------------------- */
.ps-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--ps-radius-xl);
  background: var(--ps-grad-deep);
  color: #fff;
}
.ps-cta::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 0 0 64px rgba(255, 255, 255, .04), 0 0 0 128px rgba(255, 255, 255, .03);
  pointer-events: none;
}
.ps-cta > * { position: relative; z-index: 1; }
.ps-cta .ps-h2, .ps-cta .ps-h2 .elementor-heading-title { color: #fff; }
.ps-cta .ps-lead, .ps-cta .ps-lead p { color: rgba(255, 255, 255, .85); }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.ps-footer {
  padding-top: 72px;
  border-top: 1px solid var(--ps-border);
  background: var(--ps-bg-alt);
  font-size: .9375rem;
}
.ps-footer h2 {
  margin: 0 0 16px;
  font-family: var(--ps-font-display);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ps-text);
}
.ps-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.ps-footer a { color: var(--ps-muted); text-decoration: none; }
.ps-footer a:hover { color: var(--ps-text); }
.ps-footer p { margin: 0; color: var(--ps-muted); }
.ps-social { display: flex; gap: 8px; }
.ps-social a { color: var(--ps-text); }
.ps-reg {
  display: grid;
  gap: 12px;
  margin-top: 56px;
  padding-block: 28px;
  border-top: 1px solid var(--ps-border);
  font-size: .8125rem;
  line-height: 1.6;
}
.ps-reg p { max-width: none; }
.ps-reg strong { color: var(--ps-text); font-weight: 600; }
.ps-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 24px;
  border-top: 1px solid var(--ps-border);
  font-size: .8125rem;
  color: var(--ps-muted);
}

/* --------------------------------------------------------------------------
   18. LIVE CHAT LAUNCHER
   -------------------------------------------------------------------------- */
.ps-chat-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--ps-grad-deep);
  color: #fff;
  box-shadow: var(--ps-shadow);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ps-chat-fab:hover { transform: translateY(-2px); box-shadow: var(--ps-glow); }
.ps-chat-fab svg { width: 24px; height: 24px; }
.ps-chat-panel {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 40;
  width: min(340px, calc(100vw - 40px));
  padding: 22px;
  border-radius: var(--ps-radius-lg);
  border: 1px solid var(--ps-border-strong);
  background: var(--ps-surface);
  box-shadow: var(--ps-shadow);
  box-sizing: border-box;
}
.ps-chat-panel[hidden] { display: none; }

/* --------------------------------------------------------------------------
   19. LEGAL PAGES
   -------------------------------------------------------------------------- */
.ps-legal { display: grid; gap: 48px; }
@media (min-width: 1024px) {
    .ps-legal {
        grid-template-columns: auto;
        justify-content: center;
        gap: 64px;
    }
}
.ps-toc { display: none; }
@media (min-width: 1024px) {
  .ps-toc { display: block; position: sticky; top: calc(var(--ps-header-h) + 24px); align-self: start; }
}
.ps-toc h2 { margin: 0 0 12px; font-family: var(--ps-font-display); font-size: .875rem; font-weight: 600; color: var(--ps-text); }
.ps-toc ol { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; border-left: 1px solid var(--ps-border); }
.ps-toc a {
  display: block;
  margin-left: -1px;
  padding: 6px 14px;
  border-left: 2px solid transparent;
  font-size: .875rem;
  color: var(--ps-muted);
  text-decoration: none;
}
.ps-toc a:hover { color: var(--ps-text); }
.ps-toc a.is-active { color: var(--ps-text); border-left-color: var(--ps-emerald); }
.ps-legal-body { width:100% }
.ps-legal-body h2 {
  margin: 48px 0 12px;
  font-family: var(--ps-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ps-text);
}
.ps-legal-body section:first-of-type h2 { margin-top: 0; }
.ps-legal-body p, .ps-legal-body li { color: var(--ps-muted); }
.ps-legal-body p { margin: 0 0 1em; }

/* --------------------------------------------------------------------------
   20. MOTION
   Elementor alternative: Advanced → Motion Effects → Entrance "Fade In Up"
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Footer logo keeps full-strength text colour */
.ps-footer .ps-logo, .ps-footer .ps-logo:hover { color: var(--ps-text); }
