@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Assistant', sans-serif; background: #f8f7f5; color: #1a1a1a; direction: rtl; position: relative; }
a { color: inherit; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* Fine grain texture, applied over the whole page for a less flat, more premium surface */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Subtle tech dot-grid, used as a background layer on dark sections */
.grid-texture { background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px); background-size: 26px 26px; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.8); backdrop-filter: blur(14px) saturate(1.6); border-bottom: 1px solid #e5e7eb; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-wordmark { font-family: Georgia, serif; font-size: 22px; font-weight: 700; color: #0f1923; letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-links a { font-size: 14px; font-weight: 600; color: #4b5563; text-decoration: none; white-space: nowrap; transition: color 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: #1e3a5f; }
.nav-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.nav-login { font-size: 13.5px; font-weight: 600; color: #4b5563; text-decoration: none; white-space: nowrap; }
.nav-login:hover { color: #1e3a5f; }
.btn { display: inline-block; text-decoration: none; font-weight: 700; border-radius: 8px; white-space: nowrap; }
.btn-primary { position: relative; overflow: hidden; background: linear-gradient(135deg, #f59e0b, #ef4444); color: white; padding: 12px 26px; font-size: 15px; }
.btn-primary::after { content: ''; position: absolute; top: 0; bottom: 0; width: 40%; left: -60%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: left 0.6s ease; }
.btn-primary:hover::after { left: 130%; }
.btn-secondary { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); padding: 11px 24px; font-size: 15px; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); }
.nav .btn-primary { padding: 10px 22px; font-size: 14px; }

@media (max-width: 900px) {
  .nav-links { order: 3; width: 100%; justify-content: center; padding-top: 8px; border-top: 1px solid #e5e7eb; margin-top: 4px; }
}

/* HERO */
.hero { background: linear-gradient(135deg, #0a121b 0%, #1e3a5f 100%); color: white; padding: 96px 32px 72px; position: relative; overflow: hidden; text-align: center; }
.hero::before { content: ''; position: absolute; top: -140px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(245,158,11,0.22) 0%, transparent 70%); pointer-events: none; animation: blobDrift1 14s ease-in-out infinite alternate; }
.hero::after { content: ''; position: absolute; bottom: -150px; left: -120px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(239,68,68,0.16) 0%, transparent 70%); pointer-events: none; animation: blobDrift2 16s ease-in-out infinite alternate; }
.hero-mesh { position: absolute; inset: 0; pointer-events: none; }
.hero-mesh::before { content: ''; position: absolute; top: 20%; left: 50%; width: 640px; height: 640px; margin-left: -320px; background: radial-gradient(circle, rgba(30,58,95,0.55) 0%, transparent 65%); animation: blobDrift3 20s ease-in-out infinite alternate; }
.hero-spot { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.4s ease; background: radial-gradient(320px circle at var(--x, 50%) var(--y, 30%), rgba(245,158,11,0.14), transparent 70%); }
.hero:hover .hero-spot { opacity: 1; }
.hero-inner { max-width: 780px; margin: 0 auto; position: relative; }
@keyframes blobDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-30px, 40px) scale(1.15); } }
@keyframes blobDrift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(40px, -30px) scale(1.1); } }
@keyframes blobDrift3 { from { transform: translate(0,0) scale(1); } to { transform: translate(-24px, -36px) scale(1.08); } }

/* smaller, non-hero page header used on Product/Use Cases/Pricing */
.page-hero { background: linear-gradient(135deg, #0a121b 0%, #1e3a5f 100%); color: white; padding: 64px 32px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -120px; left: 50%; width: 560px; height: 560px; margin-left: -280px; background: radial-gradient(circle, rgba(245,158,11,0.16) 0%, transparent 70%); pointer-events: none; animation: blobDrift1 15s ease-in-out infinite alternate; }
.page-hero > * { position: relative; }
.page-hero .eyebrow { color: #fbbf24; }
.page-hero h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 12px; }
.page-hero p { font-size: 16.5px; opacity: 0.8; max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* HERO MOCKUP */
.hero-mockup { max-width: 480px; margin: 44px auto 0; background: #ffffff; border-radius: 14px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); overflow: hidden; text-align: right; position: relative; transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform 0.15s ease-out; will-change: transform; }
.frame-mockup.tilt { transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform 0.15s ease-out; will-change: transform; }
.mockup-chrome { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #f1f2f4; border-bottom: 1px solid #e5e7eb; }
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.mockup-chrome-title { margin-right: 10px; font-size: 12px; color: #6b7280; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; flex: 1; }
.mockup-body { padding: 22px 22px 24px; position: relative; }
.mockup-line { font-size: 13.5px; color: #374151; line-height: 1.6; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px 14px; animation: mockupLine 7s ease-in-out infinite; min-height: 90px; display: flex; align-items: center; overflow: hidden; }
.mockup-arrow { font-size: 12px; color: #9ca3af; font-weight: 700; text-align: center; margin: 10px 0; animation: mockupArrow 7s ease-in-out infinite; }
.mockup-risk { background: #fef9f0; border: 1px solid #fde68a; border-right: 3px solid #f59e0b; border-radius: 8px; padding: 14px 16px; animation: mockupRisk 7s ease-in-out infinite; }
.mockup-risk-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; flex-wrap: wrap; gap: 6px; min-height: 46px; }
.mockup-badge { font-size: 11px; font-weight: 700; color: #92400e; background: rgba(245,158,11,0.18); padding: 3px 9px; border-radius: 12px; }
.mockup-amount { font-size: 14px; font-weight: 800; color: #92400e; }
.mockup-risk-title { font-size: 13.5px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; line-height: 1.5; min-height: 41px; display: flex; align-items: center; overflow: hidden; }
.mockup-check { font-size: 12px; color: #15803d; font-weight: 600; }
@keyframes mockupLine { 0% { opacity: 0; transform: translateY(6px); } 8% { opacity: 1; transform: translateY(0); } 80% { opacity: 1; } 92%, 100% { opacity: 0; } }
@keyframes mockupArrow { 0%, 20% { opacity: 0; } 28% { opacity: 1; } 80% { opacity: 1; } 92%, 100% { opacity: 0; } }
@keyframes mockupRisk { 0%, 38% { opacity: 0; transform: translateY(10px); } 46% { opacity: 1; transform: translateY(0); } 80% { opacity: 1; } 92%, 100% { opacity: 0; } }

/* Static (non-looping) illustrative screenshot-style frame, used on Product/Use Cases pages */
.frame-mockup { max-width: 100%; background: #ffffff; border-radius: 14px; box-shadow: 0 20px 40px -18px rgba(15,25,35,0.3); overflow: hidden; text-align: right; border: 1px solid #e5e7eb; }
.frame-mockup .mockup-chrome { background: #f1f2f4; }
.frame-mockup .mockup-body { padding: 20px; }

.badge { position: relative; display: inline-block; background: rgba(245,158,11,0.14); border: 1px solid rgba(245,158,11,0.4); color: #fbbf24; padding: 6px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 24px; overflow: hidden; }
.badge::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60%; left: -60%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent); animation: badgeShine 4.5s ease-in-out infinite; }
@keyframes badgeShine { 0% { left: -60%; } 45%, 100% { left: 140%; } }
.hero h1 { font-size: 54px; font-weight: 800; line-height: 1.2; letter-spacing: -1.6px; margin-bottom: 22px; }
.hero h1 span { background: linear-gradient(90deg, #fbbf24, #f59e0b 45%, #ef4444); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradientShift 6s ease-in-out infinite; }
@keyframes gradientShift { 0%, 100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero-sub { font-size: 18px; opacity: 0.8; line-height: 1.7; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* STATS BAR */
.stats-bar { background: linear-gradient(120deg, #fbbf24, #f59e0b 55%, #ef4444); background-size: 200% auto; animation: gradientShift 10s ease-in-out infinite; padding: 26px 32px; display: flex; }
.stats-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; width: 100%; }
.stat { flex: 1; text-align: center; position: relative; transition: transform 0.25s ease; }
.stat:not(:last-child)::after { content: ''; position: absolute; left: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(0,0,0,0.15); }
.stat:hover { transform: translateY(-3px); }
.stat-value { font-size: 26px; font-weight: 800; color: #1a1a1a; line-height: 1; }
.stat-label { font-size: 12.5px; color: rgba(0,0,0,0.6); margin-top: 5px; font-weight: 600; }

/* SECTIONS */
.section { padding: 72px 32px; }
.section-alt { background: white; }
.section-title-wrap { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow { font-size: 12.5px; font-weight: 700; color: #f59e0b; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.section-h2 { font-size: 30px; font-weight: 800; color: #0f1923; letter-spacing: -0.5px; line-height: 1.3; margin-bottom: 14px; }
.section-p { font-size: 16px; color: #6b7280; line-height: 1.7; }

/* PROBLEM / USP */
.pu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.problem { background: #fef9f0; border: 1px solid #fde68a; border-right: 4px solid #f59e0b; border-radius: 10px; padding: 28px 30px; }
.usp { background: #eff6ff; border: 1px solid #bfdbfe; border-right: 4px solid #1e3a5f; border-radius: 10px; padding: 28px 30px; }
.pu-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.problem .pu-title { color: #92400e; }
.usp .pu-title { color: #1e3a5f; }
.pu-text { font-size: 15.5px; line-height: 1.75; }
.problem .pu-text { color: #78350f; }
.usp .pu-text { color: #1e3a8a; }
.pu-text strong { color: #0f1923; }

/* CAPABILITIES */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap-card { position: relative; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; padding: 22px 20px; }
.cap-card::before { content: ''; position: absolute; inset: -1px; border-radius: 10px; padding: 1px; background: linear-gradient(135deg, #fbbf24, #ef4444); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.25s ease; pointer-events: none; }
.cap-card:hover::before { opacity: 1; }
.cap-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(239,68,68,0.15)); font-size: 19px; margin-bottom: 12px; transition: transform 0.25s ease; }
.cap-card:hover .cap-icon { transform: scale(1.08) rotate(-4deg); }
.cap-title { font-size: 14.5px; font-weight: 700; color: #111; margin-bottom: 8px; }
.cap-text { font-size: 13px; color: #6b7280; line-height: 1.6; }

/* PRODUCT PAGE — capability deep-dive rows */
.cap-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; padding: 56px 0; border-bottom: 1px solid #e5e7eb; }
.cap-row:last-child { border-bottom: none; }
.cap-row.reverse .cap-row-visual { order: 2; }
.cap-row-num { font-size: 13px; font-weight: 800; color: #f59e0b; letter-spacing: 1px; margin-bottom: 10px; }
.cap-row-title { font-size: 24px; font-weight: 800; color: #0f1923; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.cap-row-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.cap-row-list li { font-size: 14.5px; color: #374151; line-height: 1.65; display: flex; gap: 8px; align-items: flex-start; }
.cap-row-list li::before { content: '✓'; color: #f59e0b; font-weight: 800; flex-shrink: 0; }
.cap-row-text { font-size: 15px; color: #6b7280; line-height: 1.75; }
.cap-row-visual { display: flex; align-items: center; justify-content: center; }

@media (max-width: 860px) {
  .cap-row, .cap-row.reverse { grid-template-columns: 1fr; }
  .cap-row.reverse .cap-row-visual { order: 0; }
}

/* USE CASES */
.usecase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.usecase-card { background: linear-gradient(135deg, #0a121b 0%, #1e3a5f 100%); border-radius: 12px; padding: 30px 28px; color: white; position: relative; overflow: hidden; }
.usecase-card::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.usecase-card::after { content: ''; position: absolute; top: -60px; left: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%); pointer-events: none; }
.usecase-card > * { position: relative; }
.usecase-num { font-size: 12px; font-weight: 700; color: #fbbf24; letter-spacing: 1px; margin-bottom: 10px; }
.usecase-title { font-size: 19px; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.usecase-text { font-size: 14px; opacity: 0.78; line-height: 1.7; }

/* USE CASES PAGE — full narrative sections */
.uc-section { max-width: 900px; margin: 0 auto 64px; }
.uc-section:last-child { margin-bottom: 0; }
.uc-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.uc-num { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, #0f1923, #1e3a5f); color: #fbbf24; font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.uc-title { font-size: 22px; font-weight: 800; color: #0f1923; }
.uc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
.uc-col { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; padding: 20px 22px; }
.uc-col-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #9ca3af; margin-bottom: 10px; }
.uc-col.before .uc-col-label { color: #92400e; }
.uc-col.after .uc-col-label { color: #1e3a5f; }
.uc-col p { font-size: 14.5px; color: #374151; line-height: 1.7; }
.uc-impact { background: #fef9f0; border: 1px solid #fde68a; border-right: 4px solid #f59e0b; border-radius: 10px; padding: 16px 20px; font-size: 14.5px; color: #78350f; line-height: 1.7; }
.uc-impact strong { color: #0f1923; }

@media (max-width: 700px) {
  .uc-cols { grid-template-columns: 1fr; }
}

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; position: relative; }
.step:not(:last-child)::after { content: '←'; position: absolute; left: -12px; top: 22px; color: #d1d5db; font-size: 16px; }
.step-num { width: 48px; height: 48px; background: linear-gradient(135deg, #0f1923, #1e3a5f); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 700; margin: 0 auto 14px; box-shadow: 0 0 0 4px rgba(245,158,11,0.12); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.step:hover .step-num { box-shadow: 0 0 0 8px rgba(245,158,11,0.18); transform: scale(1.06); }
.step-title { font-size: 14.5px; font-weight: 700; color: #111; margin-bottom: 6px; }
.step-text { font-size: 13px; color: #6b7280; line-height: 1.6; }

/* PILOT / CTA */
.pilot-box { position: relative; overflow: hidden; max-width: 760px; margin: 0 auto; background: linear-gradient(135deg, #0a121b 0%, #1e3a5f 100%); border-radius: 16px; padding: 44px 48px; color: white; text-align: center; }
.pilot-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.pilot-box::after { content: ''; position: absolute; bottom: -100px; right: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%); pointer-events: none; animation: blobDrift1 14s ease-in-out infinite alternate; }
.pilot-box > * { position: relative; }
.pilot-box h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.pilot-box p { font-size: 15.5px; opacity: 0.75; line-height: 1.75; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.pilot-price { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
.pilot-price-item { text-align: center; }
.pilot-price-value { font-size: 20px; font-weight: 800; color: #fbbf24; }
.pilot-price-label { font-size: 12px; opacity: 0.6; margin-top: 4px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; border-right: 3px solid transparent; padding: 22px 18px 22px 0; margin-right: -18px; transition: border-color 0.25s ease, background 0.25s ease; }
.faq-item:hover { border-right-color: #f59e0b; background: rgba(245,158,11,0.04); }
.faq-item:first-child { padding-top: 0; }
.faq-q { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 10px; }
.faq-a { font-size: 14.5px; color: #6b7280; line-height: 1.75; }

/* FOOTER */
.footer { background: #0f1923; color: rgba(255,255,255,0.6); padding: 44px 32px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.footer-brand { font-family: Georgia, serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 8px; }
.footer-tagline { font-size: 13.5px; max-width: 320px; line-height: 1.6; }
.footer-contact { text-align: left; }
.footer-contact a { font-size: 14px; color: #fbbf24; text-decoration: none; font-weight: 600; }
.footer-copy { max-width: 1100px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12.5px; text-align: center; }

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

/* HOVER MOTION */
.cap-card, .usecase-card, .problem, .usp, .cap-row-visual .frame-mockup, .uc-col { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.cap-card:hover { border-color: #f59e0b; transform: translateY(-5px); box-shadow: 0 14px 28px -16px rgba(15,25,35,0.25); }
.usecase-card:hover, .problem:hover, .usp:hover { transform: translateY(-5px); box-shadow: 0 18px 32px -18px rgba(0,0,0,0.28); }
.uc-col:hover { transform: translateY(-3px); border-color: #f59e0b; box-shadow: 0 12px 24px -16px rgba(15,25,35,0.2); }
.uc-num { transition: transform 0.25s ease, box-shadow 0.25s ease; box-shadow: 0 0 0 4px rgba(245,158,11,0.12); }
.uc-head:hover .uc-num { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(245,158,11,0.18); }
.btn { transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(239,68,68,0.45); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before, .hero::after, .hero-mesh::before, .mockup-line, .mockup-arrow, .mockup-risk,
  .page-hero::before, .pilot-box::after, .founders-box::after,
  .badge::after, .btn-primary::after, .hero h1 span, .stats-bar, .plan-card.featured {
    animation: none; opacity: 1; transform: none; background-position: 0 center;
  }
  .hero-spot { display: none; }
  .hero-mockup, .frame-mockup.tilt { transform: none !important; }
  .cap-card:hover, .usecase-card:hover, .problem:hover, .usp:hover, .btn-primary:hover,
  .plan-card:hover, .uc-col:hover, .stat:hover, .step:hover .step-num, .uc-head:hover .uc-num,
  .cap-card:hover .cap-icon {
    transform: none;
  }
}

@media (max-width: 480px) {
  .nav-inner { padding: 10px 14px; }
  .nav-wordmark { font-size: 18px; }
  .nav-login { font-size: 12px; }
  .nav .btn-primary { padding: 8px 16px; font-size: 13px; }
}

@media (max-width: 800px) {
  .hero h1 { font-size: 38px; }
  .pu-grid, .cap-grid, .usecase-grid, .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .stats-bar-inner { flex-wrap: wrap; gap: 16px 0; }
  .stat { flex: 1 1 50%; }
  .pilot-box { padding: 32px 24px; }
}

/* PRICING PAGE */
.plans { display: flex; gap: 20px; max-width: 1060px; margin: 0 auto; align-items: stretch; flex-wrap: wrap; justify-content: center; }
.plan-card { background: #fff; border-radius: 18px; padding: 32px 28px 36px; flex: 1; min-width: 260px; max-width: 320px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 2px solid #e5e7eb; position: relative; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.plan-card:hover { transform: translateY(-6px); border-color: #fbbf24; box-shadow: 0 20px 36px -18px rgba(15,25,35,0.25); }
.plan-card.featured { border-color: #f59e0b; box-shadow: 0 8px 32px rgba(245,158,11,0.15); animation: featuredGlow 3.5s ease-in-out infinite; }
.plan-card.featured:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -14px rgba(245,158,11,0.35); }
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(245,158,11,0.15); }
  50% { box-shadow: 0 8px 40px rgba(245,158,11,0.3); }
}
.plan-featured-badge { position: absolute; top: -14px; right: 50%; transform: translateX(50%); background: #f59e0b; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.3px; }
.plan-name { font-size: 18px; font-weight: 700; color: #0f1923; margin-bottom: 4px; }
.plan-subtitle { font-size: 13px; color: #6b7280; margin-bottom: 20px; }
.plan-price .amount { font-size: 38px; font-weight: 800; color: #0f1923; }
.plan-price .currency { font-size: 19px; font-weight: 700; color: #6b7280; margin-right: 4px; }
.plan-price .period { font-size: 14px; color: #6b7280; margin-right: 4px; }
.plan-annual-note { font-size: 12px; color: #6b7280; margin: 6px 0 20px; min-height: 18px; }
.plan-cta { display: block; width: 100%; padding: 13px; border-radius: 10px; font-size: 15px; font-weight: 700; text-align: center; margin-bottom: 26px; }
.plan-cta.primary { background: #f59e0b; color: #fff; border: none; }
.plan-cta.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(245,158,11,0.45); }
.plan-cta.secondary { background: #fef9f0; color: #78350f; border: none; }
.plan-divider { border: none; border-top: 1px solid #e5e7eb; margin-bottom: 22px; }
.plan-features-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #aaa; margin-bottom: 14px; }
.plan-feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.plan-feature-list li { font-size: 14px; color: #374151; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.plan-feature-list li .check { color: #f59e0b; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.plan-feature-list li .check.grey { color: #ccc; }

.founders-box { position: relative; overflow: hidden; max-width: 1060px; margin: 52px auto 0; background: linear-gradient(135deg, #0a121b 0%, #1e3a5f 100%); border-radius: 18px; padding: 36px 40px; display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; color: white; }
.founders-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.founders-box::after { content: ''; position: absolute; top: -80px; left: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%); pointer-events: none; animation: blobDrift2 15s ease-in-out infinite alternate; }
.founders-box > * { position: relative; }
.founders-price-chip { transition: transform 0.2s ease, background 0.2s ease; }
.founders-price-chip:hover { transform: translateY(-3px); background: rgba(255,255,255,0.14); }
.founders-left, .founders-right { flex: 1; min-width: 240px; }
.founders-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #fbbf24; margin-bottom: 10px; }
.founders-left h2 { font-size: 23px; font-weight: 800; line-height: 1.4; margin-bottom: 12px; }
.founders-left p { font-size: 14px; color: #b8c2cf; line-height: 1.7; }
.founders-terms { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.founders-terms li { font-size: 14px; color: #e2e8f0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.founders-terms li .dot { color: #fbbf24; font-size: 18px; line-height: 1; flex-shrink: 0; }
.founders-prices { margin-top: 18px; display: flex; gap: 14px; flex-wrap: wrap; }
.founders-price-chip { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 16px; text-align: center; }
.founders-price-chip .label { font-size: 11px; color: #9aa5b1; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px; }
.founders-price-chip .price { font-size: 17px; font-weight: 700; color: #fff; }
.founders-price-chip .regular { font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: line-through; margin-top: 2px; }

@media (max-width: 900px) {
  .plan-card.featured { order: -1; }
}
