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

:root {
  --bg: #09090f;
  --surface: #111120;
  --surface2: #16162a;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.15);
  --accent: #5b6ef5;
  --accent2: #9b6ef5;
  --accent3: #3ecbf5;
  --text: #f0f0fa;
  --muted: #7878a0;
  --white: #ffffff;
  --glow: rgba(91,110,245,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(2rem, 5vw);
  height: 68px;
  background: rgba(9,9,15,0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border: none; padding: 0.55rem 1.3rem;
  border-radius: 8px; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
}

/* grid background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91,110,245,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,110,245,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

/* glowing orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,110,245,0.28) 0%, transparent 70%);
  top: -100px; left: 50%; transform: translateX(-60%);
}
.orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(155,110,245,0.2) 0%, transparent 70%);
  top: 30%; right: 8%;
}
.orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(62,203,245,0.18) 0%, transparent 70%);
  bottom: 10%; left: 5%;
}

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(91,110,245,0.12);
  border: 1px solid rgba(91,110,245,0.3);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem; font-weight: 600;
  color: #a0a8ff;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 800px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border: none;
  padding: 0.85rem 2rem; border-radius: 10px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 0 30px rgba(91,110,245,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(91,110,245,0.6); }
.btn-outline {
  background: transparent;
  color: var(--text); border: 1px solid var(--border-bright);
  padding: 0.85rem 2rem; border-radius: 10px;
  font-size: 1rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: rgba(91,110,245,0.5);
  background: rgba(91,110,245,0.07);
  transform: translateY(-2px);
}

/* hero stats bar */
.hero-stats {
  margin-top: 4rem;
  display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat { text-align: center; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--white);
}
.stat-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-top: 0.1rem; letter-spacing: 0.03em; text-transform: uppercase; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FLOW SECTION ── */
section { padding: 6rem max(2rem, 6vw); }

.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--white); max-width: 600px;
}
.section-sub {
  margin-top: 1rem; font-size: 1rem; color: var(--muted);
  max-width: 520px; line-height: 1.75;
}

/* flow steps */
.flow { background: var(--surface); }
.flow-inner { max-width: 1100px; margin: 0 auto; }
.flow-header { text-align: center; margin-bottom: 4rem; }
.flow-header .section-title, .flow-header .section-sub { margin: 0 auto; }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.flow-step {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -0.2rem; top: 50%;
  transform: translateY(-50%);
  color: var(--accent); font-size: 1.3rem;
}
.flow-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 20px rgba(91,110,245,0.35);
}
.flow-step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.flow-step p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── FEATURES ── */
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-top { display: flex; gap: 6rem; align-items: flex-start; flex-wrap: wrap; margin-bottom: 4rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: rgba(91,110,245,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1.2rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── RECENT URLS ── */
.recent { background: var(--surface); }
.recent-inner { max-width: 1100px; margin: 0 auto; }
.recent-header { margin-bottom: 3rem; }

.url-ticker-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface2);
}
.url-ticker-head {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.url-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.2s;
}
.url-row:last-child { border-bottom: none; }
.url-row:hover { background: rgba(91,110,245,0.06); }
.url-link {
  font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.url-link:hover { text-decoration: underline; }
.url-date { font-size: 0.8rem; color: var(--muted); }
.url-badge {
  display: inline-block;
  background: rgba(62,203,245,0.1);
  border: 1px solid rgba(62,203,245,0.25);
  color: var(--accent3);
  border-radius: 999px;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.15rem 0.6rem; letter-spacing: 0.05em;
  margin-left: 0.75rem;
}

/* ── PRICING ── */
#pricing { padding: 6rem max(2rem, 6vw); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 1.5rem; }
.pricing-note {
  text-align: center; font-size: 0.875rem; color: var(--muted); margin-bottom: 3.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.35); }
.pricing-card.featured {
  border-color: rgba(91,110,245,0.5);
  background: linear-gradient(160deg, rgba(91,110,245,0.1), rgba(155,110,245,0.06));
  box-shadow: 0 0 60px rgba(91,110,245,0.15);
}
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 1rem; border-radius: 999px; letter-spacing: 0.04em;
  white-space: nowrap;
}
.pricing-tech {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.pricing-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); }
.pricing-desc { font-size: 0.875rem; color: var(--muted); margin: 0.5rem 0 1.5rem; line-height: 1.6; }
.pricing-price {
  display: flex; align-items: flex-end; gap: 0.3rem;
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.price-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.price-unit { font-size: 0.875rem; color: var(--muted); padding-bottom: 0.3rem; }
.price-free {
  display: inline-block;
  background: rgba(62,203,245,0.1);
  border: 1px solid rgba(62,203,245,0.3);
  color: var(--accent3); font-size: 0.75rem; font-weight: 700;
  padding: 0.15rem 0.6rem; border-radius: 999px; margin-left: 0.75rem;
  align-self: center;
}
.pricing-features { list-style: none; }
.pricing-features li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: var(--text); padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--accent3); font-size: 0.9rem; flex-shrink: 0; }
.pricing-action { margin-top: 2rem; }
.btn-pricing {
  display: block; text-align: center;
  padding: 0.8rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-pricing-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 0 25px rgba(91,110,245,0.4);
}
.btn-pricing-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(91,110,245,0.6); }
.btn-pricing-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-pricing-outline:hover { border-color: rgba(91,110,245,0.4); background: rgba(91,110,245,0.07); transform: translateY(-2px); }

/* student promo */
.student-promo {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, rgba(62,203,245,0.08), rgba(91,110,245,0.08));
  border: 1px solid rgba(62,203,245,0.2);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.promo-icon { font-size: 2.5rem; }
.promo-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 0.35rem; }
.promo-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.promo-cta {
  margin-left: auto; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent3), var(--accent));
  color: #fff; padding: 0.7rem 1.5rem; border-radius: 10px;
  font-size: 0.9rem; font-weight: 700; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.promo-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── TARGETS ── */
.targets { background: var(--surface); }
.targets-inner { max-width: 1100px; margin: 0 auto; }
.targets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.target-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.target-card:hover { border-color: rgba(91,110,245,0.35); transform: translateY(-3px); }
.target-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.target-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.target-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── DOMAIN SECTION ── */
.domain-inner { max-width: 1100px; margin: 0 auto; }
.domain-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.domain-examples { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.domain-pill {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem 1.25rem;
  font-size: 0.95rem; color: var(--text); font-weight: 500;
  transition: border-color 0.2s;
}
.domain-pill:hover { border-color: rgba(91,110,245,0.35); }
.domain-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent3); box-shadow: 0 0 8px var(--accent3); }

/* url sample box */
.sample-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.sample-box-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.bar-dot { width: 10px; height: 10px; border-radius: 50%; }
.sample-box-url {
  padding: 1.5rem 1.25rem;
  font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--muted); line-height: 2;
}
.sample-box-url .hl { color: var(--accent3); }
.sample-box-url .hl2 { color: var(--accent); }

/* ── CTA SECTION ── */
.cta-section {
  padding: 6rem max(2rem, 6vw);
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-card {
  background: linear-gradient(135deg, rgba(91,110,245,0.12), rgba(155,110,245,0.08));
  border: 1px solid rgba(91,110,245,0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(91,110,245,0.25), transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 1rem;
}
.cta-sub { font-size: 1rem; color: var(--muted); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem max(2rem, 6vw);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--muted);
}
.footer-logo span { color: var(--accent3); }
footer p { font-size: 0.8rem; color: var(--muted); }
footer a { color: var(--muted); text-decoration: none; font-size: 0.8rem; }
footer a:hover { color: var(--text); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .flow-step:not(:last-child)::after { display: none; }
  .domain-split { grid-template-columns: 1fr; gap: 2rem; }
  .promo-cta { margin-left: 0; }
  .stat-divider { display: none; }
}

/* ── AI Support ── */
.ai-support { background: var(--bg); }
.ai-support-inner { max-width: 1100px; margin: 0 auto; }
.ai-support-header { text-align: center; margin-bottom: 4rem; }
.ai-support-header .section-title,
.ai-support-header .section-sub { margin: 0 auto; text-align: center; }

.ai-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ai-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.9rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.ai-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,.35); }
.ai-card.gpt:hover { border-color: rgba(16,163,127,.5);  box-shadow: 0 16px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(16,163,127,.4); }
.ai-card.cld:hover { border-color: rgba(204,120,92,.5);  box-shadow: 0 16px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(204,120,92,.4); }
.ai-card.gem:hover { border-color: rgba(66,133,244,.5);  box-shadow: 0 16px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(66,133,244,.4); }

.ai-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.25rem;
}
.ai-card.gpt .ai-card-icon { background: rgba(16,163,127,.1); }
.ai-card.cld .ai-card-icon { background: rgba(204,120,92,.1); }
.ai-card.gem .ai-card-icon { background: rgba(66,133,244,.1); }

.ai-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.01em;
}
.ai-card-desc {
  font-size: 0.875rem; color: var(--muted); line-height: 1.7;
}
.ai-card-badge {
  display: inline-block;
  padding: 0.2rem 0.85rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
}
.ai-card.gpt .ai-card-badge { background: rgba(16,163,127,.12); border: 1px solid rgba(16,163,127,.3); color: #10a37f; }
.ai-card.cld .ai-card-badge { background: rgba(204,120,92,.12); border: 1px solid rgba(204,120,92,.3); color: #cc785c; }
.ai-card.gem .ai-card-badge { background: rgba(66,133,244,.12); border: 1px solid rgba(66,133,244,.3); color: #6baff8; }

.ai-strip {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(91,110,245,.08), rgba(155,110,245,.05));
  border: 1px solid rgba(91,110,245,.2);
  border-radius: 16px; padding: 1.5rem 2rem;
}
.ai-strip-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent);
  box-shadow: 0 0 10px var(--glow);
  animation: pulse 2s ease infinite;
}
.ai-strip-text { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.ai-strip-text strong { color: var(--text); font-weight: 600; }
