/* Tasks&Habits Radar product website — dependency-free visual system */

:root {
  color-scheme: dark;
  --bg: #05080d;
  --bg-elevated: #08111b;
  --surface: rgba(12, 20, 31, 0.82);
  --surface-solid: #0c151f;
  --surface-soft: rgba(17, 27, 40, 0.7);
  --surface-hover: rgba(22, 35, 51, 0.86);
  --text: #f4f8fb;
  --text-soft: #a7b4c2;
  --text-faint: #718090;
  --line: rgba(163, 191, 214, 0.14);
  --line-strong: rgba(122, 174, 213, 0.27);
  --blue: #2e9cff;
  --cyan: #48d7ff;
  --purple: #a85cff;
  --green: #41d779;
  --yellow: #f5c84b;
  --orange: #ff8765;
  --red: #ff5268;
  --focus-ring: #8ee8ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 46px rgba(0, 0, 0, 0.25);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1180px;
  --ease: cubic-bezier(0.2, 0.72, 0.25, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #edf3f8;
  --bg-elevated: #f8fbfd;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --surface-soft: rgba(242, 247, 251, 0.88);
  --surface-hover: #ffffff;
  --text: #0f1b28;
  --text-soft: #566779;
  --text-faint: #5c6b78;
  --line: rgba(53, 85, 112, 0.13);
  --line-strong: rgba(46, 117, 170, 0.23);
  --blue: #0066cc;
  --cyan: #006b86;
  --purple: #7040c9;
  --green: #177a41;
  --yellow: #8a6500;
  --orange: #b64621;
  --red: #c4314f;
  --focus-ring: #075f9c;
  --shadow: 0 26px 80px rgba(40, 78, 108, 0.15);
  --shadow-soft: 0 14px 40px rgba(40, 78, 108, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 48% -20%, rgba(40, 126, 195, 0.13), transparent 38rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  background: rgba(46, 156, 255, 0.3);
  color: var(--text);
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.88rem;
  font-weight: 800;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding-block: 124px;
}

.site-ambient,
.ambient-grid,
.ambient-glow,
.cursor-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-ambient {
  z-index: -2;
  overflow: hidden;
}

.ambient-grid {
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(98, 145, 181, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 145, 181, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

html[data-theme="light"] .ambient-grid {
  opacity: 0.72;
}

.ambient-glow {
  filter: blur(100px);
  opacity: 0.14;
}

.ambient-glow-blue {
  inset: -20% auto auto 35%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--blue);
}

.ambient-glow-purple {
  inset: 55% -10% auto auto;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--purple);
}

.cursor-light {
  inset: var(--cursor-y, -500px) auto auto var(--cursor-x, -500px);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 166, 255, 0.09), transparent 66%);
  transform: translate(-50%, -50%);
  transition: opacity 200ms ease;
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  inset: 0 0 auto;
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  box-shadow: 0 0 14px rgba(72, 215, 255, 0.55);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(70, 193, 255, 0.25), 0 8px 24px rgba(21, 125, 203, 0.22);
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 5px;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 820;
}

.brand-copy span {
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 760;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.primary-nav a {
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 690;
  transition: color 160ms ease, background-color 160ms ease;
}

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

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--text-soft);
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.icon-button:hover:not(:disabled) {
  border-color: var(--line-strong);
  background: var(--surface-hover);
  color: var(--text);
  transform: translateY(-1px);
}

.icon-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.theme-icon {
  position: absolute;
  transition: opacity 180ms ease, transform 180ms ease;
}

.theme-icon-sun {
  opacity: 0;
  transform: rotate(-20deg) scale(0.75);
}

html[data-theme="light"] .theme-icon-moon {
  opacity: 0;
  transform: rotate(20deg) scale(0.75);
}

html[data-theme="light"] .theme-icon-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.93rem;
  font-weight: 780;
  line-height: 1;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button-primary {
  background: linear-gradient(135deg, #0767b8, #3558c7 58%, #6c35b8);
  color: white;
  box-shadow: 0 12px 30px rgba(41, 127, 234, 0.27), inset 0 1px rgba(255, 255, 255, 0.25);
}

.button-primary:hover {
  box-shadow: 0 17px 40px rgba(41, 127, 234, 0.37), inset 0 1px rgba(255, 255, 255, 0.28);
}

.button-quiet {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--text);
}

.button-quiet:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

/* Shared typography */

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(72, 215, 255, 0.1), 0 0 16px rgba(72, 215, 255, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.8vw, 6.6rem);
  font-weight: 850;
  letter-spacing: -0.073em;
  line-height: 0.94;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 4.7vw, 4.9rem);
  font-weight: 840;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.35rem;
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #62dcff 2%, #2f8df4 50%, #c065fb 95%);
  -webkit-background-clip: text;
  background-clip: text;
}

.gradient-cyan {
  background-image: linear-gradient(100deg, #6ae7ff, #2e9cff 55%, #55b9ff);
}

html[data-theme="light"] .gradient-text {
  background-image: linear-gradient(100deg, #006b86 2%, #0066cc 50%, #7040c9 95%);
}

html[data-theme="light"] .gradient-cyan {
  background-image: linear-gradient(100deg, #006b86, #0066cc 55%, #075f9c);
}

.muted-title {
  color: var(--text-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.06rem;
}

/* Hero */

.hero {
  min-height: 860px;
  display: grid;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 88px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 42%, rgba(34, 152, 240, 0.15), transparent 25rem),
    radial-gradient(circle at 84% 36%, rgba(169, 80, 255, 0.1), transparent 23rem),
    linear-gradient(110deg, transparent 46%, rgba(31, 121, 196, 0.035));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 18px;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 32px;
  color: var(--text-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 19px;
  margin: 0;
  padding: 0;
  color: var(--text-faint);
  font-size: 0.79rem;
  font-weight: 690;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-proof svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  stroke-width: 2.4;
}

.hero-product {
  position: relative;
  min-height: 655px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.radar-stage {
  position: absolute;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  opacity: 0.78;
  transform: rotateX(68deg) rotateZ(-15deg) translateY(14%);
}

.radar-ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(58, 176, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 35px rgba(47, 153, 236, 0.025), 0 0 18px rgba(47, 153, 236, 0.05);
}

.radar-ring::before,
.radar-ring::after {
  content: "";
  position: absolute;
  background: rgba(58, 176, 255, 0.17);
}

.radar-ring::before {
  width: 1px;
  height: 100%;
  left: 50%;
}

.radar-ring::after {
  width: 100%;
  height: 1px;
  top: 50%;
}

.radar-ring-one { width: 100%; height: 100%; }
.radar-ring-two { width: 70%; height: 70%; }
.radar-ring-three { width: 38%; height: 38%; }

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 265deg, transparent 0deg 290deg, rgba(51, 186, 255, 0.06) 317deg, rgba(82, 204, 255, 0.45) 354deg, transparent 360deg);
  filter: drop-shadow(0 0 12px rgba(69, 195, 255, 0.25));
  animation: radar-spin 10s linear infinite;
}

.radar-ping {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(72, 215, 255, 0.08), 0 0 16px var(--cyan);
  animation: radar-ping 3.6s ease-in-out infinite;
}

.ping-one { top: 31%; left: 69%; }
.ping-two { top: 64%; left: 25%; animation-delay: 1.3s; }
.ping-three { top: 73%; left: 72%; animation-delay: 2.2s; }

@keyframes radar-spin { to { transform: rotate(360deg); } }
@keyframes radar-ping { 0%, 70%, 100% { opacity: 0.16; transform: scale(0.7); } 80% { opacity: 1; transform: scale(1); } }

.phone-wrap {
  position: relative;
  z-index: 2;
  width: 318px;
  padding: 7px;
  border: 1px solid rgba(68, 185, 255, 0.42);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(85, 189, 255, 0.3), rgba(7, 16, 25, 0.94) 14%, rgba(8, 16, 26, 0.96) 84%, rgba(149, 74, 244, 0.28));
  box-shadow: 0 0 0 3px rgba(4, 9, 15, 0.85), 0 0 38px rgba(25, 151, 240, 0.23), 0 45px 90px rgba(0, 0, 0, 0.45);
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(1.4deg);
  transform-style: preserve-3d;
  transition: transform 220ms var(--ease);
}

html[data-theme="light"] .phone-wrap {
  background: linear-gradient(145deg, rgba(85, 189, 255, 0.48), #eaf5fc 14%, #f8fcff 84%, rgba(149, 74, 244, 0.25));
  box-shadow: 0 0 0 3px rgba(232, 242, 249, 0.94), 0 0 42px rgba(25, 151, 240, 0.2), 0 45px 90px rgba(44, 82, 111, 0.25);
}

.phone-shell {
  position: relative;
  height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(120, 175, 214, 0.17);
  border-radius: 34px;
  background:
    radial-gradient(circle at 60% 0%, rgba(18, 112, 176, 0.11), transparent 16rem),
    #060b11;
}

html[data-theme="light"] .phone-shell {
  background: #f2f7fa;
  color: #0e1b27;
}

.phone-shell::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 7px;
  left: 50%;
  width: 84px;
  height: 22px;
  border-radius: 999px;
  background: #020406;
  transform: translateX(-50%);
}

.phone-top {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 17px 0;
  color: #dceaf3;
  font-size: 0.57rem;
  font-weight: 760;
}

html[data-theme="light"] .phone-top { color: #243544; }
.phone-top > i { width: 78px; }
.phone-status { letter-spacing: 0.05em; }

.phone-brand-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 11px;
}

.phone-brand-row img {
  border-radius: 8px;
}

.phone-brand-row div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.phone-brand-row div span {
  color: #8da0af;
  font-size: 0.48rem;
  font-weight: 650;
}

.phone-brand-row div strong {
  font-size: 0.75rem;
}

.phone-brand-row button {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(90, 157, 207, 0.2);
  border-radius: 8px;
  background: rgba(38, 70, 94, 0.18);
  color: #60cfff;
}

.phone-brand-row button svg { width: 14px; height: 14px; }

.phone-screen {
  min-height: 0;
  flex: 1;
  padding: 0 12px 8px;
}

.demo-panel {
  animation: panel-in 330ms var(--ease) both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px) scale(0.99); }
  to { opacity: 1; transform: none; }
}

.bucket {
  margin-bottom: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 82, 104, 0.42);
  border-radius: 10px;
  background: rgba(14, 20, 27, 0.86);
  box-shadow: 0 0 13px rgba(255, 82, 104, 0.1);
}

html[data-theme="light"] .bucket,
html[data-theme="light"] .mini-habit,
html[data-theme="light"] .capture-card,
html[data-theme="light"] .inbox-row,
html[data-theme="light"] .habit-row,
html[data-theme="light"] .history-card {
  background: #fff;
}

.bucket-head {
  min-height: 34px;
  display: grid;
  grid-template-columns: 20px 1fr auto 14px;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  font-size: 0.6rem;
}

.bucket-symbol { color: var(--red); font-size: 0.8rem; }
.bucket-head .count { padding: 1px 6px; border-radius: 5px; background: rgba(255, 82, 104, 0.13); color: var(--red); }
.task-row { min-height: 37px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 7px; padding: 0 9px 0 12px; border-top: 1px solid rgba(150, 180, 202, 0.08); font-size: 0.58rem; }
.task-row.is-done span { color: #6d7b86; text-decoration: line-through; }
.task-dot { width: 4px; height: 4px; border-radius: 50%; }
.task-dot.red { background: var(--red); }
.task-dot.blue { background: var(--blue); }
.task-dot.purple { background: var(--purple); }
.check-circle { width: 16px; height: 16px; display: grid; place-items: center; border: 1px solid #607481; border-radius: 50%; color: #05101a; font-size: 0.52rem; font-style: normal; }
.check-circle.checked { border-color: var(--purple); background: var(--purple); color: white; }
.bucket.compact { border-color: rgba(100, 158, 197, 0.18); box-shadow: none; }
.bucket-yellow .bucket-symbol, .bucket-yellow .count { color: var(--yellow); }
.bucket-green .bucket-symbol, .bucket-green .count { color: var(--green); }
.bucket-blue .bucket-symbol, .bucket-blue .count { color: var(--blue); }
.bucket-yellow .count { background: rgba(245, 200, 75, 0.12); }
.bucket-green .count { background: rgba(65, 215, 121, 0.12); }
.bucket-blue .count { background: rgba(46, 156, 255, 0.12); }

.mini-habit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(72, 215, 255, 0.2);
  border-radius: 10px;
  background: rgba(11, 20, 29, 0.9);
}

.mini-habit > div:first-child { display: flex; flex-direction: column; }
.mini-habit b { font-size: 0.58rem; }
.mini-habit small { color: #718390; font-size: 0.46rem; }
.habit-cells { display: flex; gap: 3px; }
.habit-cells i { width: 16px; height: 16px; display: grid; place-items: center; border: 1px solid rgba(72, 215, 255, 0.24); border-radius: 4px; background: rgba(72, 215, 255, 0.12); color: white; font-size: 0.46rem; font-style: normal; }
.habit-cells i:nth-child(-n+3) { background: var(--cyan); color: #07111b; }

html[data-theme="light"] .habit-cells i:nth-child(-n+3) { color: #fff; }

.capture-card {
  padding: 14px;
  border: 1px solid rgba(72, 215, 255, 0.4);
  border-radius: 11px;
  background: rgba(10, 22, 32, 0.9);
  box-shadow: 0 0 20px rgba(46, 156, 255, 0.11);
  text-align: center;
}

.capture-label { display: block; margin-bottom: 9px; color: var(--cyan); font-size: 0.5rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.capture-card strong { display: block; font-size: 0.83rem; line-height: 1.2; }
.capture-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 13px; }
.capture-actions span { min-height: 56px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 1px solid rgba(83, 166, 224, 0.22); border-radius: 8px; background: rgba(31, 61, 83, 0.18); color: var(--cyan); font-size: 0.48rem; font-weight: 750; }
.capture-actions svg { width: 19px; height: 19px; }
.inbox-title { display: flex; justify-content: space-between; margin: 15px 2px 6px; font-size: 0.58rem; }
.inbox-title span { color: #738491; font-size: 0.49rem; }
.inbox-row { min-height: 39px; display: flex; align-items: center; justify-content: space-between; padding: 0 9px 0 11px; border: 1px solid rgba(114, 154, 183, 0.14); border-bottom: 0; background: rgba(12, 19, 27, 0.86); font-size: 0.55rem; }
.inbox-row:first-of-type { border-radius: 8px 8px 0 0; }
.inbox-row:nth-last-of-type(1) { border-bottom: 1px solid rgba(114, 154, 183, 0.14); border-radius: 0 0 8px 8px; }
.add-row { margin-top: 9px; padding: 8px; border-radius: 7px; background: rgba(36, 105, 163, 0.24); color: var(--blue); font-size: 0.55rem; font-weight: 750; text-align: center; }

.habit-date { display: flex; justify-content: space-between; align-items: center; padding: 7px; color: #7790a0; font-size: 0.55rem; }
.habit-date strong { color: inherit; }
.habit-days { display: grid; grid-template-columns: repeat(7, 1fr); margin: 4px 3px 7px 84px; color: #617482; font-size: 0.42rem; text-align: center; }
.habit-row { margin-bottom: 7px; padding: 8px; border: 1px solid rgba(255, 135, 101, 0.28); border-radius: 8px; background: rgba(14, 20, 28, 0.9); }
.habit-row strong { display: block; margin-bottom: 6px; font-size: 0.55rem; }
.habit-row strong small { float: right; color: #82929e; }
.habit-row > div { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.habit-row i { height: 18px; display: grid; place-items: center; border-radius: 4px; background: rgba(255, 135, 101, 0.15); color: white; font-size: 0.38rem; font-style: normal; }
.habit-row i:not(:empty) { background: var(--orange); color: #10151a; }
.habit-row.yellow { border-color: rgba(245, 200, 75, 0.28); }
.habit-row.yellow i { background: rgba(245, 200, 75, 0.13); }
.habit-row.yellow i:not(:empty) { background: var(--yellow); }
.habit-row.purple { border-color: rgba(168, 92, 255, 0.28); }
.habit-row.purple i { background: rgba(168, 92, 255, 0.13); }
.habit-row.purple i:not(:empty) { background: var(--purple); }
.habit-row.blue { border-color: rgba(46, 156, 255, 0.28); }
.habit-row.blue i { background: rgba(46, 156, 255, 0.13); }
.habit-row.blue i:not(:empty) { background: var(--blue); }
.history-card { padding: 10px; border: 1px solid rgba(65, 215, 121, 0.2); border-radius: 8px; background: rgba(12, 19, 27, 0.86); }
.history-card > div:first-child { display: flex; justify-content: space-between; font-size: 0.49rem; }
.history-card span { color: #738491; }
.history-grid { height: 48px; margin-top: 8px; border-radius: 5px; background-image: radial-gradient(circle, rgba(65, 215, 121, 0.78) 0 2px, transparent 2.5px); background-size: 9px 9px; mask-image: linear-gradient(90deg, black 55%, transparent); }

html[data-theme="light"] .habit-row i:not(:empty),
html[data-theme="light"] .detail-preview i.checked { color: #fff; }

.phone-nav {
  min-height: 55px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 4px 8px 8px;
  border-top: 1px solid rgba(110, 155, 184, 0.1);
  background: rgba(8, 13, 19, 0.95);
}

html[data-theme="light"] .phone-nav { background: #edf4f8; }
.phone-nav span { display: flex; flex-direction: column; align-items: center; gap: 1px; color: #5d6d78; font-size: 0.66rem; line-height: 1; }
.phone-nav small { font-size: 0.35rem; }
.phone-nav .active { color: var(--blue); }

.float-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 198px;
  padding: 10px 12px;
  border: 1px solid rgba(125, 179, 218, 0.2);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-solid) 88%, transparent);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: gentle-float 5.8s ease-in-out infinite;
}

.float-note-calendar { top: 82px; right: -18px; transform: rotate(4deg); }
.float-note-habit { bottom: 116px; left: -33px; animation-delay: -2.3s; transform: rotate(-5deg); }
.float-note span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.float-note b { font-size: 0.7rem; }
.float-note small { color: var(--text-faint); font-size: 0.52rem; }
.float-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; }
.float-icon svg { width: 16px; height: 16px; }
.float-icon.blue { background: rgba(46, 156, 255, 0.13); color: var(--blue); }
.float-icon.green { background: rgba(65, 215, 121, 0.13); color: var(--green); }

@keyframes gentle-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

.demo-tabs {
  position: absolute;
  z-index: 5;
  bottom: 3px;
  left: 50%;
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-solid) 90%, transparent);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.demo-tabs button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-faint);
  font-size: 0.7rem;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}

.demo-tabs button span { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.demo-tabs button.is-active { background: rgba(46, 156, 255, 0.14); color: var(--cyan); }

/* Capability strip */

.signal-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.signal-track {
  width: min(calc(100% - 40px), var(--shell));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-track span { display: flex; align-items: center; gap: 8px; }
.signal-track i { width: 5px; height: 5px; border-radius: 50%; box-shadow: 0 0 11px currentColor; }
.signal-track i.red { color: var(--red); background: currentColor; }
.signal-track i.cyan { color: var(--cyan); background: currentColor; }
.signal-track i.green { color: var(--green); background: currentColor; }
.signal-track i.purple { color: var(--purple); background: currentColor; }
.signal-track i.yellow { color: var(--yellow); background: currentColor; }
.signal-track i.blue { color: var(--blue); background: currentColor; }

/* Bento features */

.feature-section {
  overflow: hidden;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-height: 340px;
  grid-column: span 4;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(62, 172, 255, 0.1), transparent 44%),
    var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transform-style: preserve-3d;
  transition: border-color 200ms ease, background-color 200ms ease, transform 240ms var(--ease), box-shadow 240ms ease;
}

.bento-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft), inset 0 1px rgba(255, 255, 255, 0.04);
}

.bento-wide {
  min-height: 410px;
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 26px;
}

.bento-tall {
  min-height: 450px;
  grid-column: span 6;
}

.bento-tall + .bento-card {
  grid-column: span 3;
}

.bento-tall + .bento-card + .bento-card {
  grid-column: span 3;
}

.feature-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, currentColor 11%, transparent);
  box-shadow: 0 0 28px color-mix(in srgb, currentColor 9%, transparent);
}

.feature-icon svg { width: 21px; height: 21px; }
.feature-icon.blue { color: var(--blue); }
.feature-icon.cyan { color: var(--cyan); }
.feature-icon.green { color: var(--green); }
.feature-icon.purple { color: var(--purple); }
.feature-icon.yellow { color: var(--yellow); }
.feature-icon.red { color: var(--red); }

.card-kicker {
  margin-bottom: 8px;
  color: var(--text-faint);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bento-card > p:last-of-type,
.card-copy > p:last-of-type {
  max-width: 40ch;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.91rem;
}

.bento-wide .feature-icon { margin-bottom: 70px; }

.priority-stack {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: color-mix(in srgb, var(--bg) 68%, transparent);
  transform: rotate(2.2deg);
}

.priority-pill {
  min-height: 52px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, currentColor 34%, transparent);
  border-radius: 9px;
  background: color-mix(in srgb, currentColor 7%, var(--surface-solid));
  color: var(--text);
  box-shadow: 0 0 17px color-mix(in srgb, currentColor 7%, transparent);
  transition: transform 180ms var(--ease);
}

.priority-pill:hover { transform: translateX(-6px); }
.priority-pill span { color: currentColor; }
.priority-pill b { font-size: 0.77rem; }
.priority-pill small { min-width: 21px; padding: 2px 6px; border-radius: 5px; background: color-mix(in srgb, currentColor 15%, transparent); color: currentColor; font-weight: 800; text-align: center; }
.priority-pill.red { color: var(--red); }
.priority-pill.yellow { color: var(--yellow); }
.priority-pill.green { color: var(--green); }
.priority-pill.blue { color: var(--blue); }
.priority-pill b { color: var(--text); }

.waveform {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 38px 0 -4px;
}

.waveform i {
  width: 4px;
  height: var(--wave, 18px);
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--blue));
  box-shadow: 0 0 13px rgba(72, 215, 255, 0.36);
  animation: wave 1.4s ease-in-out infinite alternate;
}

.waveform i:nth-child(2) { --wave: 32px; animation-delay: -0.7s; }
.waveform i:nth-child(3) { --wave: 50px; animation-delay: -0.4s; }
.waveform i:nth-child(4) { --wave: 24px; animation-delay: -0.9s; }
.waveform i:nth-child(5) { --wave: 60px; animation-delay: -0.2s; }
.waveform i:nth-child(6) { --wave: 38px; animation-delay: -0.6s; }
.waveform i:nth-child(7) { --wave: 50px; animation-delay: -0.1s; }
.waveform i:nth-child(8) { --wave: 26px; animation-delay: -0.8s; }
.waveform i:nth-child(9) { --wave: 14px; animation-delay: -0.3s; }

@keyframes wave { to { height: calc(var(--wave, 18px) * 0.45); opacity: 0.5; } }

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin-top: 31px;
  padding: 15px;
  border: 1px solid rgba(65, 215, 121, 0.23);
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg) 69%, transparent);
  text-align: center;
}

.mini-calendar span { color: var(--text-faint); font-size: 0.48rem; font-weight: 760; }
.mini-calendar i { position: relative; height: 26px; display: grid; place-items: center; border-radius: 6px; color: var(--text-soft); font-size: 0.58rem; font-style: normal; }
.mini-calendar i.today { border: 1px solid var(--green); color: var(--text); box-shadow: 0 0 12px rgba(65, 215, 121, 0.17); }
.mini-calendar i.has-dot::after { content: ""; position: absolute; bottom: 2px; width: 3px; height: 3px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 5px var(--blue); }
.mini-calendar i.has-dot.purple::after { background: var(--purple); box-shadow: 0 0 5px var(--purple); }

.habit-showcase {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.habit-showcase > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 14px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--bg) 66%, transparent);
}

.habit-showcase b { font-size: 0.7rem; }
.habit-showcase b em { color: var(--text-faint); font-size: 0.54rem; font-style: normal; }
.habit-showcase small { color: var(--text-faint); font-size: 0.53rem; }
.cell-line { grid-row: 1 / 3; grid-column: 2; display: flex; align-items: center; gap: 3px; }
.cell-line i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 5px; background: color-mix(in srgb, currentColor 15%, transparent); color: var(--text); font-size: 0.46rem; font-style: normal; }
.cell-line i:not(:empty) { background: currentColor; color: #10151a; }
.cell-line i.off { opacity: 0.28; }
.cell-line.yellow { color: var(--yellow); }
.cell-line.orange { color: var(--orange); }
.cell-line.blue { color: var(--blue); }

.project-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.project-chips span {
  padding: 7px 9px;
  border: 1px solid color-mix(in srgb, currentColor 35%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, currentColor 8%, transparent);
  font-size: 0.62rem;
  font-weight: 720;
}

.project-chips .blue { color: var(--blue); }
.project-chips .green { color: var(--green); }
.project-chips .yellow { color: var(--yellow); }

.detail-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.detail-preview i { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 5px; font-size: 0.52rem; font-style: normal; }
.detail-preview i.checked { border-color: var(--green); background: var(--green); color: #08130d; }
.detail-preview span { color: var(--text-soft); font-size: 0.63rem; }
.detail-preview b { width: 48px; height: 39px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; background: linear-gradient(135deg, rgba(46, 156, 255, 0.2), rgba(168, 92, 255, 0.18)); color: var(--text-faint); font-size: 0.48rem; }
.detail-preview b:last-child { grid-column: 2; margin-left: 55px; margin-top: -47px; }

/* Workflow */

.workflow-section {
  overflow: hidden;
  background:
    linear-gradient(var(--line), var(--line)) center top / min(calc(100% - 40px), var(--shell)) 1px no-repeat,
    radial-gradient(circle at 15% 40%, rgba(46, 156, 255, 0.08), transparent 28rem);
}

.workflow-intro {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.workflow-intro h2 { margin-bottom: 0; }
.workflow-intro > p { max-width: 47ch; margin-bottom: 9px; color: var(--text-soft); font-size: 1rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 120px;
  padding: 0;
  list-style: none;
}

.steps-grid li {
  position: relative;
  padding-right: 40px;
}

.step-number {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 0 0 7px var(--bg), 0 0 28px rgba(72, 215, 255, 0.13);
}

.step-line {
  position: absolute;
  z-index: -1;
  top: 21px;
  left: 43px;
  width: calc(100% - 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), var(--line));
}

.steps-grid li:last-child .step-line { display: none; }
.steps-grid h3 { font-size: 1.2rem; }
.steps-grid p { max-width: 31ch; margin: 0; color: var(--text-soft); font-size: 0.88rem; }

.trust-panel {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px circle at var(--spot-x) var(--spot-y), rgba(65, 215, 121, 0.08), transparent 48%),
    linear-gradient(130deg, rgba(17, 47, 55, 0.56), var(--surface));
  box-shadow: var(--shadow-soft);
}

html[data-theme="light"] .trust-panel { background: linear-gradient(130deg, rgba(230, 249, 241, 0.95), var(--surface)); }

.trust-copy h2 { max-width: 620px; font-size: clamp(2.2rem, 3.6vw, 3.8rem); }
.trust-copy > p:not(.eyebrow) { max-width: 590px; color: var(--text-soft); }
.trust-copy ul { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 25px 0 0; padding: 0; color: var(--text-soft); font-size: 0.78rem; font-weight: 690; list-style: none; }
.trust-copy li { display: flex; align-items: center; gap: 5px; }
.trust-copy svg { width: 14px; height: 14px; color: var(--green); stroke-width: 2.5; }

.trust-visual { display: grid; place-items: center; min-height: 280px; }
.shield-orbit { position: relative; width: 210px; height: 210px; display: grid; place-items: center; border: 1px solid rgba(65, 215, 121, 0.16); border-radius: 50%; }
.shield-orbit::before { content: ""; position: absolute; inset: 24px; border: 1px dashed rgba(65, 215, 121, 0.22); border-radius: 50%; animation: radar-spin 18s linear infinite reverse; }
.shield-orbit::after { content: ""; position: absolute; inset: 52px; border: 1px solid rgba(65, 215, 121, 0.3); border-radius: 50%; box-shadow: 0 0 45px rgba(65, 215, 121, 0.1), inset 0 0 30px rgba(65, 215, 121, 0.07); }
.shield-orbit b { position: relative; z-index: 2; width: 65px; height: 65px; display: grid; place-items: center; border: 1px solid var(--green); border-radius: 20px; background: rgba(65, 215, 121, 0.1); color: var(--green); font-size: 1.5rem; box-shadow: 0 0 32px rgba(65, 215, 121, 0.15); }
.shield-orbit span { position: absolute; top: 18px; right: 34px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 15px var(--green); }
.shield-orbit i { position: absolute; bottom: 27px; left: 25px; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 13px var(--cyan); }

/* Screenshot rail */

.screens-section {
  padding-bottom: 90px;
  overflow: hidden;
}

.screens-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.screens-heading h2 { margin-bottom: 0; }
.carousel-controls { display: flex; gap: 8px; padding-bottom: 8px; }

.screens-rail {
  width: 100%;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px max(20px, calc((100vw - var(--shell)) / 2)) 26px;
  scroll-padding-inline: max(20px, calc((100vw - var(--shell)) / 2));
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  cursor: grab;
}

.screens-rail:active { cursor: grabbing; }
.screens-rail::-webkit-scrollbar { display: none; }

.screen-card {
  position: relative;
  width: clamp(270px, 27vw, 360px);
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  transition: transform 240ms var(--ease), border-color 200ms ease;
}

.screen-card:hover {
  border-color: var(--screen-accent, var(--blue));
  transform: translateY(-7px);
}

.screen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--screen-accent, var(--blue)) 15%, transparent);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 660 / 1374;
  object-fit: cover;
  background: #07111a;
}

.screen-card figcaption {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
}

.screen-card figcaption > span { color: var(--screen-accent, var(--blue)); font-size: 0.68rem; font-weight: 820; }
.screen-card figcaption > div { display: flex; flex-direction: column; line-height: 1.25; }
.screen-card figcaption strong { font-size: 0.82rem; }
.screen-card figcaption small { color: var(--text-faint); font-size: 0.65rem; }
.screen-blue { --screen-accent: var(--blue); }
.screen-cyan { --screen-accent: var(--cyan); }
.screen-purple { --screen-accent: var(--purple); }
.screen-green { --screen-accent: var(--green); }
.screen-yellow { --screen-accent: var(--yellow); }

.swipe-hint {
  display: none;
  margin: 4px 20px 0;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.swipe-hint span { color: var(--cyan); }

/* FAQ */

.faq-section {
  background:
    linear-gradient(var(--line), var(--line)) center top / min(calc(100% - 40px), var(--shell)) 1px no-repeat,
    radial-gradient(circle at 88% 38%, rgba(168, 92, 255, 0.07), transparent 26rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 124px;
  align-self: start;
}

.faq-intro h2 { font-size: clamp(2.7rem, 4vw, 4.4rem); }
.faq-intro > p:not(.eyebrow) { max-width: 34ch; color: var(--text-soft); }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; color: var(--cyan); font-size: 0.83rem; font-weight: 750; }
.text-link span { transition: transform 160ms ease; }
.text-link:hover span { transform: translate(2px, -2px); }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 20px;
  padding: 15px 4px;
  font-size: 1.04rem;
  font-weight: 730;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary span::before,
.faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--text-soft); transform: translate(-50%, -50%); transition: transform 180ms ease; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details[open] summary { color: var(--cyan); }
.faq-list details p { max-width: 70ch; margin: -6px 48px 26px 4px; color: var(--text-soft); font-size: 0.91rem; }

/* Final CTA and footer */

.final-cta {
  padding-top: 70px;
}

.cta-panel {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 70px 30px;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 15%, rgba(46, 156, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 80% 80%, rgba(168, 92, 255, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(10, 29, 45, 0.95), rgba(10, 12, 20, 0.96));
  box-shadow: var(--shadow);
  text-align: center;
}

html[data-theme="light"] .cta-panel {
  background:
    radial-gradient(circle at 50% 15%, rgba(46, 156, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 80% 80%, rgba(168, 92, 255, 0.12), transparent 24rem),
    linear-gradient(145deg, #f9fcff, #edf4fa);
}

.cta-panel > img {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(85, 192, 255, 0.32), 0 0 60px rgba(46, 156, 255, 0.24), 0 24px 50px rgba(0, 0, 0, 0.3);
  animation: gentle-float 6s ease-in-out infinite;
}

.cta-panel h2 { position: relative; z-index: 2; margin-bottom: 17px; font-size: clamp(3rem, 5.5vw, 5.7rem); }
.cta-panel > p:not(.eyebrow) { position: relative; z-index: 2; max-width: 600px; margin-bottom: 27px; color: var(--text-soft); }
.cta-panel .eyebrow { position: relative; z-index: 2; }

.cta-radar {
  position: absolute;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(72, 215, 255, 0.1);
  border-radius: 50%;
  opacity: 0.75;
}

.cta-radar::before,
.cta-radar::after,
.cta-radar i { content: ""; position: absolute; inset: 16%; border: 1px solid rgba(72, 215, 255, 0.1); border-radius: 50%; }
.cta-radar::after { inset: 33%; }
.cta-radar i:nth-child(1) { inset: 49.9% 0 auto; border: 0; border-top: 1px solid rgba(72, 215, 255, 0.1); border-radius: 0; }
.cta-radar i:nth-child(2) { inset: 0 auto 0 49.9%; border: 0; border-left: 1px solid rgba(72, 215, 255, 0.1); border-radius: 0; }
.cta-radar span { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 320deg, transparent 0deg 322deg, rgba(72, 215, 255, 0.13), transparent 360deg); animation: radar-spin 13s linear infinite; }

.store-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.store-badge {
  min-width: 184px;
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: color-mix(in srgb, var(--surface-solid) 82%, transparent);
  color: var(--text);
  opacity: 0.82;
  text-align: left;
}

.store-badge > svg { width: 27px; height: 27px; fill: currentColor; stroke: none; }
.store-badge > span { display: flex; flex-direction: column; line-height: 1.12; }
.store-badge small { color: var(--text-faint); font-size: 0.57rem; font-weight: 620; }
.store-badge strong { font-size: 1rem; letter-spacing: -0.025em; }

.site-footer {
  padding: 30px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-main {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.footer-main > p { margin: 0; color: var(--text-faint); font-size: 0.78rem; }
.footer-main nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-main nav a { color: var(--text-soft); font-size: 0.78rem; font-weight: 690; }
.footer-main nav a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--text-faint); font-size: 0.68rem; }

/* Legal pages */

.primary-nav a[aria-current="page"] {
  color: var(--text);
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px var(--line);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: 176px 100px;
  border-bottom: 1px solid var(--line);
}

.legal-hero::before,
.legal-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 50%;
}

.legal-hero::before {
  width: 620px;
  height: 620px;
  top: -290px;
  right: -100px;
  border: 1px solid rgba(46, 156, 255, 0.14);
  box-shadow:
    0 0 0 90px rgba(46, 156, 255, 0.025),
    0 0 0 180px rgba(168, 92, 255, 0.018);
}

.legal-hero::after {
  width: 320px;
  height: 320px;
  bottom: -245px;
  left: 8%;
  background: rgba(46, 156, 255, 0.14);
  filter: blur(90px);
}

.legal-hero-terms::before {
  border-color: rgba(168, 92, 255, 0.16);
  box-shadow:
    0 0 0 90px rgba(168, 92, 255, 0.025),
    0 0 0 180px rgba(46, 156, 255, 0.018);
}

.legal-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 8vw, 118px);
}

.legal-hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 30px;
  font-size: clamp(4.2rem, 8.7vw, 7.7rem);
  line-height: 0.83;
  letter-spacing: -0.075em;
}

.legal-lead {
  max-width: 690px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.72;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 30px;
  color: var(--text-faint);
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.legal-meta span::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px color-mix(in srgb, var(--blue) 70%, transparent);
}

.legal-summary {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(46, 156, 255, 0.08), transparent 46%),
    var(--surface);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.legal-summary::after {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -105px;
  bottom: -112px;
  content: "";
  border: 1px solid rgba(72, 215, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(46, 156, 255, 0.025), 0 0 50px rgba(46, 156, 255, 0.1);
}

.legal-summary .card-kicker {
  margin: 0 0 22px;
  color: var(--text-faint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-summary ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-summary li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: color-mix(in srgb, var(--surface-solid) 68%, transparent);
}

.legal-summary strong,
.legal-summary small { display: block; }
.legal-summary strong { font-size: 0.87rem; line-height: 1.35; }
.legal-summary small { margin-top: 3px; color: var(--text-soft); font-size: 0.72rem; line-height: 1.5; }

.legal-check {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--blue) 42%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--blue) 12%, transparent);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 0 18px color-mix(in srgb, var(--blue) 12%, transparent);
}

.legal-content-section { padding-block: 112px 130px; }

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: clamp(56px, 8vw, 118px);
}

.legal-toc {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.legal-toc > p {
  margin: 0 0 13px;
  color: var(--text-faint);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc nav { display: grid; gap: 2px; }

.legal-toc nav a {
  position: relative;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.legal-toc nav a:hover {
  color: var(--text);
  background: var(--surface-hover);
  transform: translateX(3px);
}

.legal-related {
  display: grid;
  gap: 2px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--blue) 7%, var(--surface-solid));
  transition: border-color 180ms ease, transform 180ms ease;
}

.legal-related:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.legal-related span { color: var(--text-faint); font-size: 0.63rem; font-weight: 750; letter-spacing: 0.07em; text-transform: uppercase; }
.legal-related strong { color: var(--blue); font-size: 0.78rem; }

.legal-document { min-width: 0; }

.legal-callout {
  margin-bottom: 12px;
  padding: 26px 28px;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--blue);
  border-radius: 4px var(--radius) var(--radius) 4px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--blue) 9%, var(--surface)), var(--surface));
}

.legal-callout strong { font-size: 0.9rem; }
.legal-callout p { margin: 7px 0 0; color: var(--text-soft); font-size: 0.87rem; }

.legal-document > section {
  position: relative;
  padding-block: 60px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 108px;
}

.legal-document > section:last-child { border-bottom: 0; }

.legal-section-number {
  margin: 0 0 13px !important;
  color: var(--blue) !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem !important;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.legal-document h2 {
  max-width: 690px;
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.legal-document h3 {
  margin: 34px 0 10px;
  font-size: 1rem;
  line-height: 1.4;
}

.legal-document p,
.legal-document li {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.78;
}

.legal-document p { margin: 0 0 17px; }
.legal-document ul { margin: 19px 0 20px; padding-left: 1.25rem; }
.legal-document li { padding-left: 7px; margin-bottom: 10px; }
.legal-document li::marker { color: var(--blue); }
.legal-document strong { color: var(--text); }

.legal-document a:not(.text-link) {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--blue) 36%, transparent);
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.legal-document a:not(.text-link):hover {
  color: var(--cyan);
  text-decoration-color: currentColor;
}

.legal-contact-card {
  margin-top: 60px;
  padding: 36px !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(46, 156, 255, 0.12), transparent 45%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.legal-contact-card h2 { margin-bottom: 15px; }
.legal-contact-card .text-link { margin-top: 4px; }
.legal-contact-note { margin: 18px 0 0 !important; color: var(--text-faint) !important; font-size: 0.76rem !important; }

.site-footer a[aria-current="page"] { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }

/* Standalone 404 page */

.not-found { min-height: 100svh; display: grid; place-items: center; padding: 32px; text-align: center; }
.not-found img { margin: 0 auto 28px; border-radius: 24px; box-shadow: 0 0 48px rgba(46, 156, 255, 0.26); }
.not-found h1 { margin-bottom: 18px; font-size: clamp(3rem, 10vw, 6rem); }
.not-found p { max-width: 40rem; margin: 0 auto 28px; color: var(--text-soft); }

/* Progressive reveal */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 740ms var(--ease), transform 740ms var(--ease);
}

.js [data-reveal][data-reveal-delay="1"] { transition-delay: 110ms; }
.js [data-reveal][data-reveal-delay="2"] { transition-delay: 220ms; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Keep above-the-fold content immediately paintable for a fast LCP. */
.js .hero [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Responsive */

@media (max-width: 1100px) {
  .nav-shell { grid-template-columns: 1fr auto auto; }
  .primary-nav { grid-column: 1 / -1; width: 100%; display: flex; justify-content: center; overflow-x: auto; }
  .js .primary-nav { position: fixed; top: 74px; right: 20px; width: min(300px, calc(100vw - 40px)); display: none; flex-direction: column; align-items: stretch; padding: 10px; border-radius: 16px; background: color-mix(in srgb, var(--surface-solid) 94%, transparent); box-shadow: var(--shadow); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
  .js .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 14px; border-radius: 10px; }
  .js .menu-toggle { display: inline-grid; justify-self: end; }
  .nav-actions { justify-self: auto; }
  .hero-layout { grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr); gap: 20px; }
  .signal-track { justify-content: flex-start; overflow: hidden; }
  .signal-track span:nth-child(5), .signal-track span:nth-child(6) { display: none; }
  .bento-card { grid-column: span 6; }
  .bento-wide { grid-column: 1 / -1; }
  .bento-tall { grid-column: span 6; }
  .bento-tall + .bento-card, .bento-tall + .bento-card + .bento-card { grid-column: span 6; }
}

@media (max-width: 880px) {
  .section { padding-block: 96px; }
  .hero { min-height: auto; padding-top: 142px; padding-bottom: 80px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-product { min-height: 690px; }
  .float-note-calendar { right: calc(50% - 260px); }
  .float-note-habit { left: calc(50% - 270px); }
  .workflow-intro { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid { margin-bottom: 90px; }
  .trust-panel { grid-template-columns: 1fr; gap: 12px; padding: 44px; text-align: center; }
  .trust-visual { min-height: 230px; }
  .trust-copy > p, .trust-copy h2 { margin-inline: auto; }
  .trust-copy ul { justify-content: center; }
  .faq-layout { grid-template-columns: 1fr; gap: 52px; }
  .faq-intro { position: static; }
  .faq-intro > p:not(.eyebrow) { max-width: 50ch; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main > p { display: none; }
  .legal-hero { padding-block: 146px 82px; }
  .legal-hero-layout { grid-template-columns: 1fr; gap: 52px; }
  .legal-hero-copy { max-width: 760px; }
  .legal-summary { max-width: 650px; }
  .legal-content-section { padding-block: 80px 100px; }
  .legal-layout { grid-template-columns: 1fr; gap: 48px; }
  .legal-toc { position: static; }
  .legal-toc nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding-block: 80px; }
  .nav-shell { min-height: 68px; grid-template-columns: 1fr auto auto; gap: 8px; }
  .brand-copy { flex-direction: column; align-items: flex-start; gap: 2px; }
  .brand-copy strong { font-size: 0.78rem; }
  .brand-copy span { font-size: 0.7rem; }
  .brand img { width: 38px; height: 38px; }
  .menu-toggle, .theme-toggle { width: 39px; height: 39px; }
  .nav-cta { display: none; }
  .js .primary-nav { top: 66px; right: 14px; width: calc(100vw - 28px); }
  h1 { font-size: clamp(3.2rem, 15vw, 4.9rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.7rem); }
  .hero { padding-top: 120px; padding-bottom: 60px; }
  .hero-copy .eyebrow { font-size: 0.65rem; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 7px 13px; font-size: 0.7rem; }
  .hero-product { min-height: 590px; margin-top: 18px; transform: scale(0.89); transform-origin: top center; }
  .phone-wrap { width: 304px; }
  .phone-shell { height: 594px; }
  .radar-stage { width: 500px; height: 500px; }
  .float-note { min-width: 172px; padding: 8px 10px; }
  .float-note-calendar { top: 74px; right: calc(50% - 242px); }
  .float-note-habit { bottom: 86px; left: calc(50% - 242px); }
  .float-note b { font-size: 0.61rem; }
  .float-note small { font-size: 0.47rem; }
  .demo-tabs { bottom: -9px; }
  .demo-tabs button { padding: 8px 9px; font-size: 0.62rem; }
  .signal-track { min-height: 58px; gap: 28px; animation: marquee 18s linear infinite; }
  .signal-track span:nth-child(5), .signal-track span:nth-child(6) { display: flex; }
  @keyframes marquee { to { transform: translateX(-73%); } }
  .section-heading { margin-bottom: 38px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-wide, .bento-tall, .bento-tall + .bento-card, .bento-tall + .bento-card + .bento-card { min-height: 330px; grid-column: 1; }
  .bento-wide { display: block; }
  .bento-wide .feature-icon, .feature-icon { margin-bottom: 38px; }
  .priority-stack { margin-top: 28px; }
  .habit-showcase { margin-inline: -12px; }
  .cell-line i { width: 19px; height: 19px; }
  .workflow-intro { margin-bottom: 52px; }
  .steps-grid { grid-template-columns: 1fr; gap: 42px; }
  .steps-grid li { padding-left: 62px; padding-right: 0; }
  .step-number { position: absolute; top: 0; left: 0; margin: 0; }
  .step-line { top: 43px; left: 21px; width: 1px; height: calc(100% + 42px); background: linear-gradient(var(--line-strong), var(--line)); }
  .steps-grid li:last-child .step-line { display: none; }
  .trust-panel { padding: 30px 20px 36px; border-radius: 22px; }
  .trust-visual { min-height: 200px; }
  .shield-orbit { width: 180px; height: 180px; }
  .trust-copy ul { display: grid; justify-content: start; text-align: left; }
  .screens-heading { align-items: center; }
  .carousel-controls { display: none; }
  .screens-rail { padding-inline: 14px; scroll-padding-inline: 14px; }
  .screen-card { width: min(80vw, 330px); }
  .swipe-hint { display: block; }
  .faq-list summary { min-height: 74px; font-size: 0.94rem; }
  .faq-list details p { margin-right: 12px; }
  .cta-panel { min-height: 570px; padding: 55px 18px; border-radius: 24px; }
  .cta-panel > img { width: 104px; height: 104px; }
  .cta-radar { width: 540px; height: 540px; }
  .store-row { width: 100%; }
  .store-badge { width: min(100%, 260px); }
  .footer-main { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-main nav { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 5px; text-align: center; }
  .legal-hero { padding-block: 120px 62px; }
  .legal-hero::before { width: 430px; height: 430px; top: -205px; right: -220px; }
  .legal-hero-copy h1 { margin-block: 19px 23px; font-size: clamp(3.45rem, 17vw, 5rem); }
  .legal-lead { font-size: 0.97rem; line-height: 1.65; }
  .legal-meta { display: grid; margin-top: 24px; font-size: 0.65rem; }
  .legal-summary { padding: 19px; border-radius: 22px; }
  .legal-summary li { padding: 13px; }
  .legal-content-section { padding-block: 54px 82px; }
  .legal-layout { gap: 30px; }
  .legal-toc { padding: 17px; }
  .legal-toc nav { grid-template-columns: 1fr; }
  .legal-related { margin-top: 14px; }
  .legal-callout { padding: 21px; }
  .legal-document > section { padding-block: 46px; }
  .legal-document h2 { font-size: clamp(1.9rem, 10vw, 2.65rem); }
  .legal-document p, .legal-document li { font-size: 0.9rem; line-height: 1.75; }
  .legal-contact-card { margin-top: 46px; padding: 25px !important; border-radius: 22px; }
}

@media (max-width: 390px) {
  .hero-product { transform: scale(0.81); margin-bottom: -75px; }
  .float-note-calendar { right: calc(50% - 225px); }
  .float-note-habit { left: calc(50% - 225px); }
  .demo-tabs button { padding-inline: 8px; }
  .habit-showcase > div { grid-template-columns: 1fr; }
  .cell-line { grid-row: auto; grid-column: 1; margin-top: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .cursor-light { display: none; }
  .signal-track { transform: none !important; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-light { display: none; }
  [data-tilt] { transform: none !important; }
  .bento-card:hover, .screen-card:hover { transform: none; }
}

@media print {
  .site-header, .site-ambient, .scroll-progress, .demo-tabs, .carousel-controls, .legal-toc { display: none !important; }
  body { background: white; color: black; }
  .section { padding-block: 40px; }
  .hero { min-height: auto; padding-top: 30px; }
  .hero-layout, .workflow-intro, .faq-layout, .trust-panel { grid-template-columns: 1fr; }
  .bento-card, .trust-panel, .cta-panel, .screen-card { break-inside: avoid; box-shadow: none; }
  .legal-hero { padding-block: 30px; }
  .legal-hero-layout, .legal-layout { display: block; }
  .legal-summary { display: none; }
  .legal-document > section { padding-block: 28px; }
}
