/* =====================================================
   GoApus Pro — Landing Page
   Theme: Dark + Gold · Premium Aesthetic
   ===================================================== */

/* --- Custom Properties --- */
:root {
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --gold-dim:     rgba(201, 168, 76, 0.12);
  --gold-border:  rgba(201, 168, 76, 0.28);
  --black:        #080808;
  --surface-1:    #101010;
  --surface-2:    #171717;
  --surface-3:    #1e1e1e;
  --text-1:       #f0f0f0;
  --text-2:       #969696;
  --text-3:       #505050;
  --border:       rgba(255, 255, 255, 0.07);
  --radius:       14px;
  --radius-sm:    9px;
  --nav-h:        68px;
  --container:    1160px;
  --section-py:   104px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text-1);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); letter-spacing: -0.018em; }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Color utility --- */
.text-gold { color: var(--gold-light); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 9px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}
.btn--gold {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.28);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 44px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-1);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn--outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.btn--lg { padding: 16px 40px; font-size: 1rem; }
.btn--full { width: 100%; text-align: center; }

/* --- Sections --- */
.section { padding: var(--section-py) 0; }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 68px;
}
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 18px; }
.section-sub { color: var(--text-2); font-size: 1.05rem; line-height: 1.7; }

/* --- Fade-in animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* =====================================================
   NAVBAR
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__bird { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.nav__wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--text-1);
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text-1); }
.nav__cta { margin-left: 4px; padding: 10px 22px; font-size: 0.88rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 28px;
  background: rgba(8, 8, 8, 0.98);
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  padding: 14px 0;
  color: var(--text-2);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav__mobile a:last-child { border-bottom: none; padding-top: 20px; }
.nav__mobile a:hover { color: var(--text-1); }
.nav__mobile.open { display: flex; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 700px; height: 500px;
  background: rgba(201, 168, 76, 0.07);
  top: 5%; left: 50%;
  transform: translateX(-50%);
}
.hero__glow--2 {
  width: 360px; height: 280px;
  background: rgba(201, 168, 76, 0.05);
  bottom: 12%; right: 8%;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero__content {}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 36px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}
.hero__headline { margin-bottom: 26px; font-weight: 800; }
.hero__sub {
  color: var(--text-2);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero__proof {
  display: flex;
  align-items: center;
  gap: 36px;
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero__proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero__proof-label {
  font-size: 0.75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero__proof-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}
/* --- Instagram UI visual --- */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0 80px 20px;
}
.insta-live {
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.35);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.71rem;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.04em;
  z-index: 4;
  white-space: nowrap;
}
.insta-live__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
.insta-notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
  z-index: 3;
  white-space: nowrap;
}
.insta-notif--top {
  top: 36px; right: -10px;
  animation: floatA 7s ease-in-out infinite;
}
.insta-notif--bottom {
  bottom: 36px; left: -10px;
  animation: floatB 8s ease-in-out infinite 1.4s;
}
.insta-notif--right-1 {
  top: 42%; right: -10px;
  animation: floatA 9s ease-in-out infinite 0.8s;
}
.insta-notif--right-2 {
  bottom: 80px; right: -10px;
  animation: floatB 8s ease-in-out infinite 2.2s;
}
.insta-notif__svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.insta-notif__svg--red    { color: #e83a5c; }
.insta-notif__svg--blue   { color: #4da3ff; }
.insta-notif__svg--purple { color: #a78bfa; }
.insta-notif__num {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--gold-light); line-height: 1;
}
.insta-notif__num--red    { color: #f87171; }
.insta-notif__num--blue   { color: #7dc4ff; }
.insta-notif__num--purple { color: #c4b5fd; }
.insta-notif__label { font-size: 0.68rem; color: var(--text-3); margin-top: 3px; }
.insta-card {
  width: 278px;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255,255,255,0.03);
  position: relative; z-index: 2;
  animation: floatCard 10s ease-in-out infinite;
}
.insta-card__header {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 13px;
}
.insta-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
  border: 2.5px solid transparent;
  position: relative;
  flex-shrink: 0;
}
.insta-avatar::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a1a3e, #1a2040);
}
.insta-card__meta {
  flex: 1;
  font-size: 0.76rem; color: var(--text-2);
  white-space: nowrap; overflow: hidden;
}
.insta-card__username { font-weight: 700; color: var(--text-1); }
.insta-card__dot, .insta-card__time { color: var(--text-3); }
.insta-follow {
  font-size: 0.73rem; font-weight: 700;
  color: #4da3ff; cursor: default; flex-shrink: 0;
}
.insta-card__img {
  width: 100%; aspect-ratio: 16/9;
  background:
    radial-gradient(circle at 25% 32%, rgba(232, 201, 106, 0.18) 0%, transparent 52%),
    radial-gradient(circle at 78% 68%, rgba(115, 45, 195, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 58% 15%, rgba(215, 75, 120, 0.12) 0%, transparent 40%),
    linear-gradient(150deg, #0c0a1e 0%, #1a0d30 50%, #091824 100%);
  position: relative; overflow: hidden;
}
.insta-card__img-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

/* Agent live panel */
.iap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 10px 12px 8px;
  gap: 6px;
}
.iap__header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.iap__live {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #52c87a;
}
.iap__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #52c87a;
  box-shadow: 0 0 6px #52c87a;
  animation: iapPulse 1.6s ease-in-out infinite;
}
@keyframes iapPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.iap__rate {
  font-size: 0.6rem; color: rgba(255,255,255,0.3);
  font-variant-numeric: tabular-nums;
}
.iap__feed {
  flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 3px;
}
.iap__item {
  display: flex; align-items: center; gap: 7px;
}
.iap__item--dim { opacity: 0.45; }
.iap__icon {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.iap__icon svg { width: 10px; height: 10px; }
.iap__icon--follow  { background: rgba(77,163,255,0.18);  color: #4da3ff; }
.iap__icon--like    { background: rgba(232,58,92,0.18);   color: #e83a5c; }
.iap__icon--comment { background: rgba(201,168,76,0.18);  color: var(--gold); }
.iap__icon--dm      { background: rgba(138,101,212,0.18); color: #8a65d4; }
.iap__text {
  flex: 1; font-size: 0.67rem; color: rgba(255,255,255,0.55); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.iap__text strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.iap__time {
  font-size: 0.58rem; color: rgba(255,255,255,0.2);
  font-variant-numeric: tabular-nums; flex-shrink: 0;
}
.iap__footer {
  display: flex; align-items: center; gap: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.iap__stat { flex: 1; text-align: center; }
.iap__stat-val {
  display: block; font-size: 0.8rem; font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--gold-light);
  line-height: 1.1;
}
.iap__stat-label {
  font-size: 0.56rem; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.iap__divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.insta-card__actions {
  display: flex; align-items: center; gap: 2px;
  padding: 8px 10px 4px;
}
.insta-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: var(--text-2);
  background: none; border: none; cursor: default; border-radius: 50%;
}
.insta-btn svg { width: 20px; height: 20px; }
.insta-btn--save { margin-left: auto; }
.insta-card__body { padding: 2px 13px 13px; display: flex; flex-direction: column; gap: 4px; }
.insta-card__likes { font-size: 0.79rem; font-weight: 700; color: var(--text-1); }
.insta-card__caption { font-size: 0.74rem; color: var(--text-2); line-height: 1.5; }
.insta-card__caption strong, .insta-card__comment strong { color: var(--text-1); }
.insta-card__comment { font-size: 0.72rem; color: var(--text-2); }
.insta-card__more { font-size: 0.68rem; color: var(--text-3); }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

/* =====================================================
   PROBLEM
   ===================================================== */
.problem { background: var(--surface-1); }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.problem__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: border-color 0.25s ease;
}
.problem__card:hover { border-color: var(--gold-border); }
.problem__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}
.problem__icon svg { width: 100%; height: 100%; }
.problem__card h3 { margin-bottom: 10px; }
.problem__card p { color: var(--text-2); font-size: 0.94rem; line-height: 1.72; }

/* =====================================================
   FEATURES
   ===================================================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 50px; height: 50px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
  transition: background 0.25s ease;
}
.feature-card:hover .feature-card__icon { background: rgba(201, 168, 76, 0.2); }
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-2); font-size: 0.94rem; line-height: 1.72; }

/* =====================================================
   CUSTOM STRATEGY
   ===================================================== */
.custom-strategy { background: var(--surface-1); }
.strategy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2px;
}
.strategy-block {
  background: var(--surface-2);
  padding: 48px 48px 44px;
  position: relative;
  transition: background 0.25s ease;
}
.strategy-block:hover { background: var(--surface-3); }
.strategy-block__num {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-border);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}
.strategy-block h3 {
  margin-bottom: 14px;
  font-size: 1.12rem;
}
.strategy-block p {
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.74;
  margin-bottom: 24px;
}
.strategy-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.strategy__tagchip {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 99px;
  padding: 4px 12px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.strategy__outcome {
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(201,168,76,0.07) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 32px;
  box-shadow: 0 0 56px rgba(201,168,76,0.07);
}
.strategy__outcome-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strategy__outcome-icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.strategy__outcome-body { flex: 1; }
.strategy__outcome-body p {
  font-size: 1.08rem;
  line-height: 1.68;
  color: var(--text-1);
  margin-bottom: 22px;
}
.strategy__outcome-body strong { color: var(--gold-light); }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-it-works { background: var(--surface-1); }
.steps {
  display: flex;
  align-items: flex-start;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
}
.step__number {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  text-stroke: 1.5px var(--gold);
  line-height: 1;
  margin-bottom: 22px;
}
.step__content h3 { margin-bottom: 12px; }
.step__content p { color: var(--text-2); font-size: 0.94rem; line-height: 1.72; }
.step__connector {
  flex-shrink: 0;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-border), transparent);
  margin-top: 26px;
  position: relative;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto 36px;
}
.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 38px;
  position: relative;
  transition: transform 0.25s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, var(--surface-2) 0%, rgba(201, 168, 76, 0.06) 100%);
  box-shadow: 0 0 48px rgba(201, 168, 76, 0.1), inset 0 1px 0 rgba(201, 168, 76, 0.18);
}
.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__header { margin-bottom: 36px; }
.pricing-card__tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.pricing-card__amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
}
.pricing-card__period {
  color: var(--text-3);
  font-size: 0.88rem;
}
.pricing-card__desc {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.6;
}
.pricing-card__features {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.muted { color: var(--text-3); flex-shrink: 0; }
.pricing-card--custom {
  background: linear-gradient(160deg, var(--surface-2) 0%, rgba(201, 168, 76, 0.04) 100%);
  border-color: var(--gold-border);
}
.pricing-card__amount--custom {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing__note {
  text-align: center;
  color: var(--text-3);
  font-size: 0.88rem;
}
.pricing__note a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  transition: border-color 0.2s ease;
}
.pricing__note a:hover { border-color: var(--gold); }
.link-btn {
  background: none;
  border: none;
  color: var(--gold);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  border-bottom: 1px solid var(--gold-border);
  padding: 0;
  transition: border-color 0.2s ease;
}
.link-btn:hover { border-color: var(--gold); color: var(--gold-light); }

/* =====================================================
   CONTACT MODAL
   ===================================================== */
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.c-modal[hidden] { display: none; }
.c-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.c-modal__box {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85);
  padding: 40px;
  z-index: 1;
  animation: modalIn 0.22s ease;
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.c-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  border-radius: 7px;
  border: none; background: none; cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.c-modal__close:hover { color: var(--text-1); background: rgba(255,255,255,0.07); }
.c-modal__close svg { width: 17px; height: 17px; }
.c-modal__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.c-modal__icon svg { width: 22px; height: 22px; }
.c-modal__header { margin-bottom: 28px; }
.c-modal__header h3 { font-size: 1.35rem; margin-bottom: 6px; }
.c-modal__header p { color: var(--text-2); font-size: 0.9rem; }
.c-modal__form {}
.c-modal__field { margin-bottom: 18px; }
.c-modal__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.c-modal__field input,
.c-modal__field textarea {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  padding: 11px 14px;
  color: var(--text-1);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s;
  resize: none;
}
.c-modal__field input::placeholder,
.c-modal__field textarea::placeholder { color: var(--text-3); }
.c-modal__field input:focus,
.c-modal__field textarea:focus {
  outline: none;
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}
.c-modal__error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 9px;
  color: #f87171;
  font-size: 0.84rem;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.c-modal__error[hidden] { display: none; }
.c-modal__success { text-align: center; padding: 10px 0; }
.c-modal__success[hidden] { display: none; }
.c-modal__success-icon {
  width: 56px; height: 56px;
  stroke: #4ade80;
  margin: 0 auto 18px;
  display: block;
}
.c-modal__success h3 { margin-bottom: 10px; }
.c-modal__success p { color: var(--text-2); font-size: 0.92rem; }

/* --- Lead modal: plan selector --- */
.sub-type-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sub-type-opt { cursor: pointer; display: block; }
.sub-type-opt input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.sub-type-opt__card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 15px;
  background: var(--surface-3);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.18s, background 0.18s;
  user-select: none;
}
.sub-type-opt__card strong { font-size: 0.86rem; color: var(--text-1); font-weight: 600; }
.sub-type-opt__card span  { font-size: 0.73rem; color: var(--text-3); margin-top: 1px; }
.sub-type-opt input:checked + .sub-type-opt__card {
  border-color: var(--gold-border);
  background: var(--gold-dim);
}
.sub-type-opt input:checked + .sub-type-opt__card strong { color: var(--gold-light); }
.lead-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 14px;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq { background: var(--surface-1); }
.faq__container { max-width: 780px; }
.faq__list { display: flex; flex-direction: column; gap: 6px; }
.faq__item { border-radius: var(--radius-sm); }
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface-2);
  color: var(--text-1);
  font-size: 0.96rem;
  font-weight: 500;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}
.faq__question:hover { background: var(--surface-3); }
.faq__question[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
  background: var(--surface-3);
  color: var(--gold-light);
}
.faq__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--text-3);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.faq__icon::before {
  width: 9px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.5px; height: 9px;
  transform: translate(-50%, -50%);
}
.faq__question[aria-expanded="true"] .faq__icon {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__question[aria-expanded="true"] .faq__icon::before { background: var(--gold); }
.faq__answer {
  padding: 20px 24px 26px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-top: none;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}
.faq__answer[hidden] { display: none; }
.faq__answer p { color: var(--text-2); font-size: 0.94rem; line-height: 1.78; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: #070700;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cta-banner__bird {
  width: 480px;
  opacity: 0.6;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__inner .section-eyebrow { margin-bottom: 16px; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}
.cta-banner p {
  color: var(--text-2);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 52px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer__bird { width: 32px; height: 32px; object-fit: contain; border-radius: 5px; }
.footer__logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-1);
}
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  color: var(--text-3);
  font-size: 0.86rem;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  color: var(--text-3);
  font-size: 0.82rem;
}
.footer__tagline {
  color: var(--text-3);
  font-size: 0.76rem;
  font-style: italic;
  opacity: 0.55;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1060px) {
  .hero__inner { gap: 40px; }
  .insta-card { width: 240px; }
  .insta-notif--top     { right: -4px; }
  .insta-notif--bottom  { left: -4px; }
  .insta-notif--right-1 { right: -4px; }
  .insta-notif--right-2 { right: -4px; }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 72px;
    --nav-h: 60px;
  }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }

  .hero__proof {
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero__proof-num { font-size: 1.3rem; }

  .steps {
    flex-direction: column;
    gap: 40px;
  }
  .step {
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  .step__number { font-size: 2.4rem; margin-bottom: 14px; }
  .step__connector { display: none; }

  .features__grid { grid-template-columns: 1fr; }
  .problem__grid  { grid-template-columns: 1fr; }
  .pricing__grid  { grid-template-columns: 1fr; max-width: 420px; }
  .c-modal__box   { padding: 28px 22px; }
  .strategy__grid { grid-template-columns: 1fr; }
  .strategy-block { padding: 36px 28px; }
  .strategy__outcome { flex-direction: column; padding: 32px 28px; gap: 24px; text-align: center; }
  .strategy__outcome-icon { margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; }
  .hero__proof { flex-direction: column; gap: 18px; }
  .hero__proof-divider { width: 48px; height: 1px; }
}

/* =====================================================
   Focus styles for accessibility
   ===================================================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =====================================================
   SUPPORT PAGE
   ===================================================== */

/* Page wrapper — push content below fixed nav */
.sp-page {
  padding-top: var(--nav-h);
}

/* Hero */
.sp-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.sp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sp-hero__inner {
  position: relative;
  z-index: 1;
}
.sp-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 14px 0 16px;
}
.sp-hero__sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.sp-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sp-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 0.88rem;
}
.sp-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Form container */
.sp-container {
  padding-top: 56px;
  padding-bottom: 96px;
}
.sp-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 48px;
}

/* Form fields */
.sp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.sp-field { display: flex; flex-direction: column; gap: 6px; }
.sp-field--full  { grid-column: span 2; }
.sp-field--half  { grid-column: span 1; }

.sp-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.sp-label__req { color: var(--gold); margin-left: 2px; }

.sp-input {
  background: var(--surface-3);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 9px;
  padding: 10px 14px;
  color: var(--text-1);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}
.sp-input:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}
.sp-input::placeholder { color: var(--text-3); }
.sp-input--mono { font-family: 'Courier New', 'Consolas', monospace; letter-spacing: 0.05em; }
.sp-select { cursor: pointer; }
.sp-textarea { resize: vertical; min-height: 150px; line-height: 1.65; }

.sp-hint {
  font-size: 0.74rem;
  color: var(--text-3);
  line-height: 1.5;
}

.sp-error {
  background: rgba(224, 82, 82, 0.10);
  border: 1px solid rgba(224, 82, 82, 0.30);
  border-radius: 9px;
  padding: 12px 16px;
  color: #e05252;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

/* Success state */
.sp-success {
  text-align: center;
  padding: 20px 0;
}
.sp-success__icon {
  width: 64px;
  height: 64px;
  background: rgba(82, 200, 122, 0.12);
  border: 1px solid rgba(82, 200, 122, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #52c87a;
}
.sp-success__icon svg { width: 30px; height: 30px; }
.sp-success h2 { margin-bottom: 12px; }
.sp-success p  { color: var(--text-2); margin-bottom: 8px; }
.sp-success__ref {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 9px;
  padding: 10px 24px;
  letter-spacing: 0.08em;
  margin: 8px 0 16px;
}
.sp-success__note { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* Responsive */
@media (max-width: 680px) {
  .sp-card { padding: 28px 20px; }
  .sp-form-row { grid-template-columns: 1fr; }
  .sp-field--half { grid-column: span 1; }
  .sp-field--full  { grid-column: span 1; }
  .sp-info-row { gap: 18px; }
}

/* =====================================================
   GET STARTED PAGE
   ===================================================== */
.gs-page { padding-top: var(--nav-h); min-height: 100vh; }

/* Center wrapper for error states */
.gs-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 40px 24px;
}
.gs-error-card {
  max-width: 440px;
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.gs-error-card h2 { margin-bottom: 14px; }
.gs-error-card p  { color: var(--text-2); margin-bottom: 8px; line-height: 1.7; }
.gs-error-icon {
  width: 56px; height: 56px;
  background: rgba(224,82,82,0.10);
  border: 1px solid rgba(224,82,82,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #e05252;
  margin: 0 auto 24px;
}
.gs-error-icon svg { width: 26px; height: 26px; }

/* Hero */
.gs-hero {
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.gs-hero__title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 12px 0 14px; }
.gs-hero__sub   { color: var(--text-2); font-size: 1rem; max-width: 440px; margin: 0 auto 32px; }

/* Step indicator dots */
.gs-steps-indicator {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.gs-step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem;
  background: var(--surface-2);
  border: 2px solid var(--border);
  color: var(--text-3);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.gs-step-dot--done {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold-light);
}
.gs-step-line {
  width: 56px; height: 2px;
  background: var(--border);
}

/* Body */
.gs-body {
  padding: 48px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Step cards */
.gs-step-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.gs-step-card__num {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.gs-step-card__num svg { width: 20px; height: 20px; }
.gs-step-card__content { flex: 1; min-width: 0; }
.gs-step-card__label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.gs-step-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.gs-step-card__sub   { color: var(--text-2); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.65; }
.gs-version-label {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold); border-radius: 100px; padding: 2px 8px; margin-left: 6px;
}
.gs-changelog {
  font-size: 0.8rem; color: var(--text-3); margin-bottom: 16px;
  background: var(--surface-3); border-radius: 7px; padding: 10px 12px;
  line-height: 1.6;
}
.gs-download-btn { margin-top: 4px; }
.gs-sys-req {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
}

/* =====================================================
   BLOG — listing page  (blg-*)
   ===================================================== */

.blg-page { padding-bottom: 100px; }

.blg-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 56px;
  text-align: center;
  overflow: hidden;
}
.blg-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blg-hero__inner { position: relative; z-index: 1; }
.blg-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.blg-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.blg-hero__sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.blg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
  padding: 52px 0 0;
}

.blg-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.blg-card:hover {
  border-color: rgba(201,168,76,.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.blg-card__header {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blg-card__header--green  { background: linear-gradient(135deg,#182e1e 0%,#0e1a12 100%); }
.blg-card__header--blue   { background: linear-gradient(135deg,#161e30 0%,#0d1020 100%); }
.blg-card__header--purple { background: linear-gradient(135deg,#271630 0%,#150d1e 100%); }
.blg-card__header--teal   { background: linear-gradient(135deg,#0d2630 0%,#071418 100%); }
.blg-card__header--amber  { background: linear-gradient(135deg,#2e1e06 0%,#1a1008 100%); }
.blg-card__header--rose   { background: linear-gradient(135deg,#2e0f16 0%,#1a080d 100%); }
.blg-card__header--indigo { background: linear-gradient(135deg,#10122e 0%,#090b1c 100%); }
.blg-card__header--olive   { background: linear-gradient(135deg,#1a2a08 0%,#0d1602 100%); }
.blg-card__header--sand    { background: linear-gradient(135deg,#2a1e08 0%,#180e02 100%); }
.blg-card__header--navy    { background: linear-gradient(135deg,#061428 0%,#02080e 100%); }
.blg-card__header--slate   { background: linear-gradient(135deg,#141820 0%,#0a0d16 100%); }
.blg-card__header--cyan    { background: linear-gradient(135deg,#062830 0%,#021014 100%); }
.blg-card__header--emerald { background: linear-gradient(135deg,#062818 0%,#020f08 100%); }
.blg-card__header--brick   { background: linear-gradient(135deg,#2a0e08 0%,#140500 100%); }
.blg-card__header--coral   { background: linear-gradient(135deg,#2e1208 0%,#160600 100%); }
.blg-card__header--gold    { background: linear-gradient(135deg,#2a2008 0%,#120e00 100%); }
.blg-card__header--violet  { background: linear-gradient(135deg,#1a0a2e 0%,#0d0516 100%); }
.blg-card__header--mint    { background: linear-gradient(135deg,#082a1a 0%,#021408 100%); }
.blg-card__header--steel   { background: linear-gradient(135deg,#101820 0%,#060c10 100%); }
.blg-card__header--maroon  { background: linear-gradient(135deg,#2a0808 0%,#120000 100%); }
.blg-card__header--forest  { background: linear-gradient(135deg,#0a1e08 0%,#040c02 100%); }
.blg-card__header--ocean   { background: linear-gradient(135deg,#061a28 0%,#020a12 100%); }
.blg-card__header--plum    { background: linear-gradient(135deg,#200828 0%,#0e0314 100%); }
.blg-card__header--rust    { background: linear-gradient(135deg,#281006 0%,#100400 100%); }
.blg-card__header--crimson { background: linear-gradient(135deg,#2a0610 0%,#120008 100%); }
.blg-card__header--jade    { background: linear-gradient(135deg,#062a14 0%,#021208 100%); }
.blg-card__header--copper  { background: linear-gradient(135deg,#261604 0%,#0e0800 100%); }
.blg-card__header--sapphire{ background: linear-gradient(135deg,#06082e 0%,#020416 100%); }
.blg-card__header--wine    { background: linear-gradient(135deg,#200616 0%,#0e0208 100%); }
.blg-card__header--sage    { background: linear-gradient(135deg,#0e1e06 0%,#060e02 100%); }
.blg-card__header--charcoal{ background: linear-gradient(135deg,#181818 0%,#080808 100%); }
.blg-card__header--bronze  { background: linear-gradient(135deg,#221204 0%,#0e0600 100%); }
.blg-card__header--lavender{ background: linear-gradient(135deg,#16082a 0%,#0a0414 100%); }
.blg-card__header--pine    { background: linear-gradient(135deg,#04180a 0%,#020c04 100%); }
.blg-card__header--scarlet   { background: linear-gradient(135deg,#2e0808 0%,#140202 100%); }
.blg-card__header--cobalt    { background: linear-gradient(135deg,#061430 0%,#020818 100%); }
.blg-card__header--ochre     { background: linear-gradient(135deg,#241a04 0%,#0e0c00 100%); }
.blg-card__header--moss      { background: linear-gradient(135deg,#0c1e06 0%,#040e02 100%); }
.blg-card__header--denim     { background: linear-gradient(135deg,#0c1424 0%,#040a12 100%); }
.blg-card__header--terracotta{ background: linear-gradient(135deg,#281006 0%,#120600 100%); }
.blg-card__header--midnight  { background: linear-gradient(135deg,#040814 0%,#020408 100%); }
.blg-card__header--sienna    { background: linear-gradient(135deg,#220e04 0%,#0e0600 100%); }
.blg-card__header--celadon   { background: linear-gradient(135deg,#081c10 0%,#040c06 100%); }
.blg-card__header--mahogany  { background: linear-gradient(135deg,#200808 0%,#0e0202 100%); }
.blg-card__header--ruby      { background: linear-gradient(135deg,#2e0416 0%,#14020a 100%); }
.blg-card__header--navy      { background: linear-gradient(135deg,#04103a 0%,#02061a 100%); }
.blg-card__header--jade      { background: linear-gradient(135deg,#042418 0%,#020e0a 100%); }
.blg-card__header--copper    { background: linear-gradient(135deg,#281404 0%,#120a00 100%); }
.blg-card__header--obsidian  { background: linear-gradient(135deg,#080810 0%,#020206 100%); }
.blg-card__header--garnet    { background: linear-gradient(135deg,#2e0a10 0%,#140408 100%); }
.blg-card__header--steel     { background: linear-gradient(135deg,#0e1420 0%,#060a10 100%); }
.blg-card__header--fern      { background: linear-gradient(135deg,#0a1e0c 0%,#040e06 100%); }
.blg-card__header--clay      { background: linear-gradient(135deg,#241808 0%,#100c04 100%); }
.blg-card__header--onyx      { background: linear-gradient(135deg,#0c0c0c 0%,#040404 100%); }
.blg-card__header--spruce    { background: linear-gradient(135deg,#0a1c0e 0%,#040e06 100%); }
.blg-card__header--plum      { background: linear-gradient(135deg,#1e0820 0%,#0c040e 100%); }
.blg-card__header--pewter    { background: linear-gradient(135deg,#141820 0%,#08090e 100%); }
.blg-card__header--umber     { background: linear-gradient(135deg,#1e1206 0%,#0e0802 100%); }
/* Batch 11 - indirect marketing */
.blg-card__header--iris      { background: linear-gradient(135deg,#100828 0%,#060212 100%); }
.blg-card__header--slate     { background: linear-gradient(135deg,#0e1620 0%,#060c10 100%); }
.blg-card__header--teal      { background: linear-gradient(135deg,#041c1c 0%,#020e0e 100%); }
.blg-card__header--wine      { background: linear-gradient(135deg,#280412 0%,#120208 100%); }
.blg-card__header--bark      { background: linear-gradient(135deg,#201408 0%,#0e0a04 100%); }
.blg-card__icon { font-size: 2.8rem; line-height: 1; filter: drop-shadow(0 4px 14px rgba(0,0,0,.5)); }
.blg-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.blg-card__tag {
  font-size: 0.68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 9px;
}
.blg-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 9px;
  color: var(--text-1);
}
.blg-card__excerpt {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.blg-card__meta {
  font-size: 0.74rem;
  color: var(--text-3);
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.blg-card__link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .15s;
}
.blg-card__link:hover { gap: 9px; }

/* =====================================================
   ARTICLE pages  (art-*)
   ===================================================== */

.art-page { padding-bottom: 100px; }

.art-hero {
  position: relative;
  padding: calc(var(--nav-h) + 52px) 0 44px;
  overflow: hidden;
}
.art-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.art-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.art-breadcrumb {
  font-size: 0.75rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.art-breadcrumb a { color: var(--text-3); }
.art-breadcrumb a:hover { color: var(--gold); }
.art-hero__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.art-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.art-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.77rem;
  color: var(--text-3);
}
.art-hero__meta span { display: flex; align-items: center; gap: 5px; }

.art-body { max-width: 760px; padding-top: 8px; }

.art-toc {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 44px;
}
.art-toc__title {
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  font-family: var(--font-sans);
  margin-bottom: 12px;
}
.art-toc ol { margin: 0; padding-left: 20px; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 5px 24px; }
.art-toc li { font-size: 0.84rem; }
.art-toc a { color: var(--text-2); }
.art-toc a:hover { color: var(--gold); }

.art-content h2 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.art-content h3 { font-size: 0.94rem; font-weight: 600; color: var(--text-1); margin: 20px 0 8px; }
.art-content p { font-size: 0.91rem; line-height: 1.82; color: var(--text-2); margin-bottom: 15px; }
.art-content ul, .art-content ol { padding-left: 22px; margin-bottom: 15px; }
.art-content li { font-size: 0.91rem; line-height: 1.75; color: var(--text-2); margin-bottom: 5px; }
.art-content strong { color: var(--text-1); }
.art-content a { color: var(--gold); }
.art-content a:hover { text-decoration: underline; }
.art-content { overflow-wrap: break-word; word-break: break-word; }

.art-highlight {
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
  margin: 22px 0;
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--text-2);
}
.art-highlight strong { color: var(--text-1); }

.art-cta-box {
  background: var(--surface-2);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 14px;
  padding: 30px 32px;
  margin: 44px 0;
  text-align: center;
}
.art-cta-box__eyebrow {
  font-size: 0.68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.art-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.art-cta-box p { font-size: 0.86rem; color: var(--text-2); line-height: 1.65; margin-bottom: 20px; max-width: 440px; margin-left: auto; margin-right: auto; }
.art-cta-box .btn--gold { color: #000; }

/* =====================================================
   BLOG TEASER — homepage section  (blog-tease-*)
   ===================================================== */
.blog-tease__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.blog-tease__card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s, transform .2s;
}
.blog-tease__card:hover {
  border-color: rgba(201,168,76,.28);
  transform: translateY(-2px);
}
.blog-tease__tag {
  font-size: 0.66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-sans);
}
.blog-tease__card h3 {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.35;
}
.blog-tease__read {
  font-size: 0.76rem;
  color: var(--text-3);
  margin-top: 4px;
}

.art-related { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--border); }
.art-related__title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.art-related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.art-related__card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: block;
  transition: border-color .15s, transform .15s;
}
.art-related__card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-2px); }
.art-related__card__tag { font-size: 0.66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.art-related__card h4 { font-size: 0.83rem; font-weight: 600; color: var(--text-1); line-height: 1.4; }

@media (max-width: 700px) {
  /* Blog listing */
  .blg-page { padding-bottom: 64px; }
  .blg-hero { padding: calc(var(--nav-h) + 36px) 0 36px; }
  .blg-hero__sub { font-size: 0.93rem; }
  .blg-grid { grid-template-columns: 1fr; padding-top: 32px; gap: 16px; }

  /* Article pages */
  .art-page { padding-bottom: 64px; }
  .art-hero { padding: calc(var(--nav-h) + 32px) 0 28px; }
  .art-toc { padding: 16px 14px; margin-bottom: 32px; }
  .art-toc ol { grid-template-columns: 1fr; }
  .art-related { margin-top: 36px; padding-top: 24px; }
  .art-related__grid { grid-template-columns: 1fr; }
  .art-cta-box { padding: 22px 16px; margin: 28px 0; }
}

@media (max-width: 480px) {
  .art-content p { font-size: 0.95rem; }
  .art-content li { font-size: 0.95rem; }
  .art-cta-box h3 { font-size: 1.1rem; }
  .art-highlight { padding: 14px 14px; }
  .blg-card__body { padding: 16px 16px 18px; }
}

/* Instagram input */
.gs-ig-field { margin-bottom: 20px; }
.gs-ig-input-wrap {
  display: flex; align-items: center;
  background: var(--surface-3);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 9px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gs-ig-input-wrap:focus-within {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.gs-ig-prefix {
  padding: 0 12px;
  color: var(--text-3);
  font-size: 1rem;
  font-weight: 500;
  user-select: none;
  flex-shrink: 0;
}
.gs-ig-input {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 10px 8px 10px 0;
}
.gs-ig-input:focus { box-shadow: none !important; }
.gs-ig-status {
  padding: 0 12px;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.gs-ig-status--ok  { color: #52c87a; }
.gs-ig-status--err { color: #e05252; }

.gs-ig-hint {
  font-size: 0.76rem; color: var(--text-3); margin-top: 6px; line-height: 1.5;
}
.gs-ig-rules {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.gs-ig-rule {
  font-size: 0.7rem; padding: 2px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--text-3);
  transition: background 0.2s, color 0.2s;
}
.gs-ig-rule--ok  { background: rgba(82,200,122,0.12); color: #52c87a; }
.gs-ig-rule--err { background: rgba(224,82,82,0.12);  color: #e05252; }

/* License key display */
.gs-key-display {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 9px;
  padding: 14px 20px;
  display: inline-block;
  margin-bottom: 12px;
  user-select: all;
}
.gs-copy-btn { margin-bottom: 16px; }
.gs-activation-steps {
  background: var(--surface-3);
  border-radius: 9px; padding: 14px 16px;
  font-size: 0.85rem; color: var(--text-2); line-height: 1.7;
}
.gs-activation-steps strong { color: var(--text-1); }
.gs-footer-note {
  text-align: center; font-size: 0.84rem; color: var(--text-3); margin-top: 8px;
}
.gs-footer-note a { color: var(--gold); }

@media (max-width: 600px) {
  .gs-step-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .gs-key-display { font-size: 1rem; letter-spacing: 0.07em; }
}

/* =====================================================
   API Keys Guide Page  (.ak-*)
   ===================================================== */

.ak-page { padding-bottom: 80px; }

/* Hero */
.ak-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 56px;
  text-align: center;
  overflow: hidden;
}
.ak-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ak-hero__inner { position: relative; z-index: 1; }
.ak-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.025em;
  margin: 12px 0 16px;
}
.ak-hero__sub {
  color: var(--text-2); font-size: 1rem; max-width: 560px;
  margin: 0 auto 32px; line-height: 1.7;
}
.ak-info-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
}
.ak-info-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; color: var(--text-2);
}
.ak-info-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); }

/* Body wrapper */
.ak-body { max-width: 860px; margin: 0 auto; }

/* ---- Provider Tabs ---- */
.ak-tabs {
  display: flex; gap: 12px; margin-bottom: 32px;
  flex-wrap: wrap;
}
.ak-tab {
  flex: 1; min-width: 180px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 18px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
}
.ak-tab:hover {
  background: var(--surface-3);
  border-color: rgba(255,255,255,0.12);
}
.ak-tab--active {
  background: var(--surface-3);
  border-color: var(--gold-border);
  box-shadow: 0 0 0 1px var(--gold-border), 0 4px 24px rgba(201,168,76,0.07);
}
.ak-tab__logo {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ak-tab__logo svg { width: 38px; height: 38px; }
.ak-tab__name  { font-weight: 700; font-size: 0.95rem; font-family: 'Syne', sans-serif; color: var(--text-1); }
.ak-tab__sub   { font-size: 0.73rem; color: var(--text-3); }
.ak-tab__badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 2px 7px; border-radius: 100px;
}
.ak-tab__badge--rec  { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); }
.ak-tab__badge--free { background: rgba(82,200,122,0.12); color: #52c87a; border: 1px solid rgba(82,200,122,0.25); }

/* ---- Panel ---- */
.ak-panel--hidden { display: none; }
.ak-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.ak-panel__header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.ak-panel__title { font-size: 1.35rem; margin-bottom: 8px; }
.ak-panel__desc  { color: var(--text-2); font-size: 0.88rem; line-height: 1.65; max-width: 480px; }
.ak-tier-badges  { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; flex-shrink: 0; }
.ak-tier-badge {
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-2);
  white-space: nowrap;
}
.ak-tier-badge--free { background: rgba(82,200,122,0.10); border-color: rgba(82,200,122,0.25); color: #52c87a; }
.ak-tier-badge--warn { background: rgba(224,160,82,0.10); border-color: rgba(224,160,82,0.25); color: #e0a052; }

/* ---- Steps ---- */
.ak-steps { padding: 28px 32px; display: flex; flex-direction: column; gap: 0; }

.ak-step {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.ak-step--final { border-bottom: none; }
.ak-step__num {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; color: var(--text-2);
  margin-top: 2px;
}
.ak-step__num--gold {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold-light);
}
.ak-step__body { flex: 1; }
.ak-step__body h3 { font-size: 0.97rem; margin-bottom: 8px; }
.ak-step__body p  { color: var(--text-2); font-size: 0.87rem; line-height: 1.7; margin-bottom: 12px; }
.ak-step__body p:last-child { margin-bottom: 0; }
.ak-step__body code {
  font-family: 'Courier New', monospace;
  background: var(--surface-3); padding: 1px 6px; border-radius: 4px;
  font-size: 0.83rem; color: var(--gold-light);
}

.ak-link-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--gold); border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  padding: 6px 14px; border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
  margin-bottom: 4px;
}
.ak-link-btn:hover { background: rgba(201,168,76,0.2); border-color: rgba(201,168,76,0.45); }
.ak-link-btn svg   { flex-shrink: 0; }

.ak-callout {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: 0.82rem; line-height: 1.6;
  margin-top: 12px;
}
.ak-callout svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }
.ak-callout--info {
  background: rgba(82,150,200,0.10);
  border: 1px solid rgba(82,150,200,0.22);
  color: #82b8d8;
}
.ak-callout--warn {
  background: rgba(224,160,82,0.10);
  border: 1px solid rgba(224,160,82,0.22);
  color: #e0a052;
}

.ak-screen-hint {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.81rem; color: var(--text-2);
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px; margin-top: 10px;
}
.ak-screen-hint svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-3); }
.ak-screen-hint strong { color: var(--text-1); }

/* Key preview block */
.ak-key-preview {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: var(--surface-3);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 12px 16px; margin: 10px 0 14px;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 0.82rem; color: var(--text-2);
  overflow-x: auto;
}
.ak-key-preview code { background: none; padding: 0; color: var(--text-2); font-size: 0.82rem; }
.ak-key-blur {
  filter: blur(4px); user-select: none;
  display: inline-block; letter-spacing: 0.02em;
}
.ak-key-once-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(224,82,82,0.12); color: #e05252;
  border: 1px solid rgba(224,82,82,0.25);
  padding: 2px 8px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}

/* Done bar */
.ak-done-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: rgba(82,200,122,0.07);
  border-top: 1px solid rgba(82,200,122,0.18);
  font-size: 0.87rem; color: #52c87a; font-weight: 500;
}
.ak-done-bar svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- Comparison table ---- */
.ak-compare { margin-bottom: 48px; }
.ak-compare__title {
  font-size: 1.25rem; margin-bottom: 20px; text-align: center;
}
.ak-compare-table {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.84rem;
}
.ak-compare-head,
.ak-compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.ak-compare-row--last { border-bottom: none; }
.ak-compare-head {
  font-weight: 700; font-size: 0.8rem;
  background: var(--surface-3);
  color: var(--text-2);
}
.ak-compare-head > div,
.ak-compare-row > div {
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.ak-compare-head > div:last-child,
.ak-compare-row > div:last-child { border-right: none; }
.ak-compare-label { color: var(--text-2); }
.ak-compare-logo {
  width: 16px; height: 16px; border-radius: 50%; display: inline-block; flex-shrink: 0;
}
.ak-compare-logo--claude  { background: #D97757; }
.ak-compare-logo--openai  { background: #10a37f; }
.ak-compare-logo--gemini  { background: #1a73e8; }
.ak-check  { color: #52c87a; font-weight: 600; }
.ak-cross  { color: #e05252; }
.ak-warn   { color: #e0a052; }
.ak-star   { color: var(--gold-light); font-weight: 600; }
.ak-ok     { color: var(--text-2); }

/* ---- FAQ accordion ---- */
.ak-faq { margin-bottom: 48px; }
.ak-faq__title { font-size: 1.25rem; margin-bottom: 20px; text-align: center; }
.ak-faq-list { display: flex; flex-direction: column; gap: 8px; }

.ak-faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.ak-faq-item[open] { border-color: var(--gold-border); }
.ak-faq-item summary { list-style: none; }
.ak-faq-item summary::-webkit-details-marker { display: none; }

.ak-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600; font-size: 0.9rem;
  transition: color 0.15s;
}
.ak-faq-q:hover { color: var(--gold-light); }
.ak-faq-chevron {
  width: 16px; height: 16px; flex-shrink: 0; color: var(--text-3);
  transition: transform 0.2s;
}
.ak-faq-item[open] .ak-faq-chevron { transform: rotate(180deg); }

.ak-faq-a {
  padding: 0 20px 16px;
  font-size: 0.85rem; color: var(--text-2); line-height: 1.75;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.ak-faq-a strong { color: var(--text-1); }

/* ---- Bottom CTA ---- */
.ak-cta {
  text-align: center; padding: 32px 0 0;
}
.ak-cta p { color: var(--text-2); font-size: 0.9rem; margin-bottom: 16px; }
.ak-cta .btn { margin: 0 6px; }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .ak-panel__header { flex-direction: column; }
  .ak-steps { padding: 20px; }
  .ak-done-bar { padding: 14px 20px; }
  .ak-tabs { flex-direction: column; }
  .ak-tab { flex-direction: row; align-items: center; min-width: unset; gap: 12px; }
  .ak-tab__badge { position: static; }
  .ak-compare-table { font-size: 0.76rem; }
  .ak-compare-head > div,
  .ak-compare-row > div { padding: 10px 10px; }
}
@media (max-width: 520px) {
  .ak-compare-head,
  .ak-compare-row { grid-template-columns: 1.2fr repeat(3, 1fr); }
  .ak-compare-head > div,
  .ak-compare-row > div { padding: 8px 7px; font-size: 0.72rem; }
  .ak-step { gap: 14px; }
  .ak-step__body h3 { font-size: 0.9rem; }
  .ak-key-preview { font-size: 0.72rem; }
}

/* =====================================================
   Policy Pages  (.pol-*)  — Terms / Privacy / Refund
   ===================================================== */

.pol-page {
  padding-bottom: 100px;
}

/* Hero */
.pol-hero {
  position: relative;
  padding: calc(var(--nav-h) + 56px) 0 48px;
  overflow: hidden;
}
.pol-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.pol-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.pol-hero__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.pol-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-0);
  line-height: 1.1;
  margin-bottom: 12px;
}
.pol-hero__meta {
  font-size: 0.82rem;
  color: var(--text-3);
}

/* Body */
.pol-body {
  max-width: 760px;
}
.pol-toc {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.pol-toc__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.pol-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.pol-toc li { font-size: 0.85rem; }
.pol-toc a {
  color: var(--text-2);
  text-decoration: none;
  transition: color .15s;
}
.pol-toc a:hover { color: var(--gold); }

/* Sections */
.pol-section {
  margin-bottom: 40px;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.pol-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.pol-section h3 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-1);
  margin: 18px 0 8px;
}
.pol-section p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 12px;
}
.pol-section ul, .pol-section ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.pol-section li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 4px;
}
.pol-section a {
  color: var(--gold);
  text-decoration: none;
}
.pol-section a:hover { text-decoration: underline; }
.pol-highlight {
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}
.pol-highlight strong { color: var(--text-1); }

.pol-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.pol-footer-links a {
  font-size: 0.85rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color .15s;
}
.pol-footer-links a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .pol-toc ol { grid-template-columns: 1fr; }
  .pol-hero__title { font-size: 2rem; }
}
