/* Inkripaa — Coming Soon theme */
:root {
  --bg-deep: #0a0b14;
  --bg-surface: #12141f;
  --bg-card: rgba(22, 24, 38, 0.72);
  --bg-glass: rgba(30, 32, 50, 0.55);
  --border: rgba(139, 92, 246, 0.15);
  --border-strong: rgba(168, 85, 247, 0.35);
  --text: #f4f4f8;
  --text-muted: #9496ab;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7c3aed;
  --pink-500: #ec4899;
  --gradient: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-500) 50%, var(--pink-500) 100%);
  --gradient-ring: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899, #a855f7);
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.25);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --sidebar-w: 240px;
  --right-w: 300px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(124, 58, 237, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(236, 72, 153, 0.1), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.5rem;
  background: rgba(10, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.brand:hover {
  background: rgba(124, 58, 237, 0.15);
}

.brand:active {
  transform: scale(0.98);
}

.lotus-logo {
  width: 36px;
  height: 36px;
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.search-bar {
  flex: 1;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: inherit;
  text-align: left;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, color 0.2s;
}

.search-bar:hover {
  border-color: var(--border-strong);
  background: rgba(30, 32, 50, 0.75);
  color: var(--text);
}

.search-bar:active {
  transform: scale(0.99);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--bg-glass);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.icon-btn:hover {
  background: rgba(124, 58, 237, 0.25);
  color: var(--text);
}

.icon-btn:active {
  transform: scale(0.94);
}

.icon-btn--primary {
  background: var(--gradient);
  color: white;
}

.icon-btn--primary:hover {
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.45);
  filter: brightness(1.08);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4c1d95, #7c3aed);
  border: 2px solid var(--border-strong);
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

button.avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
  border-color: var(--purple-400);
}

.avatar--sm {
  width: 34px;
  height: 34px;
}

.avatar--online {
  position: relative;
}

.avatar--online::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2px solid var(--bg-surface);
  border-radius: 50%;
}

/* Layout */
.layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr var(--right-w);
  flex: 1;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

/* Sidebars */
.sidebar {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar--left {
  border-right: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

.sidebar--right {
  border-left: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border: none;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.nav-item:hover {
  background: rgba(124, 58, 237, 0.18);
  color: var(--text);
}

.nav-item:active {
  transform: scale(0.98);
}

.nav-item--active {
  background: rgba(124, 58, 237, 0.35);
  color: var(--text);
}

.nav-item--active:hover {
  background: rgba(124, 58, 237, 0.42);
}

.badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.badge--live {
  background: var(--gradient);
  color: white;
  margin-left: auto;
}

.info-card {
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.info-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.info-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.sidebar-address {
  font-style: normal;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.sidebar-est {
  font-weight: 600;
  color: var(--purple-400);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}

.sidebar-footer .tagline {
  margin-top: 0.2rem;
  font-style: italic;
  color: var(--purple-400);
  opacity: 0.8;
}

.site-footer {
  display: none;
  text-align: center;
  padding: 1.5rem 1.25rem 5.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

.site-footer address {
  font-style: normal;
  margin-bottom: 0.35rem;
}

.site-footer-est {
  font-weight: 600;
  color: var(--purple-400);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}

.site-footer-copy {
  font-size: 0.72rem;
  opacity: 0.85;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn--primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(168, 85, 247, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--purple-400);
  border: 1px solid var(--border-strong);
}

.btn--outline:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--purple-500);
}

.btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--purple-400);
  font-size: 1rem;
  font-family: inherit;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-icon:hover {
  background: rgba(168, 85, 247, 0.2);
  color: var(--text);
  border-color: var(--purple-500);
}

.btn-icon:active {
  transform: scale(0.92);
}

/* Main */
.main {
  padding: 1.25rem 1.5rem 5rem;
  min-width: 0;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

/* Tap targets & toast */
.tap-target {
  cursor: pointer;
}

.tap-target:focus-visible {
  outline: 2px solid var(--purple-500);
  outline-offset: 2px;
}

.toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  background: rgba(22, 24, 38, 0.95);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(168, 85, 247, 0.2);
  backdrop-filter: blur(14px);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  color: var(--purple-400);
  font-size: 0.75rem;
}

@media (min-width: 901px) {
  .toast {
    bottom: 2rem;
  }
}

/* Stories */
.stories {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  scrollbar-width: none;
}

.stories::-webkit-scrollbar {
  display: none;
}

.story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  border: none;
  background: transparent;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s;
}

.story:hover {
  transform: translateY(-2px);
}

.story:hover .story-ring {
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.35);
}

.story:active {
  transform: scale(0.96);
}

.story-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 3px;
  display: grid;
  place-items: center;
  background: var(--bg-glass);
  border: 1px dashed var(--border-strong);
}

.story-ring--gradient {
  background: var(--gradient-ring);
  border: none;
}

.story-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-surface);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--purple-400);
  overflow: hidden;
}

.story-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.hero-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-lotus {
  width: 108px;
  height: 108px;
  margin: 0 auto 1rem;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.45));
}

.hero-lotus svg {
  width: 100%;
  height: 100%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-400);
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--border-strong);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto 0.5rem;
}

.notify-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 11, 20, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.notify-form input::placeholder {
  color: var(--text-muted);
}

.notify-form input:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.form-message {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.form-message--success {
  color: #86efac;
}

.form-message--error {
  color: #fca5a5;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.feature-pill:hover {
  background: rgba(124, 58, 237, 0.22);
  border-color: var(--border-strong);
  color: var(--text);
}

.feature-pill:active {
  transform: scale(0.96);
}

.feature-pill svg {
  color: var(--purple-400);
}

/* Feed preview */
.feed-preview {
  opacity: 0.92;
  transition: opacity 0.25s;
}

.feed-tabs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.feed-tab,
.feed-filter {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  background: transparent;
  font-family: inherit;
  padding: 0.25rem 0;
  cursor: pointer;
  transition: color 0.2s;
}

.feed-tab:hover,
.feed-filter:hover {
  color: var(--text);
}

.feed-tab--active {
  color: var(--text);
  position: relative;
}

.feed-tab--active::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.feed-filter {
  margin-left: auto;
  font-size: 0.85rem;
}

.post-card {
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.post-card--preview:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.12);
}

.post-card--preview:active {
  transform: scale(0.995);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.post-header .avatar {
  width: 40px;
  height: 40px;
}

.post-meta {
  flex: 1;
  min-width: 0;
}

.post-meta strong {
  display: block;
  font-size: 0.9rem;
}

.post-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.post-caption {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.post-media {
  position: relative;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.post-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.post-media--live {
  min-height: 220px;
}

.post-media--live img {
  min-height: 220px;
  max-height: 320px;
}

.post-media--image img {
  max-height: 280px;
}

.post-media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10, 11, 20, 0.85) 0%, transparent 55%);
  pointer-events: none;
}

.post-media-overlay .btn {
  pointer-events: auto;
  align-self: flex-start;
}

.post-viewers {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.post-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.post-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: inherit;
  padding: 0.25rem 0.35rem;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, transform 0.15s;
}

.post-action:hover {
  color: var(--purple-400);
  background: rgba(124, 58, 237, 0.15);
}

.post-action:active {
  transform: scale(0.95);
}

.post-action svg {
  flex-shrink: 0;
}

.skeleton-text {
  display: block;
  height: 10px;
  background: var(--bg-glass);
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

.skeleton-text--sm { width: 60px; }
.skeleton-text--md { width: 100px; }
.skeleton-text--lg { width: 80%; height: 14px; }

/* Right widgets */
.widget {
  padding: 1rem;
}

.widget h3 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.live-list,
.friends-list,
.community-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.live-item,
.friend-item,
.community-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.35rem 0.4rem;
  margin: -0.35rem -0.4rem;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.live-item:hover,
.friend-item:hover,
.community-row:hover {
  background: rgba(124, 58, 237, 0.15);
}

.live-item:active,
.friend-item:active,
.community-row:active {
  transform: scale(0.98);
}

.community-meta {
  flex: 1;
  min-width: 0;
}

.community-meta strong {
  display: block;
  font-size: 0.88rem;
}

.community-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.live-thumb {
  width: 56px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-surface);
  flex-shrink: 0;
  overflow: hidden;
}

.live-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-meta {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.live-meta strong {
  display: block;
  font-size: 0.85rem;
}

.live-meta span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.friends-list li,
.community-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.friend-item {
  flex: 1;
  font-size: 0.88rem;
}

.community-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-surface);
  flex-shrink: 0;
  overflow: hidden;
}

.community-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar--right .widget {
  opacity: 0.88;
  transition: opacity 0.2s;
}

.sidebar--right .widget:hover {
  opacity: 1;
}

/* Bottom nav */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(10, 11, 20, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 100;
  align-items: center;
  justify-content: space-around;
  padding: 0 0.5rem;
}

.bottom-nav-item {
  color: var(--text-muted);
  border: none;
  background: transparent;
  padding: 0.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s, transform 0.15s;
}

.bottom-nav-item:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.15);
}

.bottom-nav-item:active {
  transform: scale(0.92);
}

.bottom-nav-item--active {
  color: var(--purple-400);
}

.bottom-nav-item--active:hover {
  color: var(--purple-400);
  background: rgba(124, 58, 237, 0.2);
}

.bottom-nav-item--create {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  margin-top: -20px;
  box-shadow: var(--shadow-glow);
}

.bottom-nav-item--create:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .layout {
    grid-template-columns: var(--sidebar-w) 1fr;
  }

  .sidebar--right {
    display: none;
  }
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar--left {
    display: none;
  }

  .search-bar {
    display: none;
  }

  .bottom-nav {
    display: flex;
  }

  .main {
    padding-bottom: 1.5rem;
  }

  .site-footer {
    display: block;
  }
}

@media (max-width: 520px) {
  .header {
    padding: 0 1rem;
  }

  .header-actions .icon-btn:not(.icon-btn--primary) {
    display: none;
  }

  .hero {
    padding: 2rem 1.25rem 1.5rem;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form input,
  .notify-form .btn {
    width: 100%;
  }
}
