/*! Satnam Siri WaheGuru Shaib Ji
 * hayerapps — homepage styles. Hand-written; no third-party CSS.
 * Theme: light + dark via CSS custom properties (prefers-color-scheme + [data-theme]). */

/* ---------- tokens ---------- */
:root {
  --bg: #f5f6f8;
  --bg-2: #ffffff;
  --bg-3: #f0f1f4;
  --text: #0f1729;
  --muted: #5b6472;
  --faint: #8a93a3;
  --border: #e5e7eb;
  --border-2: #eceef1;
  --accent: #4f46e5;
  --accent-ink: #ffffff;
  --accent-soft: #eef0fe;
  --shadow-sm: 0 1px 2px rgba(15, 23, 41, .05);
  --shadow-md: 0 1px 3px rgba(15, 23, 41, .04), 0 8px 24px rgba(15, 23, 41, .06);
  --hero-glow: radial-gradient(60% 60% at 70% 30%, rgba(79, 70, 229, .10), transparent 70%);

  --c-red: #ef4444;
  --c-blue: #3b82f6;
  --c-green: #22c55e;
  --c-purple: #8b5cf6;
  --c-amber: #f59e0b;
  --c-rose: #ec4899;
  --c-teal: #14b8a6;

  --ok: #16a34a;
  --ok-soft: #e7f6ec;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1120px;

  --neon: 0;
  --keycap-bg: linear-gradient(150deg, #ffffff, #e9ecf3);
  --keycap-border: #e3e6ec;
  --keycap-shadow: 5px 3px 0 #e6e9ef, 10px 6px 0 #dfe3ea, 15px 9px 0 #d8dde5, 20px 12px 0 #d1d7e0, 24px 15px 0 #ccd3dd, 0 44px 38px -12px rgba(15, 23, 41, .28), inset 0 3px 3px rgba(255, 255, 255, .9), inset -4px -5px 8px rgba(15, 23, 41, .06);
  --keycap-text: var(--text);
  --keycap-textglow: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0b0f;
    --bg-2: #14161c;
    --bg-3: #1a1d25;
    --text: #e9ebf0;
    --muted: #9aa2b1;
    --faint: #6b7280;
    --border: #23262f;
    --border-2: #1f222a;
    --accent: #8b8cf7;
    --accent-ink: #0a0b0f;
    --accent-soft: rgba(139, 140, 247, .14);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-md: 0 1px 3px rgba(0, 0, 0, .4), 0 12px 30px rgba(0, 0, 0, .5);
    --hero-glow: radial-gradient(60% 60% at 70% 30%, rgba(139, 140, 247, .18), transparent 70%);
    --ok: #34d399;
    --ok-soft: rgba(52, 211, 153, .14);

    --neon: 1;
    --keycap-bg: linear-gradient(150deg, #22242f, #0d0f15);
    --keycap-border: #2e313d;
    --keycap-shadow: 5px 3px 0 #0c0e13, 10px 6px 0 #0a0c11, 15px 9px 0 #08090e, 20px 12px 0 #06070b, 24px 15px 0 #050609, 0 44px 40px -10px rgba(0, 0, 0, .72), 0 0 55px rgba(124, 110, 247, .55), 0 0 120px rgba(80, 90, 240, .30), inset 0 3px 3px rgba(255, 255, 255, .14), inset -4px -5px 10px rgba(0, 0, 0, .5), 0 0 0 1px rgba(139, 140, 247, .26);
    --keycap-text: #ffffff;
    --keycap-textglow: 0 0 22px rgba(170, 160, 255, .7);
  }
}

/* explicit toggle wins over the OS preference, both directions */
:root[data-theme="light"] {
  --bg: #f5f6f8; --bg-2: #ffffff; --bg-3: #f0f1f4;
  --text: #0f1729; --muted: #5b6472; --faint: #8a93a3;
  --border: #e5e7eb; --border-2: #eceef1;
  --accent: #4f46e5; --accent-ink: #ffffff; --accent-soft: #eef0fe;
  --shadow-sm: 0 1px 2px rgba(15, 23, 41, .05);
  --shadow-md: 0 1px 3px rgba(15, 23, 41, .04), 0 8px 24px rgba(15, 23, 41, .06);
  --hero-glow: radial-gradient(60% 60% at 70% 30%, rgba(79, 70, 229, .10), transparent 70%);
  --ok: #16a34a; --ok-soft: #e7f6ec;
  --neon: 0;
  --keycap-bg: linear-gradient(150deg, #ffffff, #e9ecf3); --keycap-border: #e3e6ec;
  --keycap-shadow: 5px 3px 0 #e6e9ef, 10px 6px 0 #dfe3ea, 15px 9px 0 #d8dde5, 20px 12px 0 #d1d7e0, 24px 15px 0 #ccd3dd, 0 44px 38px -12px rgba(15, 23, 41, .28), inset 0 3px 3px rgba(255, 255, 255, .9), inset -4px -5px 8px rgba(15, 23, 41, .06);
  --keycap-text: var(--text); --keycap-textglow: none;
}
:root[data-theme="dark"] {
  --bg: #0a0b0f; --bg-2: #14161c; --bg-3: #1a1d25;
  --text: #e9ebf0; --muted: #9aa2b1; --faint: #6b7280;
  --border: #23262f; --border-2: #1f222a;
  --accent: #8b8cf7; --accent-ink: #0a0b0f; --accent-soft: rgba(139, 140, 247, .14);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 1px 3px rgba(0, 0, 0, .4), 0 12px 30px rgba(0, 0, 0, .5);
  --hero-glow: radial-gradient(60% 60% at 70% 30%, rgba(139, 140, 247, .18), transparent 70%);
  --ok: #34d399; --ok-soft: rgba(52, 211, 153, .14);
  --neon: 1;
  --keycap-bg: linear-gradient(150deg, #22242f, #0d0f15); --keycap-border: #2e313d;
  --keycap-shadow: 5px 3px 0 #0c0e13, 10px 6px 0 #0a0c11, 15px 9px 0 #08090e, 20px 12px 0 #06070b, 24px 15px 0 #050609, 0 44px 40px -10px rgba(0, 0, 0, .72), 0 0 55px rgba(124, 110, 247, .55), 0 0 120px rgba(80, 90, 240, .30), inset 0 3px 3px rgba(255, 255, 255, .14), inset -4px -5px 10px rgba(0, 0, 0, .5), 0 0 0 1px rgba(139, 140, 247, .26);
  --keycap-text: #ffffff; --keycap-textglow: 0 0 22px rgba(170, 160, 255, .7);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: 0; }
input, select, textarea { color: inherit; }
svg.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 2px solid #f6610e; }
.site-header .wrap { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; }
.logo { width: 38px; height: 38px; border-radius: 11px; background: var(--text); color: var(--bg-2);
  display: grid; place-items: center; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.brand-lines { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.brand-tag { font-size: .76rem; color: var(--muted); margin-top: 1px; }
.beta-pill { font-size: .64rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #f6610e;
  background: color-mix(in srgb, #f6610e 13%, transparent); border: 1px solid color-mix(in srgb, #f6610e 42%, transparent);
  padding: 3px 8px; border-radius: 999px; white-space: nowrap; line-height: 1; }
nav.main-nav { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
nav.main-nav a { padding: 8px 12px; border-radius: 9px; font-size: .92rem; color: var(--muted); }
nav.main-nav a:hover { color: var(--text); background: var(--bg-3); }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--bg-2); color: var(--text); display: grid; place-items: center; }
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 10px;
  border: 1px solid transparent; font-size: .92rem; font-weight: 600; }
.btn-primary { background: var(--text); color: var(--bg-2); }
.btn-primary:hover { opacity: .9; }
.theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .sun,
.theme-toggle[data-mode="dark"] .sun { display: block; }
:root[data-theme="dark"] .theme-toggle .moon,
.theme-toggle[data-mode="dark"] .moon { display: none; }
@media (prefers-color-scheme: dark) {
  .theme-toggle .sun { display: block; }
  .theme-toggle .moon { display: none; }
  :root[data-theme="light"] .theme-toggle .sun { display: none; }
  :root[data-theme="light"] .theme-toggle .moon { display: block; }
}

/* ---------- mobile nav (hamburger) ---------- */
.nav-toggle { display: none; }
.nav-toggle .i-close { display: none; }
.nav-toggle.is-open .i-menu { display: none; }
.nav-toggle.is-open .i-close { display: block; }
@media (max-width: 700px) {
  .nav-toggle { display: grid; }
  nav.main-nav { position: absolute; top: 100%; left: 0; right: 0; z-index: 30; margin: 0;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 8px; display: none;
    background: var(--bg-2); border-bottom: 2px solid #f6610e; box-shadow: var(--shadow-md); }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 12px 14px; border-radius: 9px; font-size: 1rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-glow);
  pointer-events: none; }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 40px; align-items: center; padding: 64px 24px 40px; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.15rem); line-height: 1.08; letter-spacing: -.03em;
  margin: 0 0 16px; }
.hero .sub { font-size: 1.1rem; color: var(--muted); max-width: 30em; margin: 0 0 24px; }
.search { display: flex; align-items: center; gap: 10px; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: 13px; padding: 13px 15px; width: 100%;
  box-shadow: var(--shadow-sm); transition: border-color .15s, box-shadow .15s; }
.search-wrap { position: relative; max-width: 30em; }
.search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 13px;
  box-shadow: var(--shadow-md); padding: 6px; max-height: 340px; overflow-y: auto; }
.search-results[hidden] { display: none; }
.sr-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 9px;
  color: inherit; text-decoration: none; }
.sr-item:hover { background: var(--bg-3); }
a.sr-item { cursor: pointer; }
.sr-ic { width: 34px; height: 34px; border-radius: 9px; background: var(--bg-3); color: var(--accent);
  display: grid; place-items: center; flex: none; }
.sr-ic svg { width: 18px; height: 18px; }
.sr-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.sr-name { font-weight: 620; font-size: .95rem; }
.sr-tag { font-size: .82rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-status { font-size: .74rem; font-weight: 700; flex: none; }
.sr-status.s-live { color: var(--ok); }
.sr-status.s-coming-soon { color: var(--accent); }
.sr-status.s-planned { color: var(--faint); }
.sr-empty { padding: 16px; text-align: center; color: var(--muted); font-size: .9rem; }
.search:focus-within { border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft); }
.search svg { color: var(--faint); flex: none; }
.search input { flex: 1; border: 0; outline: 0; background: transparent; color: var(--text);
  font-size: 1rem; min-width: 0; }
.search input::placeholder { color: var(--faint); }
.kbd { font-size: .72rem; color: var(--muted); background: var(--bg-3);
  border: 1px solid var(--border); border-radius: 6px; padding: 2px 7px; flex: none; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; }
.trust { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); font-weight: 500; }
.trust svg { width: 18px; height: 18px; }
.t-red { color: var(--c-red); } .t-blue { color: var(--c-blue); }
.t-green { color: var(--c-green); } .t-purple { color: var(--c-purple); }
.t-amber { color: var(--c-amber); } .t-teal { color: var(--c-teal); }
.t-rose { color: var(--c-rose); }

/* hero illustration */
.hero-art { position: relative; height: 300px; display: grid; place-items: center; perspective: 1100px; }
.keycap { width: 152px; height: 152px; border-radius: 34px;
  background: var(--keycap-bg);
  border: 1px solid var(--keycap-border); display: grid; place-items: center;
  font-weight: 800; font-size: 78px; letter-spacing: -.03em; color: var(--keycap-text);
  text-shadow: var(--keycap-textglow);
  box-shadow: var(--keycap-shadow); position: relative; z-index: 1;
  transform: rotateX(0deg) rotateY(-20deg); }
.chip-float { position: absolute; width: 50px; height: 44px; border-radius: 15px;
  background: var(--bg-2); border: 1px solid var(--keycap-border); display: grid; place-items: center;
  box-shadow: 2px 3px 0 var(--keycap-border), 3px 5px 0 color-mix(in srgb, var(--keycap-border) 70%, transparent), var(--shadow-md), 0 0 calc(26px * var(--neon)) 1px color-mix(in srgb, var(--glow, transparent) 60%, transparent);
  transform: rotateX(0deg) rotateY(-20deg); }
.glow-red { --glow: var(--c-red); } .glow-green { --glow: var(--c-green); }
.glow-blue { --glow: var(--c-blue); } .glow-purple { --glow: var(--c-purple); }
.chip-float svg { width: 22px; height: 18px; }
.cf1 { top: 20px; left: 18%; } .cf2 { top: 46px; right: 16%; }
.cf3 { bottom: 40px; left: 12%; } .cf4 { bottom: 22px; right: 20%; }

/* ---------- sections ---------- */
section { padding: 30px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-bottom: 18px; }
.eyebrow { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); font-weight: 700; }
.section-head h2 { font-size: 1.35rem; letter-spacing: -.02em; margin: 0; }
.link-more { color: var(--accent); font-weight: 600; font-size: .9rem; display: inline-flex;
  align-items: center; gap: 5px; }
.link-more:hover { text-decoration: underline; }

/* ---------- featured ---------- */
.featured-card { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden; }
.featured-card .fc-body { padding: 26px 28px; }
.fc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.fc-icon { width: 58px; height: 58px; border-radius: 15px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; flex: none; }
.fc-icon svg { width: 28px; height: 28px; stroke-width: 1.8; }
.fc-title { font-size: 1.3rem; letter-spacing: -.02em; margin: 0; }
.fc-desc { color: var(--muted); margin: 6px 0 18px; max-width: 34em; }
.fc-art { background: var(--bg-3); border-left: 1px solid var(--border-2);
  display: grid; place-items: center; padding: 22px; min-height: 200px; }
.browser { width: 100%; max-width: 300px; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.browser .bar { display: flex; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--border-2); }
.browser .bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.browser .screen { display: grid; place-items: center; padding: 26px; }
svg.qr { width: 96px; height: 96px; color: var(--c-green); }

/* ---------- category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-card { display: flex; align-items: center; gap: 13px; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 17px;
  box-shadow: var(--shadow-sm); transition: transform .12s, border-color .12s; cursor: pointer; }
.cat-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.cat-card.active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.cat-ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.cat-ic svg { width: 20px; height: 20px; }
.cat-security { background: color-mix(in srgb, var(--c-purple) 14%, transparent); color: var(--c-purple); }
.cat-privacy  { background: color-mix(in srgb, var(--c-green) 15%, transparent);  color: var(--c-green); }
.cat-documents{ background: color-mix(in srgb, var(--c-rose) 14%, transparent);   color: var(--c-rose); }
.cat-utilities{ background: color-mix(in srgb, var(--c-amber) 16%, transparent);  color: var(--c-amber); }
.cat-card .cc-name { font-weight: 650; font-size: .96rem; }
.cat-card .cc-count { font-size: .8rem; color: var(--muted); }
.cc-text { display: flex; flex-direction: column; line-height: 1.2; }

/* ---------- tool grid ---------- */
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tools-soon { color: var(--muted); font-size: .95rem; padding: 6px 2px 2px; margin: 0; }
.tool-card { display: flex; flex-direction: column; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm); transition: transform .12s, border-color .12s, box-shadow .12s; }
.tool-card.is-live:hover { transform: translateY(-3px); border-color: var(--accent);
  box-shadow: var(--shadow-md); }
.tc-top { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 12px; }
.tc-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-3);
  color: var(--accent); display: grid; place-items: center; flex: none; }
.tc-icon svg { width: 23px; height: 23px; }
.tc-head { flex: 1; min-width: 0; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 8px; }
.tc-name { font-weight: 680; font-size: 1.02rem; letter-spacing: -.01em; }
.tc-desc { color: var(--muted); font-size: .9rem; margin: 0 0 14px; flex: 1; }
.pill-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.pill { display: inline-flex; align-items: center; gap: 5px; font-size: .74rem; font-weight: 600;
  padding: 4px 9px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted);
  background: var(--bg-3); }
.pill svg { width: 13px; height: 13px; stroke-width: 2.1; }
.pill-client { color: var(--c-teal); border-color: color-mix(in srgb, var(--c-teal) 40%, var(--border)); }
.pill-hybrid { color: var(--c-purple); border-color: color-mix(in srgb, var(--c-purple) 40%, var(--border)); }
.status { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; }
.status.s-live { color: var(--ok); }
.status.s-coming-soon { color: var(--accent); }
.status.s-planned { color: var(--faint); }
.tc-foot { display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 13px; border-top: 1px solid var(--border-2); }
.foot-price { font-size: .82rem; color: var(--muted); font-weight: 600; }
.tc-foot .status svg { width: 18px; height: 18px; }
.badge-pill { font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.badge-live { color: var(--ok); background: var(--ok-soft); }
.badge-coming-soon { color: var(--accent); background: var(--accent-soft); }
.badge-planned { color: var(--faint); background: var(--bg-3); border: 1px dashed var(--border); }

/* ---------- pinned tools + pin toggle ---------- */
.pinned-hint { font-size: .78rem; color: var(--faint); }
.tool-card { position: relative; }
.tool-card.is-live .tc-top { padding-right: 26px; }
.tc-pin { position: absolute; top: 13px; right: 13px; width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; color: var(--faint); background: transparent;
  border: 1px solid transparent; z-index: 2; transition: color .12s, background .12s; }
.tc-pin svg { width: 17px; height: 17px; }
.tc-pin:hover { color: var(--accent); background: var(--bg-3); }
.tc-pin.on { color: var(--c-amber); }
.tc-pin.on svg { fill: currentColor; }
.tc-pin:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.pinned-empty { grid-column: 1 / -1; display: flex; align-items: center; gap: 12px; justify-content: center;
  padding: 24px; border: 1px dashed var(--border); border-radius: var(--radius);
  background: var(--bg-2); color: var(--muted); }
.pinned-empty svg { width: 20px; height: 20px; color: var(--faint); flex: none; }
.pinned-empty p { margin: 0; font-size: .92rem; }

/* ---------- why band ---------- */
.why { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); }
.why h2 { margin: 0 0 8px; font-size: 1.35rem; letter-spacing: -.02em; }
.why-intro { margin: 0 0 26px; color: var(--muted); max-width: none; font-size: .96rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 28px; }
.why-item .wi-top { display: flex; align-items: center; gap: 9px; font-weight: 650; margin-bottom: 5px; }
.why-item .wi-top svg { width: 20px; height: 20px; }
.why-item p { margin: 0; color: var(--muted); font-size: .9rem; }

/* ---------- footer ---------- */
.site-footer { margin-top: 40px; border-top: 1px solid #f6610e; padding: 40px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 26px; }
.foot-about .brand { margin-bottom: 12px; }
.foot-about p { color: var(--muted); font-size: .88rem; max-width: 22em; margin: 0 0 14px; }
.foot-about p.foot-beta { font-size: .82rem; max-width: 25em; margin: 10px 0 0; }
.foot-about p.foot-beta strong { color: #f6610e; }
.foot-icons { display: flex; gap: 12px; }
.foot-icons svg { width: 18px; height: 18px; }
.foot-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--faint); margin: 4px 0 12px; }
.foot-col a { display: block; color: var(--muted); font-size: .9rem; padding: 4px 0; }
.foot-col a:hover { color: var(--text); }
.promise { background: var(--bg-3); border: 1px solid var(--border-2); border-radius: 12px; padding: 16px; }
.promise .pr-top { display: flex; align-items: center; gap: 8px; font-weight: 650; margin-bottom: 6px; }
.promise p { margin: 0; color: var(--muted); font-size: .86rem; }
.foot-base { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--border-2);
  color: var(--faint); font-size: .84rem; }

.noscript { background: var(--accent-soft); color: var(--accent); border-radius: 10px;
  padding: 12px 16px; font-size: .9rem; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-art { display: none; }
  .featured-card { grid-template-columns: 1fr; }
  .fc-art { border-left: 0; border-top: 1px solid var(--border-2); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-about, .promise { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .brand-tag { display: none; }
  .site-header .wrap { gap: 10px; }
  .cat-grid, .tool-grid, .why-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 430px) { .beta-pill { display: none; } }

/* hayerapps · v0.1.0 */
