/* Playbox AI — single-page site (no frameworks) */

:root {
  --bg: #070A12;
  --bg2: #0B1022;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.54);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: rgba(0, 0, 0, 0.35);
  --accent: #7C3AED;
  --accent2: #EC4899;
  --ok: #10B981;
  --warn: #F59E0B;
  --danger: #EF4444;
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
  --ring: 0 0 0 4px rgba(124, 58, 237, 0.24);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 15% 5%, rgba(236, 72, 153, 0.22), transparent 60%),
    radial-gradient(900px 500px at 80% 15%, rgba(124, 58, 237, 0.24), transparent 55%),
    radial-gradient(900px 500px at 50% 95%, rgba(16, 185, 129, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.skip-link:focus {
  left: 10px;
  outline: none;
  box-shadow: var(--ring);
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 14, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.nav-cta {
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(18px 18px at 30% 25%, rgba(255, 255, 255, 0.38), transparent 65%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(236, 72, 153, 0.95));
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.26);
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 12px;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}
.nav-links a:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  user-select: none;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.btn-primary {
  border: 1px solid rgba(124, 58, 237, 0.55);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(236, 72, 153, 0.92));
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.24);
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 1), rgba(236, 72, 153, 0.98));
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-ghost {
  background: transparent;
}

.hero {
  padding: 56px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 13px;
}

.badge-dev {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
  color: rgba(253, 230, 138, 0.95);
}

.spark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(236, 72, 153, 0.12);
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

/* Layout inspired by reference LP schema — Playbox-specific styling */
.fx-hero h1,
.fx-hero-title {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.fx-section {
  padding: 72px 0;
  position: relative;
}

#trial-section {
  scroll-margin-top: 88px;
}

#how,
#tool,
#see-results,
#results,
#features,
#pricing,
#faq {
  scroll-margin-top: 88px;
}

/* “See The Results” — before/after compare sliders */
.fx-see-results-grid {
  display: grid;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.fx-see-compare {
  --compare-pos: 50%;
  margin: 0;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.fx-see-compare-view {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(420px, 70vh);
  touch-action: pan-y;
}

.fx-see-compare-layer--after,
.fx-see-compare-layer--before {
  position: absolute;
  inset: 0;
}

.fx-see-compare-layer--after {
  z-index: 0;
}

.fx-see-compare-layer--before {
  z-index: 1;
  -webkit-clip-path: inset(0 calc(100% - var(--compare-pos)) 0 0);
  clip-path: inset(0 calc(100% - var(--compare-pos)) 0 0);
}

.fx-see-compare-layer--after img,
.fx-see-compare-layer--before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
}

.fx-see-compare-badges {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 14px;
  pointer-events: none;
}

.fx-see-compare-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.fx-see-compare-badge--before {
  background: rgba(12, 12, 14, 0.82);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fx-see-compare-badge--after {
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  color: rgba(17, 17, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.fx-see-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos);
  width: 3px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
}

.fx-see-compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(17, 17, 20, 0.9);
}

.fx-see-compare-handle svg {
  flex-shrink: 0;
}

/* Native range: full overlay, invisible thumb hit area */
.fx-see-compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  -webkit-appearance: none;
  appearance: none;
}

.fx-see-compare-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 44px;
  height: 44px;
}

.fx-see-compare-range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.fx-see-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.fx-see-caption small {
  font-weight: 600;
  color: var(--faint);
}

.fx-see-note {
  margin: 28px auto 0;
  max-width: 52ch;
  text-align: center;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.5;
}

.fx-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.fx-h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.fx-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.fx-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fx-step {
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.fx-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(236, 72, 153, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.fx-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.fx-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.fx-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.fx-compare {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.fx-compare-visual {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 24px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.fx-compare-visual--still {
  background:
    radial-gradient(ellipse 80% 60% at 40% 30%, rgba(124, 58, 237, 0.25), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.2));
}

.fx-compare-visual--motion {
  background:
    radial-gradient(ellipse 70% 55% at 60% 35%, rgba(236, 72, 153, 0.22), transparent 50%),
    linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(0, 0, 0, 0.25));
}

.fx-compare-body {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fx-compare-body h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.fx-compare-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.fx-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.fx-price-card {
  border-radius: var(--radius2);
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.fx-price-card:hover {
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-2px);
}

.fx-price-card--featured {
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.18);
}

.fx-price-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.fx-price-tag {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.fx-price-note {
  color: var(--faint);
  font-size: 13px;
  margin-bottom: 16px;
}

.fx-price-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.fx-price-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fx-price-list li:last-child {
  border-bottom: none;
}

.fx-pricing-foot {
  text-align: center;
  margin-top: 28px;
}

.sub {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.microcopy {
  margin-top: 14px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.5;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-radius: var(--radius2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.tool {
  padding: 18px;
}

.tool h2 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.tool p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.dropzone {
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  display: grid;
  gap: 12px;
  transition: border-color 0.12s ease, background 0.12s ease, transform 0.12s ease;
}

.dropzone.dragover {
  border-color: rgba(236, 72, 153, 0.65);
  background: rgba(236, 72, 153, 0.08);
  transform: translateY(-1px);
}

.drop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.file-name {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hint {
  color: var(--faint);
  font-size: 12.5px;
}

.preview {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 160px;
}
.preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.preview-placeholder {
  padding: 26px 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
}
.preview-placeholder strong {
  display: block;
  margin-bottom: 6px;
}

.controls {
  display: grid;
  gap: 10px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

select,
textarea,
input[type="text"] {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

select:focus,
textarea:focus,
input[type="text"]:focus {
  box-shadow: var(--ring);
  border-color: rgba(124, 58, 237, 0.55);
}

textarea {
  resize: vertical;
  min-height: 86px;
}

.tool-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.status {
  min-height: 18px;
  font-size: 13px;
  color: var(--muted);
}
.status.ok {
  color: rgba(16, 185, 129, 0.92);
}
.status.warn {
  color: rgba(245, 158, 11, 0.92);
}
.status.danger {
  color: rgba(239, 68, 68, 0.92);
}

.section {
  padding: 26px 0 6px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}
.feature h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  padding: 48px 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 8px;
}

.footer-tagline {
  margin: 0;
  max-width: 36ch;
  line-height: 1.5;
  color: var(--muted);
  font-size: 13px;
}

.footer-heading {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-list a:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.fine-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.fine-links a {
  color: rgba(255, 255, 255, 0.72);
}
.fine-links a:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 0;
  background: rgba(7, 10, 18, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  z-index: 50;
  display: none;
}
.cookie.show {
  display: block;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.4;
  max-width: 70ch;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

/* Long-form / legal pages */
.page-article h1 {
  margin-top: 14px;
}

.page-article-lead {
  max-width: 70ch;
}

.page-article .article-body {
  margin-top: 22px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.page-article .article-body h2 {
  margin: 22px 0 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.page-article .article-body h2:first-child {
  margin-top: 0;
}

.page-article .article-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 72ch;
}

.page-article .article-body ul {
  margin: 0 0 14px;
  padding-left: 1.25em;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 72ch;
}

.page-article .article-body li {
  margin-bottom: 8px;
}

.page-article .article-body a {
  color: rgba(196, 181, 253, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-article .article-body a:hover {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-cluster {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 12px;
  }
  .nav-cluster.is-open {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .row {
    grid-template-columns: 1fr;
  }
  .fx-steps {
    grid-template-columns: 1fr;
  }
  .fx-results-grid {
    grid-template-columns: 1fr;
  }
  .fx-pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

