/* SubscriBee landing — dark OLED + amber brand */

:root {
  --bg: #000000;
  --ink: #0e0e10;
  --surface: #161618;
  --surface-high: #26262a;
  --text: #ffffff;
  --text-2: #9a9aa0;
  --text-3: #68686e;
  --accent: #f3d34a;
  --accent-bright: #f7de6d;
  --accent-dim: #d9b92f;
  --on-accent: #1a1608;
  --hairline: rgba(255, 255, 255, 0.08);
  --glass: rgba(12, 18, 38, 0.45);
  --radius: 28px;
  --radius-sm: 16px;
  --shell: min(1120px, calc(100% - 2.5rem));
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.shell.narrow {
  max-width: 640px;
}

/* Atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.glow-a {
  width: 55vw;
  height: 55vw;
  top: -18vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(243, 211, 74, 0.35), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}

.glow-b {
  width: 40vw;
  height: 40vw;
  bottom: 10vh;
  left: -12vw;
  background: radial-gradient(circle, rgba(243, 211, 74, 0.12), transparent 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

.honeycomb {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='none' stroke='%23F3D34A' stroke-width='1' d='M28 0 L56 16 L56 48 L28 64 L0 48 L0 16 Z M28 64 L56 80 L56 112 L28 128 L0 112 L0 80 Z'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 70%);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-3%, 4%, 0) scale(1.08);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(0, 0, 0, 0.78);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 68px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-2);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-actions.is-visible {
  display: flex;
}

.lang-toggle {
  width: 42px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  color: var(--text-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang-toggle:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.menu-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 6px;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s var(--ease);
}

.menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 68px 0 auto;
  z-index: 35;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--hairline);
}

.drawer[hidden] {
  display: none;
}

.drawer a {
  padding: 0.85rem 0.25rem;
  color: var(--text-2);
  font-weight: 500;
}

.drawer .btn {
  margin-top: 0.5rem;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 0.98rem;
}

.btn-accent {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-accent:hover {
  background: var(--accent-bright);
}

.btn-ghost {
  border: 1px solid var(--hairline);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: center;
  padding: 1.25rem 0 2rem;
}

.hero-layout {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.brand-hero {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 8vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) 0.05s forwards;
}

.hero-title {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.6vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) 0.18s forwards;
}

.hero-lead {
  margin: 0.85rem 0 0;
  max-width: 38ch;
  color: var(--text-2);
  font-size: 0.98rem;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) 0.42s forwards;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease) 0.35s forwards;
}

.device-glow {
  position: absolute;
  width: min(420px, 90%);
  height: min(420px, 90%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(243, 211, 74, 0.28) 0%, rgba(243, 211, 74, 0.08) 38%, transparent 68%);
  filter: blur(8px);
  z-index: 0;
}

.device {
  position: relative;
  z-index: 1;
  width: min(280px, 68vw);
  animation: float 7s ease-in-out infinite;
}

.device-side {
  position: absolute;
  width: 3px;
  background: linear-gradient(180deg, #3a3a3e, #1a1a1c 40%, #2c2c30);
  border-radius: 2px;
  z-index: 2;
}

.device-side--left {
  left: -2px;
  top: 18%;
  height: 18%;
  box-shadow: 0 28px 0 #2a2a2e, 0 52px 0 #2a2a2e;
}

.device-side--right {
  right: -2px;
  top: 24%;
  height: 12%;
}

.device-frame {
  position: relative;
  border-radius: 42px;
  padding: 12px;
  background:
    linear-gradient(145deg, #6a6a72 0%, #2e2e34 18%, #121214 48%, #3a3a42 78%, #8a8a94 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 50px 100px rgba(0, 0, 0, 0.65),
    0 22px 50px rgba(243, 211, 74, 0.16);
}

.device-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 42px;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.06) 100%);
}

.device-screen {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.4;
  padding: 0.45rem 0.7rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ui-status {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.2rem 0.25rem 0.1rem;
}

.ui-status > span:first-child {
  justify-self: start;
}

.ui-island {
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background: #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ui-signal {
  justify-self: end;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
}

.ui-signal i {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: #fff;
  opacity: 0.85;
}

.ui-signal i:nth-child(1) { height: 3px; }
.ui-signal i:nth-child(2) { height: 5px; }
.ui-signal i:nth-child(3) { height: 7px; }
.ui-signal i:nth-child(4) { height: 10px; }

.ui-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.15rem 0.1rem 0;
}

.ui-hello {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.ui-top-meta {
  display: grid;
  justify-items: end;
  gap: 0.25rem;
  color: var(--text-3);
  font-size: 0.62rem;
  font-weight: 600;
}

.ui-gear {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  position: relative;
}

.ui-gear::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.ui-spend {
  margin-top: 0.1rem;
  padding: 0.85rem 0.9rem 0.8rem;
  border-radius: 22px;
  background:
    linear-gradient(160deg, #f7de6d 0%, #f3d34a 45%, #e4c13a 100%);
  color: var(--on-accent);
  box-shadow:
    0 14px 28px rgba(243, 211, 74, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ui-spend p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
}

.ui-spend strong {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.ui-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.ui-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--accent);
  font-size: 0.55rem;
  font-weight: 600;
}

.ui-chips b {
  font-weight: 700;
  color: var(--accent);
}

.ui-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
  padding: 0.55rem 0.6rem;
  border-radius: 16px;
  background: #161618;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.ui-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #ede7da;
  color: var(--mark, #333);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.ui-card-body {
  min-width: 0;
}

.ui-card-row {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  align-items: baseline;
}

.ui-card-row strong {
  font-size: 0.78rem;
  font-weight: 600;
}

.ui-card-row em {
  font-style: normal;
  color: var(--text-2);
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
}

.ui-pill {
  display: inline-flex;
  margin-top: 0.28rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 211, 74, 0.35);
  color: var(--accent);
  font-size: 0.52rem;
  font-weight: 600;
}

.ui-tabbar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 0.55rem 0.4rem;
  border-radius: 18px;
  background: rgba(31, 31, 34, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.ui-tabbar > span {
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.ui-tabbar .active {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(243, 211, 74, 0.16);
}

.ui-tabbar .add {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(160deg, #f7de6d, #f3d34a);
  color: var(--on-accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(243, 211, 74, 0.3);
}

.float-toast {
  position: absolute;
  z-index: 3;
  right: max(-8px, calc(50% - 190px));
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: min(230px, 70vw);
  padding: 0.7rem 0.8rem;
  border-radius: 18px;
  background: rgba(22, 22, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  animation: toast-in 1.1s var(--ease) 0.9s both, float 5.5s ease-in-out 1.2s infinite;
}

.float-toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}

.float-toast strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.float-toast span {
  display: block;
  margin-top: 0.12rem;
  color: var(--text-2);
  font-size: 0.62rem;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Sections */
.band,
.features,
.privacy,
.download {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 1rem 0 0;
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 48ch;
}

.problem {
  padding: 5rem 0 4rem;
  text-align: center;
}

.problem .section-lead {
  margin-inline: auto;
}

.features {
  padding: 2rem 0 5rem;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 28ch;
}

.feature-block {
  display: grid;
  gap: 1.75rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--hairline);
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.025em;
}

.feature-copy p {
  margin: 0.85rem 0 0;
  color: var(--text-2);
  max-width: 42ch;
}

.feature-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(243, 211, 74, 0.16), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.04), transparent 45%),
    linear-gradient(165deg, #17171a 0%, #0a0a0c 55%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.viz-orbit {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(243, 211, 74, 0.12);
  box-shadow: 0 0 60px rgba(243, 211, 74, 0.08);
}

.viz-spend {
  position: relative;
  z-index: 1;
  width: min(300px, 86%);
  padding: 1.45rem 1.4rem 1.25rem;
  border-radius: 28px;
  background:
    linear-gradient(155deg, #f8e27a 0%, #f3d34a 42%, #e0bc34 100%);
  color: var(--on-accent);
  box-shadow:
    0 30px 60px rgba(243, 211, 74, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: rotate(-2deg);
}

.viz-spend-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.viz-spend-amount {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.viz-spend-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.viz-spend-meta span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
}

.viz-spend-spark {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 52px;
  margin-top: 1.1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(26, 22, 8, 0.12);
}

.viz-spend-spark i {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: rgba(26, 22, 8, 0.18);
}

.viz-spend-spark i.now {
  background: rgba(26, 22, 8, 0.55);
}

.viz-import {
  position: relative;
  width: min(300px, 86%);
}

.viz-shot {
  position: relative;
  padding: 1rem 1rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #1c1c20, #101012);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.viz-shot-head {
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.viz-shot-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}

.viz-shot-row span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ede7da;
}

.viz-shot-row:nth-child(2) span { background: linear-gradient(135deg, #ff0033, #cc0000); }
.viz-shot-row:nth-child(3) span { background: linear-gradient(135deg, #10a37f, #0d8a6a); }
.viz-shot-row:nth-child(4) span { background: linear-gradient(135deg, #ff0000, #9a0000); }

.viz-shot-row b {
  font-weight: 600;
}

.viz-shot-row em {
  font-style: normal;
  color: var(--text-2);
  font-size: 0.75rem;
}

.viz-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: 22%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 22px rgba(243, 211, 74, 0.75);
  animation: scan 2.8s ease-in-out infinite;
}

.viz-lock {
  position: absolute;
  right: -6px;
  bottom: -14px;
  width: min(190px, 70%);
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(18, 18, 22, 0.82);
  border: 1px solid rgba(243, 211, 74, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.viz-lock strong {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.viz-lock span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-2);
  font-size: 0.72rem;
}

.viz-notifs {
  width: min(340px, 90%);
  display: grid;
  gap: 0.75rem;
}

.viz-notif {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(28, 28, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.viz-notif--soft {
  opacity: 0.72;
  transform: scale(0.97);
}

.viz-notif-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ede7da;
  color: var(--mark, #333);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
}

.viz-notif-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.viz-notif-top strong {
  font-size: 0.78rem;
  font-weight: 600;
}

.viz-notif-top time {
  color: var(--text-3);
  font-size: 0.7rem;
}

.viz-notif p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.82rem;
}

.viz-cal {
  width: min(320px, 90%);
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: 24px;
  background: rgba(22, 22, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.viz-cal-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.85rem;
}

.viz-cal-head strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.viz-cal-head span {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.viz-cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.35rem;
  color: var(--text-3);
  font-size: 0.62rem;
  font-weight: 600;
  text-align: center;
}

.viz-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.28rem;
}

.viz-cal-grid > span {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--text-2);
  font-size: 0.68rem;
  font-weight: 500;
}

.viz-cal-grid .today {
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
}

.viz-cal-grid .hit {
  background: rgba(255, 255, 255, 0.04);
}

.viz-cal-grid .hit i {
  position: absolute;
  bottom: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--d);
}

.viz-cal-grid .hit i:nth-child(1) { left: calc(50% - 7px); }
.viz-cal-grid .hit i:nth-child(2) { left: calc(50% + 2px); }
.viz-cal-grid .hit i:only-child { left: calc(50% - 2.5px); }

.viz-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  align-items: end;
  height: 72px;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.viz-bars div {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  height: 100%;
  align-content: end;
}

.viz-bars i {
  display: block;
  width: 100%;
  height: var(--h);
  border-radius: 8px 8px 3px 3px;
  background: rgba(255, 255, 255, 0.1);
}

.viz-bars .on i {
  background: linear-gradient(180deg, #f7de6d, #f3d34a);
  box-shadow: 0 8px 18px rgba(243, 211, 74, 0.25);
}

.viz-bars span {
  color: var(--text-3);
  font-size: 0.62rem;
  font-weight: 600;
}

@keyframes scan {
  0%,
  100% {
    top: 18%;
  }
  50% {
    top: 78%;
  }
}

/* Privacy */
.privacy {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, transparent, rgba(243, 211, 74, 0.04) 40%, transparent),
    var(--bg);
}

.privacy-layout {
  display: grid;
  gap: 2rem;
}

.privacy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.privacy-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--hairline);
  font-weight: 500;
}

.privacy-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Download */
.download {
  padding: 5rem 0 6rem;
  text-align: center;
}

.download-inner {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.download-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin-bottom: 1rem;
  box-shadow: 0 20px 50px rgba(243, 211, 74, 0.18);
}

.download .section-lead {
  margin-bottom: 1.5rem;
}

.download-note {
  margin: 1rem 0 0;
  color: var(--text-3);
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--hairline);
  padding: 1.75rem 0 2.25rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  color: var(--text-2);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-copy {
  margin: 0;
  color: var(--text-3);
  font-size: 0.82rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Legal pages */
.legal-page {
  position: relative;
  z-index: 1;
  padding: 3rem 0 5rem;
}

.legal-back {
  margin: 0 0 1.5rem;
}

.legal-back a {
  color: var(--text-2);
  font-size: 0.9rem;
}

.legal-back a:hover {
  color: var(--accent);
}

.legal-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
}

.legal-updated {
  margin: 0.75rem 0 2rem;
  color: var(--text-3);
  font-size: 0.88rem;
}

.legal-prose {
  color: var(--text-2);
  max-width: 68ch;
}

.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.legal-prose p,
.legal-prose li {
  margin: 0 0 0.85rem;
}

.legal-prose ul {
  padding-left: 1.2rem;
}

.legal-prose a {
  color: var(--accent);
}

.legal-prose[hidden] {
  display: none;
}

/* Desktop */
@media (min-width: 860px) {
  :root {
    --shell: min(1120px, calc(100% - 4rem));
  }

  .nav,
  .header-actions {
    display: flex;
  }

  .menu-btn,
  .drawer {
    display: none !important;
  }

  .hero {
    padding: 0.5rem 0 2.5rem;
  }

  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .brand-hero {
    font-size: clamp(3.2rem, 5.5vw, 4.35rem);
  }

  .device {
    width: min(300px, 100%);
  }

  .hero-stage {
    min-height: 560px;
  }

  .feature-block {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
  }

  .feature-block--import,
  .feature-block--calendar {
    direction: rtl;
  }

  .feature-block--import > *,
  .feature-block--calendar > * {
    direction: ltr;
  }

  .privacy-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    justify-items: center;
  }

  .footer-brand {
    justify-self: start;
  }

  .footer-copy {
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .brand-hero,
  .hero-title,
  .hero-lead,
  .hero-cta,
  .hero-stage,
  .device,
  .float-toast,
  .glow,
  .viz-scan {
    animation: none !important;
  }

  .brand-hero,
  .hero-title,
  .hero-lead,
  .hero-cta,
  .hero-stage,
  .float-toast {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
