/* ============================================================
   Outpost Suite — marketing site v2 (2026)
   Adobe-CC-inspired structure, Outpost navy/amber identity.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy-900: #16223f;
  --navy-800: #1f2d4d;
  --navy-700: #2a3a61;
  --amber-500: #ffb500;
  --amber-600: #e6a300;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --bg-page: #f5f6fa;
  --bg-surface: #ffffff;
  --bg-subtle: #f8fafc;
  --text: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;
  --border: #e2e8f0;
  --border-2: #cbd5e1;
  --success: #16a34a;
  --danger: #dc2626;
  --r: 12px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.18);
  --font: "Geist", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --hero-grad: linear-gradient(118deg, #16223f 0%, #1f2d4d 46%, #2a3d6e 100%);
  /* app accent colors (match suite registry) */
  --c-print: #2563eb;
  --c-dashboard: #1d4ed8;
  --c-crm: #dc2626;
  --c-livescan: #0d9488;
  --c-passport: #7c3aed;
  --c-packsmart: #e6a300;
  --c-intl: #0284c7;
  --c-announce: #64748b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ---------- Reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22, 34, 63, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .wrap { display: flex; align-items: center; gap: 18px; min-height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.brand .suite { color: #7eb3ff; }
.site-nav { margin-left: auto; display: flex; gap: 2px; overflow-x: auto; white-space: nowrap; }
.site-nav a { color: rgba(255, 255, 255, 0.82); font-size: 14px; font-weight: 600; padding: 8px 13px; border-radius: 9px; }
.site-nav a:hover { background: rgba(255, 255, 255, 0.1); text-decoration: none; color: #fff; }
.site-nav a.active { background: rgba(255, 181, 0, 0.16); color: var(--amber-500); }
.nav-cta { background: var(--amber-500); color: var(--navy-900) !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--amber-600) !important; }
.edge-bar { height: 3px; background: linear-gradient(90deg, var(--amber-500), var(--blue-500) 55%, transparent 95%); }

/* ---------- Hero ---------- */
.hero {
  background: var(--hero-grad);
  color: #fff; position: relative; overflow: hidden;
  padding: 84px 0 96px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 24px 24px; opacity: 0.05;
  mask-image: linear-gradient(150deg, #000 0%, rgba(0,0,0,0.25) 55%, transparent 80%);
  -webkit-mask-image: linear-gradient(150deg, #000 0%, rgba(0,0,0,0.25) 55%, transparent 80%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 300px at 82% 12%, rgba(255, 181, 0, 0.15), transparent 62%),
    radial-gradient(760px 340px at 18% 96%, rgba(59, 130, 246, 0.22), transparent 62%);
}
.hero .wrap { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--amber-500); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
  background: rgba(255, 181, 0, 0.1); border: 1px solid rgba(255, 181, 0, 0.3);
  padding: 6px 14px; border-radius: 999px;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.06; font-weight: 900; letter-spacing: -0.03em; max-width: 850px;
}
.hero h1 .grad {
  background: linear-gradient(92deg, var(--amber-500), #ffd75e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { margin-top: 22px; font-size: clamp(17px, 1.6vw, 20px); color: rgba(255,255,255,0.85); max-width: 640px; }
.cta-row { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px; font-size: 15.5px; font-weight: 700;
  border: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--amber-500); color: var(--navy-900); box-shadow: 0 8px 24px rgba(255, 181, 0, 0.35); }
.btn-primary:hover { filter: brightness(1.04); }
.btn-blue { background: var(--blue-600); color: #fff; box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); }

/* Hero screenshot */
.hero-shot { margin-top: 56px; }

/* ---------- Browser frame for screenshots ---------- */
.frame {
  background: #0b1226; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.frame-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; }
.frame-bar span { width: 10px; height: 10px; border-radius: 50%; }
.frame-bar .r { background: #f87171; } .frame-bar .y { background: #fbbf24; } .frame-bar .g { background: #34d399; }
.frame-bar .url {
  margin-left: 10px; flex: 1; max-width: 420px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55);
  font-size: 11.5px; font-weight: 500; padding: 4px 12px; border-radius: 6px;
  width: auto; height: auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.frame img { width: 100%; }
.frame.tilt { transform: perspective(1400px) rotateX(3deg); transform-origin: top center; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.alt { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
section.dark { background: var(--hero-grad); color: #fff; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-600); margin-bottom: 10px; }
.dark .kicker { color: var(--amber-500); }
.section-title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.12; max-width: 760px; }
.section-sub { color: var(--text-2); margin-top: 14px; max-width: 660px; font-size: 17.5px; }
.dark .section-sub { color: rgba(255,255,255,0.78); }
.center { text-align: center; }
.center .section-title, .center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- App icon rail (CC-style) ---------- */
.app-rail { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.app-chip {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 108px; padding: 16px 8px 13px; border-radius: 16px;
  background: var(--bg-surface); border: 1px solid var(--border);
  color: var(--text); font-size: 12.5px; font-weight: 700; text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.app-chip:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.app-chip .ic {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 6px 14px rgba(15,23,42,0.18);
  background-image: linear-gradient(160deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 55%);
}
.app-chip .ic svg { width: 26px; height: 26px; }

/* ---------- Flow story ---------- */
.flow { display: flex; flex-direction: column; gap: 0; margin-top: 54px; }
.flow-step { display: grid; grid-template-columns: 64px 1fr; gap: 26px; align-items: start; }
.flow-rail { display: flex; flex-direction: column; align-items: center; }
.flow-num {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: #fff;
  box-shadow: 0 6px 16px rgba(15,23,42,0.22);
}
.flow-line { width: 3px; flex: 1; min-height: 46px; margin: 8px 0; border-radius: 3px;
  background: linear-gradient(180deg, var(--border-2), var(--border)); }
.flow-body { padding-bottom: 44px; min-width: 0; }
.flow-body h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.flow-body .app-tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  padding: 3px 10px; border-radius: 6px; color: #fff; margin-bottom: 10px;
}
.flow-body p { color: var(--text-2); margin-top: 8px; max-width: 640px; }
.flow-body .frame { margin-top: 20px; }
.flow-punch {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 8px;
  background: #ecfdf5; border: 1px solid #a7f3d0; color: #047857;
  font-size: 13.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px;
}

/* ---------- Highlights grid ---------- */
.grid { display: grid; gap: 22px; margin-top: 44px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--text-2); font-size: 15px; }
.card .mini-ic {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background-image: linear-gradient(160deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 55%);
}
.card .mini-ic svg { width: 21px; height: 21px; }
.dark .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.dark .card h3 { color: #fff; }
.dark .card p { color: rgba(255,255,255,0.75); }

/* ---------- Numbers band ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; margin-top: 46px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-size: clamp(30px, 3.4vw, 44px); font-weight: 900; letter-spacing: -0.03em; color: var(--amber-500); }
.stat .lbl { color: rgba(255,255,255,0.72); font-size: 13.5px; font-weight: 600; margin-top: 2px; }

/* ---------- App cards (index grid) ---------- */
.app-card {
  display: flex; flex-direction: column;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden; color: var(--text);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.app-card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.app-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ac, var(--blue-500)); }
.app-card .ic {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: var(--ac, var(--blue-500));
  background-image: linear-gradient(160deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 55%);
}
.app-card .ic svg { width: 24px; height: 24px; }
.app-card h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 6px; }
.app-card p { color: var(--text-2); font-size: 14.5px; flex: 1; }
.app-card .learn { margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--blue-600); }

/* ---------- App page hero ---------- */
.app-hero { padding: 72px 0 60px; }
.app-hero .app-badge-lg {
  width: 64px; height: 64px; border-radius: 17px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: var(--ac, var(--blue-500));
  background-image: linear-gradient(160deg, rgba(255,255,255,0.25), rgba(255,255,255,0) 55%);
  box-shadow: 0 10px 26px rgba(15,23,42,0.35);
}
.app-hero .app-badge-lg svg { width: 32px; height: 32px; }
.app-hero h1 { font-size: clamp(32px, 4.2vw, 52px); }
.shot-band { padding: 0 0 84px; margin-top: -30px; position: relative; z-index: 2; }

/* ---------- Feature rows ---------- */
.feature-list { margin-top: 30px; display: grid; gap: 0; }
.feature-item { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.feature-item:last-child { border-bottom: none; }
.feature-item .tick { color: var(--success); font-weight: 900; font-size: 17px; line-height: 1.4; }
.feature-item b { display: block; font-size: 16px; letter-spacing: -0.01em; }
.feature-item span { color: var(--text-2); font-size: 14.5px; }

/* ---------- Checklist (inherited pattern) ---------- */
.checklist { list-style: none; margin-top: 16px; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 12px; color: var(--text-2); }
.checklist li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }
.checklist li strong { color: var(--text); }

/* ---------- Pricing ---------- */
.price-card { position: relative; }
.price-card .tier { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-2); }
.price-card .price { font-size: 46px; font-weight: 900; letter-spacing: -0.03em; margin: 10px 0 2px; }
.price-card .per { color: var(--text-3); font-size: 14px; }
.price-card.featured { border: 2px solid var(--amber-500); box-shadow: var(--shadow-md); }
.price-card .flag { position: absolute; top: -13px; left: 26px; background: var(--amber-500); color: var(--navy-900); font-size: 12px; font-weight: 800; padding: 3px 13px; border-radius: 999px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: 20px; }
.draft-note { background: #fef3c7; border: 1px solid #fcd34d; color: #92400e; border-radius: var(--r); padding: 13px 17px; font-size: 14px; margin-top: 26px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--hero-grad); color: #fff; border-radius: 22px;
  padding: 52px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap; margin: 84px 0; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(520px 240px at 85% 20%, rgba(255,181,0,0.18), transparent 60%);
}
.cta-band h2 { font-size: clamp(24px, 2.8vw, 34px); font-weight: 900; letter-spacing: -0.02em; }
.cta-band p { color: rgba(255,255,255,0.8); margin-top: 8px; }
.cta-band .btn { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 52px 0 40px; font-size: 14px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer .cols { display: flex; gap: 60px; flex-wrap: wrap; }
.site-footer h4 { color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 7px; }

/* ---------- Coming-soon preview bar ---------- */
.preview-bar {
  background: linear-gradient(90deg, rgba(255,181,0,0.16), rgba(59,130,246,0.12));
  border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 13.5px; font-weight: 600;
  text-align: center; padding: 8px 16px;
}
.preview-bar b { color: var(--amber-600); }
.preview-bar a { font-weight: 700; }

/* ---------- Legal ---------- */
.legal-strip {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 36px; padding-top: 22px;
  font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.7;
}
.legal-strip .links { margin-bottom: 10px; font-size: 13px; }
.legal-strip .links a { color: rgba(255,255,255,0.7); margin-right: 18px; }
.legal-page h1 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 900; letter-spacing: -0.02em; }
.legal-page .updated { color: var(--text-3); font-size: 14px; margin-top: 6px; }
.legal-body { max-width: 760px; margin-top: 34px; }
.legal-body h2 { font-size: 20px; font-weight: 800; margin: 30px 0 8px; letter-spacing: -0.01em; }
.legal-body p, .legal-body li { color: var(--text-2); font-size: 15.5px; }
.legal-body ul { padding-left: 22px; margin-top: 8px; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; gap: 14px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; min-height: 46px; padding: 11px 14px; font-size: 16px;
  font-family: inherit; color: var(--text);
  background: var(--bg-subtle); border: 1.5px solid var(--border-2); border-radius: var(--r);
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.form-grid textarea { min-height: 120px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); background: var(--bg-surface);
}
.form-note { font-size: 13px; color: var(--text-3); }
.form-msg { display: none; padding: 12px 16px; border-radius: var(--r); font-size: 14.5px; font-weight: 600; }
.form-msg.ok { display: block; background: #ecfdf5; border: 1px solid #a7f3d0; color: #047857; }
.form-msg.err { display: block; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  section { padding: 60px 0; }
  .flow-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .flow-num { width: 40px; height: 40px; font-size: 16px; }
  .cta-band { padding: 36px 26px; }
}
