/* Shared styles for WayStaq targeted landing pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark: #0A1628; --blue: #0066FF; --teal: #0891b2; --mid: #1a2d4e;
  --muted: #94a3b8; --border: rgba(255,255,255,0.08); --radius: 14px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--dark); color: #ffffff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(10,22,40,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; gap: 32px; }
.nav-logo { font-size: 1.25rem; font-weight: 800; color: #ffffff; letter-spacing: -0.02em; margin-right: auto; }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: #ffffff; }
.nav-links .signin { color: #ffffff; }
.btn-nav { background: var(--blue); color: #ffffff !important; padding: 9px 20px; border-radius: 10px; font-weight: 600; font-size: 0.875rem; transition: opacity 0.2s; }
.btn-nav:hover { opacity: 0.88; }

/* HERO */
.hero { max-width: 1140px; margin: 0 auto; padding: 96px 24px 72px; text-align: center; }
.hero-eyebrow { display: inline-block; background: rgba(0,102,255,0.12); border: 1px solid rgba(0,102,255,0.3); color: #60a5fa; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 28px; }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, #60a5fa, #0891b2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; color: #94a3b8; max-width: 560px; margin: 0 auto 40px; font-weight: 400; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--blue); color: #ffffff; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 1rem; transition: opacity 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: #ffffff; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; transition: background 0.2s; display: inline-block; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* TRUST STRIP */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); padding: 20px 24px; }
.trust-strip-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--muted); font-weight: 500; }
.trust-item .tick { color: #34d399; font-size: 1rem; }

/* SECTIONS */
section { padding: 80px 24px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; }
.section-title em { font-style: normal; background: linear-gradient(135deg, #60a5fa, #0891b2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 580px; margin-bottom: 52px; line-height: 1.7; }

/* PAIN POINTS */
.pain-section { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.pain-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.pain-card .pain-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.pain-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pain-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: border-color 0.2s, transform 0.2s; }
.feature-card:hover { border-color: rgba(0,102,255,0.4); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.fi-blue { background: rgba(0,102,255,0.15); } .fi-teal { background: rgba(8,145,178,0.15); }
.fi-green { background: rgba(52,211,153,0.12); } .fi-amber { background: rgba(251,191,36,0.12); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, rgba(0,102,255,0.15), rgba(8,145,178,0.1)); border-top: 1px solid rgba(0,102,255,0.2); border-bottom: 1px solid rgba(0,102,255,0.2); text-align: center; padding: 72px 24px; }
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-band p { color: var(--muted); font-size: 1rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* FOOTER */
footer { background: #060e1a; border-top: 1px solid var(--border); padding: 48px 24px 36px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.footer-brand { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.footer-brand span { color: var(--blue); }
.footer-tagline { font-size: 0.85rem; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: flex-end; }
.footer-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: #ffffff; }
.footer-copy { max-width: 1140px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.8rem; color: #475569; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* BREADCRUMB */
.breadcrumb { max-width: 1140px; margin: 0 auto; padding: 16px 24px 0; font-size: 0.8rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: white; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .hero { padding: 64px 20px 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .trust-strip-inner { gap: 24px; justify-content: flex-start; }
}
@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
