/* ==========================================================================
   LookAhead Pro — marketing site
   Field-tough design system: safety-amber accent on graphite neutrals,
   mirroring the app's semantic tokens (see design/LookAhead Pro Style.html).
   Kind colors are DATA color and stay untouched.
   ========================================================================== */

:root {
  /* Safety-amber accent. Amber FILLS take dark ink (#141414); amber as
     FOREGROUND text on graphite uses --accent-text. */
  --accent: #e8912f;
  --accent-hover: #f0a44e;
  --accent-ink: #141414;
  --accent-text: #e8912f;
  --accent-soft: rgba(232, 145, 47, 0.14);
  --accent-border: rgba(232, 145, 47, 0.35);

  /* Graphite neutrals — a DARK ramp so the site reads dark by default.
     Each token keeps its ROLE: low = surfaces, mid = muted text, high = body/heading.
     Intentionally-dark elements (phone bezel, footer) are overridden where they live. */
  --g-50: #12141a; /* base card surface */
  --g-100: #191c22; /* raised surface / hover / track */
  --g-200: #262b34; /* border */
  --g-300: #30353f; /* strong border */
  --g-400: #757f8d; /* muted text (reads on dark) */
  --g-500: #a6aebb; /* secondary text */
  --g-600: #a6aebb; /* body text */
  --g-700: #c9cfd9; /* text */
  --g-800: #dfe3e9; /* strong text */
  --g-900: #eceef2; /* headings */
  --g-950: #0a0b0d; /* page background */

  /* Operation/kind colors (match kindBarClass) */
  --k-blue: #3b82f6;
  --k-orange: #f97316;
  --k-green: #16a34a;
  --k-teal: #14b8a6;
  --k-purple: #a855f7;
  --k-indigo: #6366f1;
  --k-amber: #f59e0b;
  --k-red: #ef4444;
  --k-emerald: #10b981;
  --k-slate: #64748b;

  --bg: #0a0b0d;
  --bg-soft: #101216;
  --text: var(--g-800);
  --muted: #757f8d;
  --border: var(--g-200);
  color-scheme: dark;

  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 30px 80px rgba(232, 145, 47, 0.25);

  --container: 1200px;
  --font:
    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Saira Condensed', 'Inter', -apple-system, system-ui, sans-serif;

  --header-h: 68px;
}

/* Signage/display type — same self-hosted face the app uses (no network fonts). */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/saira-condensed-700-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/saira-condensed-700-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

/* ----------------------------------------------------------------- reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--g-900);
  font-weight: 700;
}
/* Big headings speak signage — the app's uppercase condensed display type.
   h4 and doc-page subheads stay sans so running copy keeps its rhythm. */
h1,
h2,
.feature-text h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.02;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
}
.skip-link:focus {
  left: 8px;
}

/* --------------------------------------------------------------- layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
section {
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.section-head p {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--muted);
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow:
    0 1px 2px rgba(232, 145, 47, 0.3),
    0 8px 20px rgba(232, 145, 47, 0.18);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow:
    0 2px 4px rgba(232, 145, 47, 0.3),
    0 12px 26px rgba(232, 145, 47, 0.24);
}
.btn-ghost {
  background: var(--g-50);
  color: var(--g-700);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: var(--g-300);
  background: var(--g-50);
}
.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}
.btn-lg {
  padding: 15px 28px;
  font-size: 1.02rem;
}
.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------- header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(10, 11, 13, 0.65);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--g-900);
}
.brand .logo {
  width: 32px;
  height: 32px;
}
.brand b {
  color: var(--accent-text);
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--g-600);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.nav-links a:hover {
  background: var(--g-100);
  color: var(--g-900);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle svg {
  width: 26px;
  height: 26px;
  stroke: var(--g-800);
}

/* --------------------------------------------------------------- hero */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 80px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 80% -8%, rgba(232, 145, 47, 0.14), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(240, 164, 78, 0.07), transparent 55%),
    linear-gradient(180deg, #14120e, var(--bg) 70%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--g-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--g-200) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(900px 460px at 60% 5%, #000 30%, transparent 75%);
  mask-image: radial-gradient(900px 460px at 60% 5%, #000 30%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--g-50);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--g-600);
}
.pill .tag {
  background: var(--accent-soft);
  color: var(--accent-text);
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
}
.hero h1 {
  margin-top: 26px;
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  letter-spacing: -0.035em;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 24px auto 0;
  max-width: 640px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--g-600);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--g-400);
}

/* showcase frame under hero */
.hero-showcase {
  position: relative;
  max-width: 1080px;
  margin: 64px auto 0;
}
.hero-showcase::after {
  /* glow */
  content: '';
  position: absolute;
  inset: 10% 6% -8% 6%;
  background: radial-gradient(closest-side, rgba(232, 145, 47, 0.22), transparent);
  filter: blur(40px);
  z-index: -1;
}

/* --------------------------------------------------------- browser frame */
.frame {
  border-radius: var(--radius-lg);
  background: var(--g-50);
  border: 1px solid var(--g-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--g-50);
  border-bottom: 1px solid var(--g-200);
}
.frame-dots {
  display: flex;
  gap: 7px;
}
.frame-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--g-300);
}
.frame-dots span:nth-child(1) {
  background: #f87171;
}
.frame-dots span:nth-child(2) {
  background: #fbbf24;
}
.frame-dots span:nth-child(3) {
  background: #34d399;
}
.frame-url {
  flex: 1;
  display: flex;
  justify-content: center;
}
.frame-url span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 320px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--g-50);
  border: 1px solid var(--g-200);
  color: var(--g-500);
  font-size: 0.8rem;
}
.frame-url svg {
  width: 13px;
  height: 13px;
  color: var(--k-emerald);
}
.frame-body {
  background: var(--g-50);
}
.frame-body img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------- screenshot gallery */
.screenshots {
  padding: 80px 0 8px;
}
.shots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: start;
}
.shot {
  margin: 0;
}
/* real app screenshots that aren't phone-framed (pads batch, analytics) */
.shot-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--g-200);
  background: var(--g-50);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.shot-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----------------------------------------- reminders "0 missed" hero stat */
.rem-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 4px;
}
.rem-stat-num {
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--k-emerald);
}
.rem-stat-cap {
  display: flex;
  flex-direction: column;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--g-900);
}
.rem-stat-cap small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}
.shot-frame {
  border-radius: 32px;
  background: #08090b;
  border: 1px solid var(--g-200);
  padding: 9px;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}
.shot-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}
.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.shot-cap {
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--g-800);
}
.shot-cap small {
  display: block;
  margin-top: 2px;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 920px) {
  .screenshots {
    padding-top: 60px;
  }
  .shots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 620px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .shots-grid {
    gap: 16px;
  }
  .shot-frame {
    border-radius: 28px;
    padding: 7px;
  }
  .shot-frame img {
    border-radius: 20px;
  }
}

/* ----------------------------------------------------------- app chrome */
.app {
  font-size: 13px;
  color: var(--g-700);
}
.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--g-200);
  background: var(--g-50);
}
.app-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--g-800);
}
.app-title .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--k-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.app-title small {
  color: var(--g-400);
  font-weight: 500;
}
.app-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.seg {
  display: inline-flex;
  background: var(--g-100);
  border-radius: 8px;
  padding: 3px;
}
.seg span {
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--g-500);
}
.seg span.on {
  background: var(--g-50);
  color: var(--g-800);
  box-shadow: var(--shadow-sm);
}
.chip {
  padding: 5px 11px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid var(--g-200);
  color: var(--g-600);
  background: var(--g-50);
}
.chip-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

/* ------------------------------------------------------------- gantt */
.gantt {
  display: flex;
  background: var(--g-50);
}
.gantt-side {
  flex: 0 0 132px;
  border-right: 1px solid var(--g-200);
  background: var(--g-50);
}
.gantt-side .axis-pad {
  height: 34px;
  border-bottom: 1px solid var(--g-200);
}
.well-label {
  height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--g-100);
}
.well-label b {
  font-size: 0.82rem;
  color: var(--g-800);
  font-weight: 600;
}
.well-label small {
  font-size: 0.7rem;
  color: var(--g-400);
}
.gantt-main {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.gantt-axis {
  display: flex;
  height: 34px;
  border-bottom: 1px solid var(--g-200);
  background: var(--g-50);
}
.gantt-axis span {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 8px;
  font-size: 0.7rem;
  color: var(--g-400);
  border-left: 1px solid var(--g-100);
}
.gantt-axis span:first-child {
  border-left: 0;
}
.lane {
  position: relative;
  height: 52px;
  border-bottom: 1px solid var(--g-100);
}
.lane-grid {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
}
.lane-grid i {
  flex: 1;
  border-left: 1px solid var(--g-100);
}
.bar {
  position: absolute;
  top: 10px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.18);
}
.bar small {
  font-weight: 500;
  opacity: 0.85;
  margin-left: 6px;
}
.bar.sel {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.bar.blue {
  background: var(--k-blue);
}
.bar.orange {
  background: var(--k-orange);
}
.bar.green {
  background: var(--k-green);
}
.bar.teal {
  background: var(--k-teal);
}
.bar.purple {
  background: var(--k-purple);
}
.bar.indigo {
  background: var(--k-indigo);
}
.bar.amber {
  background: var(--k-amber);
}
.bar.red {
  background: var(--k-red);
}
.bar.emerald {
  background: var(--k-emerald);
}
.bar.gate {
  background: repeating-linear-gradient(
    45deg,
    var(--g-400),
    var(--g-400) 6px,
    var(--g-500) 6px,
    var(--g-500) 12px
  );
  color: #fff;
  font-size: 0.68rem;
}
.now-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--k-red);
  z-index: 5;
}
.now-line::before {
  content: 'now';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--k-red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}

/* ----------------------------------------------------- features (split) */
.feature {
  padding: 84px 0;
}
.feature + .feature {
  padding-top: 0;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.reverse .feature-text {
  order: 2;
}
.feature-text h3 {
  margin-top: 16px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}
.feature-text > p {
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--g-600);
}
.feature-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--g-700);
}
.feature-list .tick {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.feature-list .tick svg {
  width: 13px;
  height: 13px;
}
.feature-list b {
  color: var(--g-900);
}
.feature-visual {
  position: relative;
}

/* ---------------------------------------------------------- phone frame */
.phone {
  width: 290px;
  margin: 0 auto;
  border-radius: 38px;
  background: #08090b;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #08090b;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #3a2c1c, #14100b);
  min-height: 540px;
  position: relative;
  padding: 56px 14px 20px;
}
.lock-time {
  text-align: center;
  color: #fff;
}
.lock-time .t {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lock-time .d {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: -6px;
}
.notif {
  margin-top: 20px;
  background: rgba(25, 28, 34, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 13px 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.notif + .notif {
  margin-top: 10px;
}
.notif-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}
.notif-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--accent);
  display: grid;
  place-items: center;
  flex: 0 0 26px;
}
.notif-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-ink);
}
.notif-app {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--g-500);
}
.notif-when {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--g-400);
}
.notif h4 {
  font-size: 0.92rem;
  color: var(--g-900);
}
.notif p {
  margin-top: 3px;
  font-size: 0.8rem;
  color: var(--g-600);
  line-height: 1.45;
}
.notif-actions {
  display: flex;
  gap: 8px;
  margin-top: 11px;
}
.notif-btn {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--g-100);
  color: var(--g-700);
}
.notif-btn.call {
  background: var(--k-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.notif-btn.call svg {
  width: 15px;
  height: 15px;
}

/* --------------------------------------- cross-platform notification suite
   Accurate push banners. Collapsed = reminder text + app name, NO inline
   buttons (iOS doesn't put arbitrary buttons on the lock screen — a tap opens
   the app). The expanded iPhone notification is the only banner with actions:
   Call + Text, the two the app actually registers. There is no Email action —
   email is one tap inside the app. */
.push-suite {
  display: grid;
  gap: 18px;
}
.push-plat {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g-400);
}
.push-plat svg {
  width: 13px;
  height: 13px;
}
.push {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 12px 13px;
  border-radius: 20px;
  border: 1px solid var(--g-200);
  background: rgba(25, 28, 34, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.push-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.push-main {
  min-width: 0;
  flex: 1;
}
.push-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  color: var(--g-400);
}
.push-app {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.push-when {
  margin-left: auto;
}
.push-title {
  margin-top: 3px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--g-800);
  line-height: 1.3;
}
.push-text {
  margin-top: 1px;
  font-size: 0.85rem;
  color: var(--g-500);
  line-height: 1.35;
}
/* macOS banners are a touch squarer; web push squarer still + shows the origin */
.push-mac {
  border-radius: 14px;
}
.push-web {
  border-radius: 12px;
}
/* expanded iPhone notification — long-press reveals the registered actions */
.push-exp {
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.push-card {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 14px 12px;
}
.push-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.push-act {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--g-700);
  border-top: 1px solid var(--g-200);
}
.push-act + .push-act {
  border-left: 1px solid var(--g-200);
}
.push-act svg {
  width: 16px;
  height: 16px;
}
.push-act.call {
  color: var(--k-green);
}
.push-act.text {
  color: var(--accent-hover);
}

/* small panel used inside feature visuals */
.panel {
  background: var(--g-50);
  border: 1px solid var(--g-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.panel-head {
  padding: 13px 16px;
  border-bottom: 1px solid var(--g-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--g-800);
}
.panel-head small {
  font-weight: 500;
  color: var(--g-400);
}
.panel-body {
  padding: 14px 16px;
}

/* vendor requirement rows (reminders feature) */
.vrow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--g-100);
}
.vrow:last-child {
  border-bottom: 0;
}
.vavatar {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  flex: 0 0 36px;
}
.vrow .vmeta {
  flex: 1;
  min-width: 0;
}
.vrow .vmeta b {
  font-size: 0.9rem;
  color: var(--g-800);
}
.vrow .vmeta span {
  display: block;
  font-size: 0.76rem;
  color: var(--g-400);
}
.knob {
  text-align: center;
  flex: 0 0 auto;
}
.knob b {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-text);
}
.knob span {
  font-size: 0.66rem;
  color: var(--g-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* analytics bars */
.stat {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--g-100);
}
.stat:last-child {
  border-bottom: 0;
}
.stat .badge {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  justify-self: start;
}
.badge.blue {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
}
.badge.purple {
  background: rgba(168, 85, 247, 0.18);
  color: #d8b4fe;
}
.badge.indigo {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
}
.badge.orange {
  background: rgba(249, 115, 22, 0.18);
  color: #fdba74;
}
.badge.green {
  background: rgba(22, 163, 74, 0.18);
  color: #86efac;
}
.stat .track {
  height: 9px;
  border-radius: 999px;
  background: var(--g-100);
  overflow: hidden;
}
.stat .track i {
  display: block;
  height: 100%;
  border-radius: 999px;
}
.stat .num {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--g-700);
  font-variant-numeric: tabular-nums;
}
.stat .num small {
  color: var(--g-400);
  font-weight: 500;
}

/* template / member cards */
.mini-list {
  display: grid;
  gap: 10px;
}
.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--g-200);
  border-radius: 10px;
  background: var(--g-50);
}
.mini-card .mc-ic {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  background: var(--accent-soft);
  color: var(--accent-text);
}
.mini-card .mc-ic svg {
  width: 20px;
  height: 20px;
}
.mini-card .mc-meta {
  flex: 1;
  min-width: 0;
}
.mini-card .mc-meta b {
  font-size: 0.92rem;
  color: var(--g-800);
}
.mini-card .mc-meta span {
  display: block;
  font-size: 0.78rem;
  color: var(--g-400);
}
.role {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}
.role.owner {
  background: var(--accent-soft);
  color: var(--accent-text);
}
.role.admin {
  background: rgba(139, 92, 246, 0.18);
  color: #c4b5fd;
}
.role.member {
  background: var(--g-100);
  color: var(--g-600);
}

/* ------------------------------------------------------- trust / strip */
.strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--g-50);
}
.strip p {
  text-align: center;
  color: var(--g-400);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.strip-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  justify-content: center;
  align-items: center;
  color: var(--g-500);
}
.strip-row .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--g-600);
}
.strip-row .item svg {
  width: 22px;
  height: 22px;
  color: var(--g-400);
}
/* "Vendors — coming soon": visually secondary, with a muted pill */
.strip-row .item-soon {
  color: var(--g-400);
}
.strip-row .item-soon small {
  margin-left: 9px;
  padding: 2px 9px;
  border: 1px solid var(--g-200);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--g-400);
}

/* ------------------------------------------------------- more features */
.more {
  padding: 96px 0;
  background: var(--g-50);
  border-top: 1px solid var(--border);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fcard {
  background: var(--g-50);
  border: 1px solid var(--g-200);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.fcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-border);
}
.fcard .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  color: var(--accent-ink);
  box-shadow: 0 8px 18px rgba(232, 145, 47, 0.22);
}
.fcard .ic svg {
  width: 24px;
  height: 24px;
}
.fcard h4 {
  margin-top: 18px;
  font-size: 1.15rem;
}
.fcard p {
  margin-top: 10px;
  color: var(--g-500);
  font-size: 0.96rem;
}

/* ------------------------------------------------------- cross platform */
.platforms {
  padding: 96px 0;
  overflow: hidden;
}
.platforms .section-head {
  margin-bottom: 40px;
}
.device-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.laptop {
  width: min(560px, 100%);
}
.laptop .frame {
  box-shadow: var(--shadow-md);
}
.laptop .base {
  height: 14px;
  margin: 0 auto;
  width: 86%;
  background: linear-gradient(180deg, var(--g-200), var(--g-300));
  border-radius: 0 0 12px 12px;
}
.laptop .base::after {
  content: '';
  display: block;
  width: 90px;
  height: 6px;
  margin: 0 auto;
  background: var(--g-300);
  border-radius: 0 0 8px 8px;
}
.platform-tags {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.platform-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--g-50);
  border: 1px solid var(--g-200);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--g-700);
}
.platform-tags .tag svg {
  width: 18px;
  height: 18px;
  color: var(--accent-text);
}

/* --------------------------------------------------------------- pricing */
.pricing {
  padding: 96px 0;
  background: var(--g-50);
  border-top: 1px solid var(--border);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}
.price {
  background: var(--g-50);
  border: 1px solid var(--g-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.price.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.price-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price h3 {
  font-size: 1.2rem;
}
.price .who {
  margin-top: 6px;
  color: var(--g-400);
  font-size: 0.88rem;
  min-height: 38px;
}
.price .amount {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price .amount .cur {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--g-900);
}
.price .amount .val {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--g-900);
}
.price .amount .per {
  color: var(--g-400);
  font-size: 0.9rem;
  font-weight: 500;
}
.price .btn {
  margin-top: 22px;
}
.price ul {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.price li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--g-600);
}
.price li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-text);
  flex: 0 0 18px;
  margin-top: 2px;
}
.price-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.86rem;
  color: var(--g-400);
}

/* --------------------------------------------------------------- cta */
.cta {
  padding: 100px 0;
}
.cta-box {
  position: relative;
  border-radius: 28px;
  padding: 72px 32px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(232, 145, 47, 0.38), transparent 60%),
    linear-gradient(135deg, #22262e, #0e0f12);
  border: 1px solid var(--g-300);
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 70%);
  mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 70%);
}
.cta-box > * {
  position: relative;
}
.cta-box h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  margin: 16px auto 0;
  max-width: 540px;
  font-size: 1.1rem;
}
.cta-form {
  margin: 32px auto 0;
  display: flex;
  gap: 10px;
  max-width: 460px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.98rem;
}
.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.cta-form input:focus {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  border-color: var(--accent);
}
.cta-form .btn {
  background: var(--accent);
  color: var(--accent-ink);
}
.cta-form .btn:hover {
  background: var(--accent-hover);
}
.cta-mini {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

/* --------------------------------------------------------------- footer */
.footer {
  background: var(--bg-soft);
  color: var(--g-400);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}
.footer .brand {
  color: #fff;
}
.footer-about {
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.6;
}
.footer h5 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--g-400);
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-bottom .socials {
  display: flex;
  gap: 10px;
}
.footer-bottom .socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--g-100);
  color: var(--g-400);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.footer-bottom .socials a:hover {
  background: var(--accent);
  color: var(--accent-ink);
}
.footer-bottom .socials svg {
  width: 17px;
  height: 17px;
}

/* --------------------------------------------------------------- reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------- responsive */
@media (max-width: 940px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row.reverse .feature-text {
    order: 0;
  }
  .grid-3,
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .price.featured {
    transform: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta .btn-ghost {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 24px 20px;
    background: var(--g-50);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a {
    padding: 12px 14px;
  }
  .hero {
    padding-bottom: 56px;
  }
  .feature {
    padding: 56px 0;
  }
  .app-tools .seg,
  .app-tools .chip:not(.chip-primary) {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------- doc pages */
.site-header--static {
  position: static;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.doc {
  padding: 56px 0 88px;
  background: var(--bg);
}
.doc-inner {
  max-width: 760px;
}
.doc-inner h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}
.doc-meta {
  margin-top: 12px;
  color: var(--g-400);
  font-size: 0.92rem;
}
.doc-inner h2 {
  margin-top: 44px;
  font-size: 1.4rem;
  color: var(--g-900);
}
.doc-inner h3 {
  margin-top: 26px;
  font-size: 1.08rem;
  color: var(--g-800);
}
.doc-inner p {
  margin-top: 14px;
  color: var(--g-700);
  font-size: 1rem;
  line-height: 1.75;
}
.doc-inner ul {
  margin-top: 14px;
  padding-left: 22px;
  list-style: disc;
}
.doc-inner li {
  margin-top: 8px;
  color: var(--g-700);
  line-height: 1.7;
}
.doc-inner strong {
  color: var(--g-900);
}
.doc-inner a {
  color: var(--accent-text);
  text-decoration: underline;
}
.doc-callout {
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(232, 145, 47, 0.1);
  border: 1px solid rgba(232, 145, 47, 0.3);
  border-radius: 12px;
  color: var(--g-700);
  font-size: 0.95rem;
}
.doc-callout strong {
  color: var(--accent-hover);
}

/* CTA buttons (replaced the email form) */
.cta-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-actions .cta-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.cta-actions .cta-primary:hover {
  background: var(--accent-hover);
}

/* rig contacts panel */
.shared-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--g-100);
}
.avatars {
  display: flex;
}
.avatars span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  margin-left: -8px;
}
.avatars span:first-child {
  margin-left: 0;
}
.contact-actions {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}
.cbtn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
}
.cbtn svg {
  width: 16px;
  height: 16px;
}
.cbtn.call {
  background: var(--k-green);
  color: #fff;
}
.cbtn.text {
  background: var(--accent-soft);
  color: var(--accent-text);
  border: 1px solid var(--accent-border);
}
