/* =============================================
   KOMPETE FINANCE — 8lab Inspired Redesign
   Deep black · Glow effects · Premium dark
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;700&display=swap');

:root {
  --bg: #0A0A0F;
  --bg-alt: #0E0E14;
  --surface: #141419;
  --surface-hover: #1A1A21;
  --card: #12121A;
  --white: #FFFFFF;
  --w90: rgba(255, 255, 255, .92);
  --w70: rgba(255, 255, 255, .7);
  --w50: rgba(255, 255, 255, .5);
  --w30: rgba(255, 255, 255, .3);
  --w15: rgba(255, 255, 255, .12);
  --w08: rgba(255, 255, 255, .06);
  --w04: rgba(255, 255, 255, .03);
  --border: rgba(255, 255, 255, .07);
  --border-h: rgba(255, 255, 255, .14);
  --glow: rgba(255, 255, 255, .06);
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --pill: 100px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

.love {
  --bg: #1A0A10;
  --bg-alt: #1E0C14;
  --surface: #2A1018;
  --surface-hover: #33141E;
  --card: #24101A;
  --border: rgba(232, 69, 112, .12);
  --border-h: rgba(232, 69, 112, .25);
  --glow: rgba(232, 69, 112, .1);
  --accent: #E84570;
  --accent-soft: rgba(232, 69, 112, .12);
  --accent-glow: rgba(232, 69, 112, .2);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--w50);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden
}

a {
  color: var(--white);
  text-decoration: none;
  transition: .2s
}

a:hover {
  color: var(--w90)
}

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

ul,
ol {
  list-style: none
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.05em
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem)
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem)
}

p {
  margin-bottom: 1rem
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px
}

/* =============================================
   ANIMATED GRID BACKGROUND
   ============================================= */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--w04) 1px, transparent 1px),
    linear-gradient(90deg, var(--w04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 15, .5);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--border);
  transition: .3s var(--ease)
}

.header.scrolled {
  background: rgba(10, 10, 15, .85)
}

.h-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.text-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.text-logo .kompete {
  font-family: 'Anton', 'Montserrat', sans-serif;
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-logo .finance {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 2px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav a.l {
  font-size: .85rem;
  font-weight: 500;
  color: var(--w50);
  transition: .2s;
  position: relative
}

.nav a.l:hover {
  color: var(--white)
}

.nav a.l::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--white);
  transition: .3s
}

.nav a.l:hover::after {
  width: 100%
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px
}

.burger span {
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: none;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden
}

.btn-w {
  background: var(--white);
  color: var(--bg)
}

.btn-w::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transition: .5s
}

.btn-w:hover::after {
  left: 100%
}

.btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 255, 255, .12), 0 12px 36px rgba(0, 0, 0, .4);
  color: var(--bg)
}

.btn-o {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--w15)
}

.btn-o:hover {
  border-color: var(--w30);
  background: var(--w08);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 0 30px rgba(255, 255, 255, .04)
}

.btn-lg {
  padding: 16px 38px;
  font-size: .95rem;
  border-radius: 12px
}

.btn-sm {
  padding: 9px 18px;
  font-size: .82rem
}

.love .btn-w {
  background: var(--accent);
  color: #fff
}

.love .btn-w:hover {
  box-shadow: 0 0 40px var(--accent-glow), 0 12px 36px rgba(0, 0, 0, .4)
}

/* =============================================
   HERO — Full viewport, centered, dramatic
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px
}

/* Orb glow effects */
.hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite
}

.hero .orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, .025);
  top: -10%;
  right: -5%;
  animation-delay: 0s
}

.hero .orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, .02);
  bottom: -15%;
  left: -10%;
  animation-delay: -3s
}

.hero .orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .015);
  top: 40%;
  left: 50%;
  animation-delay: -5s
}

@keyframes orb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(20px, -20px) scale(1.05)
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .72rem;
  font-weight: 600;
  color: var(--w50);
  padding: 8px 18px;
  border-radius: var(--pill);
  margin-bottom: 36px;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 0 20px var(--glow)
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, .4)
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.5);
    opacity: .3
  }
}

.hero h1 {
  margin-bottom: 28px
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, rgba(255, 255, 255, .4), rgba(255, 255, 255, .15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--w50);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 48px
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--w30);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: hint-bob 2s ease-in-out infinite
}

.scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--w30), transparent)
}

@keyframes hint-bob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* =============================================
   METRICS — Glowing border strip
   ============================================= */
.metrics {
  padding: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative
}

.metrics::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent)
}

.m-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto
}

.m-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: .3s
}

.m-item:last-child {
  border: none
}

.m-item:hover {
  background: var(--w04)
}

.m-item .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 6px
}

.m-item .lbl {
  font-size: .72rem;
  color: var(--w30);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500
}

/* =============================================
   FEATURE SHOWCASES
   ============================================= */
.showcase {
  padding: 140px 0;
  position: relative
}

.showcase:nth-child(even) {
  background: var(--bg-alt)
}

.showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent)
}

.sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.sc-grid.flip .sc-visual {
  order: -1
}

.sc-content {
  max-width: 480px
}

.sc-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--w50);
  background: var(--w08);
  padding: 6px 16px;
  border-radius: var(--pill);
  margin-bottom: 24px;
  border: 1px solid var(--border)
}

.sc-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 3vw, 2.4rem)
}

.sc-content>p {
  font-size: 1rem;
  color: var(--w50);
  line-height: 1.8;
  margin-bottom: 28px
}

.sc-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px
}

.sc-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all .3s var(--ease)
}

.sc-feat:hover {
  border-color: var(--border-h);
  background: var(--surface-hover);
  transform: translateX(6px);
  box-shadow: 0 0 20px var(--glow)
}

.sc-feat .ic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--w08);
  border-radius: var(--r-sm);
  font-size: 1.2rem
}

.sc-feat h4 {
  font-size: .9rem;
  margin-bottom: 2px;
  color: var(--white)
}

.sc-feat p {
  font-size: .82rem;
  color: var(--w30);
  margin: 0;
  line-height: 1.5
}

.sc-visual {
  display: flex;
  justify-content: center;
  align-items: center
}

/* Glow card */
.glow-card {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16/10;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255, 255, 255, .02), 0 20px 60px rgba(0, 0, 0, .3);
  transition: .5s var(--ease);
}

.glow-card:hover {
  box-shadow: 0 0 80px rgba(255, 255, 255, .04), 0 20px 60px rgba(0, 0, 0, .4);
  border-color: var(--border-h)
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent, rgba(255, 255, 255, .06), transparent);
  animation: glow-spin 6s linear infinite;
  pointer-events: none
}

.glow-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--card);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0
}

@keyframes glow-spin {
  to {
    transform: rotate(360deg)
  }
}

.glow-card .inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--w50);
  padding: 32px
}

.glow-card .inner .big {
  font-size: 3.5rem;
  margin-bottom: 12px
}

.glow-card .inner h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px
}

.glow-card .inner p {
  font-size: .85rem;
  color: var(--w30);
  margin: 0
}

/* =============================================
   PLANS — Cards with glow borders
   ============================================= */
.plans {
  padding: 140px 0;
  background: var(--bg-alt);
  position: relative
}

.plans::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent)
}

.sec-top {
  text-align: center;
  margin-bottom: 72px
}

.sec-top h2 {
  margin-bottom: 14px
}

.sec-top p {
  font-size: 1rem;
  color: var(--w50);
  max-width: 480px;
  margin: 0 auto
}

.plan-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 50px var(--glow), 0 20px 50px rgba(0, 0, 0, .4);
  border-color: var(--border-h)
}

.plan.popular {
  border-color: var(--w15)
}

.plan.popular::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 70%, rgba(255, 255, 255, .08), transparent);
  pointer-events: none;
  animation: glow-spin 8s linear infinite
}

.plan.popular::before {
  content: '★ Populaire';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  color: var(--bg);
  font-size: .58rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--pill);
  text-transform: uppercase;
  letter-spacing: .06em;
  z-index: 2
}

.plan .t {
  font-size: .75rem;
  font-weight: 600;
  color: var(--w50);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px
}

.plan .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -.03em
}

.plan .price small {
  font-size: .78rem;
  font-weight: 400;
  color: var(--w30)
}

.plan .sep {
  height: 1px;
  background: var(--border);
  margin: 20px 0
}

.plan ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.plan li {
  font-size: .82rem;
  color: var(--w50);
  display: flex;
  align-items: center;
  gap: 8px
}

.plan li .ck {
  color: var(--white);
  font-size: .9rem
}

.plan li .xx {
  color: var(--w15);
  font-size: .9rem
}

.plan .plan-btn {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 12px;
  background: var(--w08);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .84rem;
  font-weight: 600;
  color: var(--white);
  transition: .3s;
  text-decoration: none;
}

.plan .plan-btn:hover {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(255, 255, 255, .08)
}

.plan.popular .plan-btn {
  background: var(--white);
  color: var(--bg)
}

.plan.popular .plan-btn:hover {
  background: var(--w90)
}

/* =============================================
   ARTICLES — Magazine with glow
   ============================================= */
.articles {
  padding: 140px 0;
  background: var(--bg);
  position: relative
}

.articles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent)
}

.mag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.mag .featured {
  grid-row: 1/3
}

.acard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .4s var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.acard:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px var(--glow), 0 16px 48px rgba(0, 0, 0, .3);
  border-color: var(--border-h)
}

.acard .thumb {
  width: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0
}

.featured .thumb {
  height: 340px
}

.acard:not(.featured) .thumb {
  height: 160px
}

.acard .thumb .cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.acard .thumb .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--bg);
  font-size: .64rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--pill);
  text-transform: uppercase;
  letter-spacing: .05em
}

.love .acard .thumb .tag {
  background: var(--accent);
  color: #fff
}

.acard .body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.featured .body {
  padding: 32px
}

.acard .date {
  font-size: .72rem;
  color: var(--w30);
  margin-bottom: 10px;
  display: flex;
  gap: 8px
}

.acard h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  transition: .2s
}

.featured h3 {
  font-size: 1.25rem
}

.acard:hover h3 {
  color: var(--w90)
}

.acard p {
  font-size: .84rem;
  color: var(--w30);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1
}

.acard .go {
  font-size: .8rem;
  font-weight: 600;
  color: var(--w70);
  display: inline-flex;
  gap: 6px;
  transition: gap .3s
}

.acard:hover .go {
  gap: 12px;
  color: var(--white)
}

/* =============================================
   BOTTOM CTA — With glow
   ============================================= */
.final-cta {
  padding: 40px 0 140px
}

.fbox {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fbox::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, .03), transparent 60%);
  pointer-events: none
}

.fbox::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 90deg, transparent 60%, rgba(255, 255, 255, .06), transparent);
  pointer-events: none;
  animation: glow-spin 10s linear infinite
}

.fbox h2 {
  margin-bottom: 14px;
  position: relative;
  z-index: 1
}

.fbox p {
  color: var(--w50);
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1
}

.fbox .btn-w {
  position: relative;
  z-index: 1
}

.love .fbox {
  background: linear-gradient(135deg, rgba(232, 69, 112, .15), rgba(196, 37, 74, .1));
  border-color: rgba(232, 69, 112, .2)
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 52px 0 20px
}

.fgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}

.fabout p {
  color: var(--w30);
  font-size: .84rem;
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.65
}

.fl h4 {
  font-size: .72rem;
  font-weight: 700;
  color: var(--w50);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px
}

.fl li {
  margin-bottom: 8px
}

.fl a {
  color: var(--w30);
  font-size: .84rem;
  transition: .2s
}

.fl a:hover {
  color: var(--white)
}

.fbot {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.fbot p {
  font-size: .7rem;
  color: var(--w30);
  margin: 0
}

.fdiscl {
  max-width: 520px;
  line-height: 1.5 !important
}

/* =============================================
   ARTICLE PAGE
   ============================================= */
.art-page {
  padding: 120px 0 80px
}

.art-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px
}

.crumbs {
  display: flex;
  gap: 8px;
  font-size: .78rem;
  color: var(--w30);
  margin-bottom: 28px
}

.crumbs a {
  color: var(--w30)
}

.crumbs a:hover {
  color: var(--white)
}

.art-hd {
  margin-bottom: 44px
}

.art-hd .atag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--w08);
  color: var(--w70);
  font-size: .72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--pill);
  margin-bottom: 20px;
  border: 1px solid var(--border)
}

.love .art-hd .atag {
  background: var(--accent-soft);
  color: #FF6B8A;
  border-color: rgba(232, 69, 112, .2)
}

.art-hd h1 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 2.8rem)
}

.art-hd .meta {
  display: flex;
  gap: 12px;
  font-size: .8rem;
  color: var(--w30);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border)
}

.art-body {
  font-size: 1rem;
  line-height: 1.85
}

.art-body h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 16px
}

.art-body h3 {
  margin-top: 32px;
  margin-bottom: 12px
}

.art-body p {
  margin-bottom: 18px
}

.art-body strong {
  color: var(--white);
  font-weight: 600
}

.art-body ul {
  margin-bottom: 18px;
  padding: 0
}

.art-body ul li {
  padding: 6px 0 6px 24px;
  position: relative
}

.art-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, .3)
}

.love .art-body ul li::before {
  background: #E84570;
  box-shadow: 0 0 6px rgba(232, 69, 112, .4)
}

.art-body ol {
  margin-bottom: 18px;
  padding-left: 22px;
  list-style: decimal
}

.art-body ol li {
  padding: 4px 0
}

.note {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--white);
  border-radius: var(--r-sm);
  padding: 22px 24px;
  margin: 28px 0;
  box-shadow: 0 0 20px var(--glow)
}

.love .note {
  border-left-color: #E84570
}

.note h4 {
  font-size: .92rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white)
}

.note p {
  font-size: .88rem;
  margin: 0
}

.warn {
  background: rgba(234, 179, 8, .04);
  border: 1px solid rgba(234, 179, 8, .1);
  border-left: 3px solid #EAB308;
  border-radius: var(--r-sm);
  padding: 22px 24px;
  margin: 28px 0
}

.warn h4 {
  font-size: .92rem;
  margin-bottom: 6px;
  color: #EAB308;
  display: flex;
  align-items: center;
  gap: 8px
}

.warn p {
  font-size: .88rem;
  margin: 0
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin: 28px 0
}

.pcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  transition: all .35s var(--spring)
}

.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px var(--glow), 0 16px 40px rgba(0, 0, 0, .3)
}

.pcard.best {
  border-color: var(--w15)
}

.love .pcard.best {
  border-color: rgba(232, 69, 112, .3);
  background: var(--accent-soft)
}

.pcard .nm {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px
}

.pcard .amt {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white)
}

.pcard .amt small {
  font-size: .7rem;
  font-weight: 400;
  color: var(--w30)
}

.pcard .pk {
  font-size: .82rem;
  color: var(--w70);
  font-weight: 600;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border)
}

.love .pcard .pk {
  color: #FF6B8A
}

.steps {
  margin: 28px 0
}

.stp {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border)
}

.stp:last-child {
  border: none
}

.stp .sn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  color: var(--bg);
  box-shadow: 0 0 12px rgba(255, 255, 255, .15)
}

.love .stp .sn {
  background: #E84570;
  color: #fff;
  box-shadow: 0 0 12px var(--accent-glow)
}

.stp h4 {
  font-size: .92rem;
  margin-bottom: 3px;
  color: var(--white)
}

.stp p {
  font-size: .86rem;
  color: var(--w30);
  margin: 0
}

.art-cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden
}

.art-cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, transparent 60%, rgba(255, 255, 255, .05), transparent);
  pointer-events: none;
  animation: glow-spin 8s linear infinite
}

.love .art-cta {
  border-color: rgba(232, 69, 112, .2);
  background: linear-gradient(135deg, rgba(232, 69, 112, .1), rgba(196, 37, 74, .06))
}

.art-cta h3 {
  margin-bottom: 10px;
  position: relative;
  z-index: 1
}

.art-cta p {
  color: var(--w50);
  font-size: .9rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1
}

.love .art-cta p {
  color: rgba(255, 255, 255, .7)
}

.art-cta .btn-w {
  position: relative;
  z-index: 1
}

.love .art-cta .btn-w {
  background: var(--accent);
  color: #fff
}

/* Hearts */
.hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.hearts span {
  position: absolute;
  bottom: -20px;
  opacity: 0;
  animation: rise linear infinite
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0) scale(.5)
  }

  8% {
    opacity: .12
  }

  50% {
    opacity: .05
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) rotate(40deg) scale(1)
  }
}

/* Reveal */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.rv.on {
  opacity: 1;
  transform: translateY(0)
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

/* =============================================
   LOVE THEME — Full Tinder pink immersion
   ============================================= */
.love .header {
  background: rgba(26, 10, 16, .55)
}

.love .header.scrolled {
  background: rgba(26, 10, 16, .88)
}

.love .grid-bg {
  background-image:
    linear-gradient(rgba(232, 69, 112, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 69, 112, .04) 1px, transparent 1px);
}

.love .hero .orb-1 {
  background: rgba(232, 69, 112, .04)
}

.love .hero .orb-2 {
  background: rgba(255, 107, 138, .03)
}

.love .hero .orb-3 {
  background: rgba(196, 37, 74, .03)
}

.love .hero h1 em {
  background: linear-gradient(135deg, rgba(232, 69, 112, .7), rgba(255, 107, 138, .4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.love .hero-badge {
  box-shadow: 0 0 20px rgba(232, 69, 112, .08)
}

.love .hero-badge .dot {
  background: #E84570;
  box-shadow: 0 0 8px rgba(232, 69, 112, .5)
}

.love .scroll-hint .line {
  background: linear-gradient(to bottom, rgba(232, 69, 112, .3), transparent)
}

.love .btn-w {
  background: var(--accent);
  color: #fff
}

.love .btn-w:hover {
  box-shadow: 0 0 40px var(--accent-glow), 0 12px 36px rgba(0, 0, 0, .4)
}

.love .btn-o {
  border-color: rgba(232, 69, 112, .2)
}

.love .btn-o:hover {
  border-color: rgba(232, 69, 112, .4);
  background: rgba(232, 69, 112, .08)
}

.love .note {
  border-left-color: #E84570;
  box-shadow: 0 0 20px rgba(232, 69, 112, .06)
}

.love .warn {
  background: rgba(232, 69, 112, .04);
  border-color: rgba(232, 69, 112, .1);
  border-left-color: #E84570
}

.love .warn h4 {
  color: #FF6B8A
}

.love .art-body ul li::before {
  background: #E84570;
  box-shadow: 0 0 6px rgba(232, 69, 112, .4)
}

.love .stp .sn {
  background: #E84570;
  color: #fff;
  box-shadow: 0 0 12px var(--accent-glow)
}

.love .pcard.best {
  border-color: rgba(232, 69, 112, .3);
  background: var(--accent-soft)
}

.love .pcard .pk {
  color: #FF6B8A
}

.love .acard .thumb .tag {
  background: var(--accent);
  color: #fff
}

.love .art-cta {
  background: linear-gradient(135deg, rgba(255, 107, 138, .15), rgba(232, 69, 112, .12), rgba(196, 37, 74, .1));
  border-color: rgba(232, 69, 112, .2)
}

.love .art-cta::before {
  background: conic-gradient(from 180deg, transparent 60%, rgba(232, 69, 112, .1), transparent)
}

.love .art-cta p {
  color: rgba(255, 255, 255, .7)
}

.love .art-cta .btn-w {
  background: var(--accent);
  color: #fff
}

.love .fbox {
  background: linear-gradient(135deg, rgba(255, 107, 138, .12), rgba(232, 69, 112, .08), rgba(196, 37, 74, .06));
  border-color: rgba(232, 69, 112, .15)
}

.love .fbox::after {
  background: conic-gradient(from 90deg, transparent 60%, rgba(232, 69, 112, .1), transparent)
}

.love .fbox .btn-w {
  background: var(--accent);
  color: #fff
}

.love footer {
  background: var(--surface);
  border-top-color: rgba(232, 69, 112, .1)
}

.love .art-hd .atag {
  background: var(--accent-soft);
  color: #FF6B8A;
  border-color: rgba(232, 69, 112, .2)
}

@media(max-width:768px) {
  .love .nav {
    background: rgba(26, 10, 16, .97)
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width:1024px) {
  .sc-grid {
    grid-template-columns: 1fr
  }

  .sc-grid.flip .sc-visual {
    order: 0
  }

  .sc-content {
    max-width: 100%
  }

  .plan-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .mag {
    grid-template-columns: 1fr
  }

  .mag .featured {
    grid-row: auto
  }

  .fgrid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .m-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .m-item:nth-child(2) {
    border-right: none
  }

  .m-item:nth-child(3),
  .m-item:nth-child(4) {
    border-top: 1px solid var(--border)
  }
}

@media(max-width:768px) {
  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 18px;
    gap: 12px
  }

  .nav.open {
    display: flex
  }

  .burger {
    display: flex
  }

  .hero {
    min-height: auto;
    padding: 140px 24px 80px
  }

  .sc-visual {
    display: none
  }

  .showcase {
    padding: 100px 0
  }

  .plan-row {
    grid-template-columns: 1fr
  }

  .fgrid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .fbot {
    flex-direction: column;
    text-align: center
  }

  .fbox {
    padding: 52px 24px
  }

  .m-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .pricing {
    grid-template-columns: 1fr
  }

  .plans,
  .articles,
  .final-cta {
    padding: 100px 0
  }

  /* Articles Mobile */
  .art-page {
    padding: 100px 0 60px
  }

  .art-wrap {
    padding: 0 20px
  }

  .art-body {
    font-size: .95rem
  }

  .art-cta {
    padding: 28px 20px;
    margin: 32px 0
  }
}

@media(max-width:480px) {

  .wrap,
  .h-inner {
    padding: 0 18px
  }

  h1 {
    font-size: 2.2rem
  }

  .hero-cta {
    flex-direction: column;
    width: 100%
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center
  }

  .m-inner {
    grid-template-columns: 1fr
  }

  .m-item {
    border-right: none;
    border-bottom: 1px solid var(--border)
  }

  .m-item:last-child {
    border: none
  }
}
/* STICKY MOBILE CTA (CONVERSION EXPERIMENT) */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 16px 20px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 9999;
  text-align: center;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.sticky-mobile-cta .btn {
  width: 100%;
  margin: 0;
  font-size: 1.05rem;
  padding: 14px 24px;
  background: var(--accent);
  color: white;
  border-radius: var(--pill);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-glow-cta 2s infinite;
}

@keyframes pulse-glow-cta {
  0% { box-shadow: 0 0 0 0 rgba(0, 117, 235, 0.4); transform: scale(1); }
  50% { transform: scale(1.02); }
  70% { box-shadow: 0 0 0 15px rgba(0, 117, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 117, 235, 0); transform: scale(1); }
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 80px; /* Prevent footer from being hidden behind sticky */
  }
}
