:root {
  --black: #070707;
  --panel: #11100f;
  --paper: #f8f0e3;
  --paper-2: #ede2d0;
  --ink: #11100e;
  --muted: #756d62;
  --line: rgba(17, 16, 14, 0.13);
  --line-dark: rgba(255, 255, 255, 0.12);
  --accent: #ef3d26;
  --focus: #23a7d9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #080807;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.app {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 4%, rgba(239, 61, 38, 0.18), transparent 28%),
    radial-gradient(circle at 10% 28%, rgba(35, 167, 217, 0.08), transparent 22%),
    linear-gradient(180deg, #050505 0%, #0b0b0a 100%);
  display: block;
  color: var(--paper);
  overflow-x: hidden;
}

.site-nav {
  width: min(1180px, calc(100vw - 32px));
  min-height: 78px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 8, 7, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-lockup {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
}

.brand-lockup span,
.kicker,
.lens-badge {
  display: block;
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup strong {
  display: block;
  margin-top: 4px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 33px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-lockup i {
  color: var(--accent);
  font-style: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.main-nav button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  padding: 0 12px;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.main-nav button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}

.main-nav button.is-active {
  color: #fff;
  background: var(--accent);
}

.main-nav b,
.main-nav span {
  display: block;
}

.main-nav b {
  font-size: 11px;
  text-transform: uppercase;
}

.main-nav span {
  display: none;
}

.nav-cta {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--black);
  padding: 0 14px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.workspace {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  min-width: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 18px 18px;
}

.feed-screen > *,
.decode-layout > *,
.concept-view > *,
.profile-layout > *,
.library-grid > *,
.saved-layout > * {
  min-width: 0;
}

.app-header {
  min-height: 108px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.app-header h1 {
  margin: 6px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-search {
  width: min(320px, 40vw);
  min-height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 7px 11px;
  display: grid;
  background: rgba(255, 255, 255, 0.05);
}

.global-search span {
  color: #aaa299;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.global-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
}

.feed-layout,
.decode-layout,
.profile-layout {
  padding: 28px 0;
  display: grid;
  gap: 18px;
}

.feed-layout {
  grid-template-columns: minmax(0, 1.4fr) 360px;
}

.feed-screen {
  padding: 0 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
}

.feed-hero-web {
  grid-column: 1 / -1;
  min-height: min(720px, calc(100vh - 118px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: 48px 0 34px;
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.feed-hero-web h1 {
  max-width: 100%;
  margin: 12px 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 9vw, 132px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.feed-hero-web h1 span {
  display: block;
}

.feed-hero-web h1 span + span {
  margin-top: -0.03em;
}

.feed-hero-web p:not(.kicker) {
  max-width: 640px;
  color: #d2c8bb;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof {
  max-width: 520px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-proof span {
  min-height: 72px;
  padding: 14px 10px;
  display: grid;
  align-content: center;
  color: #aaa299;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-proof span + span {
  border-left: 1px solid var(--line-dark);
}

.hero-proof b {
  display: block;
  color: var(--paper);
  font-size: 22px;
}

.hero-visual {
  min-width: 0;
  width: 100%;
  max-width: 640px;
  justify-self: end;
  min-height: clamp(430px, 48vw, 590px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(circle at 72% 22%, rgba(239, 61, 38, 0.26), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, #101010, #2a100d 58%, #080807);
  background-size: auto, 24px 24px, 24px 24px, auto;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.eye-reveal {
  min-height: clamp(460px, 50vw, 620px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, rgba(248, 240, 227, 0.16), transparent 18%),
    radial-gradient(circle at 50% 48%, rgba(239, 61, 38, 0.32), transparent 32%),
    linear-gradient(145deg, #0b0b0b, #2a100d 62%, #080706);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-visual::before {
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(165deg, transparent 0 28%, rgba(239, 61, 38, 0.34) 29% 100%);
}

.hero-visual::after {
  right: -110px;
  top: 72px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(248, 240, 227, 0.22);
  border-radius: 50%;
}

.eye-reveal::before {
  height: 42%;
  background: linear-gradient(168deg, transparent 0 42%, rgba(239, 61, 38, 0.36) 43% 100%);
}

.eye-reveal::after {
  right: -12%;
  top: 14%;
  width: 48%;
  height: 48%;
  border-color: rgba(248, 240, 227, 0.2);
}

.scan-stage {
  min-height: clamp(460px, 50vw, 620px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 26px;
}

.scan-label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.scan-label b {
  color: #f8f0e3;
}

.eye-illustration {
  width: min(92%, 520px);
  aspect-ratio: 1.62;
  place-self: center;
  position: relative;
  display: grid;
  place-items: center;
  transform: translateY(-8px);
}

.eye-shadow {
  position: absolute;
  inset: 22% 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 61, 38, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(248, 240, 227, 0.04), rgba(248, 240, 227, 0.14), rgba(248, 240, 227, 0.04));
  filter: blur(8px);
}

.eye-ring {
  position: absolute;
  inset: 4% 0;
  border: 7px solid rgba(248, 240, 227, 0.88);
  border-top-width: 12px;
  border-bottom-width: 4px;
  border-radius: 100% 0 100% 0 / 86% 0 86% 0;
  transform: rotate(-45deg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 0 58px rgba(239, 61, 38, 0.35);
}

.iris {
  width: min(34%, 156px);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background:
    repeating-conic-gradient(from 0deg, rgba(248, 240, 227, 0.18) 0 8deg, transparent 8deg 18deg),
    radial-gradient(circle, #fb3b2b 0 30%, #811e16 31% 58%, #1b0b09 59% 100%);
  box-shadow:
    0 0 0 14px rgba(239, 61, 38, 0.1),
    0 0 0 34px rgba(248, 240, 227, 0.08),
    0 0 90px rgba(239, 61, 38, 0.44);
  animation: irisPulse 3600ms ease-in-out infinite;
}

.iris span {
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #070605;
  box-shadow: inset 10px -8px 0 rgba(255, 255, 255, 0.08);
}

.scan-line {
  position: absolute;
  left: 2%;
  right: 2%;
  top: 18%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #f8f0e3, var(--accent), #f8f0e3, transparent);
  box-shadow: 0 0 24px rgba(248, 240, 227, 0.65), 0 0 48px rgba(239, 61, 38, 0.5);
  animation: scanEye 3200ms cubic-bezier(0.55, 0, 0.2, 1) infinite;
}

.under-map {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.under-map span {
  min-height: 54px;
  border: 1px solid rgba(248, 240, 227, 0.16);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #f8f0e3;
  background: rgba(8, 7, 6, 0.54);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  animation: revealChip 4800ms ease infinite;
}

.under-map span:nth-child(2) {
  animation-delay: 160ms;
}

.under-map span:nth-child(3) {
  animation-delay: 320ms;
}

.under-map span:nth-child(4) {
  animation-delay: 480ms;
}

.scan-caption {
  max-width: 480px;
  align-self: end;
  display: grid;
  gap: 8px;
  color: #d7cec2;
}

.scan-caption b {
  color: var(--paper);
  font-size: 18px;
}

.scan-caption small {
  max-width: 390px;
  color: #aaa299;
  font-size: 13px;
  line-height: 1.4;
}

@keyframes scanEye {
  0%, 100% {
    top: 18%;
    opacity: 0.24;
  }
  18%, 72% {
    opacity: 1;
  }
  50% {
    top: 72%;
  }
}

@keyframes irisPulse {
  0%, 100% {
    transform: scale(0.96);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes revealChip {
  0%, 24% {
    opacity: 0;
    transform: translateY(12px);
  }
  34%, 82% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .iris,
  .scan-line,
  .under-map span {
    animation: none;
  }

  .under-map span {
    opacity: 1;
    transform: none;
  }
}

.today-spotlight {
  grid-column: 1 / -1;
  margin: 8px 0 26px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 20px;
  align-items: center;
}

.today-spotlight h2 {
  margin: 6px 0 10px;
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.today-spotlight p:not(.kicker) {
  max-width: 640px;
  color: #d7cec2;
  font-size: 15px;
  line-height: 1.45;
}

.today-prompt {
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.today-prompt span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.today-prompt b {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.2;
}

.today-prompt > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.today-prompt button {
  justify-self: start;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.spotlight-feature {
  isolation: isolate;
}

.spotlight-frame {
  min-height: 590px;
  padding: 24px;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  z-index: 1;
}

.spotlight-kicker {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spotlight-kicker span,
.spotlight-kicker b {
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.spotlight-kicker b {
  color: #d7cec2;
}

.spotlight-focus {
  position: absolute;
  inset: 112px 44px auto auto;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(248, 240, 227, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(239, 61, 38, 0.11);
  z-index: 1;
}

.spotlight-focus::before,
.spotlight-focus::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(248, 240, 227, 0.22);
}

.spotlight-focus::before {
  inset: 28px;
}

.spotlight-focus::after {
  inset: 62px;
  background: var(--accent);
  border: 0;
}

.spotlight-focus span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 44px;
  letter-spacing: 0;
}

.spotlight-copy {
  align-self: center;
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.spotlight-copy p {
  margin: 0 0 12px;
  color: #aaa299;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-copy h2 {
  margin: 0 0 12px;
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(60px, 7vw, 96px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.spotlight-copy small {
  display: block;
  max-width: 360px;
  color: #d7cec2;
  font-size: 14px;
  line-height: 1.45;
}

.spotlight-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
}

.spotlight-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.spotlight-tags .tag {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 10px;
  color: #d7cec2;
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.04);
}

.spotlight-footer button {
  min-width: 132px;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.landing-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: -18px 0 28px;
}

.landing-how {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 24px 0;
  margin: -8px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.landing-how h2 {
  max-width: 540px;
  margin: 8px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.landing-how li {
  min-height: 150px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.landing-how li span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 950;
}

.landing-how b {
  color: var(--paper);
  font-size: 13px;
  text-transform: uppercase;
}

.landing-how small {
  color: #aaa299;
  line-height: 1.35;
}

.landing-strip article {
  min-height: 118px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 8px;
  transition: transform 160ms ease, background 160ms ease;
}

.landing-strip article:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.landing-strip span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.landing-strip b {
  color: var(--paper);
  font-size: 13px;
  text-transform: uppercase;
}

.landing-strip small {
  color: #aaa299;
  line-height: 1.35;
}

.feed-toolbar {
  grid-column: 1 / -1;
  min-height: 106px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.feed-toolbar h2 {
  margin: 6px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feed-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.feed-metrics span {
  min-width: 92px;
  min-height: 58px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #bfb6aa;
  font-size: 10px;
  text-transform: uppercase;
}

.feed-metrics b {
  color: var(--paper);
  font-size: 20px;
}

.dark-button {
  border-color: var(--line-dark);
  color: var(--paper);
  white-space: nowrap;
}

.feed-list {
  display: grid;
  gap: 18px;
}

.daily-card {
  min-height: 310px;
  border-radius: 18px;
  border: 1px solid rgba(239, 61, 38, 0.38);
  background:
    radial-gradient(circle at 18% 24%, rgba(239, 61, 38, 0.34), transparent 28%),
    linear-gradient(135deg, #17120f, #2f1510 58%, #090909);
  color: var(--paper);
  padding: 24px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.daily-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.daily-orbit {
  width: 108px;
  height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.06);
}

.daily-orbit span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 42px;
}

.daily-card h3 {
  margin: 8px 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.daily-card p:not(.kicker) {
  max-width: 580px;
  color: #ded4c8;
  line-height: 1.45;
}

.daily-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.daily-actions .secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--paper);
}

.feed-post {
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  padding: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feed-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.feed-post header,
.feed-post footer,
.post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feed-post header button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #5d554d;
  font-size: 18px;
}

.feed-post header button.is-saved {
  border-color: rgba(239, 61, 38, 0.35);
  color: var(--accent);
  background: rgba(239, 61, 38, 0.08);
}

.feed-author {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feed-author small {
  display: block;
  margin-top: 3px;
  color: #756d62;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.lens-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--paper);
  font-size: 18px;
  font-weight: 950;
}

.post-visual {
  width: 100%;
  min-height: 250px;
  margin-top: 18px;
  border: 0;
  border-radius: 14px;
  padding: 18px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: end;
  gap: 12px;
  text-align: left;
  isolation: isolate;
}

.post-visual::before,
.post-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.post-visual::after {
  z-index: -1;
  opacity: 0.82;
}

.post-visual span {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
  font-size: 28px;
}

.post-visual i {
  position: absolute;
  width: 130px;
  height: 130px;
  right: 20px;
  top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.post-visual i::before,
.post-visual i::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
}

.post-visual i::before {
  inset: 22px;
}

.post-visual i::after {
  inset: 44px;
}

.post-visual b {
  max-width: 520px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.visual-psych .post-visual::before {
  background:
    radial-gradient(circle at 68% 34%, rgba(185, 60, 255, 0.95), transparent 0 14%, transparent 15%),
    repeating-radial-gradient(circle at 38% 56%, transparent 0 10px, rgba(255, 255, 255, 0.2) 11px 12px),
    linear-gradient(135deg, #171414, #3d263e 58%, #0f0f0f);
}

.visual-society .post-visual::before {
  background:
    radial-gradient(circle at 22% 28%, #f8f0e3 0 8px, transparent 9px),
    radial-gradient(circle at 48% 46%, #f8f0e3 0 8px, transparent 9px),
    radial-gradient(circle at 78% 24%, #f8f0e3 0 8px, transparent 9px),
    linear-gradient(120deg, #151515, #5a1811 55%, #0a0a0a);
}

.visual-society .post-visual::after {
  background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.23) 42% 44%, transparent 44% 58%, rgba(255, 255, 255, 0.18) 58% 60%, transparent 60%);
}

.visual-strategy .post-visual::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, #17130a, #66510e 54%, #0c0c0b);
  background-size: 28px 28px, 28px 28px, auto;
}

.visual-philosophy .post-visual::before {
  background:
    conic-gradient(from 20deg at 60% 44%, transparent 0 24%, rgba(35, 167, 217, 0.9) 24% 31%, transparent 31%),
    radial-gradient(circle at 34% 42%, rgba(255, 255, 255, 0.14), transparent 0 30%),
    linear-gradient(135deg, #07141a, #153a46 56%, #070707);
}

.visual-spirit .post-visual::before {
  background:
    radial-gradient(circle at 50% 45%, transparent 0 34px, rgba(255, 255, 255, 0.8) 35px 37px, transparent 38px),
    radial-gradient(circle at 70% 30%, rgba(67, 176, 92, 0.85), transparent 0 18%, transparent 19%),
    linear-gradient(135deg, #0c150f, #214d2d 60%, #090909);
}

.visual-systems .post-visual::before {
  background:
    radial-gradient(circle at 18% 24%, #f8f0e3 0 4px, transparent 5px),
    radial-gradient(circle at 44% 52%, #f8f0e3 0 4px, transparent 5px),
    radial-gradient(circle at 72% 30%, #f8f0e3 0 4px, transparent 5px),
    linear-gradient(135deg, #111, #4b4840 55%, #070707);
}

.visual-systems .post-visual::after {
  background:
    linear-gradient(28deg, transparent 0 34%, rgba(255, 255, 255, 0.22) 34% 35%, transparent 35%),
    linear-gradient(150deg, transparent 0 48%, rgba(255, 255, 255, 0.2) 48% 49%, transparent 49%);
}

.visual-power .post-visual::before {
  background:
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #1c0e06, #7a340c 56%, #080808);
}

.visual-morality .post-visual::before {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 255, 255, 0.55) 47% 49%, transparent 49%),
    radial-gradient(circle at 32% 52%, transparent 0 28px, rgba(240, 198, 78, 0.8) 29px 31px, transparent 32px),
    radial-gradient(circle at 68% 52%, transparent 0 28px, rgba(240, 198, 78, 0.8) 29px 31px, transparent 32px),
    linear-gradient(135deg, #181307, #66551a 54%, #090909);
}

.post-body {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 0 0;
  text-align: left;
  color: inherit;
}

.post-body h3 {
  max-width: 720px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.post-body p {
  max-width: 680px;
  margin: 12px 0 0;
  color: #4d463f;
  font-size: 15px;
  line-height: 1.45;
}

.post-insight {
  margin: 18px 0;
  border-left: 3px solid var(--accent);
  background: rgba(239, 61, 38, 0.07);
  padding: 14px 16px;
}

.post-insight strong {
  display: block;
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
}

.post-insight p {
  margin: 4px 0 0;
  color: #332f2a;
  font-size: 13px;
  line-height: 1.4;
}

.post-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.post-actions button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0 11px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.post-actions .like-button,
.concept-card footer .like-button {
  min-width: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.post-actions .like-button:hover,
.concept-card footer .like-button:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 61, 38, 0.4);
  color: var(--accent);
}

.post-actions .like-button.is-liked,
.concept-card footer .like-button.is-liked {
  border-color: rgba(239, 61, 38, 0.46);
  background: rgba(239, 61, 38, 0.12);
  color: var(--accent);
  animation: likePop 180ms ease;
}

.post-actions span {
  color: #625a51;
  font-size: 11px;
  font-weight: 850;
}

@keyframes likePop {
  0% {
    transform: scale(0.92);
  }
  70% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.feed-aside {
  position: sticky;
  top: 18px;
}

.hero-card {
  min-height: 560px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: stretch;
}

.hero-card h2,
.concept-main h2,
.profile-card h2 {
  margin: 10px 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-card h2 {
  max-width: 470px;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.88;
}

.hero-card p,
.summary {
  max-width: 560px;
  color: #332f2a;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 750;
}

.source-note,
.source-chip {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid rgba(239, 61, 38, 0.28);
  border-radius: 999px;
  background: rgba(239, 61, 38, 0.08);
  color: #7d2a20;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.source-note {
  margin: 0 0 14px;
  padding: 7px 10px;
}

.source-chip {
  margin: 2px 0 12px;
  padding: 6px 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: #514a42;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-actions,
.concept-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.primary,
.secondary,
.concept-card footer button {
  min-height: 42px;
  border-radius: 7px;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.primary {
  border: 0;
  background: var(--accent);
  color: #fff;
}

.secondary,
.concept-card footer button {
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
}

.object-study {
  min-height: 420px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(17, 16, 14, 0.05) 1px, transparent 1px),
    #eee4d5;
  background-size: 18px 18px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.object-study::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 210px;
  right: 58px;
  top: 32px;
  border-radius: 45px 45px 18px 18px;
  background: linear-gradient(140deg, #ebe4d9, #5d5b56);
  transform: rotate(-28deg);
}

.bottle {
  width: 112px;
  height: 168px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(145deg, #252420, #020202);
  color: #d9d1c5;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bottle::before {
  content: "";
  position: absolute;
  left: 39px;
  top: -30px;
  width: 34px;
  height: 32px;
  background: #050505;
  border-radius: 4px 4px 0 0;
}

.bottle span {
  font-size: 36px;
  font-weight: 950;
}

.bottle small {
  text-transform: uppercase;
}

.price-anchor,
.price-drop {
  position: absolute;
  z-index: 2;
  padding: 9px 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  font-size: 24px;
  font-weight: 950;
}

.price-anchor {
  top: 220px;
  left: 26px;
  background: var(--accent);
  transform: rotate(-8deg);
}

.price-drop {
  right: 24px;
  bottom: 62px;
  background: #fff;
}

.queue,
.results-panel,
.concept-side,
.lens-profile,
.recent {
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.queue h2,
.results-panel h2,
.lens-profile h2,
.recent h2 {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
}

.decoded-from {
  margin: -4px 0 12px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #cfc7bb;
  padding: 10px;
  font-size: 12px;
  line-height: 1.35;
}

.compact-card {
  border-top: 1px solid var(--line-dark);
  padding: 14px 0;
  color: var(--paper);
}

.compact-card:first-of-type {
  border-top: 0;
}

.compact-card span,
.concept-card > span,
.result-card span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.compact-card h3,
.concept-card h3,
.result-card h3 {
  margin: 4px 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 26px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.compact-card p,
.result-card p {
  margin: 0;
  color: #bfb6aa;
  font-size: 12px;
  line-height: 1.35;
}

.decode-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
}

.decode-stack {
  display: grid;
  gap: 14px;
}

.decoder {
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 22px;
}

.decoder label {
  display: grid;
  gap: 12px;
}

.decoder label span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 42px;
  line-height: 0.95;
  text-transform: uppercase;
}

.decoder textarea {
  width: 100%;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
  padding: 14px;
  resize: vertical;
  color: var(--ink);
  line-height: 1.45;
}

.decoder .primary {
  width: 100%;
  margin-top: 12px;
}

.camera-decode {
  border-radius: 10px;
  background: #11100f;
  color: var(--paper);
  padding: 16px;
  border: 1px solid var(--line-dark);
  display: grid;
  gap: 12px;
}

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

.camera-head h2 {
  margin: 4px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.drop-zone {
  min-height: 210px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 18px 18px;
  color: #cfc7bb;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  overflow: hidden;
}

.drop-zone input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.drop-zone img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 8px;
}

.drop-zone span {
  max-width: 300px;
  font-size: 13px;
  line-height: 1.4;
}

.file-name {
  color: #aaa299;
  font-size: 11px;
  font-weight: 850;
}

.camera-notes {
  display: grid;
  gap: 7px;
}

.camera-notes span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.camera-notes textarea {
  width: 100%;
  min-height: 105px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  padding: 12px;
  resize: vertical;
}

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

.result-card {
  min-height: 96px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 16px 1fr 36px;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
}

.result-card:first-of-type {
  border-top: 0;
}

.result-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dot);
}

.result-card button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
}

.explore-layout,
.saved-layout {
  padding: 24px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filters button {
  min-height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  padding: 0 12px;
  font-size: 11px;
  font-weight: 900;
}

.filters button.is-active {
  border-color: var(--accent);
  background: var(--accent);
}

.library-grid,
.saved-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.concept-card,
.empty-state {
  min-height: 248px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.concept-card p {
  color: #4d463f;
  font-size: 13px;
  line-height: 1.42;
}

.concept-card .tag-row {
  margin-top: auto;
}

.concept-card footer {
  margin-top: 14px;
}

.concept-card footer button {
  min-height: 32px;
  padding: 0 9px;
}

.concept-card footer .like-button {
  margin-right: auto;
  border-radius: 999px;
}

.concept-view {
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.concept-main {
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
}

.back-link {
  position: sticky;
  top: 92px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 240, 227, 0.92);
  color: #2d2924;
  padding: 0 14px 0 10px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(17, 16, 14, 0.08);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.back-link:hover {
  border-color: var(--accent);
  background: #fff8eb;
  transform: translateX(-2px);
}

.back-link span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--paper);
  font-size: 16px;
  line-height: 1;
}

.concept-main h2 {
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.86;
  overflow-wrap: anywhere;
}

.concept-art {
  min-height: 240px;
  border-radius: 10px;
  margin: 20px 0;
  background:
    radial-gradient(circle at 28% 38%, rgba(239, 61, 38, 0.2), transparent 20%),
    linear-gradient(90deg, rgba(17, 16, 14, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(17, 16, 14, 0.05) 1px, transparent 1px),
    var(--paper-2);
  background-size: auto, 18px 18px, 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.concept-art span {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 64px;
}

.concept-main section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
}

.concept-main h3,
.concept-side h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.concept-main p {
  color: #332f2a;
  line-height: 1.5;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detail-grid > div {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
  padding: 14px;
}

.detail-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #332f2a;
  line-height: 1.45;
}

.detail-grid li + li {
  margin-top: 8px;
}

.mistake-note {
  border-color: rgba(239, 61, 38, 0.28) !important;
  border-radius: 10px;
  background: rgba(239, 61, 38, 0.08);
  padding: 14px;
}

.concept-side {
  align-self: start;
  display: grid;
  gap: 12px;
}

.lens-summary {
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.lens-summary p {
  margin: 0;
  color: #cfc7bb;
  font-size: 13px;
  line-height: 1.45;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid var(--line-dark);
  padding-top: 12px;
  color: #d8d0c5;
  font-size: 13px;
}

.check-row input {
  accent-color: var(--accent);
}

.related-list {
  border-top: 1px solid var(--line-dark);
  padding-top: 12px;
  display: grid;
  gap: 8px;
}

.related-list button {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--paper);
  padding: 10px;
  text-align: left;
}

.related-list span,
.related-list b {
  display: block;
}

.related-list span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.related-list b {
  margin-top: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

.profile-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.profile-card {
  grid-column: 1 / -1;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 20px;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  align-items: center;
}

.avatar {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 56% 34%, #111 0 13px, transparent 14px),
    radial-gradient(circle at 43% 28%, #111 0 30px, transparent 31px),
    linear-gradient(135deg, #eee1cd, #77716a);
  filter: grayscale(1);
}

.profile-card h2 {
  max-width: 520px;
  font-size: 46px;
  line-height: 0.94;
}

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

.stats-grid article {
  min-height: 118px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  padding: 16px;
}

.stats-grid strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 54px;
  line-height: 0.9;
}

.stats-grid span {
  color: #bdb5aa;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 850;
}

.lens-profile {
  grid-row: span 2;
}

.lens-profile button {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line-dark);
  background: transparent;
  color: var(--paper);
  padding: 12px 0;
  text-align: left;
  display: grid;
  gap: 6px;
}

.lens-profile span {
  font-weight: 950;
  text-transform: uppercase;
}

.lens-profile i {
  width: var(--value);
  height: 9px;
  border-radius: 999px;
  background: var(--bar);
}

.lens-profile small {
  color: #aaa299;
}

.empty,
.empty-state {
  color: #cfc8bd;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--ink);
  justify-content: center;
  align-items: flex-start;
}

.empty-state h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .feed-hero-web {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 460px;
    justify-self: stretch;
    max-width: none;
  }

  .eye-reveal,
  .scan-stage {
    min-height: 480px;
  }

  .today-spotlight {
    grid-template-columns: 1fr;
  }

  .landing-how {
    grid-template-columns: 1fr;
  }

  .landing-how ol {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .landing-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .feed-layout,
  .feed-screen,
  .decode-layout,
  .concept-view,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-nav,
  .workspace {
    width: min(100% - 24px, 1180px);
  }

  .site-nav {
    position: relative;
  }

  .brand-lockup strong {
    font-size: 28px;
  }

  .nav-cta {
    width: 100%;
  }

  .app-header {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .header-actions {
    align-items: stretch;
  }

  .global-search {
    width: 100%;
  }

  .feed-layout,
  .feed-screen,
  .decode-layout,
  .explore-layout,
  .saved-layout,
  .concept-view,
  .profile-layout {
    padding: 14px 0;
  }

  .feed-screen {
    gap: 14px;
  }

  .feed-hero-web h1 {
    font-size: clamp(64px, 19vw, 96px);
    line-height: 0.84;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span + span {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .hero-visual {
    min-height: 300px;
    border-radius: 14px;
  }

  .eye-reveal,
  .scan-stage {
    min-height: 430px;
  }

  .scan-stage {
    padding: 18px;
  }

  .eye-illustration {
    width: min(100%, 360px);
    transform: translateY(-24px);
  }

  .under-map {
    left: 18px;
    right: 18px;
    bottom: 100px;
    grid-template-columns: repeat(2, 1fr);
  }

  .under-map span {
    min-height: 42px;
  }

  .scan-caption b {
    font-size: 16px;
  }

  .today-spotlight {
    margin-top: 4px;
  }

  .spotlight-frame {
    min-height: 420px;
    padding: 18px;
  }

  .spotlight-focus {
    right: 18px;
    top: 80px;
    width: 132px;
    height: 132px;
  }

  .spotlight-focus span {
    font-size: 30px;
  }

  .spotlight-copy h2 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .spotlight-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .landing-how ol {
    grid-template-columns: 1fr;
  }

  .landing-strip {
    grid-template-columns: 1fr;
  }

  .daily-card {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .daily-orbit {
    width: 82px;
    height: 82px;
  }

  .feed-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .feed-toolbar .secondary {
    width: 100%;
  }

  .feed-post footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .post-visual {
    min-height: 190px;
    grid-template-columns: 1fr;
  }

  .post-visual span {
    width: 50px;
    height: 50px;
  }

  .post-body h3 {
    font-size: clamp(36px, 13vw, 54px);
  }

  .hero-card,
  .concept-main,
  .decoder,
  .profile-card {
    padding: 16px;
  }

  .hero-card h2,
  .concept-main h2 {
    font-size: 52px;
  }

  .object-study {
    min-height: 300px;
  }

  .library-grid,
  .saved-layout,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .profile-card {
    grid-template-columns: 1fr;
  }
}
