/* ============================================================
   Rakho — landing page
   Pure CSS, no framework. Drop-in via <link rel="stylesheet">.
   ============================================================ */

:root {
  --bg:            #FFFFFF;
  --bg-soft:       #F5F5F7;     /* Apple light-gray bands */
  --bg-elev:       #FFFFFF;
  --bg-elev-2:     #F5F5F7;
  --surface:       #FFFFFF;
  --surface-hi:    #FBFBFD;
  --border:        rgba(0, 0, 0, 0.08);
  --border-hi:     rgba(0, 0, 0, 0.16);

  --fg:            #1D1D1F;     /* near-black */
  --fg-soft:       #4B4B50;
  --fg-muted:      #86868B;     /* Apple gray */
  --fg-faint:      #AEAEB2;

  --accent:        #0071E3;     /* Apple blue */
  --accent-2:      #2997FF;     /* SF blue   */
  --accent-deep:   #0066CC;
  --accent-soft:   #5AC8FA;
  --green:         #1A9E4B;
  --orange:        #C2410C;
  --red:           #D63B3B;

  --radius:        14px;
  --radius-sm:     10px;
  --radius-lg:     22px;

  --shadow-1:      0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-2:      0 18px 50px -16px rgba(15,30,60,0.22);

  --max:           1180px;

  --font-sans:     -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter",
                   "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display:  -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter",
                   "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono:     ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1100px 600px at 80% -240px, rgba(0,113,227,0.07), transparent 60%),
    radial-gradient(900px 500px at -5% 120px,  rgba(41,151,255,0.05), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  padding: 1px 6px;
  background: #F0F1F4;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg-soft);
}
em { font-style: normal; color: var(--fg); font-weight: 500; }

/* Brand glyph driven by the real logo via CSS mask, so it inherits currentColor */
.rakho-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url('assets/logo-icon-svg.svg') no-repeat center / contain;
          mask: url('assets/logo-icon-svg.svg') no-repeat center / contain;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.06rem; line-height: 1.3; }
h4 { font-size: 1rem; line-height: 1.3; }

p { margin: 0; color: var(--fg-soft); }


/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}
.brand-mark {
  color: var(--fg);
  font-size: 32px;
  line-height: 0;
}
.brand-name { font-weight: 600; }

/* Footer brand keeps a touch more presence than before but a notch under nav */
.brand-footer .brand-mark { font-size: 28px; }
.brand-footer { font-size: 1.05rem; }

@media (max-width: 540px) {
  .brand { gap: 8px; font-size: 1rem; }
  .brand-mark { font-size: 28px; }
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: 18px;
  font-size: 0.92rem;
  color: var(--fg-muted);
}
.nav-links a:hover { color: var(--fg); }

.nav .btn { margin-left: auto; }


/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.94rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,113,227,0.28);
}
.btn-primary:hover { background: #0077ED; }
.btn-ghost {
  background: #F0F1F4;
  color: var(--fg);
  border-color: transparent;
}
.btn-ghost:hover { background: #E7E8EC; }
.btn-link {
  color: var(--accent);
  padding: 10px 8px;
}
.btn-link:hover { color: var(--accent-deep); }

/* Disabled / coming-soon button */
.btn-disabled,
.btn:disabled,
.btn[aria-disabled="true"] {
  background: #E7E8EC;
  color: var(--fg-muted);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
  font-family: inherit;
}
.btn-disabled:hover,
.btn:disabled:hover { transform: none; }
.btn-tag {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--fg-soft);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}


/* ===========================================================
   HERO
   =========================================================== */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 40px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F0F1F4;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--fg-soft);
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero h1 {
  color: var(--fg);
}

.lede {
  margin-top: 18px;
  font-size: 1.16rem;
  color: var(--fg-soft);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-meta {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: var(--fg-muted);
  font-size: 0.88rem;
}
.hero-meta li {
  position: relative;
  padding-left: 18px;
}
.hero-meta li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}


/* ===========================================================
   HERO MOCK — light macOS popover + floating menu-bar pill
   =========================================================== */
.hero-mock {
  position: relative;
  display: grid;
  justify-items: end;
}

.mock-popover {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 14px 0 8px;
  box-shadow: var(--shadow-1), var(--shadow-2);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 12px;
  border-bottom: 1px solid var(--border);
}
.mock-title {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.mock-pill {
  font-size: 0.7rem;
  color: var(--fg-muted);
  background: #F0F1F4;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
}
.mock-gear { color: var(--fg-muted); }

.mock-section-head {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 16px 6px;
  color: var(--fg-muted);
  background: rgba(0,0,0,0.015);
}

.mock-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mock-row:last-of-type { border-bottom: none; }
.mock-row-dim { opacity: 0.72; }

.mock-thumb {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: grid; place-items: center;
  font-size: 14px;
}
.thumb-blue   { background: rgba(0,113,227,0.12);  color: var(--accent); }
.thumb-orange { background: rgba(194,65,12,0.12);  color: var(--orange); }

.mock-row-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.mock-row-sub {
  font-size: 0.74rem;
  color: var(--fg-muted);
}

.mock-actions { display: flex; gap: 6px; }
.mock-btn {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 11px;
}
.mock-btn.green { background: rgba(26,158,75,0.14); color: var(--green); }
.mock-btn.red   { background: rgba(214,59,59,0.14); color: var(--red); }
.mock-btn.ghost { background: #F0F1F4; color: var(--fg-muted); }

.mock-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 6px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.mock-summary { color: var(--fg-muted); font-size: 0.78rem; }
.mock-bulk-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mock-bulk {
  font-size: 0.78rem;
  color: var(--accent);
  background: rgba(0,113,227,0.08);
  border: 1px solid rgba(0,113,227,0.22);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.mock-bulk-trash {
  color: var(--red);
  background: rgba(214,59,59,0.08);
  border-color: rgba(214,59,59,0.22);
}

/* Floating menu-bar pill above the popover */
.mock-menubar {
  position: absolute;
  top: -10px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  font-size: 0.74rem;
  color: var(--fg-soft);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mock-menubar-icon { color: var(--fg); font-size: 15px; line-height: 0; }
.mock-menubar-badge {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 0.7rem;
}


/* ===========================================================
   WHY (three-step row)
   =========================================================== */
.why {
  max-width: var(--max);
  margin: 36px auto 0;
  padding: 56px 28px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 820px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-grid > div h3 { margin-top: 14px; }
.why-grid > div p  { margin-top: 8px; color: var(--fg-soft); }
.why-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}


/* ===========================================================
   MENUBAR — "Lives in your menu bar" showcase
   =========================================================== */
.menubar-show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* Wider zoomed slice of the macOS menu bar */
.menubar-zoom {
  width: 100%;
  max-width: 920px;
  position: relative;
}
.menubar-zoom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 18px 40px -22px rgba(0,0,0,0.30);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  font-size: 0.9rem;
  color: var(--fg);
  white-space: nowrap;
}
.zoom-mb-left,
.zoom-mb-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.zoom-mb-right { gap: 14px; }

.zoom-mb-apple { display: inline-grid; place-items: center; width: 16px; height: 16px; color: var(--fg); }
.zoom-mb-apple svg { width: 16px; height: 16px; }
.zoom-mb-app  { font-weight: 600; }
.zoom-mb-menu { color: var(--fg-soft); }
.zoom-mb-icon { display: inline-grid; place-items: center; color: var(--fg-soft); }
.zoom-mb-icon svg { display: block; height: 16px; width: auto; }
.zoom-mb-time { font-variant-numeric: tabular-nums; color: var(--fg); }

/* The featured Rakho item, with a soft pulse halo */
.zoom-mb-rakho {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(0,113,227,0.12);
  box-shadow: 0 0 0 1px rgba(0,113,227,0.35), 0 6px 18px rgba(0,113,227,0.25);
  color: var(--accent);
  font-size: 16px;
}
.zoom-mb-rakho .rakho-icon,
.zoom-mb-rakho .zoom-mb-rakho-badge { position: relative; z-index: 1; }
.zoom-mb-rakho-badge {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0 6px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  font-size: 0.66rem;
  line-height: 16px;
  text-align: center;
}
.zoom-mb-rakho-pulse {
  position: absolute;
  inset: -14px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(0,113,227,0.40) 0%, rgba(0,113,227,0) 65%);
  filter: blur(8px);
  pointer-events: none;
  animation: rakho-pulse 2.6s ease-in-out infinite;
}
@keyframes rakho-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 0.9;  transform: scale(1.08); }
}

.menubar-zoom-caption {
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  padding-right: 32px;
  text-align: right;
}
.zoom-caption-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(0,113,227,0.7), rgba(0,113,227,0));
  margin-right: 8px;
}
.zoom-caption-text {
  font-size: 0.86rem;
  color: var(--fg-soft);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .menubar-zoom-caption { padding-right: 16px; }
  .menubar-zoom-strip { font-size: 0.78rem; padding: 0 10px; }
  .zoom-mb-left { gap: 10px; }
  .zoom-mb-right { gap: 8px; }
  .zoom-mb-menu:nth-child(n+5) { display: none; }
  .zoom-mb-time { display: none; }
  .zoom-mb-icon { display: none; }
}

/* Three states of the menu bar icon */
.menubar-states {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .menubar-states { grid-template-columns: 1fr; } }

.state {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: var(--shadow-1);
}
.state h4 { margin-top: 4px; }
.state p  { color: var(--fg-soft); font-size: 0.94rem; }

.state-mb {
  width: 100%;
  height: 38px;
  border-radius: 10px;
  background: #F0F1F4;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  margin-bottom: 4px;
}
.state-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  color: var(--fg-soft);
  width: 18px;
  height: 18px;
  font-size: 16px;
}
.state-icon-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0 5px;
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  font-size: 0.6rem;
  line-height: 14px;
  text-align: center;
}
.state-icon.is-active {
  color: var(--accent);
  background: rgba(0,113,227,0.14);
  box-shadow: 0 0 0 1px rgba(0,113,227,0.35);
  border-radius: 6px;
  width: 28px;
  height: 22px;
}

/* ===========================================================
   SECTION SCAFFOLDING
   =========================================================== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 28px;
}
.section-tinted {
  max-width: none;
  margin: 60px 0;
  padding: 100px 28px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-tinted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.section-head.narrow { max-width: 600px; }
.section-head h2 {
  margin-top: 14px;
  color: var(--fg);
}
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-lede {
  margin-top: 16px;
  color: var(--fg-soft);
  font-size: 1.04rem;
}


/* ===========================================================
   FEATURE GRID
   =========================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 920px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(0,0,0,0.05), transparent 50%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 16px 40px rgba(0,0,0,0.10);
}
.feature h3 { margin-top: 16px; }
.feature p  { margin-top: 8px; font-size: 0.94rem; color: var(--fg-soft); }

.feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: rgb(var(--tint));
  background: rgba(var(--tint), 0.12);
  border: 1px solid rgba(var(--tint), 0.22);
}
.feature-icon svg { width: 20px; height: 20px; }


/* ===========================================================
   TEMPLATES
   =========================================================== */
.template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .template-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .template-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .template-grid { grid-template-columns: 1fr; } }

.template {
  --accent: 0, 113, 227;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.template:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 14px 34px rgba(0,0,0,0.10);
}
.template::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 80% 20%, rgba(var(--accent), 0.30), transparent 70%);
  pointer-events: none;
}
.template-icon { font-size: 22px; line-height: 1; }
.template h4 { margin-top: 2px; }
.template p  { font-size: 0.88rem; color: var(--fg-soft); }

.chips {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chips li, .chips span {
  font-size: 0.74rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: #F0F1F4;
  border: 1px solid var(--border);
  color: var(--fg-soft);
}
.chips.small li, .chips.small span { font-size: 0.72rem; }


/* ===========================================================
   AI SECTION
   =========================================================== */
.section-ai {
  max-width: none;
  padding: 100px 28px;
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(0,113,227,0.07), transparent 60%),
    radial-gradient(700px 400px at 15% 60%, rgba(41,151,255,0.05), transparent 60%);
}
.ai-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .ai-grid { grid-template-columns: 1fr; } }

.ai-grid h2 {
  margin-top: 14px;
  color: var(--fg);
}
.ai-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--fg-soft);
}
.ai-bullets li { display: flex; gap: 10px; }
.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(26,158,75,0.14);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.ai-card-wrap { display: grid; justify-items: end; }
.ai-card {
  width: 100%;
  max-width: 460px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 30px 60px -24px rgba(0,113,227,0.30), var(--shadow-1);
}
.ai-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.ai-spark { color: var(--accent); }
.ai-card-title {
  font-weight: 600;
  font-family: var(--font-display);
  flex: 1;
}
.ai-card-tag {
  font-size: 0.74rem;
  color: var(--green);
}

.ai-suggestion {
  padding: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-suggestion-title {
  font-weight: 600;
  font-size: 0.96rem;
}
.ai-suggestion-explain {
  font-size: 0.88rem;
  color: var(--fg-soft);
}
.ai-suggestion-actions {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.pill {
  font-size: 0.74rem;
  padding: 4px 12px;
  border-radius: 999px;
  background: #F0F1F4;
  border: 1px solid var(--border);
  color: var(--fg-soft);
}
.pill-primary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.pill.ghost { background: transparent; color: var(--fg-muted); }

.ai-cost {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lock { font-size: 13px; }


/* ===========================================================
   PRIVACY
   =========================================================== */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .privacy-grid { grid-template-columns: 1fr; } }

.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-1);
}
.privacy-card h4 { margin-bottom: 6px; }
.privacy-card p  { color: var(--fg-soft); }


/* ===========================================================
   FAQ
   =========================================================== */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color 200ms ease, background 200ms ease;
}
.faq details[open] {
  background: var(--surface-hi);
  border-color: var(--border-hi);
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--fg-muted);
  font-size: 1.1rem;
  transition: transform 200ms ease;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin-top: 10px;
  color: var(--fg-soft);
  font-size: 0.95rem;
}


/* ===========================================================
   CTA
   =========================================================== */
.section-cta {
  text-align: center;
  padding: 120px 28px;
}
.cta { max-width: 640px; margin: 0 auto; }
.cta h2 {
  color: var(--fg);
}
.cta p { margin-top: 14px; color: var(--fg-soft); font-size: 1.05rem; }
.cta-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cta-fineprint {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}


/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px;
  margin-top: 40px;
}
.footer-row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-footer .brand-mark { color: var(--fg-muted); }
.brand-footer { color: var(--fg-muted); }
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.footer-links a:hover { color: var(--fg); }
.footer-fine {
  max-width: var(--max);
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--fg-faint);
}
.footer-credit {
  display: inline-block;
  margin-left: 6px;
  color: var(--fg-muted);
}
.footer-credit a {
  color: var(--fg-soft);
  border-bottom: 1px dotted var(--border-hi);
  transition: color 150ms ease, border-color 150ms ease;
}
.footer-credit a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer-name {
  display: block;
  margin-bottom: 8px;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  color: var(--fg-soft);
  font-family:
    -apple-system, "SF Pro Display", "Noto Sans Devanagari",
    "Noto Nastaliq Urdu", "Noto Naskh Arabic", system-ui, sans-serif;
}
.footer-name [lang="hi"],
.footer-name [lang="ur"] {
  color: var(--fg);
  font-weight: 500;
}
.footer-name [lang="ur"] {
  font-family:
    "Noto Nastaliq Urdu", "Geeza Pro", "Noto Naskh Arabic",
    -apple-system, system-ui, sans-serif;
  direction: rtl;
  unicode-bidi: isolate;
}
.footer-name-dot {
  color: var(--accent);
  opacity: 0.55;
  margin: 0 4px;
}


/* ===========================================================
   ORGANIZE — before & after Finder windows
   =========================================================== */
.organize-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
@media (max-width: 900px) {
  .organize-grid { grid-template-columns: 1fr; gap: 14px; }
}

.finder-window {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 24px 60px -28px rgba(0,0,0,0.35);
}

.finder-titlebar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  height: 42px;
  background: linear-gradient(180deg, #FBFBFD 0%, #F1F2F5 100%);
  border-bottom: 1px solid var(--border);
}
.finder-tl-buttons { display: flex; align-items: center; gap: 7px; }
.tl-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.tl-red    { background: #FF5F57; }
.tl-yellow { background: #FEBC2E; }
.tl-green  { background: #28C840; }
.finder-title {
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}
.finder-count {
  justify-self: end;
  font-size: 0.74rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

.finder-body { padding: 16px; }

/* BEFORE — messy file grid */
.finder-grid.messy {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 10px;
  max-height: 320px;
  overflow: hidden;
}
.finder-grid.messy::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #FFFFFF 92%);
  pointer-events: none;
}
.finder-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.ftype {
  width: 34px; height: 42px;
  border-radius: 5px;
  position: relative;
  background: #C7CAD1;
  box-shadow: inset 0 -10px 0 rgba(0,0,0,0.06);
}
.ftype::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  border-width: 0 9px 9px 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.85) transparent;
}
.ftype-img { background: #4AA3FF; }
.ftype-zip { background: #B0876A; }
.ftype-dmg { background: #9B8CFF; }
.ftype-doc { background: #FF6B6B; }
.ftype-vid { background: #3BC7C0; }
.fname {
  font-size: 0.66rem;
  color: var(--fg-muted);
  line-height: 1.2;
  max-width: 76px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* The connector between the two windows */
.organize-arrow {
  display: grid;
  place-items: center;
}
.arrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 28px -8px rgba(0,113,227,0.55);
}
.arrow-pill .rakho-icon { font-size: 18px; }
.arrow-glyph { width: 18px; height: 18px; color: #fff; }
@media (max-width: 900px) {
  .arrow-pill { transform: rotate(90deg); }
}

/* AFTER — tidy folder list */
.finder-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.finder-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 6px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.finder-list li:last-child { border-bottom: none; }
.finder-list-foot { opacity: 0.55; }

.folder-icon {
  position: relative;
  width: 30px; height: 23px;
  border-radius: 4px;
  flex: 0 0 auto;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08);
}
.folder-icon::before {
  content: "";
  position: absolute;
  top: -4px; left: 3px;
  width: 13px; height: 6px;
  border-radius: 3px 3px 0 0;
  background: inherit;
}
.folder-blue   { background: #3B9BFF; }
.folder-purple { background: #A78BFF; }
.folder-orange { background: #FFA63B; }
.folder-teal   { background: #34C7C0; }
.folder-green  { background: #34C759; }
.folder-empty  { background: #C7CAD1; }

.folder-name {
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--fg);
}
.folder-count {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}


/* ===========================================================
   PAGE HERO (privacy / changelog / contact shared)
   =========================================================== */
.page-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 28px 24px;
  text-align: center;
}
.page-hero h1 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
}
.page-lede {
  margin-top: 18px;
  color: var(--fg-soft);
  font-size: 1.1rem;
}
.page-meta {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--fg-muted);
}

.link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,113,227,0.35);
  transition: color 150ms ease, border-color 150ms ease;
}
.link:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

[aria-current="page"] { color: var(--fg); font-weight: 600; }


/* ===========================================================
   LEGAL PAGE (privacy)
   =========================================================== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 28px 100px;
}
.legal h2 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p {
  margin: 12px 0;
  color: var(--fg-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.legal-list {
  margin: 14px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.legal-list li {
  position: relative;
  padding: 14px 16px 14px 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}
.legal-list strong { color: var(--fg); font-weight: 600; }


/* ===========================================================
   WAITLIST PAGE (contact)
   =========================================================== */
.waitlist-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 28px 56px;
  text-align: center;
}
.waitlist-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #F0F1F4;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--fg-soft);
  margin-bottom: 22px;
}
.waitlist-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,113,227,0.15);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,113,227,0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(0,113,227,0.04); }
}
.waitlist-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.6rem);
  line-height: 1.05;
}
.waitlist-lede {
  margin: 18px auto 0;
  max-width: 540px;
  font-size: 1.16rem;
  color: var(--fg-soft);
}
.waitlist-strong { color: var(--fg); font-weight: 600; }

.waitlist-form {
  margin: 36px auto 14px;
  max-width: 460px;
  display: flex;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 18px 50px -20px rgba(0,113,227,0.30);
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.waitlist-form:focus-within {
  border-color: rgba(0,113,227,0.45);
  box-shadow:
    0 0 0 4px rgba(0,113,227,0.12),
    0 18px 50px -20px rgba(0,113,227,0.30);
}
.waitlist-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--fg);
  outline: none;
}
.waitlist-input::placeholder { color: var(--fg-muted); }
.waitlist-submit {
  padding: 10px 18px;
  font-size: 0.94rem;
}
@media (max-width: 520px) {
  .waitlist-form { flex-direction: column; border-radius: 14px; padding: 8px; }
  .waitlist-form .waitlist-submit { width: 100%; justify-content: center; border-radius: 10px; }
  .waitlist-input { padding: 12px 14px; }
}

.waitlist-meta {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  color: var(--fg-muted);
  font-size: 0.86rem;
}
.waitlist-meta li {
  position: relative;
  padding-left: 18px;
}
.waitlist-meta li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.waitlist-counter {
  margin: 36px auto 0;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.counter-num {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.counter-label { font-size: 0.86rem; color: var(--fg-muted); }

/* Perks grid */
.perks .section-head { margin-bottom: 40px; }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .perks-grid { grid-template-columns: 1fr; } }
.perk {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-1);
}
.perk h3 { margin-top: 14px; }
.perk p  { margin-top: 8px; color: var(--fg-soft); font-size: 0.96rem; }
.perk-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(0,113,227,0.10);
  color: var(--accent);
  border: 1px solid rgba(0,113,227,0.20);
}
.perk-icon svg { width: 20px; height: 20px; }

/* Quotes / testimonials */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .quotes-grid { grid-template-columns: 1fr; } }
.quote {
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow-1);
}
.quote blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--fg);
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.86rem;
}
.quote-name { font-weight: 600; color: var(--fg); }
.quote-role { color: var(--fg-muted); }

/* "Or just say hi" cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 14px 34px rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.12);
}
.contact-card-icon {
  width: 38px; height: 38px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: grid; place-items: center;
  background: #F0F1F4;
  color: var(--fg);
}
.contact-card-icon svg { width: 18px; height: 18px; }
.contact-card h4 { margin: 0; }
.contact-card p  { margin: 2px 0 0; color: var(--fg-muted); font-size: 0.86rem; }


/* ===========================================================
   CHANGELOG / FEATURE LIST PAGE
   =========================================================== */
.feature-list-section { padding-top: 56px; }
.feature-list-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.feature-list-head h2 { color: var(--fg); }
.feature-list-head p { margin-top: 10px; color: var(--fg-muted); }

.feature-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .feature-groups { grid-template-columns: 1fr; } }

.feature-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 12px;
  box-shadow: var(--shadow-1);
}
.feature-group-title {
  margin: 0 0 12px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature-tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,113,227,0.10);
  border: 1px solid rgba(0,113,227,0.22);
  padding: 2px 7px;
  border-radius: 999px;
  vertical-align: middle;
  font-weight: 600;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.feature-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-top: 1px solid var(--border);
  color: var(--fg-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}
.feature-list li:first-child { border-top: none; padding-top: 4px; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 18px;
  width: 8px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.feature-list li:first-child::before { top: 11px; }
.feature-list strong { color: var(--fg); font-weight: 600; }

/* Changelog list */
.changelog-section { padding: 80px 28px; }
.changelog {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.release {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-1);
}
.release-upcoming {
  background: rgba(0,113,227,0.04);
  border-color: rgba(0,113,227,0.22);
}

.release-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.release-version {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.release-tag {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,113,227,0.10);
  border: 1px solid rgba(0,113,227,0.22);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
}
.release-tag-current {
  color: var(--green);
  background: rgba(26,158,75,0.10);
  border-color: rgba(26,158,75,0.28);
}
.release-num {
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.release-date {
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

.release-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.release-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 0.96rem;
  color: var(--fg-soft);
  line-height: 1.5;
}
@media (max-width: 520px) {
  .release-list li { grid-template-columns: 1fr; gap: 4px; }
}
.rl-tag {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-align: center;
  width: max-content;
}
.rl-new      { color: var(--accent); background: rgba(0,113,227,0.10); border: 1px solid rgba(0,113,227,0.22); }
.rl-improved { color: #7C3AED;       background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.20); }
.rl-fixed    { color: var(--orange); background: rgba(194,65,12,0.08); border: 1px solid rgba(194,65,12,0.22); }


/* ===========================================================
   "WHAT'S IN A NAME" — homepage etymology section
   =========================================================== */
.naming {
  max-width: 820px;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
.naming-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFC 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 64px 32px 56px;
  box-shadow: var(--shadow-1);
}
.naming-card .kicker { display: inline-block; }

.naming-scripts {
  margin: 22px 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.script {
  font-family:
    -apple-system, "SF Pro Display", "Noto Sans Devanagari",
    "Noto Nastaliq Urdu", "Noto Naskh Arabic", system-ui, sans-serif;
  font-weight: 500;
}
.script-urdu {
  font-family:
    "Noto Nastaliq Urdu", "Geeza Pro", "Noto Naskh Arabic",
    -apple-system, system-ui, sans-serif;
  direction: rtl;
}
.naming-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex: 0 0 auto;
  box-shadow: 0 0 0 6px rgba(0,113,227,0.10);
}

.naming-translit {
  margin: 0;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.naming h2 {
  margin-top: 28px;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--fg);
}

.naming-body {
  margin: 16px auto 0;
  max-width: 540px;
  color: var(--fg-soft);
  font-size: 1.04rem;
  line-height: 1.65;
}
.naming-body em {
  font-style: normal;
  font-weight: 600;
  color: var(--fg);
}

@media (max-width: 520px) {
  .naming-card { padding: 44px 22px 40px; }
  .naming-scripts { gap: 18px; }
}


/* ===========================================================
   NAMEPLATE — small name-origin line on the contact page
   =========================================================== */
.nameplate {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 28px 0;
  text-align: center;
}
.nameplate-text {
  display: inline-block;
  font-size: 0.96rem;
  color: var(--fg-soft);
  line-height: 1.65;
  padding: 14px 22px;
  background: #FAFAFC;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.nameplate-text em {
  font-style: normal;
  font-weight: 600;
  color: var(--fg);
}
.nameplate-script {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 6px;
  font-family:
    -apple-system, "SF Pro Display", "Noto Sans Devanagari",
    "Noto Nastaliq Urdu", "Noto Naskh Arabic", system-ui, sans-serif;
  color: var(--fg);
  font-weight: 500;
}
.nameplate-script [lang="ur"] {
  font-family:
    "Noto Nastaliq Urdu", "Geeza Pro", "Noto Naskh Arabic",
    -apple-system, system-ui, sans-serif;
  direction: rtl;
}
.nameplate-mid { color: var(--accent); opacity: 0.7; }

@media (max-width: 540px) {
  .nameplate-text {
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 0.92rem;
  }
}


/* ===========================================================
   RESPONSIVE — phone polish (everything below 720px)
   =========================================================== */

/* Tablet & phone — collapse nav to brand + CTA only */
@media (max-width: 720px) {
  .nav {
    gap: 12px;
    padding: 12px 18px;
  }
  .nav-links { display: none; }
  .nav .btn { padding: 8px 14px; font-size: 0.88rem; }

  /* Tighten everything horizontal so nothing kisses the edge */
  .hero            { padding: 56px 20px 24px; gap: 28px; }
  .why             { padding: 40px 20px 0; margin-top: 16px; }
  .section         { padding: 64px 20px; }
  .section-tinted  { padding: 64px 20px; margin: 40px 0; }
  .section-ai      { padding: 64px 20px; }
  .section-cta     { padding: 80px 20px; }
  .page-hero       { padding: 64px 20px 16px; }
  .waitlist-hero   { padding: 56px 20px 40px; }
  .legal           { padding: 24px 20px 64px; }
  .changelog-section { padding: 64px 20px; }
  .nameplate       { padding: 22px 20px 0; }

  /* Section heads tighter on phones */
  .section-head { margin-bottom: 36px; }

  /* Hero & CTA buttons stretch full-width — feels more native */
  .hero-cta {
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn,
  .hero-cta .btn-disabled {
    width: 100%;
    justify-content: center;
  }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Hero meta — keep nice spacing */
  .hero-meta { gap: 10px 22px; }

  /* Page-hero h1 — keep it from feeling oversize */
  .page-hero h1, .waitlist-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Footer wraps cleanly */
  .footer { padding: 24px 20px; }
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }
  .footer-fine {
    padding: 0;
    line-height: 1.7;
  }
  .footer-fine .footer-credit {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }

  /* Hero mock floats: nudge inset so the menu-bar pill doesn't escape */
  .mock-menubar { right: 14px; }

  /* Before/after: cap the messy grid height tighter so the page doesn't bloat */
  .finder-grid.messy { grid-template-columns: repeat(3, 1fr); max-height: 280px; }
  .finder-titlebar { grid-template-columns: auto 1fr; gap: 8px; padding: 0 12px; }
  .finder-title { display: none; }
  .finder-count { font-size: 0.7rem; }

  /* Waitlist input pill -> stacked on phones */
  .waitlist-form {
    flex-direction: column;
    border-radius: 14px;
    padding: 8px;
    gap: 8px;
  }
  .waitlist-form .waitlist-submit {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
  }
  .waitlist-input { padding: 12px 14px; }
}

/* Smallish phones */
@media (max-width: 480px) {
  /* Slim down hero CTAs further so they don't dominate */
  .btn { padding: 10px 16px; font-size: 0.92rem; }

  /* "What's in a name" card softer on small */
  .naming { padding-top: 40px; padding-bottom: 40px; }
  .naming-card { padding: 40px 20px 36px; border-radius: 18px; }
  .naming-scripts { gap: 16px; font-size: clamp(2rem, 9vw, 2.6rem); }

  /* Before/after: connector compresses + finder windows tighter */
  .organize-grid { gap: 10px; }
  .finder-grid.messy { grid-template-columns: repeat(2, 1fr); max-height: 240px; }
  .finder-body { padding: 14px; }
  .finder-list li { padding: 10px 4px; }

  /* Quotes / perks / contact cards */
  .perk, .quote, .contact-card, .feature-group, .privacy-card,
  .feature, .state, .ai-card, .release {
    padding: 18px;
  }

  /* AI card: align bullets vertically nicely */
  .ai-suggestion-actions { flex-wrap: wrap; }

  /* Section h2 — slightly smaller minimum */
  h1 { font-size: clamp(2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }

  /* Eyebrow / kicker spacing */
  .eyebrow, .waitlist-eyebrow { font-size: 0.78rem; }

  /* Tighten arrow pill in before/after */
  .arrow-pill { padding: 8px 14px; font-size: 0.86rem; }

  /* Trust counter pill stays readable but smaller */
  .waitlist-counter { padding: 8px 14px; gap: 8px; }
  .counter-num { font-size: 1rem; }
  .counter-label { font-size: 0.8rem; }

  /* Footer brand + script attribution slim */
  .footer-name { font-size: 0.88rem; }
  .footer-fine { font-size: 0.78rem; }
}


/* ===========================================================
   REDUCED MOTION
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
