:root {
    --orange: #F6931E;
    --orange-dark: #d97d0f;
    --orange-light: #fff3e0;
    --black: #111111;
    --white: #ffffff;
    --grey-light: #f5f5f5;
    --grey-mid: #e8e8e8;
    --grey-text: #555555;
    --grey-muted: #888888;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Poppins', sans-serif; color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }

  /* NAV */
  nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--grey-mid); padding: 0 5%; height: 68px; display: flex; align-items: center; justify-content: space-between; }
  .nav-logo img { height: 44px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--black); transition: color 0.2s; }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta { display: flex; gap: 12px; align-items: center; }
  .btn { display: inline-block; padding: 10px 22px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.88rem; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
  .btn-primary { background: var(--orange); color: var(--white); }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,152,0,0.35); }
  .btn-outline { background: transparent; color: var(--black); border: 2px solid var(--grey-mid); }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); }
  .btn-lg { padding: 14px 32px; font-size: 0.95rem; border-radius: 10px; }

  /* HERO */
  .hero { padding: 90px 5% 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1280px; margin: 0 auto; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-light); border: 1px solid rgba(255,152,0,0.3); color: var(--orange-dark); padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
  .hero h1 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 20px; color: var(--black); }
  .hero h1 em { font-style: normal; color: var(--orange); }
  .hero-sub { font-size: 1.05rem; color: var(--grey-text); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-trust { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--grey-muted); }
  .hero-trust-dots { display: flex; gap: 4px; }
  .trust-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--grey-mid); border: 2px solid white; margin-left: -8px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; color: var(--grey-text); }
  .trust-dot:first-child { margin-left: 0; }
  .hero-visual { position: relative; }
  .hero-screen { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--grey-mid); background: white; }
  .hero-screen img { width: 100%; height: auto; display: block; }
  .hero-floating-card { position: absolute; background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 14px 18px; border: 1px solid var(--grey-mid); animation: float 4s ease-in-out infinite; }
  .hero-floating-card.card-1 { bottom: -20px; left: -30px; min-width: 170px; }
  .hero-floating-card.card-2 { top: -16px; right: -20px; min-width: 150px; animation-delay: -2s; }
  .float-label { font-size: 0.7rem; color: var(--grey-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
  .float-value { font-size: 1.3rem; font-weight: 800; color: var(--black); }
  .float-value span { color: var(--orange); }
  .float-change { font-size: 0.75rem; font-weight: 600; color: #22c55e; margin-top: 2px; }
  @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }

  /* SOCIAL PROOF */
  .social-proof { background: var(--grey-light); border-top: 1px solid var(--grey-mid); border-bottom: 1px solid var(--grey-mid); padding: 18px 5%; text-align: center; }
  .social-proof p { font-size: 0.82rem; color: var(--grey-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
  .logo-strip { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
  .logo-strip span { font-size: 0.88rem; font-weight: 700; color: #aaa; letter-spacing: 0.04em; }

  /* STATS */
  .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--grey-mid); border-top: 1px solid var(--grey-mid); border-bottom: 1px solid var(--grey-mid); }
  .stat-item { background: white; padding: 40px 20px; text-align: center; }
  .stat-number { font-size: 2.4rem; font-weight: 900; color: var(--orange); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
  .stat-label { font-size: 0.85rem; color: var(--grey-text); font-weight: 500; }

  /* SECTIONS */
  section { padding: 80px 5%; }
  .section-inner { max-width: 1180px; margin: 0 auto; }
  .section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 10px; }
  .section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; color: var(--black); }
  .section-sub { font-size: 1rem; color: var(--grey-text); max-width: 580px; line-height: 1.7; }

  /* INTELLIGENCE */
  .intelligence { background: var(--black); color: white; padding: 90px 5%; }
  .intelligence .section-title { color: white; }
  .intelligence .section-sub { color: #aaa; }
  .intelligence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 56px; }
  .intel-points { display: flex; flex-direction: column; gap: 28px; margin-top: 20px; }
  .intel-point { display: flex; gap: 16px; align-items: flex-start; }
  .intel-icon { width: 42px; height: 42px; background: rgba(255,152,0,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border: 1px solid rgba(255,152,0,0.25); }
  .intel-point h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 4px; }
  .intel-point p { font-size: 0.85rem; color: #999; line-height: 1.6; }
  .intel-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); }
  .intel-visual img { width: 100%; height: auto; display: block; }

  /* FEATURES */
  .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
  .feature-card { background: var(--grey-light); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--grey-mid); transition: all 0.25s; position: relative; overflow: hidden; }
  .feature-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
  .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-icon { font-size: 1.8rem; margin-bottom: 16px; line-height: 1; }
  .feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--black); }
  .feature-card p { font-size: 0.88rem; color: var(--grey-text); line-height: 1.65; }

  /* SCREENSHOT ROWS */
  .screenshot-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 56px; }
  .screenshot-row.reverse { direction: rtl; }
  .screenshot-row.reverse > * { direction: ltr; }
  .screenshot-content h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.01em; }
  .screenshot-content p { font-size: 0.92rem; color: var(--grey-text); line-height: 1.75; margin-bottom: 20px; }
  .check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .check-list li { font-size: 0.88rem; color: var(--grey-text); display: flex; align-items: center; gap: 10px; }
  .check-list li::before { content: "✓"; color: var(--orange); font-weight: 800; font-size: 0.85rem; flex-shrink: 0; background: var(--orange-light); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
  .screenshot-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--grey-mid); }
  .screenshot-visual img { width: 100%; height: auto; display: block; }

  /* INTEGRATIONS */
  .integrations { background: var(--grey-light); border-top: 1px solid var(--grey-mid); border-bottom: 1px solid var(--grey-mid); }
  .integrations-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 48px; }
  .integration-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .integration-card { background: white; border: 1px solid var(--grey-mid); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: all 0.2s; }
  .integration-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
  .integration-card.featured { border-color: var(--orange); background: var(--orange-light); }
  .integration-logo { font-size: 1.5rem; margin-bottom: 10px; }
  .integration-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
  .integration-card p { font-size: 0.78rem; color: var(--grey-muted); }
  .badge-live { display: inline-block; background: #22c55e; color: white; font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }
  .badge-coming { display: inline-block; background: var(--grey-mid); color: var(--grey-text); font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }

  /* TESTIMONIALS */
  .testimonials { background: var(--black); color: white; padding: 90px 5%; }
  .testimonials .section-title { color: white; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
  .testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px; transition: all 0.2s; }
  .testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: var(--orange); }
  .stars { color: var(--orange); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
  .testimonial-card blockquote { font-size: 0.9rem; line-height: 1.7; color: #ccc; font-style: italic; margin-bottom: 20px; }
  .testimonial-author { font-size: 0.82rem; font-weight: 700; color: white; }
  .testimonial-role { font-size: 0.78rem; color: #777; margin-top: 2px; }

  /* FOUNDERS */
  .founders { padding: 90px 5%; }
  .founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 56px; }
  .founders-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
  .founders-image img { width: 100%; height: auto; display: block; }
  .founders-content h3 { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 800; line-height: 1.25; margin-bottom: 20px; color: var(--black); letter-spacing: -0.02em; }
  .founders-content p { font-size: 0.92rem; color: var(--grey-text); line-height: 1.75; margin-bottom: 16px; }
  .founder-detail { display: flex; gap: 12px; align-items: flex-start; background: var(--grey-light); border-radius: var(--radius); padding: 16px 20px; margin-top: 8px; border: 1px solid var(--grey-mid); }
  .founder-detail-icon { font-size: 1.2rem; flex-shrink: 0; }
  .founder-detail strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--black); }
  .founder-detail span { font-size: 0.82rem; color: var(--grey-muted); }

  /* PRICING */
  .pricing { background: var(--grey-light); border-top: 1px solid var(--grey-mid); }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
  .pricing-card { background: white; border: 1px solid var(--grey-mid); border-radius: var(--radius-lg); padding: 36px 32px; transition: all 0.2s; }
  .pricing-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
  .pricing-card.featured { border-color: var(--orange); background: var(--black); color: white; position: relative; }
  .pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 16px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
  .pricing-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 10px; }
  .pricing-price { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
  .pricing-card.featured .pricing-price { color: white; }
  .pricing-period { font-size: 0.8rem; color: var(--grey-muted); margin-bottom: 20px; }
  .pricing-card.featured .pricing-period { color: #777; }
  .pricing-desc { font-size: 0.85rem; color: var(--grey-text); margin-bottom: 24px; line-height: 1.6; }
  .pricing-card.featured .pricing-desc { color: #aaa; }
  .pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .pricing-list li { font-size: 0.85rem; color: var(--grey-text); display: flex; gap: 8px; align-items: flex-start; }
  .pricing-card.featured .pricing-list li { color: #ccc; }
  .pricing-list li::before { content: "✓"; color: var(--orange); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
  .pricing-divider { border: none; border-top: 1px solid var(--grey-mid); margin: 20px 0; }
  .pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.1); }
  .pricing-addon-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--grey-muted); margin-bottom: 10px; }

  /* FAQ */
  .faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--grey-mid); border-radius: var(--radius-lg); overflow: hidden; }
  .faq-item { border-bottom: 1px solid var(--grey-mid); }
  .faq-item:last-child { border-bottom: none; }
  .faq-q { width: 100%; text-align: left; background: white; border: none; padding: 22px 28px; font-family: 'Poppins', sans-serif; font-size: 0.93rem; font-weight: 600; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background 0.2s; }
  .faq-q:hover { background: var(--grey-light); }
  .faq-q.open { background: var(--orange-light); color: var(--orange-dark); }
  .faq-arrow { font-size: 0.8rem; transition: transform 0.3s; flex-shrink: 0; }
  .faq-q.open .faq-arrow { transform: rotate(180deg); }
  .faq-a { display: none; padding: 0 28px 22px; font-size: 0.88rem; color: var(--grey-text); line-height: 1.75; background: var(--orange-light); }
  .faq-a.open { display: block; }

  /* CTA */
  .cta-section { background: var(--orange); padding: 80px 5%; text-align: center; }
  .cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.2; }
  .cta-section p { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white { background: white; color: var(--orange-dark); font-weight: 700; }
  .btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .btn-ghost-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
  .btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* FOOTER */
  footer { background: var(--black); color: white; padding: 60px 5% 36px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand img { height: 48px; margin-bottom: 16px; }
  .footer-brand p { font-size: 0.83rem; color: #777; line-height: 1.65; max-width: 260px; }
  .footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #aaa; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 0.85rem; color: #666; text-decoration: none; transition: color 0.2s; }
  .footer-col a:hover { color: var(--orange); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 0.78rem; color: #555; }
  .footer-socials { display: flex; gap: 16px; }
  .footer-socials a { font-size: 0.78rem; color: #555; text-decoration: none; transition: color 0.2s; }
  .footer-socials a:hover { color: var(--orange); }

  @media (max-width: 900px) {
    .hero, .intelligence-grid, .founders-grid, .screenshot-row, .integrations-header { grid-template-columns: 1fr; gap: 40px; }
    .screenshot-row.reverse { direction: ltr; }
    .features-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
    .integration-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-floating-card { display: none; }
  }

/* shared page wrappers */
.section{padding:90px 5%;}
.section .section-inner{max-width:1180px;margin:0 auto;}
.faq{padding:90px 5%;}
.nav-logo img{height:44px;width:auto;}
.footer-brand img{height:48px;width:auto;filter:brightness(0) invert(1);}
.legal{padding:70px 5%;}
.legal .section-inner{max-width:820px;}
.legal h1{font-size:2.1rem;margin-bottom:6px;}
.legal h2{font-size:1.3rem;margin:34px 0 12px;}
.legal h3{font-size:1.05rem;margin:22px 0 8px;}
.legal p{margin:0 0 16px;color:var(--grey-text);line-height:1.7;}
.legal ul{margin:0 0 18px 20px;}
.legal li{margin-bottom:8px;color:var(--grey-text);line-height:1.7;}
.legal .updated{color:var(--grey-muted);font-size:0.9rem;margin-bottom:24px;}
.legal a{color:var(--orange);}
