:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --bg-2: #efe7d6;
  --paper: #fffaf0;
  --ink: #1d1a16;
  --ink-2: #5b544a;
  --ink-3: #8a8378;
  --line: rgba(29, 26, 22, 0.11);
  --accent: #c96442;
  --accent-2: #a74629;
  --green: #4f8a3f;
  --blue: #3568ba;
  --shadow: 0 24px 70px rgba(80, 60, 40, 0.18);
  --serif: "Apple Garamond", "Iowan Old Style", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", Pretendard, "Apple SD Gothic Neo", system-ui, sans-serif;
  --display: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Hiragino Sans", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
}

h1, h2, h3,
.headline,
.brand > span:last-child,
.footer-brand > span:last-child {
  font-family: var(--display);
  letter-spacing: -0.018em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 58px;
}

.brand,
.nav-links,
.hero-actions,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-mark .sprite-cat-mark {
  display: inline-block;
  width: 26px;
  height: 13px;
  background-image: url("/assets/cute-cat-orange-sprite.png");
  background-size: 156px 65px;
  background-position: 0 0;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  transform: none;
}

.nav-links {
  gap: 22px;
  margin-left: auto;
  color: var(--ink-2);
  font-size: 13px;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 2px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 26px;
  padding: 0 7px;
  border-radius: 6px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 160ms ease, background 160ms ease;
}

.lang-switch a:hover {
  color: var(--accent);
}

.lang-switch a[aria-current="page"] {
  color: var(--ink);
  background: var(--bg-2);
}

@media (max-width: 560px) {
  .lang-switch a {
    min-width: 26px;
    padding: 0 5px;
    font-size: 10.5px;
  }
}

.nav-cta {
  padding: 8px 14px;
  color: var(--bg);
  background: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 200ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.hero {
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 11px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.pulse {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(79, 138, 63, 0.55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(79, 138, 63, 0);
  }
}

.headline {
  max-width: 620px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.headline em,
h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.lede {
  max-width: 580px;
  margin: 0 0 30px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
}

.lede br {
  display: block;
  content: "";
  margin-top: 4px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.btn {
  transition: transform 160ms ease, box-shadow 200ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn-primary {
  color: var(--bg);
  background: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.btn-primary.btn-secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid color-mix(in oklab, var(--ink) 18%, transparent);
  box-shadow: 0 6px 18px rgba(80, 60, 40, 0.10);
}

.btn-primary.btn-secondary:hover {
  background: var(--bg-2);
  border-color: color-mix(in oklab, var(--ink) 28%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(80, 60, 40, 0.18);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--paper);
  border-color: color-mix(in oklab, var(--ink) 22%, transparent);
}

.download-note {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--ink-3);
  font-size: 12.5px;
}

.hero-scene {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238, 231, 215, 0.78), rgba(246, 241, 232, 0.98)),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-real-shot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: auto;
  padding: clamp(12px, 2.4vw, 22px);
}

.hero-real-shot::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 28%, transparent), transparent 75%);
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-real-shot img {
  position: relative;
  width: 100%;
  max-width: 640px;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(80, 60, 40, 0.22);
}

.mac-menubar {
  position: relative;
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, #2384bd, #1f75ad);
  border-bottom: 1px solid rgba(20, 60, 90, 0.32);
  font-size: 13px;
}

.traffic-space {
  width: 86px;
}

.status-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.status-dot.red {
  background: #f0445e;
}

.status-dot.blue {
  background: #54b6ff;
}

.status-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.cat-status-item {
  display: grid;
  place-items: center;
  width: 54px;
  height: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
}

.status-time {
  min-width: 64px;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.popover-pointer {
  position: absolute;
  top: 34px;
  right: 116px;
  width: 18px;
  height: 12px;
  background: var(--paper);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.12));
}

.scene-popover {
  position: absolute;
  top: 45px;
  right: 24px;
  width: min(370px, calc(100% - 44px));
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pop-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.pop-head strong,
.pop-head span {
  display: block;
}

.pop-head strong {
  font-size: 13px;
}

.pop-head span {
  color: var(--ink-3);
  font-size: 11px;
}

.live-badge {
  display: inline-flex !important;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 4px 8px;
  color: var(--green) !important;
  background: rgba(79, 138, 63, 0.10);
  border-radius: 999px;
}

.live-badge span {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 999px;
}

.runway,
.motion-stage {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: 12px;
}

.runway {
  display: grid;
  place-items: end center;
  height: 142px;
  margin-bottom: 14px;
}

.runway::after,
.motion-stage::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 2px;
  background: var(--line);
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.provider-grid div {
  min-width: 0;
  padding: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.provider-grid strong,
.provider-grid span {
  display: block;
}

.provider-grid strong {
  font-size: 12px;
}

.provider-grid span {
  color: var(--ink-3);
  font-size: 11px;
  white-space: nowrap;
}

.scene-chip {
  position: absolute;
  display: inline-grid;
  gap: 1px;
  min-width: 116px;
  padding: 10px 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(80, 60, 40, 0.12);
}

.scene-chip span {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
}

.scene-chip strong {
  font-size: 13px;
}

.chip-activity {
  top: 126px;
  left: 22px;
}

.chip-local {
  right: 38px;
  bottom: 92px;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip div {
  min-height: 126px;
  padding: 30px 36px;
  background: var(--paper);
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  margin-bottom: 7px;
  font-size: 19px;
}

.strip span {
  color: var(--ink-2);
}

.section {
  padding: 92px 0 0;
}

.section-head {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto 44px;
  text-align: center;
}

h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-head p:not(.section-eyebrow) {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
}

.examples-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: stretch;
  gap: 22px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 960px) {
  .examples-layout {
    grid-template-columns: 1fr;
  }
}

.example-main,
.example-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(80, 60, 40, 0.12);
}

.example-main {
  display: grid;
  grid-template-columns: 0.66fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.example-copy {
  padding: 8px 0 8px 10px;
}

.example-copy span,
.example-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.example-copy h3,
.example-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.18;
}

.example-copy p,
.example-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.example-main img,
.example-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  height: auto;
}

.example-main img {
  margin-top: 6px;
  box-shadow: 0 24px 60px rgba(80, 60, 40, 0.16);
}

/* ── Windows section ─────────────────────── */
.windows-section {
  padding: 88px 0 96px;
}

.windows-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.windows-copy h2 {
  margin: 8px 0 14px;
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.12;
}

.windows-copy h2 em {
  font-style: normal;
  color: var(--accent);
}

.windows-copy > p {
  margin: 0 0 22px;
  max-width: 460px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

.windows-bullets {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 9px;
}

.windows-bullets li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  color: var(--ink);
}

.windows-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 6px;
}

.windows-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.windows-action-note {
  flex: 1 1 220px;
  min-width: 0;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

.windows-action-note strong {
  color: var(--ink);
  font-weight: 700;
}

.windows-shot {
  position: relative;
  margin: 0;
  padding: 14px;
  background: linear-gradient(155deg, #f0e9da, var(--paper));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(80, 60, 40, 0.16);
  transform: rotate(-0.6deg);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.windows-shot:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 36px 90px rgba(80, 60, 40, 0.22);
}

.windows-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
}

.windows-shot figcaption {
  margin-top: 10px;
  padding: 0 4px 2px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .windows-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .windows-shot {
    transform: none;
  }
  .windows-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.example-card img {
  object-fit: contain;
  object-position: center;
  background: var(--bg-2);
  box-shadow: 0 14px 36px rgba(80, 60, 40, 0.10);
}

.example-side {
  display: grid;
  gap: 18px;
}

.example-card {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.motion-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.motion-card,
.feature-grid article,
.truth-panel,
.install-section,
.platform-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.motion-card,
.feature-grid article,
.platform-card {
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.motion-card:hover,
.feature-grid article:hover,
.platform-card:hover,
.example-card:hover,
.example-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(80, 60, 40, 0.16);
  border-color: color-mix(in oklab, var(--ink) 16%, transparent);
}

.example-main,
.example-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.motion-card h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.motion-tag {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.truth-panel code {
  padding: 1px 6px;
  color: var(--ink);
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  border-radius: 5px;
  font-size: 12.5px;
}

.motion-stage {
  display: grid;
  place-items: end center;
  height: 118px;
  margin-bottom: 18px;
}

.motion-card h3,
.feature-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.motion-card p,
.feature-grid p,
.truth-panel p,
.platform-card p,
.install-copy p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.truth-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 48px));
  margin: 18px auto 0;
  overflow: hidden;
}

.truth-panel div {
  padding: 24px;
  background: var(--paper);
}

.truth-panel strong {
  display: block;
  margin-bottom: 8px;
}

.platform-section,
.install-section {
  display: grid;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.platform-section {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.tips-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(80, 60, 40, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tips-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(80, 60, 40, 0.16);
  border-color: color-mix(in oklab, var(--ink) 14%, transparent);
}

.tips-card.is-coming {
  background: linear-gradient(160deg, var(--bg-2), var(--paper));
}

.tips-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tips-head h3 {
  margin: 0;
  font-size: 22px;
}

.tips-badge {
  padding: 5px 11px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  white-space: nowrap;
}

.tips-badge.is-ready {
  color: var(--green);
  background: color-mix(in oklab, var(--green) 14%, transparent);
}

.tips-badge.is-soon {
  color: var(--ink-3);
  background: color-mix(in oklab, var(--ink) 8%, transparent);
}

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

.tips-list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: color-mix(in oklab, var(--bg-2) 55%, transparent);
  border-radius: 12px;
}

.tips-list strong {
  font-size: 14px;
  color: var(--ink);
}

.tips-list p {
  margin: 0;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}

.tips-list kbd {
  display: inline-block;
  min-width: 22px;
  padding: 1px 6px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 6px;
  vertical-align: 1px;
}

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

.roadmap-section {
  padding: 56px 0 72px;
}

.roadmap-window {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(80, 60, 40, 0.14);
}

.roadmap-window-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #ededed, #e2e2e2);
  border-bottom: 1px solid var(--line);
}

.roadmap-window-dots {
  display: inline-flex;
  gap: 6px;
  flex: 0 0 auto;
}

.roadmap-window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #c4c4c4;
}

.roadmap-window-dots span:nth-child(1) { background: #ff5f57; }
.roadmap-window-dots span:nth-child(2) { background: #febc2e; }
.roadmap-window-dots span:nth-child(3) { background: #28c840; }

.roadmap-window-url {
  flex: 1;
  min-width: 0;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  color: #57606a;
  font-family: var(--mono);
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.roadmap-window-url:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 1);
}

.roadmap-window-frame {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: #ffffff;
}

@media (max-width: 720px) {
  .roadmap-window-frame {
    height: 480px;
  }
}

.roadmap-foot {
  margin: 22px auto 0;
  width: min(1120px, calc(100% - 48px));
  text-align: right;
}

.roadmap-foot a {
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: color-mix(in oklab, var(--ink) 22%, transparent);
}

.roadmap-foot a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.resource-cta-section {
  padding-top: 0 !important;
}

.resource-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.resource-cta {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.resource-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(80, 60, 40, 0.13);
  border-color: color-mix(in oklab, var(--ink) 16%, transparent);
}

.resource-cta-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resource-cta-eyebrow {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-cta-arrow {
  color: var(--ink-3);
  font-size: 16px;
  transition: transform 200ms ease, color 200ms ease;
}

.resource-cta:hover .resource-cta-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.resource-cta strong {
  display: block;
  font-family: var(--display);
  letter-spacing: -0.018em;
  font-size: 18px;
}

.resource-cta p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-2);
}

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

.install-section-wrap {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
}

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

.step {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(80, 60, 40, 0.10);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(80, 60, 40, 0.16);
  border-color: color-mix(in oklab, var(--ink) 14%, transparent);
}

.step-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.step-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--bg);
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 18px rgba(201, 100, 66, 0.28);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
}

.step-head h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.3;
}

.step-head p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}

.step-head code {
  padding: 1px 6px;
  color: var(--ink);
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  border-radius: 5px;
  font-size: 12.5px;
}

.step-body {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.step-meta {
  color: var(--ink-3);
  font-size: 12.5px;
}

.prompt-card {
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.prompt-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: color-mix(in oklab, var(--ink) 5%, transparent);
  border-bottom: 1px solid var(--line);
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.copy-button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.prompt-card pre {
  margin: 0;
  padding: 18px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: keep-all;
}

.prompt-meta {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--ink-3);
  font-size: 12.5px;
}

.install-manual {
  margin-top: 18px;
  padding: 0;
  border-bottom: none;
}

.install-manual:first-child {
  border-top: none;
}

.install-manual summary {
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}

.install-manual[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.install-manual summary::after {
  right: 18px;
}

.install-manual-body {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.install-manual-body > p {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: 13.5px;
}

.install-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.install-foot .download-note {
  margin: 0;
}

.platform-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-card h2 {
  margin-bottom: 10px;
}

.is-ready {
  border-top-color: rgba(79, 138, 63, 0.42);
}

.is-soon {
  border-top-color: rgba(201, 100, 66, 0.42);
}

.install-section {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
}

.install-copy h2 {
  margin-bottom: 12px;
}

.install-copy .hero-actions {
  margin-top: 22px;
}

.terminal {
  overflow: hidden;
  color: #e6e0d3;
  background: #14110e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.term-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.term-bar span:nth-child(1) {
  background: #ed6a5e;
}

.term-bar span:nth-child(2) {
  background: #f4be4f;
}

.term-bar span:nth-child(3) {
  background: #61c454;
}

.term-bar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 11px;
}

.term-body {
  padding: 18px;
  font-family: var(--mono);
  font-size: 12px;
}

.term-body p {
  margin: 0 0 8px;
  color: rgba(230, 224, 211, 0.52);
}

.copy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
}

.copy-row code {
  overflow-x: auto;
  white-space: nowrap;
}

.copy-button {
  min-height: 30px;
  padding: 0 9px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  cursor: pointer;
}

.faq-section {
  padding-bottom: 84px;
}

.faq {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

details {
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}

details:first-child {
  border-top: 1px solid var(--line);
}

summary {
  position: relative;
  padding-right: 28px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  transition: color 160ms ease;
}

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

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 200ms ease, color 160ms ease;
}

details[open] summary::after {
  content: "−";
  color: var(--accent);
}

summary:hover {
  color: var(--accent);
}

details p {
  margin: 12px 0 0;
  color: var(--ink-2);
}

footer {
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 32px;
  color: var(--ink-2);
  font-size: 13.5px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--ink-2);
  transition: color 160ms ease;
}

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

.footer-brand-col p {
  max-width: 280px;
  margin: 12px 0 0;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.55;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.footer-brand em {
  margin-left: 4px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11.5px;
  font-style: normal;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 12px;
}

.footer-bottom-meta {
  color: var(--ink-3);
}

.download-count {
  margin-left: 4px;
  color: var(--ink-3);
}

.download-count strong {
  color: var(--ink-2);
  font-weight: 700;
}

@media (max-width: 940px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 40px 0 24px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
}

.sprite-cat {
  display: inline-block;
  width: 150px;
  height: 75px;
  background-image: url("/assets/cute-cat-orange-sprite.png");
  background-repeat: no-repeat;
  background-size: 900px 375px;
  image-rendering: auto;
}

.sprite-cheetah {
  background-image: url("/assets/cheetah-sprite.png");
}

.sprite-horse {
  background-image: url("/assets/horse-sprite.png");
}

.sprite-money-gun {
  background-image: url("/assets/money-gun-sprite.png");
}

.sprite-golden-retriever {
  background-image: url("/assets/golden-retriever-sprite.png");
}

.sprite-chihuahua {
  background-image: url("/assets/chihuahua-sprite.png");
}

.sprite-welsh-corgi {
  background-image: url("/assets/welsh-corgi-sprite.png");
}

.sprite-pomeranian {
  background-image: url("/assets/pomeranian-sprite.png");
}

.sprite-shiba-inu {
  background-image: url("/assets/shiba-inu-sprite.png");
}

.sprite-baby-fox {
  background-image: url("/assets/baby-fox-sprite.png");
}

.sprite-otter {
  background-image: url("/assets/otter-sprite.png");
}

.sprite-baby-penguin {
  background-image: url("/assets/baby-penguin-sprite.png");
}

.sprite-hamster {
  background-image: url("/assets/hamster-sprite.png");
}

.sprite-hedgehog {
  background-image: url("/assets/hedgehog-sprite.png");
}

.sprite-red-panda {
  background-image: url("/assets/red-panda-sprite.png");
}

.sprite-baby-rabbit {
  background-image: url("/assets/baby-rabbit-sprite.png");
}

.sprite-baby-dragon {
  background-image: url("/assets/baby-dragon-sprite.png");
}

.sprite-slime {
  background-image: url("/assets/slime-sprite.png");
}

.sprite-mushroom-fairy {
  background-image: url("/assets/mushroom-fairy-sprite.png");
}

.sprite-cloud-creature {
  background-image: url("/assets/cloud-creature-sprite.png");
}

.sprite-little-ghost {
  background-image: url("/assets/little-ghost-sprite.png");
}

.sprite-mini-golem {
  background-image: url("/assets/mini-golem-sprite.png");
}

.sprite-baby-griffin {
  background-image: url("/assets/baby-griffin-sprite.png");
}

.sprite-baby-octopus {
  background-image: url("/assets/baby-octopus-sprite.png");
}

.sprite-baby-crocodile {
  background-image: url("/assets/baby-crocodile-sprite.png");
}

.sprite-baby-dinosaur {
  background-image: url("/assets/baby-dinosaur-sprite.png");
}

.sprite-cat-mark {
  width: 46px;
  height: 23px;
  filter: brightness(0) invert(1);
  transform: scale(0.62);
}

.sprite-cat-menu {
  width: 62px;
  height: 31px;
  filter: brightness(0);
  transform: scale(0.72);
}

.sprite-cat-hero {
  position: relative;
  z-index: 1;
  width: 210px;
  height: 105px;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 9px rgba(29, 26, 22, 0.18));
}

.sprite-cat-state {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 75px;
  margin-bottom: 18px;
}

.mascot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.mascot-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mascot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(80, 60, 40, 0.16);
  border-color: color-mix(in oklab, var(--ink) 16%, transparent);
}

.mascot-card h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 18px;
}

.mascot-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.mascot-stage {
  position: relative;
  display: grid;
  place-items: end center;
  height: 130px;
  margin-bottom: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mascot-stage::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 2px;
  background: var(--line);
}

.mascot-note {
  width: min(1120px, calc(100% - 48px));
  margin: 24px auto 0;
  color: var(--ink-3);
  font-size: 13.5px;
  text-align: center;
}

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

@media (max-width: 940px) {
  .hero-grid,
  .install-section,
  .platform-section,
  .truth-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-scene {
    min-height: 460px;
  }

  .strip,
  .examples-layout,
  .motion-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .example-main,
  .example-card {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 560px) {
  .wrap,
  .examples-layout,
  .motion-grid,
  .feature-grid,
  .truth-panel,
  .platform-section,
  .install-section,
  .faq,
  .section-head {
    width: min(100% - 28px, 1120px);
  }

  .headline {
    font-size: 43px;
  }

  .scene-popover {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .provider-grid {
    grid-template-columns: 1fr;
  }

  .chip-activity,
  .chip-local {
    display: none;
  }

  .install-section {
    padding: 22px;
  }

  .step {
    padding: 22px;
  }

  .step-head {
    gap: 14px;
  }
}

/* ── /privacy, /trends 공통 ─────────────── */
.legal-wrap, .trends-wrap {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 64px;
}

.trends-wrap { width: min(1080px, calc(100% - 48px)); }

.legal-hero h1, .trends-hero h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
}

.legal-hero .lede, .trends-hero .lede {
  max-width: 640px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}

.trends-meta {
  margin-top: 18px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 13px;
}

/* ── /privacy ─────────────── */
.legal-section { margin-top: 56px; }
.legal-section h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 28px;
}
.legal-section p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
}
.legal-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.legal-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.legal-list li:last-child { border-bottom: none; }
.legal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.legal-list-neg li::before { content: "✗"; color: var(--accent); }
.legal-list strong { color: var(--ink); }

.legal-code {
  margin: 16px 0 0;
  padding: 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow-x: auto;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
}
.legal-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.legal-cta-hero {
  margin-top: 24px;
}

.legal-why {
  padding: 28px 30px;
  background: linear-gradient(160deg, color-mix(in oklab, var(--accent) 8%, var(--paper)), var(--paper) 60%);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, var(--line));
  border-radius: 18px;
}

.legal-list-why {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.legal-list-why li {
  position: static;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
}

.legal-list-why li::before { content: none; }

.legal-list-why li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--ink);
}

.legal-list-why li p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-2);
}

.legal-list-why a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-why-foot {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-3);
}
.legal-footer-note {
  margin-top: 80px;
  color: var(--ink-3);
  font-size: 13px;
  text-align: center;
}

.legal-meta {
  margin-top: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12.5px;
}

.legal-section h3 {
  margin: 22px 0 8px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.legal-table {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.legal-table th {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-table td {
  color: var(--ink);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

/* ── /trends ─────────────── */
.trends-demo-banner {
  margin: 28px 0 18px;
  padding: 14px 18px;
  background: color-mix(in oklab, var(--accent) 12%, var(--paper));
  border: 1px solid color-mix(in oklab, var(--accent) 28%, transparent);
  border-radius: 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}
.trends-demo-banner strong { color: var(--accent-2); }

.trends-cold-start {
  margin: 28px 0 18px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--ink-2);
  font-size: 14px;
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 720px) {
  .trends-grid { grid-template-columns: 1fr; }
}

.trends-card {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.trends-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(80, 60, 40, 0.10);
}
.trends-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
}
.trends-card-body {
  color: var(--ink-2);
  font-size: 14px;
}

/* Share rows */
.share-row {
  display: grid;
  grid-template-columns: 130px 1fr 50px;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
}
.share-label {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.share-bar {
  display: block;
  height: 8px;
  background: var(--bg-2);
  border-radius: 999px;
  overflow: hidden;
}
.share-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width 400ms ease;
}
.share-pct {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12px;
  text-align: right;
}

/* Hour histogram */
.hour-hist {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 3px;
  align-items: end;
  height: 100px;
  margin-bottom: 6px;
}
.hour-bar {
  display: block;
  min-height: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 3px 3px 0 0;
  transition: height 400ms ease;
}
.hour-labels {
  display: flex;
  justify-content: space-between;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
}

/* DAU trend */
.dau-trend {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 4px;
  align-items: end;
  height: 100px;
}
.dau-bar {
  display: block;
  min-height: 4px;
  background: var(--ink);
  opacity: 0.6;
  border-radius: 2px 2px 0 0;
}

.trends-footer-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 13px;
  text-align: center;
}

.legal-cta-hero {
  margin-top: 28px;
}
