:root {
  --bg: #060816;
  --bg-deep: #0d1229;
  --paper: rgba(12, 20, 44, 0.58);
  --paper-strong: rgba(7, 12, 29, 0.8);
  --text: #eef3ff;
  --muted: #99a4c8;
  --line: rgba(100, 232, 255, 0.5);
  --line-strong: rgba(100, 232, 255, 0.72);
  --line-glow: 0 0 18px rgba(100, 232, 255, 0.28), 0 0 34px rgba(255, 79, 216, 0.14);
  --accent: #64e8ff;
  --accent-strong: #24b7ff;
  --magenta: #ff4fd8;
  --magenta-strong: #ca35ff;
  --forest: #72ffb8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max-width: 1200px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(36, 183, 255, 0.18), transparent 25%),
    radial-gradient(circle at 84% 14%, rgba(255, 79, 216, 0.18), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(114, 255, 184, 0.06), transparent 28%),
    linear-gradient(180deg, #03050d 0%, #050915 26%, #081024 60%, #09101e 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(100, 232, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 232, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 88%);
  opacity: 0.52;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 48%, transparent 100%);
  background-size: 100% 4px;
  mix-blend-mode: screen;
  opacity: 0.08;
}

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

.page-shell::before {
  inset: -120px -20% auto;
  height: 260px;
  background:
    radial-gradient(circle at 10% 40%, rgba(100, 232, 255, 0.22), transparent 65%),
    radial-gradient(circle at 80% 10%, rgba(255, 79, 216, 0.18), transparent 70%);
  filter: blur(20px);
  opacity: 0.7;
  animation: skyline-bloom 14s ease-in-out infinite alternate;
}

.page-shell::after {
  inset: auto -15% -120px;
  height: 320px;
  background:
    radial-gradient(circle at 40% 70%, rgba(114, 255, 184, 0.16), transparent 64%),
    radial-gradient(circle at 90% 40%, rgba(100, 232, 255, 0.14), transparent 70%);
  filter: blur(26px);
  opacity: 0.6;
  animation: skyline-bloom 18s ease-in-out infinite alternate-reverse;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb,
.ambient-moon,
.starfield,
.ambient-flow,
.floating-dots,
.dot-cluster {
  position: absolute;
}

.ambient-moon {
  top: 7%;
  right: 13%;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.95), rgba(203, 241, 255, 0.86) 26%, rgba(121, 222, 255, 0.24) 58%, rgba(121, 222, 255, 0.04) 72%, transparent 74%);
  box-shadow:
    0 0 40px rgba(121, 222, 255, 0.22),
    0 0 120px rgba(121, 222, 255, 0.16);
  animation: moon-drift 24s ease-in-out infinite alternate;
}

.ambient-moon::before,
.ambient-moon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(5, 9, 20, 0.2);
}

.ambient-moon::before {
  width: 2.2rem;
  height: 2.2rem;
  top: 28%;
  left: 26%;
}

.ambient-moon::after {
  width: 1.4rem;
  height: 1.4rem;
  bottom: 23%;
  right: 26%;
}

.starfield {
  inset: 0;
  opacity: 0.9;
}

.starfield {
  display: none;
}

.dot-cluster {
  display: none;
}

.floating-dots {
  inset: 0;
  pointer-events: none;
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(191, 248, 255, 0.95);
  box-shadow:
    0 0 10px rgba(100, 232, 255, 0.45),
    0 0 18px rgba(255, 79, 216, 0.18);
  opacity: 0;
  will-change: transform, opacity;
  overflow: visible;
}

.floating-dot__beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 2px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(100, 232, 255, 0), rgba(100, 232, 255, 0.85), rgba(100, 232, 255, 0));
  box-shadow:
    0 0 10px rgba(100, 232, 255, 0.45),
    0 0 18px rgba(255, 79, 216, 0.18);
  opacity: 0;
  pointer-events: none;
}

.starfield::before,
.starfield::after {
  content: "";
  position: absolute;
  inset: -10%;
  background-repeat: repeat;
}

.starfield--far::before,
.starfield--far::after {
  background-image:
    radial-gradient(circle, rgba(208, 244, 255, 0.85) 0 1px, transparent 1.6px);
  background-size: 180px 180px;
}

.starfield--far::before {
  animation: star-drift-far 70s linear infinite;
}

.starfield--far::after {
  opacity: 0.55;
  transform: translateY(32px);
  animation: star-drift-far 90s linear infinite reverse;
}

.starfield--mid::before,
.starfield--mid::after {
  background-image:
    radial-gradient(circle, rgba(121, 222, 255, 0.9) 0 1.1px, transparent 1.9px),
    radial-gradient(circle, rgba(255, 121, 220, 0.65) 0 0.9px, transparent 1.6px);
  background-size: 140px 140px, 220px 220px;
}

.starfield--mid::before {
  animation: star-drift-mid 44s linear infinite;
}

.starfield--mid::after {
  opacity: 0.52;
  transform: translate(20px, 18px);
  animation: star-drift-mid 58s linear infinite reverse;
}

.starfield--near::before,
.starfield--near::after {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1.4px, transparent 2px);
  background-size: 110px 110px;
}

.starfield--near::before {
  animation: star-drift-near 28s linear infinite;
}

.starfield--near::after {
  opacity: 0.46;
  transform: translate(30px, 36px);
  animation: star-drift-near 34s linear infinite reverse;
}

.ambient-orb {
  border-radius: 50%;
  filter: saturate(125%);
  opacity: 0.74;
}

.ambient-orb--cyan {
  top: -14rem;
  left: -9rem;
  width: 32rem;
  height: 32rem;
  background:
    radial-gradient(circle, rgba(100, 232, 255, 0.36) 0%, rgba(100, 232, 255, 0.12) 32%, transparent 68%);
  animation: orb-drift-cyan 18s ease-in-out infinite alternate;
}

.ambient-orb--magenta {
  right: -10rem;
  top: 10rem;
  width: 28rem;
  height: 28rem;
  background:
    radial-gradient(circle, rgba(255, 79, 216, 0.32) 0%, rgba(255, 79, 216, 0.11) 36%, transparent 70%);
  animation: orb-drift-magenta 21s ease-in-out infinite alternate;
}

.ambient-flow {
  border: 1px solid rgba(100, 232, 255, 0.14);
  border-radius: 999px;
  opacity: 0.7;
}

.ambient-flow::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: inherit;
  border: 1px solid rgba(255, 79, 216, 0.14);
}

.ambient-flow--one {
  top: 8%;
  left: 8%;
  width: 54rem;
  height: 15rem;
  transform: rotate(-10deg);
  animation: flow-sweep-one 16s ease-in-out infinite;
}

.ambient-flow--two {
  right: -6rem;
  top: 38%;
  width: 42rem;
  height: 13rem;
  transform: rotate(16deg);
  animation: flow-sweep-two 17s ease-in-out infinite;
}

.dot-cluster {
  display: block;
  width: 15rem;
  height: 15rem;
}

.dot-cluster--left {
  left: 4%;
  bottom: 10%;
}

.dot-cluster--right {
  right: 6%;
  top: 18%;
}

.dot-cluster span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bff8ff;
  box-shadow:
    0 0 16px rgba(100, 232, 255, 0.45),
    0 0 28px rgba(255, 79, 216, 0.14);
  opacity: 0;
  animation: dot-float-a 12s linear infinite;
}

.dot-cluster span:nth-child(1) {
  top: 12%;
  left: 22%;
  animation-delay: -1s;
  animation-duration: 13s;
}

.dot-cluster span:nth-child(2) {
  top: 42%;
  left: 14%;
  width: 5px;
  height: 5px;
  animation-name: dot-float-b;
  animation-delay: -3s;
  animation-duration: 14s;
}

.dot-cluster span:nth-child(3) {
  top: 26%;
  right: 10%;
  width: 6px;
  height: 6px;
  animation-name: dot-float-c;
  animation-delay: -2s;
  animation-duration: 16s;
}

.dot-cluster span:nth-child(4) {
  top: 62%;
  left: 42%;
  animation-name: dot-float-b;
  animation-delay: -4s;
  animation-duration: 13s;
}

.dot-cluster span:nth-child(5) {
  bottom: 14%;
  right: 18%;
  width: 5px;
  height: 5px;
  animation-name: dot-float-c;
  animation-delay: -6s;
  animation-duration: 15s;
}

.dot-cluster span:nth-child(6) {
  bottom: 28%;
  left: 18%;
  width: 7px;
  height: 7px;
  animation-delay: -5s;
  animation-duration: 18s;
}

.dot-cluster span:nth-child(7) {
  top: 8%;
  right: 26%;
  width: 4px;
  height: 4px;
  animation-name: dot-float-d;
  animation-delay: -7s;
  animation-duration: 17s;
}

.dot-cluster span:nth-child(8) {
  bottom: 20%;
  left: 6%;
  width: 6px;
  height: 6px;
  animation-name: dot-float-e;
  animation-delay: -9s;
  animation-duration: 19s;
}

.dot-cluster span:nth-child(9) {
  top: 48%;
  right: 4%;
  width: 5px;
  height: 5px;
  animation-name: dot-float-f;
  animation-delay: -11s;
  animation-duration: 15s;
}

.dot-cluster span:nth-child(10) {
  bottom: 6%;
  right: 30%;
  width: 4px;
  height: 4px;
  animation-name: dot-float-d;
  animation-delay: -13s;
  animation-duration: 21s;
}

.dot-cluster--right span:nth-child(1) {
  animation-name: dot-float-e;
  animation-duration: 16s;
}

.dot-cluster--right span:nth-child(2) {
  animation-name: dot-float-f;
  animation-duration: 20s;
}

.dot-cluster--right span:nth-child(3) {
  animation-name: dot-float-d;
  animation-duration: 18s;
}

.dot-cluster--right span:nth-child(4) {
  animation-name: dot-float-c;
  animation-duration: 19s;
}

.dot-cluster--right span:nth-child(5) {
  animation-name: dot-float-a;
  animation-duration: 22s;
}

.dot-cluster--right span:nth-child(6) {
  animation-name: dot-float-b;
  animation-duration: 17s;
}

.dot-cluster--right span:nth-child(7) {
  animation-name: dot-float-f;
  animation-duration: 23s;
}

.dot-cluster--right span:nth-child(8) {
  animation-name: dot-float-d;
  animation-duration: 14s;
}

.dot-cluster--right span:nth-child(9) {
  animation-name: dot-float-b;
  animation-duration: 21s;
}

.dot-cluster--right span:nth-child(10) {
  animation-name: dot-float-e;
  animation-duration: 18s;
}

.hero,
.owner-access-section,
.composer-section,
.account-section,
.feed-section,
.section-intro {
  position: relative;
}

.hero {
  padding: 18px 0 52px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(9, 16, 36, 0.58), rgba(8, 14, 34, 0.44));
  backdrop-filter: blur(10px) saturate(135%);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #04111a;
  background: linear-gradient(135deg, var(--accent) 0%, var(--magenta) 100%);
  box-shadow: 0 0 24px rgba(100, 232, 255, 0.35);
}

.brand-lockup h1,
.hero-copy h2,
.section-heading h3,
.section-intro h3,
.entry-title {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.brand-lockup h1 {
  font-size: 1.75rem;
}

.ghost-link,
.secondary-button,
.primary-button {
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.ghost-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  text-shadow: 0 0 14px rgba(100, 232, 255, 0.25);
}

.request-link {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.request-link:hover {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(100, 232, 255, 0.28);
}

.request-line {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 18, 0.8);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 15, 38, 0.78), rgba(7, 13, 31, 0.68));
  backdrop-filter: blur(12px) saturate(135%);
  box-shadow:
    0 0 0 1px rgba(255, 79, 216, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.56);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 232, 255, 0.72) rgba(6, 12, 28, 0.72);
}

.modal-panel::-webkit-scrollbar {
  width: 10px;
}

.modal-panel::-webkit-scrollbar-track {
  background: rgba(6, 12, 28, 0.72);
  border-radius: 999px;
}

.modal-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(100, 232, 255, 0.88), rgba(255, 79, 216, 0.84));
  border-radius: 999px;
  border: 2px solid rgba(6, 12, 28, 0.72);
  box-shadow: 0 0 10px rgba(100, 232, 255, 0.18);
}

.modal-panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(135, 240, 255, 0.96), rgba(255, 110, 227, 0.9));
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.modal-header h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.modal-close {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(11, 18, 42, 0.82);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.modal-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ghost-link:hover,
.secondary-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 18px;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(7, 13, 31, 0.64), rgba(12, 19, 44, 0.48)),
    radial-gradient(circle at top right, rgba(255, 79, 216, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(100, 232, 255, 0.1), transparent 34%);
  backdrop-filter: none;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(100, 232, 255, 0.08) 40%, transparent 60%),
    linear-gradient(90deg, rgba(100, 232, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(100, 232, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  pointer-events: none;
  animation: scan-sweep 10s linear infinite;
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% auto;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 232, 255, 0.16), transparent 62%);
  animation: hero-pulse 12s ease-in-out infinite;
  pointer-events: none;
}

.hero-copy,
.hero-panel,
.composer-form,
.entry-card,
.image-preview,
.section-intro,
.composer-section,
.feed-section {
  animation: rise-in 700ms ease both;
}

.hero-copy {
  animation-delay: 80ms;
}

.hero-panel {
  animation-delay: 180ms;
}

.section-intro {
  animation-delay: 220ms;
}

.owner-access-section {
  animation: rise-in 720ms ease 260ms both;
}

.composer-section {
  animation-delay: 300ms;
}

.account-section {
  animation-delay: 340ms;
}

.feed-section {
  animation-delay: 380ms;
}

.hero-copy h2 {
  max-width: none;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-top: 8px;
  text-shadow: none;
}

.hero-text,
.section-intro p,
.entry-body,
.visibility-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 52ch;
  font-size: 1.03rem;
  margin: 20px 0 0;
}

.hero-copy {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(100, 232, 255, 0.28);
  border-radius: 999px;
  background: rgba(7, 16, 36, 0.8);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: badge-glint 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-badge--soft {
  color: #dbe3ff;
  border-color: rgba(255, 79, 216, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, color 200ms ease;
}

.primary-button {
  color: #07111f;
  background: linear-gradient(135deg, var(--accent) 0%, var(--magenta) 100%);
  box-shadow:
    0 0 20px rgba(100, 232, 255, 0.24),
    0 14px 34px rgba(7, 10, 24, 0.5);
}

.primary-button::after,
.secondary-button::after {
  content: "";
  position: absolute;
  inset: -200% -40% auto -200%;
  height: 300%;
  width: 240%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 70%);
  transform: translateX(-160%);
  transition: transform 620ms ease;
  pointer-events: none;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(100, 232, 255, 0.22),
    0 16px 32px rgba(7, 10, 24, 0.45);
}

.primary-button:hover::after,
.secondary-button:hover::after {
  transform: translateX(160%);
}

.secondary-button {
  color: var(--text);
  background: rgba(13, 20, 44, 0.72);
  border-color: var(--line);
}

.hero-panel,
.owner-access-section,
.composer-section,
.account-section,
.feed-section,
.section-intro {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10, 17, 40, 0.58), rgba(7, 13, 31, 0.5));
  backdrop-filter: none;
  box-shadow: var(--shadow), var(--line-glow);
}

.hero-panel::after,
.owner-access-section::after,
.composer-section::after,
.account-section::after,
.feed-section::after,
.section-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(100, 232, 255, 0.08), transparent 40%, rgba(255, 79, 216, 0.06));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.hero-panel:hover::after,
.owner-access-section:hover::after,
.composer-section:hover::after,
.account-section:hover::after,
.feed-section:hover::after,
.section-intro:hover::after {
  opacity: 1;
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border-radius: var(--radius);
  transform: translateY(0);
  overflow: hidden;
}

.panel-label,
.eyebrow,
label span,
.entry-meta,
.entry-mood {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.73rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--accent);
  margin: 0 0 6px;
  text-shadow: 0 0 12px rgba(100, 232, 255, 0.24);
}

.quote-stack {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.quote-stack blockquote {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.45;
  color: #d9e5ff;
}

.signal-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.signal-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.signal-list strong {
  font-size: 2rem;
  font-family: "Orbitron", sans-serif;
  color: var(--forest);
  text-shadow: 0 0 18px rgba(114, 255, 184, 0.3);
}

.section-intro,
.owner-access-section,
.composer-section,
.account-section,
.feed-section {
  margin-top: 26px;
  padding: 30px;
  border-radius: var(--radius);
}

.intro-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.section-intro h3,
.section-heading h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.owner-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.owner-copy,
.owner-warning,
.owner-status {
  color: var(--muted);
  line-height: 1.7;
}

.owner-copy {
  margin: 0;
}

.owner-warning {
  margin: 16px 0 0;
}

.accent-red {
  color: #ff5b7f;
  font-weight: 800;
}

.contact-card {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 91, 127, 0.35);
  background: rgba(10, 16, 36, 0.6);
  box-shadow:
    0 0 18px rgba(255, 91, 127, 0.2),
    0 12px 30px rgba(0, 0, 0, 0.35);
}

.contact-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #07111f;
  background: linear-gradient(135deg, #ff5b7f 0%, #64e8ff 100%);
  box-shadow: 0 0 16px rgba(255, 91, 127, 0.35);
  position: relative;
  overflow: hidden;
}

.contact-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-avatar__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.contact-details {
  display: grid;
  gap: 4px;
}

.contact-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-handle {
  color: #ff5b7f;
  font-weight: 700;
  font-size: 0.95rem;
}

.owner-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 15, 38, 0.52);
  backdrop-filter: none;
  box-shadow: inset 0 0 0 1px rgba(255, 79, 216, 0.08), var(--line-glow);
}

.owner-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.owner-status {
  margin: 0;
}

.owner-status.is-success {
  color: var(--forest);
}

.owner-status.is-error {
  color: var(--accent-strong);
}

.composer-section.is-locked .composer-form,
.composer-section.is-locked .image-preview,
.account-section.is-locked .account-grid,
.account-section.is-locked .user-list-wrap {
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
  transform: scale(0.995);
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.section-heading--compact h3 {
  font-size: 1rem;
}

.draft-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.draft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.draft-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.user-list-wrap {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.user-list {
  display: grid;
  gap: 12px;
}

.user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 17, 38, 0.54);
  backdrop-filter: blur(10px) saturate(132%);
  box-shadow: var(--line-glow);
}

.user-row__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.user-row__action {
  flex-shrink: 0;
}

.user-row strong {
  font-size: 1rem;
}

.user-row span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.locked-overlay {
  position: absolute;
  inset: 30px;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  padding: 28px;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(4, 9, 24, 0.84), rgba(17, 7, 34, 0.76));
  backdrop-filter: blur(12px) saturate(132%);
  color: #fff8f3;
  box-shadow:
    0 0 28px rgba(255, 79, 216, 0.16),
    0 20px 60px rgba(0, 0, 0, 0.45);
}

.locked-overlay h4 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.locked-overlay p:last-child {
  margin: 0;
  max-width: 44ch;
  color: rgba(255, 248, 243, 0.8);
}

.composer-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-grid--soft {
  align-items: end;
}

label {
  display: grid;
  gap: 10px;
}

.field-block {
  display: grid;
  gap: 10px;
}

input,
select,
textarea,
.filter-button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  border: 1px solid rgba(100, 232, 255, 0.18);
  border-radius: 14px;
  background: rgba(4, 10, 26, 0.62);
  backdrop-filter: blur(8px) saturate(130%);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.checkbox-row span {
  line-height: 1.2;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(100, 232, 255, 0.55);
  box-shadow:
    0 0 0 4px rgba(100, 232, 255, 0.1),
    0 0 18px rgba(100, 232, 255, 0.12);
}

textarea {
  resize: vertical;
  min-height: 180px;
}

.composer-footer,
.feed-header,
.entry-footer,
.entry-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.composer-actions,
.feed-controls,
.entry-stats,
.entry-modal-actions,
.tag-filter-list,
.entry-tag-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.composer-actions,
.feed-controls,
.tag-filter-list,
.entry-tag-list {
  flex-wrap: wrap;
}

.entry-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 15, 36, 0.5);
  color: var(--text);
  font-size: 0.85rem;
  box-shadow: var(--line-glow);
}

.entry-author__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #061018;
  background: linear-gradient(135deg, var(--accent) 0%, var(--magenta) 100%);
  box-shadow: 0 0 12px rgba(100, 232, 255, 0.3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.entry-author__avatar.has-image {
  color: transparent;
  text-shadow: none;
}

.entry-author--modal {
  margin-bottom: 14px;
}

.visibility-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 6px rgba(100, 232, 255, 0.1),
    0 0 18px rgba(100, 232, 255, 0.26);
}

.image-preview {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.image-preview img,
.entry-image {
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(31, 23, 18, 0.12);
}

.image-preview img {
  max-height: 320px;
  margin-top: 12px;
}

#profile-avatar-preview-wrap {
  display: grid;
  gap: 12px;
}

#profile-avatar-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: rgba(6, 12, 28, 0.6);
  box-shadow: var(--line-glow);
}

.feed-header {
  margin-bottom: 20px;
}

.feed-controls {
  justify-content: flex-end;
}

.search-label--feed {
  min-width: min(100%, 320px);
}

.search-label--feed input {
  min-width: 240px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(9, 15, 36, 0.56);
  backdrop-filter: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
  box-shadow: var(--line-glow);
}

.filter-button.is-active {
  color: #061018;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(100, 232, 255, 0.3);
}

.upload-field {
  position: relative;
  display: grid;
  gap: 8px;
  width: 100%;
  min-height: 96px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(100, 232, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(8, 15, 36, 0.54), rgba(7, 13, 31, 0.46));
  backdrop-filter: none;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  box-shadow: var(--line-glow);
}

.upload-field:hover {
  transform: translateY(-1px);
  border-color: rgba(100, 232, 255, 0.34);
  box-shadow:
    0 0 0 4px rgba(100, 232, 255, 0.06),
    0 0 24px rgba(100, 232, 255, 0.08);
}

.upload-field input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-field__label,
.upload-field__name {
  position: relative;
  z-index: 1;
}

.upload-field__label {
  color: var(--text);
  font-weight: 700;
}

.upload-field__name {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.entries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.tag-filter-list {
  margin: 0 0 18px;
}

.entry-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 18, 42, 0.56), rgba(8, 14, 31, 0.48));
  backdrop-filter: none;
  transform-origin: center top;
  transition: transform 220ms ease, box-shadow 220ms ease;
  position: relative;
  overflow: hidden;
  align-self: start;
  cursor: pointer;
  box-shadow: var(--line-glow);
}

.entry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(100, 232, 255, 0.08), transparent 40%, rgba(255, 79, 216, 0.06));
  pointer-events: none;
}

.entry-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(100, 232, 255, 0.08), rgba(100, 232, 255, 0.62));
  box-shadow: 0 0 12px rgba(100, 232, 255, 0.25);
}

.entry-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 24px rgba(100, 232, 255, 0.12),
    0 24px 40px rgba(0, 0, 0, 0.4);
}

.entry-card:hover .entry-title {
  text-shadow:
    0 0 12px rgba(100, 232, 255, 0.24),
    0 0 28px rgba(255, 79, 216, 0.2);
}

.entry-card:hover .entry-image {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.entry-card:focus-visible {
  outline: 2px solid rgba(100, 232, 255, 0.88);
  outline-offset: 3px;
}

.entry-meta {
  color: var(--muted);
}

.entry-type {
  color: var(--accent);
}

.entry-title {
  font-size: 1.5rem;
  line-height: 1.15;
}

.entry-body {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}

.entry-stats {
  color: var(--muted);
  font-size: 0.88rem;
  justify-content: flex-start;
}

.entry-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.entry-stat strong {
  color: var(--text);
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(100, 232, 255, 0.2);
  background: rgba(9, 15, 36, 0.5);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, color 200ms ease;
  box-shadow: var(--line-glow);
}

.tag-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(100, 232, 255, 0.2);
}

button.tag-chip {
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

button.tag-chip:hover,
button.tag-chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(100, 232, 255, 0.48);
  background: rgba(100, 232, 255, 0.12);
  color: #dffcff;
}

.entry-image {
  aspect-ratio: 4 / 3;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.entry-mood {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(114, 255, 184, 0.08);
  border: 1px solid rgba(114, 255, 184, 0.16);
}

.entry-modal-panel {
  width: min(100%, 720px);
}

.entry-modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.entry-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.entry-modal-actions {
  justify-content: flex-end;
}

.danger-button {
  border-color: rgba(255, 88, 122, 0.35);
  color: #ff96ab;
}

.danger-button:hover {
  border-color: rgba(255, 88, 122, 0.6);
  box-shadow: 0 0 20px rgba(255, 88, 122, 0.18);
}

.entry-modal-body {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  white-space: pre-wrap;
}

.entry-modal-image {
  width: 100%;
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid rgba(100, 232, 255, 0.12);
}

.is-hidden {
  display: none !important;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes scan-sweep {
  0% {
    opacity: 0.2;
    transform: translateX(-40%);
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 0.2;
    transform: translateX(40%);
  }
}

@keyframes badge-glint {
  0%,
  80% {
    transform: translateX(-120%);
    opacity: 0;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes skyline-bloom {
  0% {
    opacity: 0.5;
    transform: translateY(0);
  }

  100% {
    opacity: 0.9;
    transform: translateY(12px);
  }
}

@keyframes orb-drift-cyan {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(3rem, 2rem, 0) scale(1.08);
  }
}

@keyframes moon-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-1rem, 1.2rem, 0) scale(1.04);
  }
}

@keyframes orb-drift-magenta {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-2rem, 3rem, 0) scale(1.06);
  }
}

@keyframes flow-sweep-one {
  0%,
  100% {
    transform: rotate(-10deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-6deg) translate3d(2rem, 1rem, 0);
  }
}

@keyframes flow-sweep-two {
  0%,
  100% {
    transform: rotate(16deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(12deg) translate3d(-2rem, 1rem, 0);
  }
}

@keyframes dot-float-a {
  0% {
    transform: translate3d(-0.4rem, 0.8rem, 0) scale(0.7);
    opacity: 0;
  }

  20% {
    opacity: 0.85;
  }

  60% {
    transform: translate3d(0.9rem, -1.2rem, 0) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translate3d(1.6rem, -2.2rem, 0) scale(0.85);
    opacity: 0;
  }
}

@keyframes dot-float-b {
  0% {
    transform: translate3d(0.6rem, -0.6rem, 0) scale(0.6);
    opacity: 0;
  }

  25% {
    opacity: 0.9;
  }

  65% {
    transform: translate3d(-1.1rem, 1.4rem, 0) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: translate3d(-1.8rem, 2.2rem, 0) scale(0.8);
    opacity: 0;
  }
}

@keyframes dot-float-c {
  0% {
    transform: translate3d(-0.8rem, -0.4rem, 0) scale(0.65);
    opacity: 0;
  }

  18% {
    opacity: 0.85;
  }

  58% {
    transform: translate3d(1.2rem, 1.1rem, 0) scale(1.25);
    opacity: 1;
  }

  100% {
    transform: translate3d(2rem, 2.1rem, 0) scale(0.82);
    opacity: 0;
  }
}

@keyframes dot-float-d {
  0% {
    transform: translate3d(1.2rem, 0.2rem, 0) scale(0.6);
    opacity: 0;
  }

  22% {
    opacity: 0.9;
  }

  70% {
    transform: translate3d(-1.6rem, -1.4rem, 0) scale(1.15);
    opacity: 1;
  }

  100% {
    transform: translate3d(-2.2rem, -2.1rem, 0) scale(0.8);
    opacity: 0;
  }
}

@keyframes dot-float-e {
  0% {
    transform: translate3d(-1rem, 1rem, 0) scale(0.55);
    opacity: 0;
  }

  30% {
    opacity: 0.85;
  }

  66% {
    transform: translate3d(1.4rem, -1.6rem, 0) scale(1.25);
    opacity: 1;
  }

  100% {
    transform: translate3d(2.4rem, -2.4rem, 0) scale(0.78);
    opacity: 0;
  }
}

@keyframes dot-float-f {
  0% {
    transform: translate3d(0.2rem, -1.2rem, 0) scale(0.6);
    opacity: 0;
  }

  20% {
    opacity: 0.85;
  }

  62% {
    transform: translate3d(-1.4rem, 1.8rem, 0) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translate3d(-2.2rem, 2.6rem, 0) scale(0.82);
    opacity: 0;
  }
}

@keyframes hero-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}

@keyframes star-drift-far {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-80px, 60px, 0);
  }
}

@keyframes star-drift-mid {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-120px, 90px, 0);
  }
}

@keyframes star-drift-near {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-180px, 130px, 0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .owner-access-grid,
  .intro-columns,
  .account-grid,
  .entries {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    transform: none;
  }

  .ambient-flow--one {
    width: 40rem;
  }

  .ambient-flow--two {
    width: 32rem;
  }

  .ambient-moon {
    right: 8%;
    width: 12rem;
    height: 12rem;
  }

  .starfield--near::before,
  .starfield--near::after {
    animation-duration: 46s;
  }

  .feed-header,
  .composer-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .page-shell::before,
  .page-shell::after,
  .hero-grid::before {
    display: none;
  }

  .dot-cluster span {
    animation: none;
  }

  .hero-badge::after,
  .primary-button::after,
  .secondary-button::after {
    display: none;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body::before,
  body::after,
  .hero-grid::before,
  .hero-grid::after {
    opacity: 0.04;
  }

  .ambient-field {
    display: none;
  }

  .page-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: 0;
    padding-top: 0;
    padding-bottom: 36px;
  }

  .topbar,
  .hero-grid,
  .section-intro,
  .owner-access-section,
  .account-section,
  .composer-section,
  .feed-section,
  .modal-panel {
    padding: 18px;
  }

  .topbar {
    margin-inline: 8px;
    border-radius: 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .section-intro,
  .owner-access-section,
  .composer-section,
  .account-section,
  .feed-section {
    margin-top: 16px;
  }

  .hero {
    padding: 8px 0 24px;
  }

  .hero-grid,
  .section-intro,
  .owner-access-section,
  .composer-section,
  .account-section,
  .feed-section {
    margin-inline: 8px;
  }

  .hero-copy h2 {
    max-width: none;
    font-size: clamp(1.65rem, 8.5vw, 2.45rem);
    line-height: 1.02;
    letter-spacing: 0.01em;
    text-wrap: balance;
  }

  .brand-lockup h1 {
    font-size: 1.3rem;
  }

  .section-heading h3,
  .section-intro h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
    line-height: 1.04;
  }

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

  .primary-button,
  .secondary-button,
  .filter-button {
    width: 100%;
  }

  .locked-overlay {
    inset: 20px;
  }

  .owner-access-grid,
  .intro-columns,
  .account-grid,
  .entries {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .entries {
    gap: 14px;
  }

  .hero-actions,
  .filter-group,
  .feed-controls,
  .tag-filter-list,
  .owner-actions,
  .draft-tools,
  .draft-actions,
  .composer-actions,
  .entry-modal-actions {
    width: 100%;
  }

  .draft-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar,
  .hero-grid,
  .hero-panel,
  .section-intro,
  .owner-access-section,
  .owner-form,
  .composer-section,
  .account-section,
  .feed-section,
  .entry-card,
  .modal-panel,
  .upload-field,
  input,
  select,
  textarea,
  .filter-button {
    backdrop-filter: none;
  }

  .topbar,
  .hero-grid,
  .hero-panel,
  .section-intro,
  .owner-access-section,
  .owner-form,
  .composer-section,
  .account-section,
  .feed-section,
  .entry-card,
  .modal-panel {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  }

  .hero-panel {
    padding: 18px;
  }

  .signal-list strong {
    font-size: 1.6rem;
  }

  .hero-text,
  .owner-copy,
  .owner-warning,
  .draft-note,
  .entry-body,
  .entry-modal-body {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-text {
    max-width: none;
  }

  .hero-panel {
    margin-top: 4px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .owner-form,
  .entry-card {
    padding: 18px;
  }

  .entry-modal-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .entry-stat-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .entry-title {
    font-size: 1.25rem;
    line-height: 1.08;
  }

  .search-label--feed input {
    min-width: 0;
  }

  .modal-header {
    flex-direction: column;
  }
}

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