/* =========================================================
   DorvWorld + AquaTrack — shared stylesheet
   ========================================================= */

:root {
  --dw-sage: #b0ac9a;
  --dw-sage-deep: #908d7d;
  --dw-blue-deep: #1E3A8A;
  --dw-blue: #2563EB;
  --dw-cyan: #22D3EE;
  --dw-gold: #FACC15;
  --dw-ink: #111827;
  --dw-ink-soft: #1f2937;
  --dw-muted: #4b5563;
  --dw-glass: rgba(255, 255, 255, 0.72);
  --dw-glass-strong: rgba(255, 255, 255, 0.9);
  --dw-glass-border: rgba(255, 255, 255, 0.6);
  --dw-shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06), 0 2px 6px rgba(17, 24, 39, 0.04);
  --dw-shadow-md: 0 8px 24px -8px rgba(17, 24, 39, 0.18), 0 4px 12px -4px rgba(17, 24, 39, 0.08);
  --dw-shadow-lg: 0 30px 60px -20px rgba(30, 58, 138, 0.25), 0 12px 30px -12px rgba(17, 24, 39, 0.18);
  --dw-radius-sm: 10px;
  --dw-radius-md: 18px;
  --dw-radius-lg: 28px;
  --dw-radius-xl: 36px;
  --dw-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --dw-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --dw-maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--dw-font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--dw-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--dw-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   DORVWORLD — hub page
   ========================================================= */

body.dorvworld {
  background: var(--dw-sage);
  background-image:
    radial-gradient(1100px 600px at 12% -10%, rgba(34, 211, 238, 0.32), transparent 60%),
    radial-gradient(900px 500px at 95% 5%, rgba(250, 204, 21, 0.28), transparent 65%),
    radial-gradient(1200px 700px at 70% 110%, rgba(37, 99, 235, 0.28), transparent 60%),
    linear-gradient(180deg, var(--dw-sage) 0%, #c2bfae 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* floating blobs */
.dw-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.dw-blobs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: dwFloat 18s ease-in-out infinite;
}
.dw-blobs span:nth-child(1) { width: 380px; height: 380px; background: var(--dw-cyan); top: 10%; left: -8%; }
.dw-blobs span:nth-child(2) { width: 320px; height: 320px; background: var(--dw-gold); top: 5%; right: -6%; animation-delay: -6s; }
.dw-blobs span:nth-child(3) { width: 460px; height: 460px; background: var(--dw-blue); bottom: -12%; left: 30%; animation-delay: -12s; opacity: 0.4; }

@keyframes dwFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(20px, -30px, 0) scale(1.08); }
}

/* nav */
.dw-nav {
  position: relative;
  z-index: 5;
  padding: 22px 0;
}
.dw-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dw-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.dw-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dw-blue) 0%, var(--dw-cyan) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--dw-shadow-md);
}
.dw-nav-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: var(--dw-ink-soft);
  font-weight: 500;
}
.dw-nav-links a { transition: color 160ms ease; }
.dw-nav-links a:hover { color: var(--dw-blue); }

/* hero */
.dw-hero {
  position: relative;
  z-index: 1;
  padding: 40px 0 80px;
}
.dw-hero-card {
  background: var(--dw-glass);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--dw-glass-border);
  border-radius: var(--dw-radius-xl);
  padding: 56px clamp(28px, 5vw, 72px) 64px;
  box-shadow: var(--dw-shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dw-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 50% -20%, rgba(34, 211, 238, 0.25), transparent 70%),
    radial-gradient(400px 200px at 50% 120%, rgba(250, 204, 21, 0.15), transparent 70%);
  pointer-events: none;
}
.dw-hero-logo {
  width: clamp(220px, 28vw, 340px);
  max-height: 220px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  position: relative;
}
.dw-hero-logo .dw-hero-logo-img {
  width: 100%;
  max-width: 340px;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(30, 58, 138, 0.25));
}
.dw-hero-logo .dw-logo-fallback {
  font-family: var(--dw-font-sans);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--dw-blue-deep) 0%, var(--dw-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dw-hero-logo .dw-logo-fallback::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--dw-blue) 0%, var(--dw-cyan) 100%);
  display: inline-block;
}

.dw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dw-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dw-blue-deep);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.dw-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--dw-cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.dw-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  font-weight: 700;
  text-wrap: balance;
}
.dw-hero h1 .accent {
  background: linear-gradient(135deg, var(--dw-blue-deep) 0%, var(--dw-blue) 50%, var(--dw-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dw-hero p.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--dw-muted);
  max-width: 620px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* marketplace */
.dw-marketplace {
  position: relative;
  z-index: 1;
  padding: 20px 0 100px;
}
.dw-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.dw-section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 700;
}
.dw-section-head .dw-count {
  font-family: var(--dw-font-mono);
  font-size: 12px;
  color: var(--dw-ink-soft);
  background: var(--dw-glass-strong);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--dw-glass-border);
}

.dw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) {
  .dw-grid { grid-template-columns: 1fr; }
}

.dw-app-card {
  background: var(--dw-glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--dw-glass-border);
  border-radius: var(--dw-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--dw-shadow-md);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms ease;
  position: relative;
  overflow: hidden;
}
.dw-app-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dw-blue-deep), var(--dw-blue), var(--dw-cyan));
  opacity: 0;
  transition: opacity 240ms ease;
}
.dw-app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dw-shadow-lg);
}
.dw-app-card:hover::after { opacity: 1; }

.dw-app-card.coming {
  background: rgba(255, 255, 255, 0.55);
  border-style: dashed;
}

.dw-app-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dw-app-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 12px rgba(34, 211, 238, 0.18);
  flex: none;
  overflow: hidden;
}
.dw-app-logo img { width: 78%; height: 78%; object-fit: contain; }
.dw-app-logo .dw-app-logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: 14px; }
.dw-app-logo.gold { background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 12px rgba(250, 204, 21, 0.22); }
.dw-app-logo.violet { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 12px rgba(99, 102, 241, 0.18); }
.dw-app-logo .glyph {
  font-family: var(--dw-font-sans);
  font-weight: 800;
  font-size: 22px;
  color: var(--dw-blue-deep);
  letter-spacing: -0.02em;
}
.dw-app-logo.gold .glyph { color: #92400e; }
.dw-app-logo.violet .glyph { color: #4338ca; }

.dw-app-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
.dw-app-meta {
  font-family: var(--dw-font-mono);
  font-size: 11px;
  color: var(--dw-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.dw-app-desc {
  margin: 0;
  font-size: 15px;
  color: var(--dw-muted);
  text-wrap: pretty;
}

.dw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dw-tag {
  font-family: var(--dw-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--dw-blue-deep);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
}

.dw-app-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dw-blue-deep) 0%, var(--dw-blue) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  box-shadow: 0 6px 20px -6px rgba(30, 58, 138, 0.5);
}
.dw-app-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -6px rgba(30, 58, 138, 0.6);
}
.dw-app-cta .arrow { transition: transform 200ms ease; }
.dw-app-cta:hover .arrow { transform: translateX(3px); }

.dw-app-cta.disabled {
  background: rgba(17, 24, 39, 0.08);
  color: var(--dw-muted);
  box-shadow: none;
  cursor: not-allowed;
  border: 1px dashed rgba(17, 24, 39, 0.2);
}
.dw-app-cta.disabled:hover { transform: none; box-shadow: none; }

/* footer */
.dw-footer {
  position: relative;
  z-index: 1;
  padding: 32px 0 48px;
  text-align: center;
  font-size: 13px;
  color: var(--dw-ink-soft);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   AQUATRACK — landing page
   ========================================================= */

body.aquatrack {
  background: #f6fbff;
  background-image:
    radial-gradient(1000px 600px at 0% 0%, rgba(34, 211, 238, 0.18), transparent 60%),
    radial-gradient(800px 500px at 100% 10%, rgba(37, 99, 235, 0.12), transparent 60%),
    linear-gradient(180deg, #f0f9ff 0%, #f6fbff 60%, #ffffff 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--dw-ink);
}

.aq-nav {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 251, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
}
.aq-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.aq-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.aq-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dw-blue) 0%, var(--dw-cyan) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
}
.aq-brand-mark::after {
  content: "";
  position: absolute;
  inset: auto 0 -50% 0;
  height: 80%;
  background: rgba(255,255,255,0.2);
  border-radius: 50% 50% 0 0;
}
.aq-nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--dw-ink-soft);
  font-weight: 500;
}
.aq-nav-links a:hover { color: var(--dw-blue); }
.aq-nav-links .aq-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.06);
  color: var(--dw-blue-deep);
  font-size: 13px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.aq-nav-links .aq-nav-cta span {
  font-size: 11px;
  opacity: 0.7;
  transition: transform 180ms ease;
}
.aq-nav-links .aq-nav-cta:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
  color: var(--dw-blue-deep);
}
.aq-nav-links .aq-nav-cta:hover span { transform: translate(2px, -2px); }

/* hero */
.aq-hero {
  padding: 64px 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .aq-hero { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 16px; }
}
.aq-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dw-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dw-blue);
  margin-bottom: 22px;
}
.aq-hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--dw-cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.25);
}
.aq-hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--dw-blue-deep) 0%, var(--dw-blue) 45%, var(--dw-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.aq-hero h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  font-weight: 600;
  color: var(--dw-ink);
}
.aq-hero p {
  font-size: 17px;
  color: var(--dw-muted);
  margin: 0 0 32px;
  max-width: 540px;
  text-wrap: pretty;
}
.aq-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.aq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  transition: all 200ms ease;
}
.aq-btn-primary {
  background: linear-gradient(135deg, var(--dw-blue-deep) 0%, var(--dw-blue) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(30, 58, 138, 0.6);
}
.aq-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -8px rgba(30, 58, 138, 0.7); }
.aq-btn-primary.disabled {
  background: rgba(17, 24, 39, 0.08);
  color: var(--dw-muted);
  box-shadow: none;
  cursor: not-allowed;
  border: 1px dashed rgba(17, 24, 39, 0.2);
}
.aq-btn-primary.disabled:hover { transform: none; box-shadow: none; }
.aq-btn-secondary {
  background: #fff;
  color: var(--dw-ink);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: var(--dw-shadow-sm);
}
.aq-btn-secondary:hover {
  border-color: var(--dw-blue);
  color: var(--dw-blue);
  transform: translateY(-1px);
}

/* hero phone visual */
.aq-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
.aq-phone {
  width: 280px;
  aspect-ratio: 9 / 19;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 40px 80px -20px rgba(30, 58, 138, 0.45),
    0 20px 40px -10px rgba(17, 24, 39, 0.25),
    inset 0 0 0 1.5px rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}
.aq-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, #e0f2fe 0%, #ffffff 60%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.aq-phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 30px; background: #0f172a; }

/* Screenshot variant: dedicated frame for real captures.
   - No invasive notch overlay covering content
   - object-fit: contain so headers/icons aren't cropped
   - subtle top safe-area chrome for the premium feel */
.aq-screen-card .aq-phone {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  padding: 10px;
  border-radius: 38px;
}
.aq-screen-card .aq-phone-screen {
  background: #ffffff;
  border-radius: 28px;
}
.aq-screen-card .aq-phone-screen img {
  object-fit: contain;
  object-position: center top;
  background: #fdf2f8;
  border-radius: 28px;
}
.aq-screen-card .aq-phone-notch {
  width: 56px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  top: 4px;
  z-index: 4;
  pointer-events: none;
}
.aq-screen-card .aq-phone-dark .aq-phone-screen { background: #0f172a; }
.aq-screen-card .aq-phone-dark .aq-phone-screen img { background: #0f172a; }
.aq-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #0f172a;
  border-radius: 999px;
  z-index: 3;
}

/* narrative phone screen */
.aq-narr {
  position: relative;
  height: 100%;
  padding: 40px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    radial-gradient(180px 120px at 80% 0%, rgba(34, 211, 238, 0.18), transparent 70%),
    radial-gradient(160px 140px at 0% 100%, rgba(37, 99, 235, 0.12), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  border-radius: 30px;
  overflow: hidden;
  font-family: var(--dw-font-sans);
}
.aq-narr::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(34, 211, 238, 0.12), transparent 50%);
  pointer-events: none;
}
.aq-narr-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--dw-font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--dw-blue-deep);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 4px 8px;
  border-radius: 999px;
  align-self: flex-start;
  z-index: 1;
}
.aq-narr-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dw-cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.22);
  animation: aqPulse 2.4s ease-in-out infinite;
}
@keyframes aqPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.05); }
}
.aq-narr-title {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 4px 0 0;
  color: var(--dw-ink);
  z-index: 1;
}
.aq-narr-title br + * { display: inline; }
.aq-narr-body {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--dw-muted);
  margin: 0;
  z-index: 1;
}
.aq-narr-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--dw-font-mono);
  font-size: 10.5px;
  color: var(--dw-ink-soft);
  z-index: 1;
}
.aq-narr-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(4px);
  animation: aqLineIn 480ms cubic-bezier(.2,.7,.2,1) forwards;
}
.aq-narr-list li:nth-child(1) { animation-delay: 0.6s; }
.aq-narr-list li:nth-child(2) { animation-delay: 1.0s; }
.aq-narr-list li:nth-child(3) { animation-delay: 1.4s; }
.aq-narr-list li:nth-child(4) { animation-delay: 1.8s; }
.aq-narr-list li:nth-child(5) { animation-delay: 2.2s; }
.aq-narr-list li:nth-child(6) {
  animation-delay: 2.6s;
  position: relative;
}
.aq-narr-list li:nth-child(6)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  background: var(--dw-cyan);
  margin-left: 4px;
  animation: aqCaret 1s steps(2) infinite;
  animation-delay: 3.2s;
}
@keyframes aqLineIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aqCaret {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
.aq-narr-tick {
  color: var(--dw-cyan);
  font-weight: 700;
  font-size: 12px;
}
.aq-narr-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(37, 99, 235, 0.18);
  z-index: 1;
}
.aq-narr-foot p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--dw-muted);
}
.aq-narr-foot p strong {
  color: var(--dw-blue-deep);
  font-weight: 600;
}

/* placeholder phone screen content */
.aq-phone-mock {
  padding: 38px 22px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: var(--dw-font-sans);
}
.aq-phone-mock .pm-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--dw-ink);
  margin-bottom: 18px;
  text-align: center;
}
.aq-phone-mock .pm-greet {
  font-size: 12px;
  color: var(--dw-muted);
  margin: 0 0 4px;
}
.aq-phone-mock .pm-h {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--dw-blue-deep);
}
.aq-ring {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 8px auto 18px;
}
.aq-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.aq-ring-bg { stroke: rgba(34, 211, 238, 0.15); stroke-width: 14; fill: none; }
.aq-ring-fg { stroke: url(#aq-ring-grad); stroke-width: 14; fill: none; stroke-linecap: round; stroke-dasharray: 440; stroke-dashoffset: 132; animation: aqRingFill 3.5s cubic-bezier(.2,.7,.2,1) infinite alternate; }
@keyframes aqRingFill {
  from { stroke-dashoffset: 200; }
  to   { stroke-dashoffset: 80; }
}
.aq-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.aq-ring-label .v {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dw-blue-deep);
  line-height: 1;
}
.aq-ring-label .u {
  font-size: 11px;
  color: var(--dw-muted);
  margin-top: 4px;
}
.aq-pm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.1);
  margin-bottom: 8px;
  font-size: 12px;
}
.aq-pm-row .l { color: var(--dw-ink); font-weight: 600; }
.aq-pm-row .r { color: var(--dw-blue); font-family: var(--dw-font-mono); font-size: 11px; }

/* floating chips beside phone */
.aq-chip {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--dw-shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  z-index: 3;
  animation: aqFloat 4.5s ease-in-out infinite;
}
.aq-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dw-cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
}
.aq-chip-1 { top: 14%; left: 0; animation-delay: 0s; }
.aq-chip-2 { top: 42%; right: 0; animation-delay: -1.5s; }
.aq-chip-3 { bottom: 12%; left: 6%; animation-delay: -3s; }
.aq-chip-2 .dot { background: var(--dw-gold); box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.25); }
.aq-chip-3 .dot { background: var(--dw-blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18); }
@keyframes aqFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (max-width: 900px) {
  .aq-chip-1 { left: 4%; }
  .aq-chip-2 { right: 4%; }
}

/* features */
.aq-section {
  padding: 72px 0;
}
.aq-section-head {
  text-align: center;
  margin-bottom: 44px;
}
.aq-eyebrow {
  font-family: var(--dw-font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dw-blue);
  margin-bottom: 12px;
}
.aq-section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}
.aq-section-head p {
  margin: 14px auto 0;
  max-width: 560px;
  color: var(--dw-muted);
  font-size: 17px;
  text-wrap: pretty;
}

.aq-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .aq-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .aq-features { grid-template-columns: 1fr; } }

.aq-feature {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--dw-radius-md);
  padding: 26px 22px 28px;
  box-shadow: var(--dw-shadow-sm);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  position: relative;
}
.aq-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--dw-shadow-md);
  border-color: rgba(34, 211, 238, 0.4);
}
.aq-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--dw-blue-deep);
}
.aq-feature-icon svg { width: 22px; height: 22px; }
.aq-feature h3 {
  font-size: 17px;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  font-weight: 700;
}
.aq-feature p {
  margin: 0;
  font-size: 14.5px;
  color: var(--dw-muted);
  line-height: 1.5;
  text-wrap: pretty;
}
.aq-feature .num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--dw-font-mono);
  font-size: 11px;
  color: rgba(17, 24, 39, 0.3);
}

/* screenshots */
.aq-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
@media (max-width: 880px) { .aq-screens { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; } }

.aq-screen-card {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--dw-radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: var(--dw-shadow-md);
  transition: transform 280ms ease;
}
.aq-screen-card:hover { transform: translateY(-6px); }
.aq-screen-card .aq-phone { width: 220px; box-shadow: 0 20px 40px -12px rgba(30, 58, 138, 0.3); }
.aq-screen-card .label {
  font-family: var(--dw-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dw-muted);
}

/* privacy strip */
.aq-privacy-strip {
  background: linear-gradient(135deg, var(--dw-blue-deep) 0%, var(--dw-blue) 60%, #0ea5b7 100%);
  border-radius: var(--dw-radius-xl);
  padding: 48px clamp(24px, 4vw, 56px);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 30px 60px -20px rgba(30, 58, 138, 0.5);
  position: relative;
  overflow: hidden;
}
.aq-privacy-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 240px at 100% 0%, rgba(34, 211, 238, 0.4), transparent 70%),
    radial-gradient(400px 200px at 0% 100%, rgba(250, 204, 21, 0.18), transparent 70%);
}
.aq-privacy-strip > * { position: relative; z-index: 1; }
.aq-privacy-strip h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  font-weight: 700;
}
.aq-privacy-strip p {
  margin: 0 0 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  text-wrap: pretty;
}
.aq-privacy-strip .aq-eyebrow { color: var(--dw-cyan); margin-bottom: 14px; }
.aq-privacy-strip .aq-btn-light {
  background: #fff;
  color: var(--dw-blue-deep);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.aq-privacy-strip .aq-btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -6px rgba(0,0,0,0.25);
}
.aq-privacy-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.aq-privacy-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(8px);
}
.aq-privacy-stat .k {
  font-family: var(--dw-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}
.aq-privacy-stat .v {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 760px) {
  .aq-privacy-strip { grid-template-columns: 1fr; }
}

/* aq footer */
.aq-footer {
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  padding: 32px 0 48px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--dw-muted);
}
.aq-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.aq-footer-links { display: flex; gap: 22px; }
.aq-footer-links a:hover { color: var(--dw-blue); }

/* =========================================================
   PRIVACY page
   ========================================================= */

body.privacy {
  background: #f5f7fb;
  min-height: 100vh;
  color: var(--dw-ink);
  font-size: 16px;
  line-height: 1.7;
}

.pv-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.pv-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--dw-blue);
  font-weight: 500;
  margin-bottom: 24px;
  transition: color 160ms ease;
}
.pv-back:hover { color: var(--dw-blue-deep); }

.pv-card {
  background: #ffffff;
  border-radius: var(--dw-radius-lg);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--dw-shadow-md);
  border: 1px solid rgba(17, 24, 39, 0.04);
}

.pv-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--dw-font-mono);
  font-size: 12px;
  color: var(--dw-muted);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.pv-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dw-cyan); }

.pv-card h1 {
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 700;
}
.pv-intro {
  font-size: 17px;
  color: var(--dw-ink-soft);
  margin: 0 0 36px;
  text-wrap: pretty;
}
.pv-card h2 {
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 36px 0 10px;
  font-weight: 700;
  color: var(--dw-ink);
}
.pv-card h2 .num {
  font-family: var(--dw-font-mono);
  font-size: 13px;
  color: var(--dw-blue);
  margin-right: 10px;
  font-weight: 500;
}
.pv-card p {
  margin: 0 0 12px;
  color: var(--dw-ink-soft);
}
.pv-card ul {
  margin: 8px 0 12px;
  padding-left: 22px;
  color: var(--dw-ink-soft);
}
.pv-card ul li { margin-bottom: 6px; }
.pv-card a {
  color: var(--dw-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.pv-card a:hover { color: var(--dw-blue-deep); }

.pv-divider {
  height: 1px;
  background: rgba(17, 24, 39, 0.08);
  border: 0;
  margin: 32px 0 24px;
}

.pv-updated {
  font-family: var(--dw-font-mono);
  font-size: 13px;
  color: var(--dw-muted);
  margin: 0;
}

.pv-actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
