/* ============================================================
   TORZON MARKET — DESIGN SYSTEM
   Playful Creative SaaS · Memphis + Cartoon UI Style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --c-yellow:      #FFC83D;
  --c-yellow-dark: #FFB800;
  --c-blue:        #2F5BFF;
  --c-blue-dark:   #1E4FFF;
  --c-teal:        #22C7A9;
  --c-teal-dark:   #1BBFA3;
  --c-orange:      #FF6A3D;
  --c-pink:        #FF4DA6;
  --c-black:       #111111;
  --c-white:       #FFFFFF;
  --c-gray:        #F8F7F4;
  --c-gray-dark:   #E5E3DF;

  --shadow:    4px 4px 0px #111111;
  --shadow-sm: 2px 2px 0px #111111;
  --shadow-lg: 6px 6px 0px #111111;
  --shadow-xl: 8px 8px 0px #111111;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 999px;

  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 48px;
  --sp-xl: 80px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--c-black);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-black);
}
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; font-weight: 500; line-height: 1.75; }

.highlight        { background: var(--c-yellow); padding: 2px 8px; border-radius: 4px; font-weight: 900; display: inline; }
.highlight-blue   { background: var(--c-blue); color: #fff; padding: 2px 8px; border-radius: 4px; font-weight: 900; display: inline; }
.highlight-teal   { background: var(--c-teal); padding: 2px 8px; border-radius: 4px; font-weight: 900; display: inline; }
.highlight-orange { background: var(--c-orange); color: #fff; padding: 2px 8px; border-radius: 4px; font-weight: 900; display: inline; }

.text-white  { color: #fff; }
.text-yellow { color: var(--c-yellow-dark); }
.text-blue   { color: var(--c-blue); }
.text-teal   { color: var(--c-teal-dark); }
.text-orange { color: var(--c-orange); }
.text-pink   { color: var(--c-pink); }
.text-muted  { color: rgba(17,17,17,0.6); }

/* ---------- CONTAINERS ---------- */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAVIGATION ---------- */
.nav-wrapper {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  z-index: 1000;
  pointer-events: none;
}
.nav {
  background: var(--c-black);
  border-radius: var(--r-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  border: 2px solid var(--c-black);
  pointer-events: all;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 7px 12px;
  border-radius: var(--r-full);
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.14); transform: scale(1.04); }
.nav-links a.active { background: var(--c-yellow); color: var(--c-black); }
.nav-cta {
  background: var(--c-orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { transform: translate(-2px,-2px) scale(1.04) !important; box-shadow: var(--shadow) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 16px;
  right: 16px;
  background: var(--c-black);
  border-radius: var(--r-lg);
  padding: 16px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  border: 2px solid #2a2a2a;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  color: #fff;
  padding: 11px 16px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.18s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid var(--c-black);
  transition: transform 0.12s, box-shadow 0.12s;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow);
  line-height: 1;
}
.btn:hover  { transform: translate(-2px,-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translate(2px,2px);   box-shadow: none; }
.btn-primary { background: var(--c-orange); color: #fff; }
.btn-yellow  { background: var(--c-yellow); color: var(--c-black); }
.btn-blue    { background: var(--c-blue);   color: #fff; }
.btn-teal    { background: var(--c-teal);   color: #fff; }
.btn-pink    { background: var(--c-pink);   color: #fff; }
.btn-outline { background: transparent; color: var(--c-black); }
.btn-white   { background: #fff; color: var(--c-black); }
.btn-dark    { background: var(--c-black); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 0.88rem; }
.btn-lg { padding: 17px 38px; font-size: 1.15rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- SECTIONS ---------- */
.section { padding: var(--sp-xl) 0; position: relative; overflow: hidden; }
.section-yellow { background: var(--c-yellow); }
.section-blue   { background: var(--c-blue); }
.section-teal   { background: var(--c-teal); }
.section-orange { background: var(--c-orange); }
.section-pink   { background: var(--c-pink); }
.section-dark   { background: var(--c-black); color: #fff; }
.section-gray   { background: var(--c-gray); }
.section-white  { background: #fff; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.1rem; max-width: 580px; margin: 0 auto; color: rgba(17,17,17,0.68); }
.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,0.8); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 2px solid var(--c-black);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background-color: var(--c-yellow);
  background-image:
    linear-gradient(rgba(255,255,255,0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.28) 1px, transparent 1px);
  background-size: 48px 48px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-mockup { position: relative; }
.hero-mockup img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--c-black);
  width: 100%;
}
.hero-badge {
  position: absolute;
  background: var(--c-blue);
  color: #fff;
  border: 2px solid var(--c-black);
  border-radius: var(--r-full);
  padding: 7px 14px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.hero-badge.top-right { top: -14px; right: -14px; }
.hero-badge.bot-left  { bottom: -14px; left: -14px; background: var(--c-orange); }
.hero-text { order: 1; }
.hero-text h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; margin-bottom: 22px; line-height: 1.08; }
.hero-text p { font-size: 1.15rem; margin-bottom: 30px; max-width: 480px; }
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-star {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: float 5s ease-in-out infinite;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--c-blue);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero .lead { color: rgba(255,255,255,0.85); max-width: 620px; }
.page-hero.yellow { background: var(--c-yellow); background-image: linear-gradient(rgba(255,255,255,0.28) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.28) 1px,transparent 1px); background-size: 48px 48px; }
.page-hero.yellow h1, .page-hero.yellow .lead { color: var(--c-black); }
.page-hero.teal   { background: var(--c-teal); }
.page-hero.orange { background: var(--c-orange); }
.page-hero.dark   { background: var(--c-black); }

/* ---------- CARDS ---------- */
.card {
  background: #fff;
  border: 2px solid var(--c-black);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  border: 2px solid var(--c-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.card-icon.yellow { background: var(--c-yellow); }
.card-icon.blue   { background: var(--c-blue); }
.card-icon.teal   { background: var(--c-teal); }
.card-icon.orange { background: var(--c-orange); }
.card-icon.pink   { background: var(--c-pink); }
.card img.card-img {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 2px solid var(--c-black);
  margin-bottom: 14px;
}
.card h3, .card h4 { margin-bottom: 8px; }
.card p { font-size: 0.93rem; color: rgba(17,17,17,0.72); }

/* ---------- GRID ---------- */
.grid-2    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }

/* ---------- STATS ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; }
.stat-card {
  background: #fff;
  border: 2px solid var(--c-black);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.stat-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.stat-icon   { font-size: 1.8rem; margin-bottom: 10px; }
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-label  { font-size: 0.9rem; font-weight: 500; color: rgba(17,17,17,0.7); }

/* ---------- NEWS CARDS ---------- */
.news-card {
  background: #fff;
  border: 2px solid var(--c-black);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.news-card-img { width: 100%; height: 185px; object-fit: cover; border-bottom: 2px solid var(--c-black); }
.news-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.news-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.news-tag {
  background: var(--c-yellow);
  border: 1.5px solid var(--c-black);
  border-radius: var(--r-full);
  padding: 2px 10px;
  font-size: 0.76rem;
  font-weight: 700;
}
.news-date   { font-size: 0.8rem; color: rgba(17,17,17,0.56); font-weight: 500; }
.news-card-title { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; line-height: 1.35; }
.news-card-excerpt { font-size: 0.88rem; color: rgba(17,17,17,0.68); flex: 1; margin-bottom: 14px; line-height: 1.55; }
.news-card-link { color: var(--c-blue); font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; gap: 4px; transition: gap 0.18s; }
.news-card-link:hover { gap: 8px; }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.step { text-align: center; padding: 28px 20px; position: relative; }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-yellow);
  border: 3px solid var(--c-black);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  margin: 0 auto 18px;
}
.step-number.blue   { background: var(--c-blue); color: #fff; }
.step-number.teal   { background: var(--c-teal); }
.step-number.orange { background: var(--c-orange); color: #fff; }
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -6px; top: 36px;
  font-size: 1.4rem; color: var(--c-black);
  z-index: 1;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-item {
  border: 2px solid var(--c-black);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  transition: background 0.18s;
  user-select: none;
}
.faq-question:hover { background: #fffbee; }
.faq-icon { font-size: 1.3rem; font-weight: 900; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(17,17,17,0.78);
}
.faq-item.open .faq-answer { padding: 0 22px 18px; max-height: 600px; }
.faq-answer ul { margin: 8px 0 8px 20px; list-style: disc; }
.faq-answer li { margin-bottom: 4px; }

/* ---------- ONION LINK TABS ---------- */
.onion-tab {
  background: #0e1117;
  border: 2px solid var(--c-black);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.onion-tab:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lg); }
.onion-tab-num {
  color: var(--c-yellow);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.onion-link-text {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: #7CFC00;
  word-break: break-all;
  flex: 1;
  line-height: 1.6;
}
.copy-btn {
  background: var(--c-teal);
  color: #fff;
  border: 2px solid var(--c-black);
  border-radius: var(--r-sm);
  padding: 7px 14px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.82rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s, box-shadow 0.12s, background 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.copy-btn:hover  { transform: translate(-1px,-1px); box-shadow: var(--shadow); }
.copy-btn.copied { background: var(--c-orange); }

/* ---------- PGP BLOCK ---------- */
.pgp-block {
  background: #0d1117;
  border: 2px solid var(--c-black);
  border-radius: var(--r-md);
  padding: 22px;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: #a8ff78;
  overflow-x: auto;
  white-space: pre;
  line-height: 1.65;
  box-shadow: var(--shadow);
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: rgba(17,17,17,0.35); }

/* ---------- TAGS / BADGES ---------- */
.tag { display: inline-block; padding: 4px 12px; border-radius: var(--r-full); font-size: 0.8rem; font-weight: 700; border: 1.5px solid var(--c-black); }
.tag-yellow { background: var(--c-yellow); }
.tag-blue   { background: var(--c-blue);   color: #fff; }
.tag-teal   { background: var(--c-teal);   color: #fff; }
.tag-orange { background: var(--c-orange); color: #fff; }
.tag-pink   { background: var(--c-pink);   color: #fff; }
.tag-dark   { background: var(--c-black);  color: #fff; }

/* ---------- INFO BOXES ---------- */
.info-box {
  border: 2px solid var(--c-black);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 18px;
  display: flex; gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.info-box-icon { font-size: 1.6rem; flex-shrink: 0; }
.info-box.warning { background: #fffbe6; border-color: var(--c-yellow-dark); }
.info-box.danger  { background: #fff0f0; border-color: #e53935; }
.info-box.success { background: #f0fff9; border-color: var(--c-teal); }
.info-box.info    { background: #f0f4ff; border-color: var(--c-blue); }
.info-box h4      { margin-bottom: 6px; font-size: 0.95rem; }
.info-box p       { font-size: 0.9rem; margin-bottom: 0; }

/* ---------- CHART / SVG ---------- */
.chart-card {
  background: #fff;
  border: 2px solid var(--c-black);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}
.chart-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 18px; }

.bar-chart-wrap { display: flex; align-items: flex-end; gap: 8px; height: 140px; }
.bar-chart-wrap .bar-col {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.bar-chart-wrap .bar-fill {
  width: 100%; border-radius: 4px 4px 0 0;
  border: 2px solid var(--c-black);
  transition: height 0.6s ease;
}
.bar-chart-wrap .bar-label { font-size: 0.72rem; font-weight: 600; text-align: center; color: rgba(17,17,17,0.65); }

/* ---------- PROGRESS ---------- */
.progress-bar  { height: 12px; background: #e0dedd; border-radius: var(--r-full); border: 1.5px solid var(--c-black); overflow: hidden; margin-bottom: 6px; }
.progress-fill { height: 100%; border-radius: var(--r-full); background: var(--c-teal); transition: width 0.8s ease; }
.progress-fill.orange { background: var(--c-orange); }
.progress-fill.blue   { background: var(--c-blue); }
.progress-fill.yellow { background: var(--c-yellow-dark); }
.progress-fill.pink   { background: var(--c-pink); }

/* ---------- TABLE ---------- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border: 2px solid var(--c-black); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow); }
th { background: var(--c-black); color: #fff; padding: 13px 16px; text-align: left; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.9rem; }
td { padding: 11px 16px; border-bottom: 1px solid var(--c-gray-dark); font-size: 0.9rem; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--c-gray); }

/* ---------- CODE ---------- */
code { font-family: 'Courier New', monospace; font-size: 0.88em; background: #f0efec; padding: 2px 6px; border-radius: 4px; border: 1px solid #ddd; }
pre  { background: #0d1117; color: #a8ff78; padding: 22px; border-radius: var(--r-md); overflow-x: auto; font-family: 'Courier New', monospace; font-size: 0.82rem; line-height: 1.7; border: 2px solid var(--c-black); box-shadow: var(--shadow); }
pre code { background: none; border: none; padding: 0; color: inherit; }

/* ---------- FOOTER ---------- */
.footer { background: var(--c-black); color: #fff; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; font-family: 'Nunito', sans-serif; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.18s; }
.footer-col a:hover { color: var(--c-yellow); }
.footer-disclaimer {
  background: rgba(255,106,61,0.12);
  border: 1px solid rgba(255,106,61,0.35);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  line-height: 1.55;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--c-yellow); }

/* ---------- SECTION DIVIDER ---------- */
.section-divider { height: 5px; background: var(--c-black); }

/* ---------- DECORATIVE ---------- */
.deco-circle {
  border-radius: 50%;
  border: 3px solid rgba(17,17,17,0.12);
  position: absolute;
  pointer-events: none;
}
.float   { animation: float 5s ease-in-out infinite; }
.float-2 { animation: float-r 6s ease-in-out infinite; }
.float-3 { animation: float 7s ease-in-out infinite 1.2s; }
.spin-slow { animation: spin 20s linear infinite; }

/* ---------- DAILY FACT BAR ---------- */
.fact-bar {
  background: var(--c-blue);
  border-bottom: 3px solid var(--c-black);
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* ---------- ARTICLE CONTENT ---------- */
.article-body h2 { font-size: 1.55rem; margin: 32px 0 12px; }
.article-body h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--c-blue); }
.article-body p  { font-size: 0.97rem; line-height: 1.75; margin-bottom: 14px; }
.article-body ul, .article-body ol { margin: 12px 0 14px 22px; }
.article-body li { margin-bottom: 6px; font-size: 0.97rem; line-height: 1.65; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body a  { color: var(--c-blue); font-weight: 500; }
.article-body a:hover { text-decoration: underline; }
.article-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 3px solid var(--c-black);
  margin-bottom: 28px;
  box-shadow: var(--shadow-lg);
}

/* ---------- UTILITIES ---------- */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.border-top { border-top: 2px solid var(--c-black); }
.border-bottom { border-bottom: 2px solid var(--c-black); }

/* ---------- KEYFRAMES ---------- */
@keyframes float   { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-12px) rotate(4deg)} }
@keyframes float-r { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(12px) rotate(-4deg)} }
@keyframes spin    { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes bounce-in { 0%{transform:scale(0.8);opacity:0} 60%{transform:scale(1.06)} 100%{transform:scale(1);opacity:1} }
@keyframes pulse   { 0%,100%{opacity:1} 50%{opacity:0.6} }
@keyframes slide-up { from{transform:translateY(24px);opacity:0} to{transform:translateY(0);opacity:1} }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --sp-xl: 56px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-mockup  { order: -1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  h1 { font-size: 2rem; }
  .btn { padding: 11px 20px; font-size: 0.92rem; }
}
