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

    :root {
      --bg: #fbfbfd;
      --text: #0f172a;
      --text-muted: #475569;
      --text-light: #64748b;
      --border: rgba(0,0,0,0.08);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── AMBIENT ─────────────────────────────────────────────── */
    .ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
    .orb { position: absolute; border-radius: 50%; filter: blur(100px); }
    .orb-1 { width: 520px; height: 520px; top: -200px; left: -150px; background: radial-gradient(circle, #904bf5, transparent 70%); opacity: 0.3; }
    .orb-2 { width: 400px; height: 400px; top: 80px; right: -100px; background: radial-gradient(circle, #4e58fe, transparent 70%); opacity: 0.25; }
    .orb-3 { width: 600px; height: 300px; top: 320px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, #cc01ff, transparent 70%); opacity: 0.15; }

    /* ── NAVBAR ─────────────────────────────────────────────── */
    .navbar-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 1rem 2rem 0.5rem;
      pointer-events: none;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1420px;
      height: 64px;
      margin: 0 auto;
      padding: 0 1.5rem;
      border-radius: 2rem;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      pointer-events: auto;
      transition: background 0.3s, box-shadow 0.3s;
    }

    .navbar.scrolled {
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(32px) saturate(180%);
      -webkit-backdrop-filter: blur(32px) saturate(180%);
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    }

    .navbar-nav {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #333;
      list-style: none;
    }
    .navbar-nav li { display: flex; align-items: center; }
    .navbar-nav li::before { display: none; }
    .navbar-nav a { text-decoration: none; color: inherit; transition: color 0.2s; }
    .navbar-nav a:hover { color: #000; }
    .navbar-nav a.active { color: #7c3aed; }

    .navbar-actions { display: flex; align-items: center; gap: 0.75rem; }

    .btn-login {
      font-size: 0.875rem;
      font-weight: 500;
      color: #333;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .btn-login:hover { opacity: 0.6; }

    .btn-signup {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      padding: 0.625rem 1.5rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: #fff;
      text-decoration: none;
      background: linear-gradient(90deg, #4e58fe, #904bf5, #cc01ff, #4e58fe);
      background-size: 300% 100%;
      background-position: 0% 50%;
      transition: background-position 0.6s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn-signup:hover {
      background-position: 100% 50%;
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(144,75,245,0.35);
    }

    /* ── GRADIENT TEXT ───────────────────────────────────────── */
    .gradient-text {
      background: linear-gradient(90deg, #4e58fe, #904bf5, #cc01ff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* ── HERO ────────────────────────────────────────────────── */
    .hero {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 7rem 1.5rem 5rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      padding: 0.5rem 1.25rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      color: #333;
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #904bf5, #4e58fe);
      flex-shrink: 0;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.25rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: #000;
      margin-bottom: 1.25rem;
    }

    .hero p {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-content {
      animation: fadeUp 0.7s ease forwards;
    }

    /* ── INDUSTRY GRID ───────────────────────────────────────── */
    .section-grid {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 2rem 6rem;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    @media (max-width: 900px) {
      .industry-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 580px) {
      .industry-grid { grid-template-columns: 1fr; }
      .navbar-nav { display: none; }
    }

    /* ── INDUSTRY CARD ───────────────────────────────────────── */
    .industry-card {
      border-radius: 1.25rem;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.06);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      cursor: default;
      position: relative;
    }

    .industry-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    }

    .card-top {
      position: relative;
      height: 180px;
      overflow: hidden;
    }

    .card-top img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .card-icon-bg {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-icon-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.85);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .card-icon-circle svg {
      width: 32px;
      height: 32px;
    }

    .agent-badge {
      position: absolute;
      bottom: 12px;
      left: 14px;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.65rem 0.25rem 0.3rem;
      border-radius: 9999px;
      font-size: 0.72rem;
      font-weight: 600;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
      color: #1e1e2e;
      white-space: nowrap;
    }

    .agent-initial {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .card-bottom {
      padding: 1.1rem 1.25rem 1.3rem;
      border-top: 3px solid transparent;
      transition: border-color 0.3s ease;
    }

    .industry-card:hover .card-bottom {
      border-top-color: var(--card-color, #7c3aed);
    }

    .card-industry-name {
      font-size: 1rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.35rem;
    }

    .card-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 0.75rem;
    }

    .card-chat-bubble {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.76rem;
      font-weight: 500;
      background: var(--card-bg-light, #f3f0ff);
      color: var(--card-color, #7c3aed);
    }

    /* ── CTA SECTION ─────────────────────────────────────────── */
    .cta-section {
      position: relative;
      z-index: 1;
      padding: 0 2rem 6rem;
      max-width: 1280px;
      margin: 0 auto;
    }

    .cta-card {
      border-radius: 2.5rem;
      background: linear-gradient(135deg, #0a0814, #1a1040);
      padding: 5rem 3rem;
      text-align: center;
      overflow: hidden;
      position: relative;
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: -80px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, #904bf5, transparent 70%);
      opacity: 0.3;
      filter: blur(60px);
      pointer-events: none;
    }

    .cta-card h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }

    .cta-card p {
      font-size: 1.0625rem;
      color: rgba(255,255,255,0.65);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .btn-gradient {
      display: inline-flex;
      align-items: center;
      padding: 0.875rem 2rem;
      border-radius: 9999px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      background: linear-gradient(90deg, #4e58fe, #904bf5, #cc01ff, #4e58fe);
      background-size: 300% 100%;
      background-position: 0% 50%;
      box-shadow: 0 4px 20px rgba(144,75,245,0.4);
      transition: background-position 0.6s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn-gradient:hover {
      background-position: 100% 50%;
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(144,75,245,0.55);
    }

    .btn-glass {
      display: inline-flex;
      align-items: center;
      padding: 0.875rem 2rem;
      border-radius: 9999px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .btn-glass:hover {
      background: rgba(255,255,255,0.18);
      transform: scale(1.05);
    }

    /* ── FOOTER ──────────────────────────────────────────────── */
    footer {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 2rem 1rem 2.5rem;
      font-size: 0.85rem;
      color: var(--text-light);
    }
    footer a { color: inherit; text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: #000; }
    .footer-sep { margin: 0 0.5rem; opacity: 0.4; }
  
    /* ── RESPONSIVE NAVBAR ─────────────────────────────────── */
    @media (max-width: 960px) {
      .navbar-nav { gap: 1.25rem; }
    }

    @media (max-width: 860px) {
      .navbar-nav { gap: 0.875rem; font-size: 0.875rem; }
      .btn-signup { padding: 0.5rem 1.125rem; }
    }

    @media (max-width: 760px) {
      .navbar-nav { display: none; }
    }

    @media (max-width: 680px) {
      .navbar-wrap { padding: 0.75rem 0.75rem 0.4rem; }
      .navbar { padding: 0 1rem; border-radius: 1.5rem; height: 56px; }
      .navbar-logo svg, .navbar > a svg, nav.navbar a > svg { height: 26px; }
      .btn-login { font-size: 0.8rem; }
      .btn-signup { font-size: 0.8rem; padding: 0.5rem 0.875rem; }
    }

/* ---- Rules below replace what used to be inline style="" attributes ---- */

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

/* Industry card color theme (was inline style=) */
.industry-card:nth-child(1) { --card-color: #7c3aed; --card-bg-light: #ede9fe; }
.industry-card:nth-child(2) { --card-color: #0ea5e9; --card-bg-light: #e0f2fe; }
.industry-card:nth-child(3) { --card-color: #f59e0b; --card-bg-light: #fef3c7; }
.industry-card:nth-child(4) { --card-color: #10b981; --card-bg-light: #d1fae5; }
.industry-card:nth-child(5) { --card-color: #ea580c; --card-bg-light: #ffedd5; }
.industry-card:nth-child(6) { --card-color: #a855f7; --card-bg-light: #f5d0fe; }
.industry-card:nth-child(7) { --card-color: #f43f5e; --card-bg-light: #ffe4e6; }
.industry-card:nth-child(8) { --card-color: #16a34a; --card-bg-light: #dcfce7; }
.industry-card:nth-child(9) { --card-color: #3b82f6; --card-bg-light: #dbeafe; }
.industry-card:nth-child(10) { --card-color: #ca8a04; --card-bg-light: #fef9c3; }
.industry-card:nth-child(11) { --card-color: #059669; --card-bg-light: #d1fae5; }
.industry-card:nth-child(12) { --card-color: #f97316; --card-bg-light: #ffedd5; }

/* Industry card icon backgrounds (was inline style=) */
.industry-card:nth-child(5) .card-icon-bg { background: linear-gradient(135deg,#fecaca,#fed7aa); }
.industry-card:nth-child(6) .card-icon-bg { background: linear-gradient(135deg,#f5d0fe,#e9d5ff); }
.industry-card:nth-child(7) .card-icon-bg { background: linear-gradient(135deg,#fecdd3,#fde68a); }
.industry-card:nth-child(8) .card-icon-bg { background: linear-gradient(135deg,#bbf7d0,#bae6fd); }
.industry-card:nth-child(9) .card-icon-bg { background: linear-gradient(135deg,#bfdbfe,#ddd6fe); }
.industry-card:nth-child(10) .card-icon-bg { background: linear-gradient(135deg,#fef9c3,#fde68a); }
.industry-card:nth-child(11) .card-icon-bg { background: linear-gradient(135deg,#a7f3d0,#d1fae5); }
.industry-card:nth-child(12) .card-icon-bg { background: linear-gradient(135deg,#fed7aa,#fecdd3); }

/* Agent initial avatar gradients (was inline style=) */
.industry-card:nth-child(1) .agent-initial { background: linear-gradient(135deg,#7c3aed,#4e58fe); }
.industry-card:nth-child(2) .agent-initial { background: linear-gradient(135deg,#0ea5e9,#38bdf8); }
.industry-card:nth-child(3) .agent-initial { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.industry-card:nth-child(4) .agent-initial { background: linear-gradient(135deg,#10b981,#34d399); }
.industry-card:nth-child(5) .agent-initial { background: linear-gradient(135deg,#ea580c,#fb923c); }
.industry-card:nth-child(6) .agent-initial { background: linear-gradient(135deg,#a855f7,#c084fc); }
.industry-card:nth-child(7) .agent-initial { background: linear-gradient(135deg,#f43f5e,#fb7185); }
.industry-card:nth-child(8) .agent-initial { background: linear-gradient(135deg,#16a34a,#4ade80); }
.industry-card:nth-child(9) .agent-initial { background: linear-gradient(135deg,#3b82f6,#60a5fa); }
.industry-card:nth-child(10) .agent-initial { background: linear-gradient(135deg,#ca8a04,#facc15); }
.industry-card:nth-child(11) .agent-initial { background: linear-gradient(135deg,#059669,#34d399); }
.industry-card:nth-child(12) .agent-initial { background: linear-gradient(135deg,#f97316,#fb923c); }
