/* =============================================================
   SHULEPEDIA PRO v7 — Design System
   Typefaces : Fraunces (display) + DM Sans (UI)
   Brand     : Navy #01172E · Coral #E84C3D
   Grid      : 8 px base · 1200 px max container
   ============================================================= */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

/* ── Design Tokens ────────────────────────────────────────────── */
:root {
  /* Brand */
  --navy:       #01172E;
  --navy-2:     #0A2540;
  --navy-3:     #061B3A;
  --coral:      #E84C3D;
  --coral-d:    #C93828;
  --coral-l:    #FF6B5A;

  /* Neutrals */
  --cream:      #F5F4F0;
  --cream-2:    #ECEAE5;
  --white:      #FFFFFF;
  --ink:        #0C141C;
  --ink-2:      #3D4D5C;
  --muted:      #6E7B8A;
  --rule:       #DFE3E8;

  /* Type */
  --ff-serif:   'Fraunces', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm:   6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  22px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 2px 12px rgba(1,23,46,.06);
  --sh-md: 0 8px 32px rgba(1,23,46,.09);
  --sh-lg: 0 20px 60px rgba(1,23,46,.12);

  /* Container */
  --container: 1200px;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: none; }
p { color: var(--ink-2); }

/* ── Layout ───────────────────────────────────────────────────── */
.sp-wrap          { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.sp-wrap--narrow  { width: min(100% - 48px, 780px); margin-inline: auto; }
.sp-section       { padding: 88px 0; }
.sp-section--cream { background: var(--cream); }
.sp-section--ink   { background: var(--navy); }
.sp-section--rule  { border-top: 1px solid var(--rule); }

/* ── Type scale ───────────────────────────────────────────────── */
/* Labels */
.sp-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(232,76,61,.08); border: 1px solid rgba(232,76,61,.2);
  color: var(--coral); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
}
.sp-label::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0;
}
.sp-label--inv {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}
.sp-label--inv::before { background: var(--coral-l); }

/* Headlines */
.sp-t-hero {
  font-family: var(--ff-serif); font-size: clamp(50px, 7vw, 84px);
  line-height: 1.04; letter-spacing: -.025em; font-weight: 300;
  color: var(--navy); font-style: italic;
}
.sp-t-hero em { color: var(--coral); font-style: italic; }

.sp-t-h2 {
  font-family: var(--ff-serif); font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1; font-weight: 300; font-style: italic; color: var(--navy);
}
.sp-t-h2--inv { color: #fff; }

.sp-t-h3 {
  font-family: var(--ff-body); font-size: 17px; font-weight: 500;
  color: var(--navy); line-height: 1.3;
}

.sp-t-body { font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.sp-t-small { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Section headers */
.sp-sh { margin-bottom: 48px; }
.sp-sh--center { text-align: center; }
.sp-sh--center .sp-t-h2,
.sp-sh--center .sp-t-body { max-width: 560px; margin-inline: auto; }
.sp-sh p { margin-top: 14px; font-size: 17px; }

/* ── Buttons ──────────────────────────────────────────────────── */
.sp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--r-pill);
  font-family: var(--ff-body); font-weight: 500; font-size: 15px; line-height: 1;
  white-space: nowrap; cursor: pointer; transition: all .2s ease;
  text-decoration: none; border: 0;
}
.sp-btn:hover { transform: translateY(-1px); }
.sp-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.sp-btn--primary { background: var(--coral); color: #fff; }
.sp-btn--primary:hover { background: var(--coral-d); }

.sp-btn--ghost {
  background: rgba(255,255,255,.10); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.sp-btn--ghost:hover { background: rgba(255,255,255,.17); }

.sp-btn--outline {
  background: transparent; color: var(--navy); border: 1px solid var(--rule);
}
.sp-btn--outline:hover { border-color: var(--navy); background: var(--cream); }

.sp-btn--outline-coral {
  background: transparent; color: var(--coral); border: 1px solid var(--coral);
}
.sp-btn--outline-coral:hover { background: var(--coral); color: #fff; }

.sp-btn--sm   { padding: 9px 18px; font-size: 13px; }
.sp-btn--block { width: 100%; justify-content: center; }

/* ── Price ────────────────────────────────────────────────────── */
.sp-price         { font-family: var(--ff-serif); font-size: 22px; font-weight: 300; font-style: italic; color: var(--navy); }
.sp-price__orig   { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-right: 6px; font-weight: 400; font-family: var(--ff-body); font-style: normal; }
.sp-price--free   { color: var(--coral); }
.sp-price__save   {
  background: rgba(232,76,61,.1); color: var(--coral-d);
  border-radius: var(--r-pill); padding: 3px 9px; font-size: 12px; font-weight: 500;
  font-family: var(--ff-body); font-style: normal; font-size: 12px;
}

/* ─────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────── */
.sp-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(1,23,46,.97);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(18px) saturate(1.4);
}
.sp-header__inner {
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.sp-logo {
  font-family: var(--ff-serif); font-style: italic; font-size: 22px;
  color: #fff; letter-spacing: -.02em; flex-shrink: 0; line-height: 1;
}
.sp-logo span { color: var(--coral); }

.sp-nav { display: flex; align-items: center; gap: 2px; }
.sp-nav a {
  color: rgba(255,255,255,.65); font-size: 14px; font-weight: 400;
  padding: 7px 12px; border-radius: var(--r-sm); transition: all .15s;
}
.sp-nav a:hover,
.sp-nav .current-menu-item > a { color: #fff; background: rgba(255,255,255,.07); }

.sp-header__acts { display: flex; align-items: center; gap: 10px; }
.sp-header__sep  { width: 1px; height: 20px; background: rgba(255,255,255,.1); }

.sp-burger {
  display: none; width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.15); flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.sp-burger span { display: block; width: 18px; height: 1.5px; background: #fff; border-radius: 9px; }

/* Mobile nav */
.sp-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 199; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.sp-overlay.open { opacity: 1; pointer-events: all; }
.sp-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px);
  background: var(--white); z-index: 200; display: flex; flex-direction: column;
  box-shadow: -16px 0 48px rgba(0,0,0,.2);
  transform: translateX(105%); transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.sp-drawer.open { transform: translateX(0); }
.sp-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--rule);
}
.sp-drawer__close {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--rule); font-size: 20px; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.sp-drawer__links { padding: 24px; display: grid; gap: 2px; flex: 1; }
.sp-drawer__links a {
  padding: 13px 0; font-size: 17px; font-weight: 500;
  color: var(--navy); border-bottom: 1px solid var(--rule); display: block;
}
.sp-drawer__links a:last-child { border-bottom: 0; }
.sp-drawer__foot {
  padding: 20px 24px; border-top: 1px solid var(--rule); display: grid; gap: 10px;
}

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.sp-hero {
  background: var(--navy); padding: 96px 0 0;
  overflow: hidden; position: relative;
}
.sp-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: rgba(232,76,61,.04);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 40% 100%);
}
.sp-hero__grid {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 72px; align-items: end; position: relative; z-index: 1;
}
.sp-hero__eyebrow { margin-bottom: 22px; }
.sp-hero__sub {
  font-size: 18px; color: rgba(255,255,255,.6); max-width: 520px;
  margin-top: 20px; line-height: 1.7;
}
.sp-hero__acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.sp-hero__stats {
  display: flex; align-items: center; gap: 0;
  margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.08);
}
.sp-hero__stat { padding: 0 28px; }
.sp-hero__stat:first-child { padding-left: 0; }
.sp-hero__stat strong {
  display: block; font-family: var(--ff-serif); font-size: 30px; color: #fff;
  font-weight: 300; font-style: italic; line-height: 1;
}
.sp-hero__stat span {
  font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase;
  letter-spacing: .1em; font-weight: 500; margin-top: 5px; display: block;
}
.sp-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* Hero panel */
.sp-hero__panel {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-bottom: 0; border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 22px 22px 0; align-self: end;
}
.sp-hcard {
  background: var(--white); border-radius: var(--r-lg);
  padding: 14px; display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
}
.sp-hcard:last-child { margin-bottom: 0; }
.sp-hcard__cover {
  width: 66px; height: 84px; border-radius: var(--r-md); flex-shrink: 0;
  display: flex; align-items: flex-end; padding: 9px;
}
.sp-hcard__cover--a { background: var(--navy); }
.sp-hcard__cover--b { background: var(--coral-d); }
.sp-hcard__cover--c { background: #142818; }
.sp-hcard__cover-tag {
  font-size: 8px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.sp-hcard__info { flex: 1; min-width: 0; }
.sp-hcard__type {
  font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 4px;
}
.sp-hcard__title {
  font-size: 14px; font-weight: 500; color: var(--navy);
  line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sp-hcard__price { font-size: 13px; color: var(--ink-2); margin-top: 5px; }
.sp-hcard__arrow {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; flex-shrink: 0;
}
.sp-hero__caption {
  text-align: center; padding: 18px 0;
  font-size: 11px; color: rgba(255,255,255,.3);
  letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────────────────────── */
.sp-trust {
  background: var(--cream); border-bottom: 1px solid var(--rule); padding: 18px 0;
}
.sp-trust__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.sp-trust__item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--muted);
}
.sp-trust__item svg { color: var(--coral); flex-shrink: 0; }
.sp-trust__sep { width: 3px; height: 3px; border-radius: 50%; background: var(--rule); }

/* ─────────────────────────────────────────────────────────────
   LEARNING TRACKS
───────────────────────────────────────────────────────────── */
.sp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.sp-track {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-xl);
  padding: 32px; display: flex; flex-direction: column;
  transition: all .22s ease; position: relative; overflow: hidden;
}
.sp-track::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--coral); transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.sp-track:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: rgba(232,76,61,.12); }
.sp-track:hover::after { transform: scaleX(1); }
.sp-track__icon {
  width: 48px; height: 48px; border-radius: var(--r-md); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.sp-track p { font-size: 14px; color: var(--ink-2); line-height: 1.65; flex: 1; margin-top: 10px; }
.sp-track__cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: var(--coral); margin-top: 20px;
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT GRID + CARDS
───────────────────────────────────────────────────────────── */
.sp-prod-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px;
}
.sp-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.sp-filter {
  padding: 8px 16px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500;
  border: 1px solid var(--rule); background: var(--white); color: var(--ink-2);
  cursor: pointer; transition: all .18s;
}
.sp-filter:hover { border-color: var(--navy); color: var(--navy); }
.sp-filter.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.sp-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all .22s ease; height: 100%;
}
.sp-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }

.sp-card__img {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sp-card__img--ebook     { background: #01172E; }
.sp-card__img--course    { background: #1a0a05; }
.sp-card__img--audiobook { background: #0a1a0a; }
.sp-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sp-card__img-ph { font-size: 44px; opacity: .5; }

.sp-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--navy);
  font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}

.sp-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sp-card__type {
  font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--coral);
}
.sp-card__title {
  font-family: var(--ff-body); font-size: 17px; font-weight: 500;
  color: var(--navy); line-height: 1.25;
}
.sp-card__title a { color: inherit; transition: color .15s; }
.sp-card__title a:hover { color: var(--coral); }
.sp-card__excerpt {
  font-size: 13px; color: var(--muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sp-card__meta { font-size: 12px; color: var(--muted); padding-top: 8px; border-top: 1px solid var(--rule); }
.sp-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px; border-top: 1px solid var(--rule); margin-top: auto;
}
.sp-card__cta {
  width: 36px; height: 36px; border-radius: 50%; background: var(--coral);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: all .2s;
}
.sp-card__cta:hover { background: var(--coral-d); transform: scale(1.06); }

/* Empty state */
.sp-empty {
  background: var(--cream); border: 1.5px dashed var(--rule);
  border-radius: var(--r-xl); padding: 64px 32px; text-align: center;
}
.sp-empty h3 { font-size: 24px; margin-bottom: 10px; }
.sp-empty p  { color: var(--muted); margin-bottom: 24px; }

/* ─────────────────────────────────────────────────────────────
   PAGE HEROES (archive / single / page)
───────────────────────────────────────────────────────────── */
.sp-page-hero {
  background: var(--navy); padding: 40px 0 36px; position: relative; overflow: hidden;
}
.sp-page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: rgba(232,76,61,.04);
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 50% 100%);
}
.sp-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  color: rgba(255,255,255,.45); font-size: 13px; margin-bottom: 16px;
}
.sp-breadcrumb a { color: rgba(255,255,255,.45); transition: color .15s; }
.sp-breadcrumb a:hover { color: #fff; }
.sp-breadcrumb__sep { color: rgba(255,255,255,.2); }
.sp-page-hero h1 { font-size: clamp(30px, 5vw, 52px); color: #fff; }

/* ─────────────────────────────────────────────────────────────
   SINGLE PRODUCT
───────────────────────────────────────────────────────────── */
.sp-single__layout {
  display: grid; grid-template-columns: minmax(0,1fr) 380px;
  gap: 52px; align-items: start; padding-top: 56px; padding-bottom: 56px;
}
.sp-single__type {
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 12px;
}
.sp-single__title { font-size: clamp(28px, 5vw, 48px); margin-bottom: 16px; }
.sp-single__excerpt { font-size: 18px; color: var(--ink-2); line-height: 1.7; }

.sp-single__meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px;
}
.sp-single__meta-item {
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: var(--r-md); padding: 16px;
}
.sp-single__meta-val { font-weight: 500; color: var(--navy); font-size: 16px; }
.sp-single__meta-key {
  font-size: 11px; color: var(--muted); text-transform: uppercase;
  letter-spacing: .08em; margin-top: 3px; font-weight: 500;
}

.sp-learn { margin-top: 36px; }
.sp-learn h3 { margin-bottom: 16px; }
.sp-learn__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sp-learn__item {
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: var(--r-md); padding: 13px 15px;
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2);
}
.sp-learn__check { color: var(--coral); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Entry content */
.sp-entry { margin-top: 40px; max-width: 680px; }
.sp-entry h2 { font-family: var(--ff-body); font-size: 20px; font-weight: 500; margin: 32px 0 12px; }
.sp-entry h3 { font-family: var(--ff-body); font-size: 17px; font-weight: 500; margin: 24px 0 10px; }
.sp-entry p  { margin-bottom: 18px; font-size: 16px; line-height: 1.75; }
.sp-entry ul, .sp-entry ol { padding-left: 22px; margin-bottom: 18px; }
.sp-entry li { margin-bottom: 8px; font-size: 16px; line-height: 1.65; color: var(--ink-2); }

/* Preview */
.sp-preview {
  margin-top: 32px; padding: 22px 24px; background: var(--cream);
  border-radius: var(--r-lg); border: 1px solid var(--rule);
}
.sp-preview strong { display: block; font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.sp-preview p { font-size: 14px; margin-bottom: 14px; }

/* Buy box */
.sp-buybox {
  position: sticky; top: 84px;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r-xl); box-shadow: var(--sh-md); overflow: hidden;
}
.sp-buybox__img { position: relative; }
.sp-buybox__img img { width: 100%; display: block; }
.sp-buybox__body { padding: 24px; }
.sp-buybox__price-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.sp-buybox__meta {
  font-size: 14px; color: var(--muted); margin-top: 18px; line-height: 1.9;
}
.sp-buybox__guarantee {
  margin-top: 14px; font-size: 14px; font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: 7px;
}
.sp-buybox__note { font-size: 12px; color: var(--muted); margin-top: 7px; line-height: 1.5; }
.sp-buybox__share {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--rule);
}

/* Related */
.sp-related { padding: 56px 0; border-top: 1px solid var(--rule); }
.sp-related__head { margin-bottom: 32px; }

/* FAQ */
.sp-faq { border: 1px solid var(--rule); border-radius: var(--r-md); margin-bottom: 8px; overflow: hidden; }
.sp-faq__q {
  padding: 16px 20px; font-weight: 500; font-size: 15px; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  gap: 12px;
}
.sp-faq__q::after { content: '+'; font-size: 20px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.sp-faq.open .sp-faq__q::after { transform: rotate(45deg); color: var(--coral); }
.sp-faq__a { display: none; padding: 0 20px 16px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.sp-faq.open .sp-faq__a { display: block; }

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────────── */
.sp-how__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sp-how__steps { display: grid; }
.sp-how__step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--rule); }
.sp-how__step:first-child { padding-top: 0; }
.sp-how__step:last-child  { border-bottom: 0; padding-bottom: 0; }
.sp-how__num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
  color: var(--coral); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 19px; font-style: italic; font-weight: 300; flex-shrink: 0;
}
.sp-how__step h3 { margin-bottom: 6px; }
.sp-how__step p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* Checkout visual */
.sp-cbox { background: var(--navy); border-radius: var(--r-xl); padding: 32px; position: relative; overflow: hidden; }
.sp-cbox::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%; background: rgba(232,76,61,.07);
}
.sp-cbox__title {
  font-family: var(--ff-serif); font-style: italic; font-weight: 300;
  font-size: 20px; color: #fff; margin-bottom: 22px;
}
.sp-cbox__inner {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 18px;
}
.sp-cbox__lbl {
  font-size: 10px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 12px;
}
.sp-cbox__row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06); font-size: 14px;
}
.sp-cbox__row:last-child { border-bottom: 0; }
.sp-cbox__row span { color: rgba(255,255,255,.55); }
.sp-cbox__row strong { color: #fff; font-weight: 500; }
.sp-cbox__total {
  display: flex; justify-content: space-between; align-items: baseline;
  background: rgba(232,76,61,.12); border-radius: var(--r-md); padding: 14px; margin-top: 12px;
}
.sp-cbox__total-lbl { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }
.sp-cbox__total-val { font-family: var(--ff-serif); font-size: 26px; color: #fff; font-weight: 300; font-style: italic; }
.sp-cbox__btn {
  width: 100%; margin-top: 12px; padding: 13px; background: var(--coral); color: #fff;
  border: 0; border-radius: var(--r-md); font-family: var(--ff-body); font-size: 15px;
  font-weight: 500; cursor: pointer; transition: background .2s;
}
.sp-cbox__btn:hover { background: var(--coral-d); }

/* ─────────────────────────────────────────────────────────────
   COMMUNITY
───────────────────────────────────────────────────────────── */
.sp-comm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sp-comm__tags { display: grid; gap: 10px; margin-top: 24px; }
.sp-comm__tag {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md); padding: 14px 18px; color: #fff; font-size: 14px;
}
.sp-comm__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.sp-comm__status { margin-left: auto; font-size: 11px; color: rgba(255,255,255,.35); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.sp-chat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-xl); padding: 24px; }
.sp-chat__head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.sp-avstack { display: flex; }
.sp-av {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.1);
  border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.7); margin-left: -8px;
}
.sp-av:first-child { margin-left: 0; }
.sp-chat__meta { font-size: 13px; color: rgba(255,255,255,.45); }
.sp-bubble { background: rgba(255,255,255,.07); border-radius: var(--r-md); padding: 12px 14px; margin-bottom: 8px; }
.sp-bubble--reply { background: rgba(232,76,61,.08); margin-left: 16px; }
.sp-bubble__name { font-size: 11px; font-weight: 500; color: var(--coral); margin-bottom: 3px; letter-spacing: .04em; }
.sp-bubble p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.55; }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────── */
.sp-tcard {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-xl);
  padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow .22s;
}
.sp-tcard:hover { box-shadow: var(--sh-md); }
.sp-stars { color: var(--coral); letter-spacing: 2px; font-size: 14px; }
.sp-quote {
  font-family: var(--ff-serif); font-size: 16px; font-style: italic; font-weight: 300;
  color: var(--ink); line-height: 1.7; flex: 1;
}
.sp-tcard__foot { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--rule); }
.sp-av2 {
  width: 38px; height: 38px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; color: var(--navy); flex-shrink: 0;
}
.sp-tcard__name { font-size: 14px; font-weight: 500; color: var(--navy); }
.sp-tcard__loc  { font-size: 12px; color: var(--muted); }

/* ─────────────────────────────────────────────────────────────
   CREATOR CTA
───────────────────────────────────────────────────────────── */
.sp-creator { position: relative; overflow: hidden; }
.sp-creator::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: rgba(232,76,61,.05); clip-path: polygon(55% 0, 100% 0, 100% 100%, 38% 100%);
}
.sp-creator__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.sp-perks { display: grid; gap: 12px; }
.sp-perk {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); padding: 16px 18px;
}
.sp-perk__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.sp-perk h4 { font-family: var(--ff-body); font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 3px; }
.sp-perk p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* Creator page form */
.sp-form-group  { margin-bottom: 20px; }
.sp-form-label  { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.sp-input {
  width: 100%; padding: 12px 15px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06);
  color: #fff; font-family: var(--ff-body); font-size: 15px; transition: border-color .18s;
}
.sp-input::placeholder { color: rgba(255,255,255,.28); }
.sp-input:focus { outline: none; border-color: var(--coral); }
.sp-input option { background: var(--navy-2); }
.sp-textarea { resize: vertical; min-height: 120px; }

/* Success box */
.sp-success { text-align: center; padding: 48px 0; }
.sp-success h3 { font-size: 28px; color: #fff; margin-bottom: 12px; }
.sp-success p  { color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 28px; }

/* ─────────────────────────────────────────────────────────────
   PAGINATION
───────────────────────────────────────────────────────────── */
.sp-pagination { margin-top: 52px; display: flex; justify-content: center; }
.sp-pagination .page-numbers { display: inline-flex; align-items: center; gap: 6px; }
.sp-pagination .page-numbers li a,
.sp-pagination .page-numbers li span {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; border: 1px solid var(--rule); color: var(--navy); transition: all .18s;
}
.sp-pagination .page-numbers li a:hover { border-color: var(--coral); color: var(--coral); }
.sp-pagination .page-numbers li .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ─────────────────────────────────────────────────────────────
   ANNOUNCEMENT BAR
───────────────────────────────────────────────────────────── */
.sp-announce {
  background: var(--coral); color: #fff;
  font-size: 13px; font-weight: 500; padding: 10px 0; text-align: center;
}
.sp-announce__inner { display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; }
.sp-announce__close { position: absolute; right: 0; color: #fff; opacity: .7; font-size: 18px; padding: 0 4px; line-height: 1; }
.sp-announce__close:hover { opacity: 1; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.sp-footer { background: #010E1D; padding: 60px 0 24px; }
.sp-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.sp-footer__brand { font-family: var(--ff-serif); font-style: italic; font-size: 24px; color: #fff; }
.sp-footer__brand span { color: var(--coral); }
.sp-footer__tagline { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin: 12px 0 10px; }
.sp-footer__desc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 320px; }
.sp-socials { display: flex; gap: 8px; margin-top: 20px; }
.sp-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: 14px; transition: all .2s;
}
.sp-social:hover { background: rgba(255,255,255,.1); color: #fff; }
.sp-social--wa { color: #25D366; }
.sp-footer__col h4 {
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 18px;
}
.sp-footer__links { display: grid; gap: 9px; }
.sp-footer__links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.sp-footer__links a:hover { color: #fff; }
.sp-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px; color: rgba(255,255,255,.28);
}
.sp-footer__bar { height: 2px; background: linear-gradient(90deg, var(--coral), rgba(232,76,61,.2), transparent); margin-top: 24px; }

/* ─────────────────────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--coral); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 500; font-size: 14px; transition: top .2s;
}
.skip-link:focus { top: 0; }
*:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: var(--r-sm); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sp--fade { opacity: 0; transform: translateY(16px); transition: opacity .4s ease, transform .4s ease; }
.sp--visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sp-single__layout { grid-template-columns: minmax(0,1fr) 340px; gap: 36px; }
}
@media (max-width: 960px) {
  .sp-nav, .sp-header__sep { display: none; }
  .sp-burger { display: flex; }
  .sp-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .sp-hero__panel { max-width: 480px; }
  .sp-grid-3 { grid-template-columns: 1fr 1fr; }
  .sp-how__grid, .sp-comm__grid, .sp-creator__grid, .sp-grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .sp-single__layout { grid-template-columns: 1fr; }
  .sp-buybox { position: relative; top: auto; }
  .sp-prod-top { flex-direction: column; align-items: flex-start; }
  .sp-footer__grid { grid-template-columns: 1fr 1fr; }
  .sp-learn__grid { grid-template-columns: 1fr; }
  .sp-single__meta { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  :root { --container: calc(100% - 32px); }
  .sp-section { padding: 60px 0; }
  .sp-hero { padding: 70px 0 0; }
  .sp-hero__panel { display: none; }
  .sp-hero__stats { flex-wrap: wrap; gap: 16px; }
  .sp-hero__stat { padding: 0 16px; }
  .sp-hero__stat:first-child { padding-left: 0; }
  .sp-grid-3 { grid-template-columns: 1fr; }
  .sp-footer__grid { grid-template-columns: 1fr; }
  .sp-trust__inner { justify-content: flex-start; gap: 18px; }
  .sp-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .sp-single__meta { grid-template-columns: 1fr; }
}
@media print {
  .sp-header, .sp-footer, .sp-buybox__share, .sp-announce { display: none !important; }
  .sp-single__layout { grid-template-columns: 1fr; }
}
