/* ========================================
   9to5devhindi.com — Home page styles
   (extracted from index.html inline <style>)
   ======================================== */

  /* ---------- Home-specific styles ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 48px 80px;
    display: flex;
    align-items: center;
    z-index: 2;
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 214, 10, 0.08);
    border: 1px solid rgba(255, 214, 10, 0.2);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--accent-2);
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
  }

  .pulse-dot {
    width: 6px; height: 6px;
    background: var(--accent-2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    animation: fadeUp 0.9s ease 0.1s both;
  }

  h1 .accent-word {
    color: var(--accent);
    display: inline-block;
    position: relative;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  h1 .accent-word::after {
    content: '';
    position: absolute;
    bottom: 8px; left: -4px; right: -4px;
    height: 12px;
    background: var(--accent-2);
    z-index: -1;
    opacity: 0.3;
    transform: skew(-12deg);
  }

  h1 .hindi {
    font-family: 'Hind', sans-serif;
    font-weight: 700;
    font-size: 0.7em;
    color: var(--ink-2);
    display: block;
    margin-top: 8px;
  }

  .hero-sub {
    font-size: 19px;
    color: var(--ink-2);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeUp 1s ease 0.2s both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 1.1s ease 0.3s both;
  }

  /* 3D Code Card */
  .hero-visual {
    position: relative;
    perspective: 2000px;
    animation: fadeUp 1.2s ease 0.4s both;
  }

  .code-card {
    background: var(--surface);
    border-radius: 16px;
    transform: rotateY(-12deg) rotateX(8deg);
    transform-style: preserve-3d;
    box-shadow:
      0 50px 100px -20px rgba(0, 0, 0, 0.7),
      0 30px 60px -30px rgba(255, 59, 48, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: floatCard 6s ease-in-out infinite;
    overflow: hidden;
  }

  @keyframes floatCard {
    0%, 100% { transform: rotateY(-12deg) rotateX(8deg) translateY(0); }
    50% { transform: rotateY(-12deg) rotateX(8deg) translateY(-12px); }
  }

  .code-card:hover {
    transform: rotateY(-6deg) rotateX(4deg) translateY(-6px);
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0,0,0,0.2);
  }

  .dot { width: 12px; height: 12px; border-radius: 50%; }
  .dot.r { background: #ff5f57; }
  .dot.y { background: #ffbd2e; }
  .dot.g { background: #28ca42; }

  .card-tab {
    margin-left: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-2);
  }

  .code-body {
    padding: 24px 24px 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.9;
  }

  .line { display: block; opacity: 0; animation: typeIn 0.5s ease forwards; }
  .line:nth-child(1) { animation-delay: 1.2s; }
  .line:nth-child(2) { animation-delay: 1.5s; }
  .line:nth-child(3) { animation-delay: 1.8s; }
  .line:nth-child(4) { animation-delay: 2.1s; }
  .line:nth-child(5) { animation-delay: 2.4s; }
  .line:nth-child(6) { animation-delay: 2.7s; }
  .line:nth-child(7) { animation-delay: 3.0s; }
  .line:nth-child(8) { animation-delay: 3.3s; }

  @keyframes typeIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .prompt { color: var(--accent-2); }
  .comment { color: #6b7280; }
  .key { color: #c084fc; }
  .str { color: #86efac; }
  .ok { color: #4ade80; }

  .cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--accent-2);
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: middle;
  }
  @keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }

  .badge {
    position: absolute;
    padding: 10px 16px;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 5;
  }

  .badge-1 {
    top: -20px; right: -20px;
    background: var(--accent-2);
    color: var(--bg);
    transform: rotate(8deg);
    animation: float 4s ease-in-out infinite, fadeUp 1.4s ease 0.6s both;
  }

  .badge-2 {
    bottom: 40px; left: -30px;
    background: var(--ink);
    color: var(--bg);
    transform: rotate(-6deg);
    animation: float 5s ease-in-out infinite reverse, fadeUp 1.5s ease 0.7s both;
  }

  /* Marquee */
  .marquee {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: var(--bg-2);
    position: relative;
    z-index: 2;
  }

  .marquee-track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
  }

  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--ink-2);
  }

  .marquee-item .dot-sep {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
  }

  /* About preview section */
  .about-preview {
    background: var(--bg-2);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

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

  .about-text h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
  }

  .about-text p {
    color: var(--ink-2);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

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

  .stat-card {
    background: var(--surface);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
  }
  .stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 214, 10, 0.2);
  }

  .stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
  }

  .stat-label {
    color: var(--ink-2);
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
  }

  /* CTA section */
  .schedule-card {
    background: linear-gradient(135deg, var(--accent) 0%, #d62b22 100%);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px var(--glow);
  }

  .schedule-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
  }

  .schedule-card .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    opacity: 0.9;
  }

  .schedule-card h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }

  .schedule-card .hindi-line {
    font-family: 'Hind', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    opacity: 0.95;
  }

  .schedule-card .btn-primary {
    background: var(--bg);
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  /* Connect cards */
  .connect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .connect-card {
    background: var(--surface);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--ink);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: block;
  }

  .connect-card::after {
    content: '↗';
    position: absolute;
    top: 32px; right: 32px;
    font-size: 24px;
    color: var(--ink-2);
    transition: all 0.3s ease;
  }

  .connect-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, var(--surface), rgba(255, 59, 48, 0.05));
    border-color: rgba(255, 59, 48, 0.3);
  }
  .connect-card:hover::after {
    color: var(--accent-2);
    transform: translate(4px, -4px);
  }

  .connect-card .platform-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }

  .connect-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .connect-card .handle {
    color: var(--accent-2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
  }

  @media (max-width: 968px) {
    .hero { padding: 100px 20px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    h1 { font-size: clamp(36px, 9vw, 64px); margin-bottom: 24px; }
    .hero-sub { font-size: 17px; margin-bottom: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .connect-grid { grid-template-columns: 1fr; }
    .marquee-item { font-size: 20px; }
    .schedule-card { padding: 48px 24px; }
    .badge { display: none; }
    .hero-actions { gap: 12px; }
    .btn-primary, .btn-secondary {
      padding: 14px 24px;
      font-size: 15px;
    }
  }
  @media (max-width: 480px) {
    .hero { padding: 90px 16px 48px; }
    h1 { font-size: clamp(32px, 10vw, 48px); }
    .eyebrow { font-size: 11px; padding: 6px 12px; }
    .hero-sub { font-size: 16px; }
    .stats { grid-template-columns: 1fr; }
  }

/* ---------- Reels section ---------- */
.reels { background: var(--bg); }

.reels-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* Instagram follow card */
.ig-card {
  max-width: 720px;
  margin: 0 auto 40px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6);
}
.ig-top { display: flex; align-items: center; gap: 16px; }
.ig-avatar {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}
.ig-id { flex: 1; min-width: 0; }
.ig-handle {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em;
}
.ig-bio { color: var(--ink-2); font-size: 13px; margin-top: 2px; }
.ig-follow {
  flex-shrink: 0;
  background: var(--accent); color: var(--ink);
  font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px var(--glow);
}
.ig-follow:hover { background: var(--accent-2); color: var(--bg); transform: translateY(-2px); }

.ig-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.ig-action {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600; font-size: 15px; color: var(--ink);
  transition: all 0.3s ease;
}
.ig-action:hover { border-color: rgba(255,214,10,0.4); color: var(--accent-2); transform: translateY(-2px); }
.ig-arrow { color: var(--ink-2); transition: color 0.3s ease; }
.ig-action:hover .ig-arrow { color: var(--accent-2); }

@media (max-width: 480px) {
  .ig-actions { grid-template-columns: 1fr; }
  .ig-top { flex-wrap: wrap; }
  .ig-follow { margin-left: auto; }
}

/* Premium Instagram grid — dense, dark, on-brand tiles */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.ig-post {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--surface-2);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.ig-post:hover {
  transform: translateY(-6px);
  border-color: rgba(255,59,48,0.5);
  box-shadow: 0 26px 54px -20px rgba(0,0,0,0.75);
}

/* gradient cover (replace by placing an <img> inside .ig-post-cover) */
.ig-post-cover { position: absolute; inset: 0; background: var(--surface-2); }
.ig-post-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ig-post-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 50%);
}
/* brand-tinted variety per tile */
.ig-post:nth-child(5n+1) .ig-post-cover { background: radial-gradient(circle at 28% 22%, rgba(255,59,48,0.55), transparent 62%), radial-gradient(circle at 80% 85%, rgba(255,214,10,0.20), transparent 55%), #16161f; }
.ig-post:nth-child(5n+2) .ig-post-cover { background: radial-gradient(circle at 72% 25%, rgba(255,214,10,0.45), transparent 60%), radial-gradient(circle at 20% 80%, rgba(255,59,48,0.30), transparent 60%), #16161f; }
.ig-post:nth-child(5n+3) .ig-post-cover { background: radial-gradient(circle at 30% 75%, rgba(74,222,128,0.35), transparent 62%), radial-gradient(circle at 78% 20%, rgba(255,59,48,0.35), transparent 60%), #16161f; }
.ig-post:nth-child(5n+4) .ig-post-cover { background: radial-gradient(circle at 25% 25%, rgba(255,214,10,0.35), transparent 60%), radial-gradient(circle at 82% 78%, rgba(255,59,48,0.40), transparent 58%), #16161f; }
.ig-post:nth-child(5n+5) .ig-post-cover { background: radial-gradient(circle at 75% 70%, rgba(255,59,48,0.50), transparent 62%), radial-gradient(circle at 22% 22%, rgba(255,214,10,0.22), transparent 58%), #16161f; }

.ig-glyph {
  position: absolute; top: 14px; left: 14px;
  width: 24px; height: 24px;
  color: #fff; opacity: 0.92;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.ig-view {
  position: absolute; inset: 0;
  z-index: 3;
  display: grid; place-items: center;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.04em;
  color: #fff;
  background: rgba(10,10,15,0.5);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-post:hover .ig-view { opacity: 1; }

@media (max-width: 600px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ig-view { font-size: 11px; }
}

/* ---------- Showcase (Built with AI) ---------- */
.showcase {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.showcase-card {
  display: block;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 59, 48, 0.4);
  box-shadow: 0 28px 56px -20px rgba(0,0,0,0.6);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-url {
  margin-left: 10px;
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-2);
  background: var(--bg);
  padding: 5px 12px;
  border-radius: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,59,48,0.25), transparent 60%),
    radial-gradient(circle at 75% 80%, rgba(255,214,10,0.18), transparent 55%),
    var(--surface-2);
}
/* Optional: drop a real screenshot inside .showcase-preview as <img> */
.showcase-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}

.showcase-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; font-weight: 700;
  color: var(--bg);
  background: var(--accent-2);
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 1;
}
.showcase-play {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff; font-size: 26px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.showcase-card:hover .showcase-play { transform: scale(1.1); background: var(--accent); }

.showcase-meta { padding: 22px 24px 26px; }
.showcase-meta h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.showcase-meta p { color: var(--ink-2); font-size: 14px; line-height: 1.6; }

/* Subtle studio credit / promo under the showcase */
.showcase-note {
  margin-top: 32px;
  text-align: center;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6;
}
.showcase-note a {
  color: var(--ink-2);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s ease;
}
.showcase-note a:hover { color: var(--accent-2); }

@media (max-width: 480px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* ========================================
   Recommended hosting (Hostinger affiliate)
   ======================================== */

.host-promo {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.host-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  padding: 44px 48px;
  background:
    radial-gradient(circle at 85% 15%, rgba(124,58,237,0.30), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(99,61,230,0.18), transparent 55%),
    var(--surface);
  border: 1px solid rgba(124,58,237,0.35);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.host-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.7);
  box-shadow: 0 28px 60px -22px rgba(124,58,237,0.55);
}

.host-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.host-logo {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: #673de6;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}
.host-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.host-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c4b5fd;
  border: 1px solid rgba(196,181,253,0.35);
  padding: 4px 10px;
  border-radius: 100px;
}

.host-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 620px;
  margin-bottom: 16px;
}
.host-headline span { color: var(--accent-2); }

.host-desc {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 22px;
}
.host-desc strong { color: var(--ink); }

.host-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 30px;
}
.host-perks li {
  font-size: 14px;
  color: var(--ink-2);
  font-family: 'JetBrains Mono', monospace;
}

.host-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #673de6;
  color: #fff;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(124,58,237,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.host-card:hover .host-cta { background: #7c3aed; }
.host-cta svg { transition: transform 0.3s ease; }
.host-card:hover .host-cta svg { transform: translateX(4px); }

.host-disclosure {
  margin-top: 22px;
  text-align: center;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .host-card { padding: 32px 26px; }
}

/* More tools grid (recommendations + affiliate) */
.tools-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.tool-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.5);
  background: var(--surface-2);
}

.tool-logo {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(124,58,237,0.18);
  color: #c4b5fd;
  font-size: 20px;
}

.tool-meta { flex: 1; min-width: 0; }
.tool-meta h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

/* "Not affiliate" tag — marks genuine recommendations (no commission) */
.tool-flag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 2px 6px;
  border-radius: 5px;
  vertical-align: middle;
  margin-left: 6px;
  white-space: nowrap;
}
.tool-meta p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}

.tool-arrow {
  color: var(--ink-3);
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.tool-card:hover .tool-arrow { color: #c4b5fd; transform: translate(2px, -2px); }

.tool-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent-2);
  padding: 3px 7px;
  border-radius: 5px;
  font-weight: 700;
}
