/* ==========================================================================
   칼퇴랩스 (Kaltoe Labs) — company + product marketing
   ========================================================================== */

:root {
  --bg: #05070d;
  --bg-elevated: #0a0e18;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #f5f7fb;
  --text-dim: #9aa3ba;
  --text-faint: #5b6377;

  --dive: #1b6de0;
  --dive-2: #5ab2ff;
  --dive-deep: #0c3b73;

  --tempo: #c8ff44;
  --tempo-2: #1f2530;
  --tempo-bg: #fbfbfd;
  --tempo-bg-2: #ececf2;
  --tempo-blue: #3d7dff;

  --hotfix: #00e5ff;
  --hotfix-2: #39ff14;

  --font-mono: "Fira Code", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --font-round: "Nunito", "Pretendard", -apple-system, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

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

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.35;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-1.in-view { transition-delay: .06s; }
.reveal-2.in-view { transition-delay: .12s; }
.reveal-3.in-view { transition-delay: .18s; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.brand-mark { width: 30px; height: 30px; border-radius: 9px; overflow: hidden; flex: none; box-shadow: 0 0 0 1px var(--border-soft); }
.brand-mark img { width: 100%; height: 100%; }
.brand-en { color: var(--text-faint); font-weight: 500; font-size: 12px; margin-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  position: relative; font-size: 14.5px; color: var(--text-dim); font-weight: 500;
  padding: 6px 0; transition: color .25s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: currentColor; transition: right .3s var(--ease);
}
.nav-links a:hover, .nav-links a.is-current { color: var(--text); }
.nav-links a:hover::after, .nav-links a.is-current::after { right: 0; }

.nav-cta {
  font-size: 13.5px; font-weight: 600; padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--border); color: var(--text);
  transition: border-color .25s ease, background .25s ease;
}
.nav-cta:hover { border-color: rgba(255,255,255,0.35); background: var(--surface); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; border: 1px solid var(--border); border-radius: 10px;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-panel {
  position: fixed; inset: 0; z-index: 45; background: rgba(5,7,13,.97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mobile-panel.open { opacity: 1; pointer-events: auto; }
.mobile-panel a { font-size: 1.6rem; font-weight: 700; color: var(--text-dim); }
.mobile-panel a:hover, .mobile-panel a.is-current { color: var(--text); }

/* ---------- buttons / store ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 100px;
  font-size: 14.5px; font-weight: 600; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 15px; height: 15px; }
.btn:active { transform: scale(.98); }

.btn-primary { background: #f5f7fb; color: #05070d; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -8px rgba(245,247,251,.35); }

.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255,255,255,.35); background: var(--surface); }

.btn-lime { background: var(--tempo); color: var(--tempo-2); font-family: var(--font-round); font-weight: 800; }
.btn-lime:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(200,255,68,.45); }

.btn-hotfix {
  background: color-mix(in srgb, var(--hotfix) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--hotfix) 45%, transparent);
  color: var(--text);
}
.btn-hotfix:hover { background: color-mix(in srgb, var(--hotfix) 26%, transparent); }

.store-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.store-pair { display: flex; align-items: center; gap: 12px; }
.store-badge { display: block; line-height: 0; }
.store-badge img { height: 40px; width: auto; }
.store-badge--play img { height: 40px; width: auto; }

.store-qr {
  display: flex; flex-direction: row; align-items: center; gap: 8px;
  flex: none;
}
.store-qr img {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}
.store-qr figcaption {
  font-size: 11px; color: var(--text-faint); letter-spacing: .02em; text-align: left; white-space: nowrap;
}

@media (max-width: 720px) {
  .store-qr { display: none; }
}

/* DIVE Figma store pair: badge above 88px QR, 12px gap between columns */
.product-card--dive .store-row,
.page-dive .store-row {
  gap: 12px;
  align-items: flex-end;
}
.product-card--dive .store-pair,
.page-dive .store-pair {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.product-card--dive .store-badge img,
.page-dive .store-badge img {
  width: 120px;
  height: 40px;
}
.product-card--dive .store-badge--play img,
.page-dive .store-badge--play img {
  width: 135px;
  height: 40px;
}
.product-card--dive .store-qr img,
.page-dive .store-qr img {
  width: 88px;
  height: 88px;
}
.product-card--dive .store-qr figcaption,
.page-dive .store-qr figcaption {
  display: none;
}

/* ---------- phone frame ---------- */
.phone {
  --phone-w: 220px;
  width: var(--phone-w);
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(180deg, #2a2c32, #111216);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 22px 44px -22px rgba(0,0,0,.7);
}
.phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  border-radius: 20px;
  background: #111;
}
.phone--light {
  background: linear-gradient(180deg, #eceef3, #c9ccd4);
  box-shadow:
    0 0 0 1px rgba(31,37,48,.08),
    0 18px 40px -18px rgba(31,37,48,.35);
}
.phone--watch {
  --phone-w: 128px;
  padding: 10px;
  border-radius: 36px;
  background: #111;
}
.phone--watch img {
  aspect-ratio: 416 / 496;
  border-radius: 28px;
}

.shot-light {
  border-radius: 17px;
  box-shadow:
    0 16px 36px -16px rgba(245,247,251,.16),
    0 10px 28px -14px rgba(0,0,0,.5);
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  padding: 132px 0 72px;
  overflow: hidden;
}
.hero-wash {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(27,109,224,.16), transparent 70%);
}
.hero-copy {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--text-dim);
  padding: 7px 16px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--dive); }

.hero-title {
  font-size: clamp(1.9rem, 4.6vw, 3.15rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.25;
}
.hero-title .em-dive { color: var(--dive-2); }
.hero-title .em-tempo { color: var(--tempo); }

.hero-sub { max-width: 520px; font-size: 1.05rem; color: var(--text-dim); }

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

/* ---------- ritual: ONE motion ---------- */
.ritual {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}
.ritual-pane {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 18px 20px;
  background: var(--surface);
}
.ritual-pane--tempo {
  background: var(--tempo-bg);
  border-color: rgba(31,37,48,.1);
  color: var(--tempo-2);
}
.ritual-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 14px;
}
.ritual-pane--tempo .ritual-kicker { color: #7b8291; }
.ritual-task {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 12px 14px; border-radius: 12px;
  background: #f6f7f9; color: #2a2f38; font-size: 13.5px; font-weight: 600;
  box-shadow: 0 10px 24px -16px rgba(0,0,0,.4);
  cursor: pointer; transition: background .2s ease, transform .15s ease;
}
.ritual-task:hover { background: #eef0f3; }
.ritual-task:active { transform: scale(.98); }
.ritual-check {
  width: 14px; height: 14px; border-radius: 4px; flex: none; position: relative;
  border: 1.5px solid var(--dive); transition: background .2s ease;
}
.ritual-task.checked .ritual-check { background: var(--dive); }
.ritual-task.checked .ritual-check::after {
  content: ""; position: absolute; left: 2px; top: 3px; width: 7px; height: 4px;
  border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff; transform: rotate(-45deg);
}
.ritual-task.checked > span:last-child { color: #9aa1ac; text-decoration: line-through; }
.ritual-hint {
  margin: 10px 2px 0; font-size: 11.5px; color: var(--text-faint);
}

.ritual-grid { display: flex; flex-direction: column; gap: 8px; }
.ritual-row {
  display: grid; grid-template-columns: 42px 1fr; gap: 8px; align-items: center;
}
.ritual-row time {
  font-size: 11px; color: #8790a0; font-family: "DM Mono", ui-monospace, monospace;
}
.ritual-block {
  height: 34px; border-radius: 8px;
  background: var(--tempo-blue);
}
.ritual-block.lime { background: var(--tempo); }
.ritual-slot {
  position: relative;
  height: 38px; border-radius: 8px;
  border: 1px dashed rgba(31,37,48,.22);
  background: rgba(31,37,48,.03);
}

.ritual-card {
  position: absolute; inset: 2px;
  display: flex; align-items: center; padding: 0 10px;
  border-radius: 7px;
  background: #e8f1ff; color: var(--dive-deep);
  font-size: 12.5px; font-weight: 700;
}

.js .ritual:not(.played) .ritual-card { opacity: 0; }
.ritual.played .ritual-card {
  animation: snap-in 240ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes snap-in {
  from { transform: translate(-132px, -6px) scale(.94); opacity: .15; }
  to { transform: none; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .js .ritual:not(.played) .ritual-card,
  .ritual-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ---------- products (home) ---------- */
.products { padding: 72px 0 28px; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.product-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 28px 28px 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--surface), rgba(255,255,255,0.02));
  min-height: 100%;
}
.product-card--dive { --accent: var(--dive); }
.product-card--tempo {
  --accent: var(--tempo);
  background: var(--tempo-bg);
  border-color: rgba(31,37,48,.1);
  color: var(--tempo-2);
}
.product-card--tempo p,
.product-card--tempo .product-desc { color: #4b5261; }
.product-card--tempo .eyebrow { color: #5b6377; border-color: rgba(31,37,48,.12); background: #fff; }
.product-card--tempo .eyebrow::before { background: var(--tempo-2); }

.product-visual { display: flex; justify-content: center; padding: 8px 0 4px; }
.product-card .store-row { justify-content: center; }
.product-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px;
}
.product-badge img { width: 30px; height: 30px; border-radius: 9px; }
.product-card h2 { font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.3; }
.product-desc { font-size: .96rem; color: var(--text-dim); }
.product-more { font-size: 13.5px; font-weight: 600; color: var(--text-dim); }
.product-more:hover { color: var(--text); }
.product-card--tempo .product-more { color: #4b5261; }
.product-card--tempo .product-more:hover { color: var(--tempo-2); }

.status {
  font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 4px 10px; border-radius: 100px;
  border: 1px solid var(--border); text-transform: uppercase;
}
.status-live { color: #7cf5b0; border-color: rgba(124,245,176,.35); background: rgba(124,245,176,.08); }
.product-card--tempo .status-live { color: #0f8a4d; border-color: rgba(15,138,77,.3); background: rgba(15,138,77,.12); }
.status-beta { color: #ffc266; border-color: rgba(255,194,102,.4); background: rgba(255,194,102,.1); }

/* ---------- hotfix lane ---------- */
.hotfix-lane { padding: 12px 0 80px; }
.hotfix-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 24px;
  border: 1px solid rgba(0,229,255,.22);
  border-radius: 16px;
  background: rgba(0,229,255,.04);
  min-height: 88px;
}
.hotfix-bar-copy { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hotfix-bar img { width: 36px; height: 36px; border-radius: 10px; flex: none; }
.hotfix-bar h2 { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
.hotfix-bar p { font-size: 13.5px; color: var(--text-dim); }
.hotfix-kicker { font-family: var(--font-mono); font-size: 11px; color: var(--hotfix); letter-spacing: .06em; }

/* ---------- journal / philosophy (shrunk) ---------- */
.journal, .philosophy, .contact { padding: 64px 0; }
.section-head { max-width: 560px; margin: 0 auto 36px; text-align: center; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.section-head h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; letter-spacing: -.02em; }
.section-sub { color: var(--text-dim); font-size: .95rem; }

.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.journal-card {
  border: 1px solid var(--border); border-radius: 18px; padding: 22px 20px; background: var(--surface);
  display: flex; flex-direction: column; gap: 10px;
}
.journal-num { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); }
.journal-card h3 { font-size: 1rem; font-weight: 800; letter-spacing: -.015em; line-height: 1.4; }
.journal-card p { font-size: .84rem; color: var(--text-dim); line-height: 1.65; }
.journal-tag {
  align-self: flex-start; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px; border: 1px solid var(--border);
}

.philosophy { background: linear-gradient(180deg, transparent, var(--bg-elevated) 18%, var(--bg-elevated) 82%, transparent); }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.quote { font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.5; }
.quote em { font-style: normal; color: var(--dive-2); }
.philosophy-copy { color: var(--text-dim); font-size: .95rem; margin-top: 16px; max-width: 460px; }
.pillars { display: flex; flex-direction: column; gap: 12px; }
.pillar {
  display: flex; gap: 14px; padding: 16px; border: 1px solid var(--border-soft); border-radius: 14px; background: var(--surface);
}
.pillar .num { font-size: 12px; font-weight: 800; color: var(--text-faint); padding-top: 2px; }
.pillar h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.pillar p { font-size: .84rem; color: var(--text-dim); }

.contact-card {
  border: 1px solid var(--border); border-radius: 24px; padding: 52px 40px; text-align: center;
  background: var(--surface);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.contact-card h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; letter-spacing: -.02em; }
.contact-card p { color: var(--text-dim); max-width: 440px; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border-soft); padding: 36px 0;
  color: var(--text-faint); font-size: 13px;
}
.footer .brand { font-size: 14px; }
.footer-links { display: flex; gap: 16px 20px; flex-wrap: wrap; }
.footer-links a { white-space: nowrap; transition: color .2s ease; }
.footer-links a:hover { color: var(--text); }

/* ---------- product pages ---------- */
.page-hero {
  padding: 128px 0 56px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.28;
  margin: 12px 0 16px;
}
.page-hero .lead { color: var(--text-dim); max-width: 460px; margin-bottom: 22px; }
.page-hero-visual { display: flex; justify-content: center; }
.page-hero-visual .phone { --phone-w: clamp(220px, 19vw, 300px); }

.page-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 4px; display: block;
}

.features { padding: 24px 0 64px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  padding: 22px 20px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface);
}
.feature h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: .9rem; color: var(--text-dim); }

.shots { padding: 12px 0 72px; }
.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  justify-items: center;
}
.shot-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.shot-item figcaption { font-size: 13px; color: var(--text-faint); }

.watch-row {
  display: flex; justify-content: center; gap: 28px; margin-top: 28px; flex-wrap: wrap;
}

.page-cta { padding: 0 0 80px; }
.page-cta-card {
  border: 1px solid var(--border); border-radius: 22px; padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px;
  background: var(--surface);
}
.page-cta-card h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; }
.page-cta-card .store-row { justify-content: center; }

.hotfix-hero {
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
}
.hotfix-icon-lg { width: 72px; height: 72px; border-radius: 18px; }

/* TEMPO light page */
body.page-tempo {
  background: var(--tempo-bg);
  color: var(--tempo-2);
}
body.page-tempo .noise { opacity: .18; background-image: radial-gradient(rgba(31,37,48,0.06) 1px, transparent 1px); }
body.page-tempo .nav.scrolled {
  background: rgba(251,251,253,.82);
  border-bottom-color: rgba(31,37,48,.08);
}
body.page-tempo .nav-links a { color: #5b6377; }
body.page-tempo .nav-links a:hover,
body.page-tempo .nav-links a.is-current { color: var(--tempo-2); }
body.page-tempo .nav-cta { color: var(--tempo-2); border-color: rgba(31,37,48,.14); }
body.page-tempo .nav-toggle { border-color: rgba(31,37,48,.14); }
body.page-tempo .nav-toggle span { background: var(--tempo-2); }
body.page-tempo .mobile-panel { background: rgba(251,251,253,.98); }
body.page-tempo .mobile-panel a { color: #5b6377; }
body.page-tempo .eyebrow { color: #5b6377; border-color: rgba(31,37,48,.12); background: #fff; }
body.page-tempo .eyebrow::before { background: var(--tempo); }
body.page-tempo .lead,
body.page-tempo .feature p,
body.page-tempo .section-sub { color: #4b5261; }
body.page-tempo .feature,
body.page-tempo .page-cta-card {
  background: #fff;
  border-color: rgba(31,37,48,.08);
}
body.page-tempo .shot-item figcaption,
body.page-tempo .footer { color: #7b8291; }
body.page-tempo .footer { border-top-color: rgba(31,37,48,.08); }
body.page-tempo .footer-links a:hover { color: var(--tempo-2); }
body.page-tempo .store-qr figcaption { color: #7b8291; }
body.page-tempo .store-qr img { box-shadow: 0 0 0 1px rgba(31,37,48,.08); }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .product-grid,
  .page-hero-grid,
  .philosophy-grid,
  .journal-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: 1fr 1fr; }
  .ritual { grid-template-columns: 1fr; }
  .hotfix-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero { padding-top: 112px; }
  .page-hero { padding-top: 112px; }
  .nav-cta { display: none; }
  .shot-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 40px 22px; }
  .footer .container { display: flex; flex-direction: column; gap: 16px; }
  .footer-links { justify-content: flex-start; }
  .hero-actions { justify-content: center; }
  .store-row { justify-content: center; }
}

@media (max-width: 560px) {
  .br-desktop { display: none; }
}
