/* =========================================================================
   FindGlobalEntry design system. One stylesheet, every page. Adapted from the
   GEFinder visual language (sky + teal, Nunito display / Space Grotesk body)
   and rebranded. Mobile-first, light touch on animation.
   ========================================================================= */

/* ---- Fonts (self-hosted, font-display: block + preload = no flash) ---- */
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 400 900; font-display: block;
  src: url('/assets/fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 400 900; font-display: block;
  src: url('/assets/fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Grotesk'; font-style: normal; font-weight: 300 700; font-display: block;
  src: url('/assets/fonts/spacegrotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122, U+2212, U+FEFF, U+FFFD;
}

:root {
  --primary: #0EA5E9; --primary-dark: #0284C7; --teal: #14B8A6;
  --ink: #0F172A;
  --slate-50:#F8FAFC; --slate-100:#F1F5F9; --slate-200:#E2E8F0; --slate-300:#CBD5E1;
  --slate-400:#94A3B8; --slate-500:#64748B; --slate-600:#475569; --slate-700:#334155;
  --success:#10B981; --danger:#EF4444; --warn:#F59E0B;
  --bg:#F8FAFC;
  --font-display:'Nunito', system-ui, sans-serif;
  --font-body:'Space Grotesk', system-ui, sans-serif;
  --nav-h: 64px;
  --maxw: 1160px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; line-height: 1.12; }
p { margin: 0 0 1rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { .container { padding: 0 18px; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--teal)); color: #fff; box-shadow: 0 10px 24px -8px rgba(14,165,233,0.45); }
.btn-primary:hover { color:#fff; box-shadow: 0 14px 30px -8px rgba(14,165,233,0.55); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { color:#fff; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--slate-200); }
.btn-ghost:hover { color: var(--ink); border-color: var(--slate-300); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo b { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--slate-700); font-weight: 600; font-size: 15px; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-cta { padding: 9px 20px; border-radius: 999px; }
.menu-btn { display: none; background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--ink); padding: 4px; }

.mobile-menu { position: fixed; inset: var(--nav-h) 0 auto auto; width: 290px; max-width: 80vw;
  height: calc(100dvh - var(--nav-h)); background: #fff; box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transform: translateX(100%); transition: transform .25s ease; z-index: 1002; display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 15px 22px; color: var(--slate-700); font-weight: 600; border-bottom: 1px solid var(--slate-100); font-family: var(--font-display); }
.mobile-menu a:hover { background: var(--slate-50); color: var(--primary); }
.mobile-menu .menu-cta-wrap { margin-top: auto; padding: 18px 22px; border-top: 1px solid var(--slate-200); }
.menu-overlay { position: fixed; inset: var(--nav-h) 0 0 0; background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 1001; }
.menu-overlay.open { opacity: 1; visibility: visible; }

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .menu-btn { display: block; }
}

/* ---- Sections ---- */
.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section.alt { background: linear-gradient(180deg, #ECFEFF 0%, #F0FDFA 100%); }
.section.white { background: #fff; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.eyebrow { display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.section-title { font-size: 40px; font-weight: 900; max-width: 760px; }
.section-sub { font-size: 18px; color: var(--slate-600); margin-top: 14px; max-width: 640px; }
.section-head.center { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 64px 0 80px; }
.hero::before { content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse at 82% 22%, rgba(14,165,233,0.16) 0%, transparent 55%),
              radial-gradient(ellipse at 12% 88%, rgba(20,184,166,0.13) 0%, transparent 55%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--slate-200);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; box-shadow: 0 1px 2px rgba(15,23,42,0.04); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 1.6s ease-in-out infinite; }
.hero h1 { font-size: 60px; font-weight: 900; margin: 22px 0 18px; text-wrap: balance; }
/* Darker stops so clipped gradient text still meets large-text contrast (the
   lightest stop, teal-600 #0D9488, clears 3:1 on white). */
.gradient-text { background: linear-gradient(90deg, var(--primary-dark), #0D9488); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { font-size: 19px; color: var(--slate-600); margin: 0 0 28px; max-width: 540px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--slate-500); display: flex; align-items: center; gap: 8px; }

/* ---- Cards / generic ---- */
.card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 24px; }
.card-soft { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 22px; }

/* ---- Live feed card ---- */
.feed-card { background: #fff; border: 1px solid var(--slate-200); border-radius: 20px; padding: 22px;
  box-shadow: 0 30px 60px -22px rgba(15,23,42,0.16), 0 8px 20px -10px rgba(14,165,233,0.14); }
.feed-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.feed-label { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); }
.feed-list { display: flex; flex-direction: column; gap: 10px; }
.feed-row { display: flex; align-items: center; gap: 13px; padding: 13px 14px; background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 12px; }
.feed-code { width: 44px; height: 44px; border-radius: 10px; background: #E0F2FE; color: var(--primary); display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 13px; flex-shrink: 0; }
.feed-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.feed-when { color: var(--slate-500); font-size: 12.5px; }
.feed-foot { margin-top: 14px; padding: 11px 14px; background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: 10px; font-size: 12px; color: var(--slate-500); text-align: center; }
.feed-empty { padding: 18px; text-align: center; color: var(--slate-500); font-size: 13px; }

/* ---- Steps (how it works) ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--slate-200); border-radius: 18px; padding: 28px; }
.step-num { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.step-num span { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--teal)); color: #fff; display: grid; place-items: center; font-size: 14px; }
.step h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--slate-600); margin: 0; font-size: 15px; }

/* ---- Feature/benefit cards ---- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { background: #fff; border: 1px solid var(--slate-200); border-left: 4px solid var(--primary); border-radius: 12px; padding: 22px; }
.benefit.sms { border-left-color: var(--teal); }
.benefit h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.benefit p { color: var(--slate-600); margin: 0; font-size: 14.5px; }
.benefit-icon { width: 40px; height: 40px; border-radius: 10px; background: #E0F2FE; color: var(--primary); display: grid; place-items: center; margin-bottom: 14px; }
.benefit.sms .benefit-icon { background: #CCFBF1; color: #0D9488; }

/* ---- Problem list ---- */
.problem-list { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.problem-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--slate-200); border-left: 4px solid var(--danger); border-radius: 12px; padding: 16px 18px; }
.problem-item .pi-icon { width: 26px; height: 26px; border-radius: 50%; background: #FEE2E2; color: var(--danger); display: grid; place-items: center; font-weight: 900; flex-shrink: 0; }
.problem-item strong { display: block; margin-bottom: 2px; }
.problem-item p { margin: 0; color: var(--slate-600); font-size: 14px; }

/* ---- Pricing ---- */
.pricing-card { max-width: 520px; margin: 0 auto; background: #fff; border: 1px solid var(--slate-200);
  border-radius: 24px; padding: 44px 38px 36px; position: relative; box-shadow: 0 40px 80px -32px rgba(14,165,233,0.3); }
.pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--warn), #F97316); color: #fff; padding: 7px 18px; border-radius: 999px; font-family: var(--font-display); font-weight: 800; font-size: 13px; white-space: nowrap; }
.price-row { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--slate-100); margin-bottom: 22px; }
.price-amount { font-family: var(--font-display); font-size: 66px; font-weight: 900; line-height: 1; }
.price-period { color: var(--slate-500); font-size: 15px; margin-top: 6px; }
.features { list-style: none; padding: 0; margin: 0 0 26px; }
.features li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--slate-100); font-size: 15px; }
.features li:last-child { border-bottom: none; }
.feature-check { width: 22px; height: 22px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 900; flex-shrink: 0; }
.feature-check.sms { background: var(--teal); }
.pricing-foot { text-align: center; color: var(--slate-500); font-size: 13px; margin-top: 12px; }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--slate-200); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; padding: 20px 22px; background: none; border: none; text-align: left; font-family: var(--font-display); font-size: 16px; font-weight: 800; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; color: var(--ink); }
.faq-q:hover { background: var(--slate-50); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--teal)); color: #fff; display: grid; place-items: center; font-weight: 900; flex-shrink: 0; transition: transform .25s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a-inner { padding: 0 22px 20px; color: var(--slate-600); font-size: 15px; }

/* ---- CTA band ---- */
.cta-band { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; inset:0; pointer-events:none; background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 50%), radial-gradient(ellipse at 72% 72%, rgba(255,255,255,0.12) 0%, transparent 50%); }
.cta-band h2 { font-size: 42px; font-weight: 900; max-width: 720px; margin: 0 auto 14px; position: relative; }
.cta-band p { font-size: 18px; opacity: 0.95; max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .btn-ink { position: relative; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3); }

/* ---- Locations grid ---- */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.loc-card { background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; padding: 18px 20px; color: inherit; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.loc-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(15,23,42,0.16); border-color: var(--primary); color: inherit; }
.loc-card .loc-code { font-family: var(--font-display); font-weight: 900; color: var(--primary); font-size: 13px; letter-spacing: 0.04em; }
.loc-card h3 { font-size: 16px; font-weight: 800; margin: 6px 0 4px; }
.loc-card p { font-size: 13px; color: var(--slate-500); margin: 0; }
.state-block { margin-bottom: 28px; }
.state-block h3 { font-size: 18px; margin-bottom: 12px; }
.state-list { display: flex; flex-wrap: wrap; gap: 8px; }
.state-list .chip { background: #fff; border: 1px solid var(--slate-200); border-radius: 999px; padding: 6px 14px; font-size: 13px; color: var(--slate-600); }

/* ---- Breadcrumbs ---- */
.crumbs { font-size: 13px; color: var(--slate-500); margin-bottom: 16px; }
.crumbs a { color: var(--slate-500); }
.crumbs a:hover { color: var(--primary); }
.crumbs span { margin: 0 6px; color: var(--slate-300); }

/* ---- Prose (article-style content) ---- */
.prose { max-width: 760px; }
.prose h2 { font-size: 28px; margin: 36px 0 12px; }
.prose h3 { font-size: 20px; margin: 26px 0 8px; }
.prose p { color: var(--slate-700); font-size: 16px; }
.prose ul { color: var(--slate-700); padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }

/* ---- Forms ---- */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 7px; color: var(--ink); }
.form-hint { font-size: 12.5px; color: var(--slate-500); margin-top: 5px; }
.input, select.input, textarea.input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--slate-300); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff;
}
.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }
.checkboxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; max-height: 280px; overflow-y: auto; border: 1px solid var(--slate-200); border-radius: 12px; padding: 14px; background: var(--slate-50); }
.checkbox-row { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; }
.checkbox-row input { margin-top: 3px; }
.toggle-row { display: flex; align-items: center; gap: 10px; padding: 12px 0; }

/* ---- Alerts / flash ---- */
.flash { border-radius: 10px; padding: 13px 16px; margin-bottom: 18px; font-size: 14px; }
.flash.ok { background: #F0FDF4; border: 1px solid #86EFAC; color: #166534; }
.flash.err { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.field-error { color: var(--danger); font-size: 13px; margin-top: 5px; }

/* ---- Trust / disclaimer ---- */
.disclaimer { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 12px; padding: 16px 18px; font-size: 13px; color: var(--slate-600); }
.disclaimer strong { color: var(--slate-700); }

/* ---- Footer ---- */
.footer { background: #000; color: #94a3b8; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { color: var(--primary); font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; margin-bottom: 10px; }
.footer-desc { color: #cbd5e1; font-size: 0.92rem; max-width: 280px; }
.footer h4 { color: #fff; font-size: 1rem; margin: 0 0 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: #cbd5e1; font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; font-size: 0.82rem; color: #94a3b8; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.muted { color: var(--slate-500); }
.stack-sm > * + * { margin-top: 10px; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.35);} }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps, .benefits, .loc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .section-title { font-size: 30px; }
  .hero h1 { font-size: 42px; }
}
@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .hero h1 { font-size: 34px; }
  .hero .lead { font-size: 17px; }
  .price-amount { font-size: 54px; }
  .checkboxes { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}
