:root {
  color-scheme: dark;
  --bg: #000000;
  --surface: #0a0a0a;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.58);
  --stroke: rgba(255, 255, 255, 0.14);
  --stroke2: rgba(255, 255, 255, 0.22);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);

  --accent: #407dff;
  --accent-green: #2bd576;

  --radius: 16px;
  --radius2: 22px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

/* Subtle, minimal color presence */
body::before {
  content: "";
  position: fixed;
  inset: -40px;
  pointer-events: none;
  background:
    radial-gradient(720px 360px at 14% 12%, rgba(64, 125, 255, 0.12), transparent 60%),
    radial-gradient(660px 320px at 82% 18%, rgba(43, 213, 118, 0.10), transparent 60%);
  opacity: 0.9;
  filter: blur(0.2px);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.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;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--stroke2);
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0%);
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--stroke2);
}

.brand-logo {
  width: 18px;
  height: 18px;
  display: none;
}

.brand-letter {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand-name {
  font-size: 15px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--stroke);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(64, 125, 255, 0.9);
  outline-offset: 2px;
}

.nav-toggle-icon {
  width: 18px;
  height: 2px;
  display: block;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  position: relative;
  border-radius: 999px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(64, 125, 255, 0.65);
  background: var(--accent);
  color: #000000;
  box-shadow: 0 14px 34px rgba(64, 125, 255, 0.22);
  cursor: pointer;
}

.button:hover {
  filter: brightness(1.04);
}

.button:focus-visible {
  outline: 2px solid rgba(64, 125, 255, 0.9);
  outline-offset: 2px;
}

.button.small {
  padding: 10px 14px;
  font-size: 13px;
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--stroke2);
  color: var(--text);
  box-shadow: none;
}

.inline-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 3px;
}

.inline-link:hover {
  text-decoration-color: rgba(64, 125, 255, 0.9);
}

.hero {
  padding: 62px 0 22px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: transparent;
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.privacy-title {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.lead {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.hero-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 56ch;
}

.hero-bullets li {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bullet-title {
  font-weight: 600;
  font-size: 14px;
}

.bullet-sub {
  font-size: 13px;
  color: var(--muted2);
}

.hero-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decor {
  position: absolute;
  width: 92px;
  height: 92px;
  opacity: 0.9;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
  animation: floaty 7.5s ease-in-out infinite;
}

.decor-leaf {
  top: -18px;
  right: -14px;
  transform: rotate(10deg);
  animation-duration: 8.8s;
}

.decor-carrot {
  bottom: -22px;
  left: -14px;
  transform: rotate(-14deg);
  animation-duration: 7.2s;
  animation-delay: -1.6s;
}

@keyframes floaty {
  0% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--r, 0deg));
  }
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
}

.decor-leaf {
  --r: 10deg;
}

.decor-carrot {
  --r: -14deg;
}

.card-top {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.22);
  font-size: 12px;
}

.fake-input {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(64, 125, 255, 0.18);
}

.card-bottom {
  padding: 16px 18px 18px;
}

.list-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.list-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.list-meta {
  font-size: 12px;
  color: var(--muted2);
}

.list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cat {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.cat-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.cat-items {
  margin: 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.card-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.hint {
  font-size: 12px;
  color: var(--muted2);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  margin-bottom: 22px;
  max-width: 68ch;
}

h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.tiny {
  font-size: 12px;
}

.grid {
  display: grid;
  gap: 14px;
}

.features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  padding: 18px 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: transparent;
}

.checks {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px 16px;
  border-radius: var(--radius2);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #000000;
  background: var(--accent);
}

.use-cases {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tile {
  padding: 16px 16px;
  border-radius: var(--radius2);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.accordion {
  display: grid;
  gap: 10px;
  max-width: 82ch;
}

.qa {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
}

.qa summary::-webkit-details-marker {
  display: none;
}

.qa p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 13px;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px; /* space from CTA buttons */
  flex-wrap: wrap;
}

.store-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 14px;
  border: 0;
  background: transparent;
  width: 180px;
  height: 54px;
}

.store-button:hover {
  transform: translateY(-1px);
}

.store-badge {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("./assets/StoreBadges.jpg");
  background-repeat: no-repeat;
  background-size: 200% 100%;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: transform 160ms ease, filter 160ms ease;
  filter: saturate(1) contrast(1.02);
}

.store-badge--google {
  background-position: 0 0;
}

.store-badge--apple {
  background-position: 100% 0;
}

.store-button:hover .store-badge {
  transform: translateY(-1px);
  filter: saturate(1.05) contrast(1.04);
}

.store-button:focus-visible {
  outline: 2px solid rgba(64, 125, 255, 0.9);
  outline-offset: 3px;
}

.site-footer {
  padding: 34px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 600ms ease,
    transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slightly different motion for the hero card */
.hero-card[data-reveal] {
  transform: translateY(18px) scale(0.99);
}

.hero-card[data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .decor {
    animation: none !important;
  }
}

.privacy {
  max-width: 78ch;
}

.privacy h2 {
  margin-top: 24px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.privacy p {
  margin: 10px 0;
  color: var(--muted);
}

.privacy ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.privacy li {
  margin: 6px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 14px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .use-cases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-button {
    height: 40px;
  }
}

@media (max-width: 760px) {
  .features {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    right: 20px;
    top: 64px;
    width: min(320px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }

  .nav-links[data-open="true"] {
    display: flex;
  }

  .nav-links a {
    padding: 12px 12px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .store-button {
    display: flex;
    align-items: center;
  }

  .hero-cta + .store-buttons {
  margin-top: 16px;
}

  .store-badge-img {
    height: 48px;
    width: auto;
    display: block;
  }

  .store-button img[src*="google-play"] {
    height: 52px; /* small optical adjustment */
  }

  .store-badge-img:hover {
    transform: scale(1.05);
    transition: transform 0.15s ease;
  }
}
