:root {
  --primary: #1A5452;
  --primary-2: #416665;
  --gold: #f5b301;
  --accent: #10b981;
  --accent-2: #B07A00;
  --info: #2563EB;
  --grad-1: #111827;
  --grad-2: #6b21a8;
  --grad-3: #f59e0b;
  --bg: #fafbfc;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --success: #10b981;
  --loss: #ef4444;
  --dark: #0f172a;
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 40px rgba(15, 23, 42, 0.06);
  --radius: 28px;
  --radius-sm: 18px;
  --max-width: 1200px;
}

/* Light / Dark theme tokens */
.theme-light {
  --bg: #fafbfc;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --primary: #1A5452;
  --primary-2: #416665;
  --grad-1: #111827;
  --grad-2: #6b21a8;
  --grad-3: #f59e0b;
}
.theme-dark {

  --bg: #fafbfc;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --primary: #1A5452;
  --primary-2: #416665;
  --grad-1: #111827;
  --grad-2: #6b21a8;
  --grad-3: #f59e0b;
  
  /* --bg: #071026;
  --card: linear-gradient(180deg,#071025,#0b1220);
  --text: #e6eef8;
  --muted: #9aa6bd;
  --primary: #60a5fa;
  --primary-2: #1e3a8a;
  --grad-1: #e6eef8;
  --grad-2: #7c3aed;
  --grad-3: #f59e0b; */
}

/* Theme switcher UI */
.theme-switcher {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.theme-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.05rem;
}
.theme-panel {
  display: none;
  background: rgba(255,255,255,0.9);
  padding: 0.6rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  gap: 0.6rem;
}
.theme-panel label { display:block; font-size:0.85rem; margin-bottom:0.45rem; }
.theme-panel select { margin-left:0.5rem; }
.theme-panel.open { display:block; }

/* Phone mock styles in download */
.phone-mock { display:flex; gap:1rem; align-items:center; }
.phone-frame { width:220px; border-radius:28px; padding:0.8rem; background:linear-gradient(180deg, rgba(17,24,39,0.96), rgba(17,24,39,0.86)); box-shadow: var(--shadow); }
.phone-frame .phone-screen { background: linear-gradient(180deg, #071025, #0f1724); border-radius:18px; padding:0.9rem; color:#fff; min-height:360px; width:100%; box-sizing:border-box; }
.sample-header { display:flex; justify-content:space-between; font-weight:700; margin-bottom:0.8rem; }
.sample-header .pnl { color: var(--accent); }
.sample-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:0.6rem; margin-bottom:0.8rem; }
.sample-grid .stat { background: rgba(255,255,255,0.06); padding:0.45rem; border-radius:12px; text-align:center; font-size:0.95rem; }
.sample-chart { height:90px; border-radius:12px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); }
.floating-badges { display:flex; flex-direction:column; gap:0.6rem; }
.floating-badges .badge { background:var(--card); color:var(--text); padding:0.6rem 0.8rem; border-radius:12px; box-shadow: var(--shadow-soft); font-weight:600; }

/* Responsive adjustments */
@media (max-width: 980px) {
  .phone-mock { flex-direction:column; align-items:center; }
  .theme-switcher { position:fixed; top:0.8rem; right:0.8rem; }
}

/* Pricing comparison matrix */
.comparison-card { margin-top:1.2rem; background:var(--card); padding:1.2rem; border-radius:14px; box-shadow: var(--shadow-soft); }
.comparison-table.full-matrix { width:100%; border-radius:10px; overflow:hidden; }
.comparison-table.full-matrix .comparison-row { display:grid; grid-template-columns: 1fr 140px 140px 140px; gap:1rem; align-items:center; padding:0.8rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.04); }
.comparison-table.full-matrix .comparison-row.heading { font-weight:700; background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.0)); }
.comparison-table.full-matrix .comparison-row span { display:block; }
.comparison-legend { margin-top:0.8rem; font-size:0.92rem; color:var(--muted); }

@media (max-width: 860px) {
  .comparison-table.full-matrix { overflow-x:auto; }
  .comparison-table.full-matrix .comparison-row { grid-template-columns: 1fr 120px 120px 120px; }
}

@media (max-width: 520px) {
  .comparison-table.full-matrix .comparison-row { grid-template-columns: 1fr 110px; }
  .comparison-table.full-matrix .comparison-row span:nth-child(n+2) { text-align:right; }
  .comparison-table.full-matrix .comparison-row.heading { grid-template-columns: 1fr 110px 110px 110px; }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 38%), radial-gradient(circle at bottom right, rgba(245, 179, 1, 0.08), transparent 30%);
  z-index: -3;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 75%);
  z-index: -2;
}

/* Hero headline gradient & subtle entrance */
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 4.2rem); line-height:1.02; font-weight:800; background: linear-gradient(90deg,var(--grad-1) 0%, var(--grad-2) 35%, var(--grad-3) 70%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .typing-text { display:inline-block; }

/* Ensure Trade Smarter is black and typed text uses primary color */
.hero h1 { background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; color: var(--dark); }
.hero h1 .hero-main { color: var(--dark); display:inline; font-weight:800; }
.typing-inline { display:block; color: var(--primary); font-weight:800; margin-top:0.32rem; min-height:1.15em; }
.typing-text { color: inherit; display:inline-block; }
.hero .typing-inline .typing-text { color: var(--primary) !important; }
.typing-text::after { content: ''; display:inline-block; width:2px; height:1.05em; background: currentColor; margin-left:8px; vertical-align:middle; animation: blink 1s steps(2, start) infinite; }
@keyframes blink { 50% { opacity: 0 } }
.hero .hero-visual { transform-origin: center; transition: transform 0.9s cubic-bezier(.2,.9,.3,1); }
.hero .hero-visual.visible { transform: translateY(-6px) scale(1.01); }

/* Metric cards style */
.hero-metrics { display:flex; gap:0.8rem; margin-top:1rem; }
.metric-card { background: rgba(255,255,255,0.9); padding:0.8rem 1rem; border-radius:12px; box-shadow: var(--shadow-soft); min-width:110px; text-align:left; }
.metric-value { display:block; font-size:1.15rem; font-weight:700; color:var(--dark); }
.metric-label { display:block; font-size:0.82rem; color:var(--muted); margin-top:0.25rem; }

/* New hero styles from reference */
.hero.noise { position: relative; padding: 48px 0 80px; overflow: visible; }
.hero-grid { position:absolute; inset:0; background-image: radial-gradient(circle at 10% 20%, rgba(245,179,1,0.06), transparent 6%), radial-gradient(circle at 95% 80%, rgba(37,99,235,0.04), transparent 8%); z-index:-2; }
.blob { position:absolute; width:260px; height:260px; border-radius:50%; filter:blur(40px); opacity:0.9; }
.b1 { left: -60px; top: 40px; background: linear-gradient(180deg,#FDE68A,#FBC6A4); }
.b2 { right: -80px; top: 40px; background: linear-gradient(180deg,#EEF2FF,#E9E7FF); }
.b3 { left: 10%; bottom: -80px; background: linear-gradient(180deg,#F8FAFC, #FEF3C7); }
.particles { position:absolute; inset:0; background-image: radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px); background-size: 60px 60px; opacity:0.12; z-index:-1; }

.container-wide { width:min(1200px, 96%); margin:0 auto; }
.hero-inner { display:flex; gap:2.4rem; align-items:center; }
.hero-copy { flex:1 1 55%; }
.hero-visual { flex: 0 0 420px; }

.phone { width: 360px; border-radius:36px; padding:12px; background: var(--card); box-shadow: var(--shadow); border:8px solid var(--dark); }
.phone-screen { background: var(--card); border-radius:20px; padding:12px; }
.phone-card { background: rgba(255,255,255,0.02); padding:10px; border-radius:12px; margin-bottom:10px; }
.phone-card .lbl { font-size:0.75rem; color:var(--muted); }
.phone-card .val { font-weight:700; font-size:1.05rem; }
.phone-card .val.up { color:var(--success); }

.float-card { position: absolute; display:flex; gap:0.6rem; align-items:center; padding:0.6rem 0.8rem; background:var(--card); border-radius:12px; box-shadow: var(--shadow-soft); }
.float-card .ic { display:inline-flex; width:36px; height:36px; align-items:center; justify-content:center; border-radius:9px; margin-right:0.4rem; }
.fc1 { right: 36%; top: 12%; }
.fc2 { right: 6%; top: 40%; }
.fc3 { right: 18%; bottom: 6%; }

/* Loading ring number emphasis */
.loading-screen .loading-ring { border-top-color: var(--primary); }

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(37, 99, 235, 0.2);
  color: var(--text);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  border-radius: 999px;
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: rgba(250, 251, 252, 0.95);
  backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(37, 99, 235, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-screen p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.mouse-glow {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(37,99,235,0.16), transparent 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  z-index: 0;
  transition: opacity 0.2s ease;
  opacity: 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  z-index: 1000;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  margin-top: 1rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.top-nav.shrink {
  width: min(var(--max-width), calc(100% - 1rem));
  margin-top: 0.35rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand img {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(37, 99, 235, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  min-height: 86vh;
  padding-top: 3rem;
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero h1,
.section-heading h2,
.download-copy h2,
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero-subtitle,
.section-heading p,
.download-copy p,
.page-hero p,
.footer-copy,
.feature-card p,
.pricing-copy,
.comparison-card p,
.policy-content p,
.legal-section p,
.support-card p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  background: rgba(255,255,255,0.7);
  border-color: var(--border);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.metric-card,
.glass-card,
.pricing-card,
.comparison-card,
.support-card,
.contact-card,
.policy-card,
.legal-card,
.article-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  scroll-margin-top: 75px;
}

.metric-card {
  padding: 1rem 1rem 1.1rem;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.metric-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(360px, 83vw);
  padding: 0.95rem;
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(229,232,239,0.74));
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: var(--shadow);
}

.phone-notch {
  width: 110px;
  height: 20px;
  background: #111827;
  border-radius: 999px;
  margin: 0 auto 1rem;
}

.phone-screen {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17,24,39,0.98), rgba(17,24,39,0.86));
  overflow: hidden;
  min-height: 560px;
  padding: 0.8rem;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.floating-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  background: transparent;
  border: none;
  pointer-events: none;
}

.floating-badge img {
  pointer-events: auto;
  display: block;
  width: 160px;
  max-width: 28vw;
  background: var(--card);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.03);
}

.badge-top {
  top: 2rem;
  right: -0.5rem;
}

.badge-middle {
  top: 50%;
  left: -1rem;
}

.badge-bottom {
  bottom: 1rem;
  right: 0.5rem;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
  pointer-events: none;
}

.orb-one {
  width: 180px;
  height: 180px;
  background: rgba(37,99,235,0.28);
  top: 4rem;
  left: 2rem;
}

.orb-two {
  width: 260px;
  height: 260px;
  background: rgba(245,179,1,0.2);
  bottom: 1rem;
  right: 1rem;
}

.orb-three {
  width: 120px;
  height: 120px;
  background: rgba(16,185,129,0.18);
  bottom: 5rem;
  left: 3rem;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-heading h2,
.download-copy h2 {
  margin-bottom: 0.8rem;
}

.feature-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  padding: 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.pricing-card:hover,
.support-card:hover,
.contact-card:hover,
.policy-card:hover,
.legal-card:hover,
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(37,99,235,0.2);
}

.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.feature-card h3,
.pricing-card h3,
.support-card h3,
.contact-card h3,
.policy-card h3,
.legal-card h3,
.article-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.pricing-card {
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.pricing-card-featured {
  border-color: rgba(245,179,1,0.45);
  box-shadow: 0 24px 60px rgba(245, 179, 1, 0.14);
}

.popular-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, var(--gold), #ffd970);
  color: #372400;
  font-size: 0.75rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.6rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
  color: var(--muted);
}

.comparison-card {
  margin-top: 1.4rem;
  padding: 1.4rem;
}

.comparison-table {
  display: grid;
  gap: 0.7rem;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.comparison-row.heading {
  font-weight: 700;
  color: var(--text);
}

.download-section {
  padding-top: 2rem;
}

.download-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(255,255,255,0.95));
  border: 1px solid rgba(37,99,235,0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  inset: auto auto -120px -70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%);
}

.store-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-weight: 600;
}

.download-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.download-phone {
  width: 220px;
  padding: 0.7rem;
  background: linear-gradient(145deg, #f8fafc, #dbeafe);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.inner-screen {
  min-height: 360px;
  padding: 0.6rem;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding: 2rem;
  border-radius: 36px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-grid h3 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.social-links {
  display: flex;
  gap: 0.55rem;
}

.social-links a,
.back-to-top {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  font-weight: 600;
}

.copyright {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.page-hero {
  padding: 2rem 0 1.2rem;
}

.page-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.toc {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
}

.toc a {
  color: var(--muted);
  font-weight: 500;
}

.toc a.active {
  color: var(--primary);
}

.policy-card,
.legal-card,
.article-card,
.support-card,
.contact-card {
  padding: 1.4rem;
  margin-bottom: 1rem;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-panel.open {
  max-height: 260px;
  padding-top: 0.8rem;
}

.list-card {
  display: grid;
  gap: 0.7rem;
}

.list-card li {
  color: var(--muted);
  margin-left: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-list strong {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.slide-left.visible {
  transform: translateX(0);
}

.reveal.slide-right.visible {
  transform: translateX(0);
}

.reveal.slide-left {
  transform: translateX(-30px);
}

.reveal.slide-right {
  transform: translateX(30px);
}

.reveal.zoom.visible {
  transform: scale(1);
}

.reveal.zoom {
  transform: scale(0.96);
}

.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.ripple-wave {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.45s ease-out;
  pointer-events: none;
}

.ripple:active::after {
  animation: ripple 0.45s ease-out;
}

.shine-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,0.4) 50%, transparent 90%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.shine-card:hover::before {
  transform: translateX(120%);
}

.shine-card {
  overflow: hidden;
  position: relative;
}


.founder{
    scroll-margin-top:45px;
}




/*=========================================================
DELETE ACCOUNT PAGE
=========================================================*/

.delete-hero{
    position:relative;
    overflow:hidden;
    padding:90px 30px;
    text-align:center;
    border-radius:36px;
    margin-bottom:60px;
    background:
        radial-gradient(circle at top left,
        rgba(245,179,1,.12),transparent 40%),
        radial-gradient(circle at bottom right,
        rgba(26,84,82,.12),transparent 40%),
        rgba(255,255,255,.75);

    border:1px solid rgba(255,255,255,.8);

    backdrop-filter:blur(24px);

    box-shadow:0 25px 80px rgba(15,23,42,.08);
}

.hero-orb{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    z-index:0;
}

.hero-orb-1{
    width:250px;
    height:250px;
    background:#1A5452;
    opacity:.12;
    left:-80px;
    top:-60px;
}

.hero-orb-2{
    width:250px;
    height:250px;
    background:#F5B301;
    opacity:.12;
    right:-80px;
    bottom:-60px;
}

.delete-hero>*{
    position:relative;
    z-index:2;
}

.delete-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:8px 18px;

    border-radius:999px;

    background:#fff;

    font-weight:600;

    margin-bottom:24px;

    box-shadow:var(--shadow-soft);

}

.hero-description{

    max-width:760px;

    margin:25px auto;

}

.hero-buttons{

    display:flex;

    gap:16px;

    justify-content:center;

    flex-wrap:wrap;

    margin-top:40px;

}

/*================================================*/

.before-delete{

    margin:90px 0;

}

.delete-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:40px;

}

.delete-card{

    text-align:center;

    padding:35px 25px;

    transition:.35s;

}

.delete-card:hover{

    transform:translateY(-10px);

}

.delete-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    display:grid;

    place-items:center;

    margin:auto;

    font-size:34px;

    margin-bottom:22px;

    background:linear-gradient(135deg,#1A5452,#416665);

    color:white;

}

.delete-icon.danger{

    background:linear-gradient(135deg,#ef4444,#f97316);

}

/*================================================*/

.assets-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:50px;

}

.asset-card{

    text-align:center;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.75);

    border:1px solid rgba(255,255,255,.8);

    backdrop-filter:blur(18px);

    transition:.3s;

    box-shadow:var(--shadow-soft);

}

.asset-card:hover{

    transform:translateY(-8px);

}

.asset-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    display:grid;

    place-items:center;

    margin:auto;

    font-size:34px;

    background:linear-gradient(135deg,#1A5452,#416665);

    color:white;

    margin-bottom:20px;

}

/*================================================*/

.timeline{

    position:relative;

    max-width:850px;

    margin:60px auto;

}

.timeline-line{

    position:absolute;

    left:34px;

    top:0;

    bottom:0;

    width:4px;

    background:linear-gradient(var(--primary),var(--gold));

    border-radius:999px;

}

.timeline-item{

    position:relative;

    display:flex;

    gap:30px;

    margin-bottom:40px;

}

.timeline-dot{

    width:70px;

    height:70px;

    border-radius:50%;

    display:grid;

    place-items:center;

    background:linear-gradient(135deg,var(--primary),var(--gold));

    color:white;

    font-weight:700;

    z-index:2;

    flex-shrink:0;

}

.timeline-card{

    flex:1;

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:25px;

}

.timeline-icon{

    font-size:34px;

}

/*================================================*/

.delete-warning{

    display:flex;

    gap:30px;

    align-items:center;

    padding:35px;

    border-radius:30px;

    margin:80px 0;

    background:linear-gradient(135deg,#fff6d8,#fff2b0);

    border:1px solid rgba(245,179,1,.35);

    box-shadow:var(--shadow-soft);

}

.warning-icon{

    font-size:56px;

}

/*================================================*/

.faq-list{

    display:grid;

    gap:20px;

    margin-top:40px;

}

.faq-card{

    border-radius:24px;

    background:rgba(255,255,255,.75);

    border:1px solid rgba(255,255,255,.8);

    overflow:hidden;

    box-shadow:var(--shadow-soft);

}

/*================================================*/

.support-banner{

    margin:90px 0;

}

.support-content{

    text-align:center;

    padding:70px 40px;

    border-radius:36px;

    background:linear-gradient(135deg,#1A5452,#416665);

    color:white;

}

.support-content p{

    color:rgba(255,255,255,.85);

}

.support-icon{

    font-size:60px;

    margin-bottom:25px;

}

.support-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:35px;

}

/*================================================*/

.final-card{

    padding:60px;

    text-align:center;

    border-radius:36px;

}

.final-icon{

    font-size:65px;

    margin-bottom:20px;

}

/*================================================*/

@media(max-width:991px){

.delete-grid{

grid-template-columns:repeat(2,1fr);

}

.assets-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.delete-hero{

padding:60px 20px;

}

.timeline-line{

display:none;

}

.timeline-item{

flex-direction:column;

}

.timeline-card{

margin-left:0;

}

.delete-warning{

flex-direction:column;

text-align:center;

}

.final-card{

padding:40px 25px;

}

}

@media(max-width:576px){

.delete-grid{

grid-template-columns:1fr;

}

.assets-grid{

grid-template-columns:1fr;

}

.hero-buttons{

flex-direction:column;

}

.support-buttons{

flex-direction:column;

}

}








@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

@media (max-width: 1040px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .download-card,
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 780px) {
  .top-nav {
    width: min(100%, calc(100% - 1rem));
    border-radius: 24px;
    padding: 0.8rem 1rem;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.95);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .hero-metrics,
  .feature-grid,
  .footer-grid,
  .page-content {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 4rem 0;
  }
  .download-card,
  .site-footer {
    padding: 1.2rem;
  }
  .hero-visual {
    min-height: 360px;
  }
  .badge-middle {
    left: 0;
  }
  .comparison-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .phone-shell {
    width: min(300px, 90vw);
  }
  .phone-screen {
    min-height: 480px;
  }
  .floating-badge {
    font-size: 0.8rem;
    padding: 0.7rem 0.8rem;
  }
}





/* =========================================================
   FAQ PAGE SPECIFIC STYLES
   ========================================================= */

.faq-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0 2rem;
}

.faq-hero-content h1 {
  margin-bottom: 1.2rem;
}

.faq-search-wrapper {
  position: relative;
  margin-top: 2rem;
  max-width: 480px;
}

.faq-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  width: 22px;
  height: 22px;
}

.faq-search-input {
  width: 100%;
  padding: 1.1rem 1.2rem 1.1rem 3.5rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 84, 82, 0.2);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  outline: none;
}

.faq-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(26, 84, 82, 0.15);
  background: #fff;
}

.faq-search-input::placeholder {
  color: var(--muted);
}

/* FAQ Hero Visual */
.faq-hero-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: grid;
  place-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.3;
  z-index: -1;
}

.hero-orb.orb-1 { width: 300px; height: 300px; background: var(--primary); top: 0; right: 0; }
.hero-orb.orb-2 { width: 250px; height: 250px; background: var(--gold); bottom: 0; left: 0; }

.abstract-dashboard {
  width: 100%;
  max-width: 380px;
  height: 320px;
  border-radius: 24px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
}

.dash-header { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; }
.dash-circle { width: 40px; height: 40px; border-radius: 50%; background: rgba(26, 84, 82, 0.15); }
.dash-line { height: 12px; border-radius: 6px; background: rgba(26, 84, 82, 0.1); }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.dash-card { height: 70px; border-radius: 16px; background: rgba(26, 84, 82, 0.08); }
.dash-chart { height: 100px; border-radius: 16px; background: linear-gradient(180deg, rgba(26, 84, 82, 0.15) 0%, rgba(26, 84, 82, 0) 100%); }

.faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: sticky;
  top: 100px;
}

.faq-pill {
  text-align: left;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-pill:hover {
  background: rgba(26, 84, 82, 0.05);
  color: var(--text);
}

.faq-pill.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(26, 84, 82, 0.25);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.faq-icon::before { top: 11px; left: 2px; width: 20px; height: 2px; }
.faq-icon::after { top: 2px; left: 11px; width: 2px; height: 20px; }

.faq-item.open .faq-icon::after { transform: rotate(90deg) scale(0); }
.faq-item.open .faq-icon::before { transform: rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.answer-content {
  overflow: hidden;
  padding: 0 1.5rem;
}

.answer-content p {
  padding-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.still-need-help-card {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(26, 84, 82, 0.05), rgba(255, 255, 255, 0.9));
}

.help-content h2 { margin-bottom: 0.5rem; }
.help-content p { margin-bottom: 2rem; max-width: 500px; margin-inline: auto; }
.help-btn { display: inline-flex; gap: 0.5rem; align-items: center; }

/* Responsive FAQ */
@media (max-width: 991px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .faq-categories {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
    position: relative;
    top: 0;
    scrollbar-width: none;
  }
  .faq-categories::-webkit-scrollbar { display: none; }
  .faq-pill { white-space: nowrap; }
}

@media (max-width: 768px) {
  .faq-hero { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .faq-search-wrapper { margin-inline: auto; }
  .faq-hero-visual { min-height: 280px; }
}