/* ============================================================
   SharksFlow — shared site chrome (base, nav, footer, hero, sections)
   Used by all standalone pages (/services, /process, /work, /about,
   /pricing, /faq, /contact). Page-specific styles stay inline per page.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --brand: #14b4ff; --brand-soft: #A4F4FD; --bg: #080808; }
html, body { font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; background: var(--bg); color: #fff; overflow-x: clip; scroll-behavior: smooth; width: 100%; max-width: 100%; }
body.menu-open { overflow: hidden; }
img, svg, video { max-width: 100%; display: block; }
::selection { background: rgba(20, 180, 255, 0.28); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.bg-video-wrap { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(120% 90% at 50% 0%, #0B2551 0%, #0a1428 35%, #080808 75%); }
.bg-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.bg-overlay { position: fixed; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(900px circle at 50% 0%, rgba(20,180,255,0.10), transparent 55%), linear-gradient(to bottom, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.35) 35%, rgba(8,8,8,0.92) 78%, var(--bg) 100%); }
.noise-svg { position: absolute; width: 0; height: 0; }

@keyframes shiny { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.animate-shiny { animation: shiny 6s linear infinite; }

.liquid-glass { background: rgba(255,255,255,0.015); background-blend-mode: luminosity; backdrop-filter: blur(8px); border: none; box-shadow: inset 0 1px 1px rgba(255,255,255,0.09); position: relative; overflow: hidden; }
.liquid-glass::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px; background: linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.14) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.14) 80%, rgba(255,255,255,0.42) 100%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; pointer-events: none; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3.5rem); }
.z-10 { position: relative; z-index: 10; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroRise { from { transform: translateY(18px); } to { transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

nav { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,0.07); background: rgba(8,8,8,0.55); backdrop-filter: blur(18px); animation: fadeDown 0.6s 0.05s ease-out both; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-logo svg { width: 30px; height: 30px; display: block; }
.nav-logo-text { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.03em; background: linear-gradient(90deg, #fff 40%, var(--brand) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.nav-links { display: none; gap: 2rem; align-items: center; }
@media(min-width:900px){ .nav-links { display: flex; flex-direction: row; } }
.nav-links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.nav-active, .nav-links a[aria-current="page"] { color: #fff; }

.mobile-menu { position: fixed; inset: 0; z-index: 60; background: rgba(6,6,6,0.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); display: flex; flex-direction: column; padding: clamp(1.25rem, 5vw, 2.5rem); opacity: 0; visibility: hidden; transition: opacity 0.4s cubic-bezier(.22,1,.36,1), visibility 0.4s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
@media(min-width:900px){ .mobile-menu { display: none !important; } }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; height: 4rem; flex-shrink: 0; }
.mobile-menu-top .nav-logo svg { width: 32px; height: 32px; }
.mobile-menu-close { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-menu-links { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 0.25rem; }
.mobile-menu-links a { font-size: clamp(2rem, 9vw, 3rem); font-weight: 700; letter-spacing: -0.03em; color: rgba(255,255,255,0.55); padding: 0.4rem 0; transition: color 0.25s, transform 0.25s; transform: translateY(12px); opacity: 0; }
.mobile-menu.open .mobile-menu-links a { transform: translateY(0); opacity: 1; }
.mobile-menu.open .mobile-menu-links a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-menu-links a:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.open .mobile-menu-links a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu-links a:nth-child(4) { transition-delay: 0.23s; }
.mobile-menu.open .mobile-menu-links a:nth-child(5) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-menu-links a:nth-child(6) { transition-delay: 0.33s; }
.mobile-menu.open .mobile-menu-links a:nth-child(7) { transition-delay: 0.38s; }
.mobile-menu.open .mobile-menu-links a:nth-child(8) { transition-delay: 0.43s; }
.mobile-menu-links a:active { color: var(--brand); }
.mobile-menu-footer { flex-shrink: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: #fff; color: #000; font-weight: 600; font-size: 1rem; padding: 1rem; border-radius: 100px; }
.mobile-menu-socials { display: flex; gap: 0.75rem; }
.mobile-menu-socials a { width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); }

.cta-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: #000; font-weight: 600; font-size: 0.85rem; padding: 0.65rem 1.25rem; border-radius: 100px; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.cta-btn:hover { background: rgba(255,255,255,0.88); }
.cta-btn:active { transform: scale(0.97); }
.cta-btn svg { transition: transform 0.2s; }
.cta-btn:hover svg { transform: translateX(2px); }
.ghost-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: transparent; color: #fff; font-weight: 500; font-size: 0.875rem; padding: 0.65rem 1.25rem; border-radius: 100px; border: 1px solid rgba(255,255,255,0.18); cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.ghost-btn:hover { background: rgba(255,255,255,0.06); }
.nav-cta { display: inline-flex; align-items: center; gap: 0.45rem; background: #fff; color: #000; font-weight: 600; font-size: 0.82rem; padding: 0.6rem 1.15rem; border-radius: 100px; white-space: nowrap; transition: background 0.2s, transform 0.15s; }
.nav-cta:hover { background: rgba(255,255,255,0.88); }
.nav-cta:active { transform: scale(0.97); }
.nav-mobile-btn { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: #fff; cursor: pointer; display: none; align-items: center; justify-content: center; }
@media(max-width:899px){ .nav-mobile-btn { display: flex; } #nav-cta-desk { display: none !important; } }

.hero { padding-block: clamp(4rem, 9vw, 7rem) clamp(2rem, 5vw, 3rem); text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { animation: fadeUp 0.7s 0.15s cubic-bezier(.22,1,.36,1) both; }
.hero h1 { margin-top: 1.25rem; font-size: clamp(2.2rem, 8vw, 5rem); font-weight: 700; letter-spacing: -0.045em; line-height: 0.95; animation: heroRise 0.7s cubic-bezier(.22,1,.36,1) both; }
.hero-line2 { background-image: linear-gradient(to right, #091020 0%, #0B2551 12.5%, var(--brand-soft) 32.5%, var(--brand) 50%, #0B2551 67.5%, #091020 87.5%, #091020 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero p { margin-top: 1.5rem; color: rgba(255,255,255,0.6); max-width: 42rem; font-size: clamp(0.95rem, 1.6vw, 1.1rem); line-height: 1.6; animation: fadeUp 0.8s 0.5s cubic-bezier(.22,1,.36,1) both; }
.hero-actions { margin-top: 2.5rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.8s 0.7s cubic-bezier(.22,1,.36,1) both; }

.section { padding-block: clamp(2rem, 5vw, 4rem) clamp(4rem, 9vw, 7rem); }
.section-head { max-width: 46rem; }
.center { text-align: center; }
.center .section-title, .center .section-sub { margin-left: auto; margin-right: auto; }
.section-title { margin-top: 1.25rem; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.04; max-width: 22ch; }
.section-sub { margin-top: 1.25rem; color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.65; max-width: 46ch; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand); }
.eyebrow-dot { width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); }

.final-cta { padding: clamp(2rem,5vw,4rem) clamp(1.25rem, 5vw, 3.5rem) clamp(5rem,9vw,8rem); }
.cta-inner { border-radius: 1.75rem; padding: clamp(2.5rem,6vw,5rem) clamp(1.5rem,4vw,3rem); text-align: center; position: relative; overflow: hidden; max-width: 1180px; margin-inline: auto; }
.cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px circle at 50% 0%, rgba(20,180,255,0.18), transparent 70%); }
.cta-h2 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.04; position: relative; }
.cta-p { margin-top: 1.5rem; color: rgba(255,255,255,0.6); max-width: 30rem; margin-inline: auto; font-size: 0.95rem; line-height: 1.65; position: relative; }
.cta-btns { margin-top: 2.5rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; position: relative; }

footer { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 4rem; padding-bottom: 2rem; position: relative; z-index: 10; padding-inline: clamp(1.25rem, 5vw, 3.5rem); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-bottom: 3rem; max-width: 1180px; margin-inline: auto; }
@media(min-width:768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { margin-top: 1.25rem; font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.45); max-width: 32ch; }
.footer-col h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); padding: 0.35rem 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.72rem; color: rgba(255,255,255,0.3); max-width: 1180px; margin-inline: auto; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a { width: 2.2rem; height: 2.2rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.footer-socials a:hover { color: #fff; border-color: var(--brand); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
