
:root {
  --bg-deep: #050814;
  --bg-alt: #070b1d;
  --bg-soft: #0d1328;
  --bg-soft-alt: #0b111f;
  --bg-panel: #0f172a;
  --accent-gold: #facc6b;
  --accent-amber: #fbbf24;
  --accent-cyan: #22d3ee;
  --accent-teal: #14b8a6;
  --accent-red: #fb7185;
  --border-subtle: rgba(148, 163, 184, 0.28);
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --text-softest: #6b7280;
  --text-muted: #4b5563;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --transition-fast: 0.25s ease;
  --transition-med: 0.4s ease;
  --nav-height: 68px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #020617 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button, input, select, textarea {
  font: inherit;
}
:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.4rem;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0, rgba(244, 244, 245, 0.04) 0, transparent 55%),
    radial-gradient(circle at 90% 0, rgba(248, 250, 252, 0.03) 0, transparent 55%);
  opacity: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: -3;
}
.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.86), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  border: 1px solid rgba(248, 250, 252, 0.4);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 12px 22px rgba(15, 23, 42, 0.8);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-size: 0.94rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--text-soft);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav-links a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
  color: var(--text-soft);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--accent-cyan);
  border-color: rgba(45, 212, 191, 0.6);
}
.nav-links a[aria-current="page"] {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}
.nav-cta {
  display: none;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
}
/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.98));
  color: var(--text-main);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 12px 28px rgba(15, 23, 42, 0.8);
  transition: border-color var(--transition-fast), box-shadow var(--transition-med), background var(--transition-med), transform var(--transition-fast), color var(--transition-fast);
}
.button.alt {
  border-color: rgba(250, 204, 21, 0.8);
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.12), rgba(56, 189, 248, 0.08));
  color: #fefce8;
}
.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.6), 0 18px 45px rgba(15, 23, 42, 0.98);
  border-color: rgba(45, 212, 191, 0.85);
}
.button.alt:hover {
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.9), 0 18px 48px rgba(15, 23, 42, 1);
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.3), rgba(56, 189, 248, 0.28) 45%, rgba(15, 23, 42, 1) 100%);
}
/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 3.5rem;
  color: var(--text-main);
}
.hero-grid-overlay {
  position: absolute;
  inset: -30%;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -1;
}
.hero-radial {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.28), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.32), transparent 55%);
  opacity: 0.9;
  filter: blur(4px);
  z-index: -2;
}
.hero-inner {
  display: grid;
  gap: 2rem;
}
.hero-copy {
  max-width: 32rem;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.16rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at 20% 0, rgba(248, 250, 252, 0.28), rgba(15, 23, 42, 0.8));
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.85);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e5e7eb;
  margin-bottom: 1.2rem;
}
.hero-kicker span {
  color: var(--accent-cyan);
}
.hero h1 {
  font-size: 2.28rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}
.hero h1 span {
  background: linear-gradient(120deg, #facc15, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: 0.98rem;
  color: var(--text-soft);
  max-width: 30rem;
}
.hero-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  font-size: 0.76rem;
  color: var(--text-softest);
}
.hero-meta strong {
  color: var(--accent-amber);
  font-weight: 600;
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-actions .button {
  padding-inline: 1.35rem;
}
.hero-badges {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.hero-badge {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--text-softest);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.7), rgba(24, 36, 66, 0.8));
}
.hero-badge.highlight {
  border-color: rgba(45, 212, 191, 0.7);
  color: #ecfeff;
}
.hero-slider-shell {
  position: relative;
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.08), rgba(15, 23, 42, 0.98));
  padding: 0.85rem 0.85rem 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
}
.hero-slider-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.75), rgba(250, 204, 21, 0.7)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
}
.hero-slider input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.hero-slides {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0.15, 0.2, 1);
}
.hero-slide {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.18), transparent 55%),
    radial-gradient(circle at bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 1));
  mix-blend-mode: soft-light;
}
.hero-caption {
  position: absolute;
  inset: auto 1.4rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #f9fafb;
}
.hero-caption-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-cyan);
}
.hero-caption-title {
  font-size: 0.98rem;
  font-weight: 600;
}
.hero-caption-meta {
  font-size: 0.74rem;
  color: #e5e7eb;
  opacity: 0.8;
}
.hero-dots {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.98));
}
.hero-dots label {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 30% 30%, rgba(248, 250, 252, 0.4), rgba(15, 23, 42, 0.98));
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.hero-dots label:hover {
  transform: scale(1.08);
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
}
#slide-1:checked ~ .hero-slides {
  transform: translateX(0%);
}
#slide-2:checked ~ .hero-slides {
  transform: translateX(-100%);
}
#slide-3:checked ~ .hero-slides {
  transform: translateX(-200%);
}
#slide-1:checked ~ .hero-dots label[for="slide-1"],
#slide-2:checked ~ .hero-dots label[for="slide-2"],
#slide-3:checked ~ .hero-dots label[for="slide-3"] {
  background: radial-gradient(circle at 30% 30%, rgba(250, 250, 249, 0.9), rgba(56, 189, 248, 0.45));
  border-color: rgba(250, 204, 21, 0.85);
  transform: scale(1.26);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.75);
}
/* SECTION BASE */
.section {
  padding: 2.75rem 0 2.8rem;
}
.section-header {
  margin-bottom: 1.4rem;
}
.section-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  margin-bottom: 0.35rem;
}
.section-title {
  font-size: 1.32rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}
.section-subtitle {
  max-width: 32rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.grid {
  display: grid;
  gap: 1.3rem;
}
@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
    align-items: center;
    padding-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 2rem 0 4.25rem;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-slide {
    min-height: 260px;
  }
}
/* CATEGORY 1 – SURVEILLANCE */
.category-1 {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.7), rgba(2, 6, 23, 1));
  border-top: 1px solid rgba(30, 64, 175, 0.6);
  border-bottom: 1px solid rgba(15, 118, 110, 0.55);
}
.category-1 .grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 1));
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med), translate var(--transition-med);
}
.card-visual {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 150px;
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.6s ease-out, filter 0.6s ease-out;
  filter: saturate(1.05) contrast(1.02);
}
.card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 55%);
  mix-blend-mode: soft-light;
}
.card-kicker {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-teal);
}
.card-title {
  font-size: 0.98rem;
  margin: 0.1rem 0 0.25rem;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.72rem;
  color: var(--text-softest);
}
.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.card-summary {
  font-size: 0.84rem;
  color: var(--text-soft);
}
.card-tags {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.card-tag {
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  border: 1px solid rgba(45, 212, 191, 0.42);
  color: #a5f3fc;
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.9));
}
.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(55, 65, 81, 0.55);
  font-size: 0.7rem;
  color: var(--text-softest);
}
.card-footer a {
  font-weight: 500;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.69rem;
  text-decoration: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 1);
}
.card:hover .card-visual img {
  transform: scale(1.12);
  filter: saturate(1.2) contrast(1.05);
}
/* CATEGORY 2 – ALGORITHMIC IMPACT */
.category-2 {
  background: radial-gradient(circle at top right, rgba(180, 83, 9, 0.25), rgba(15, 23, 42, 1));
  border-top: 1px solid rgba(245, 158, 11, 0.5);
  border-bottom: 1px solid rgba(248, 250, 252, 0.05);
}
.category-2 .grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.category-2 .card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(24, 35, 65, 1));
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(250, 204, 21, 0.28);
}
.category-2 .card-kicker {
  color: var(--accent-amber);
}
.category-2 .card-tag {
  border-color: rgba(250, 204, 21, 0.42);
  color: #fef9c3;
}
.category-2 .card-footer a {
  color: var(--accent-amber);
}
.category-2 .card:hover {
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.16), rgba(24, 35, 65, 1));
  border-color: rgba(250, 204, 21, 0.8);
}
/* CATEGORY 3 – COMMUNITY TOOLS */
.category-3 {
  background: radial-gradient(circle at 0 0, rgba(22, 163, 74, 0.22), rgba(15, 23, 42, 1));
  border-top: 1px solid rgba(22, 163, 74, 0.6);
}
.category-3 .grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.category-3 .card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 1), rgba(6, 78, 59, 0.9));
  border-radius: 16px;
  border: 1px solid rgba(45, 212, 191, 0.45);
}
.category-3 .card-kicker {
  color: #6ee7b7;
}
.category-3 .card-tag {
  border-color: rgba(34, 197, 94, 0.6);
  color: #bbf7d0;
}
.category-3 .card-footer a {
  color: #6ee7b7;
}
.category-3 .card:hover {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.25), rgba(6, 78, 59, 1));
  border-color: rgba(34, 197, 94, 0.85);
  translate: 0 -3px;
}
/* ASIDE + MODAL */
.layout-with-aside {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 3rem;
}
aside {
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.96);
}
.aside-title {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 0.2rem;
}
.aside-subtitle {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.aside-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.65rem;
}
.aside-list a {
  display: block;
  font-size: 0.86rem;
  color: var(--text-soft);
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: border-color var(--transition-med), background var(--transition-med), color var(--transition-med), transform var(--transition-med);
}
.aside-list a span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-softest);
}
.aside-list a:hover {
  border-color: rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 1));
  color: #e5e7eb;
  transform: translateY(-1px);
}
.aside-cta {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.aside-note {
  font-size: 0.76rem;
  color: var(--text-softest);
}
/* CSS-ONLY MODAL */
#modal-toggle {
  display: none;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition-med), visibility var(--transition-med);
  z-index: 50;
}
#modal-toggle:checked ~ .modal-overlay {
  visibility: visible;
  opacity: 1;
}
.modal-panel {
  max-width: 420px;
  width: 100%;
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.05), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 1);
  padding: 1.4rem 1.4rem 1.3rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-softest);
  cursor: pointer;
}
.modal-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 0.4rem;
}
.modal-subtitle {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.modal-form label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-softest);
}
.modal-form input,
.modal-form select {
  width: 100%;
  padding: 0.55rem 0.55rem;
  border-radius: 11px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text-main);
}
.modal-form small {
  font-size: 0.72rem;
  color: var(--text-softest);
}
.modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.modal-actions .button {
  flex-shrink: 0;
}
.modal-actions span {
  font-size: 0.7rem;
  color: var(--text-softest);
}
/* FORM ELEMENTS SHARED */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(55, 65, 81, 1);
  background: rgba(15, 23, 42, 0.98);
  padding: 0.5rem 0.6rem;
  color: var(--text-main);
}
input::placeholder,
textarea::placeholder {
  color: #6b7280;
  font-size: 0.86rem;
}
/* FOOTER */
footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), #020617);
  padding: 1.6rem 0 1.7rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}
.footer-inner {
  display: grid;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-brand strong {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.footer-links, .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
}
.footer-links a:hover {
  color: var(--accent-cyan);
}
.footer-social a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--text-softest);
}
.footer-social a:hover {
  color: var(--accent-amber);
}
@media (min-width: 768px) {
  .layout-with-aside {
    grid-template-columns: minmax(0, 2.2fr) minmax(270px, 1fr);
    align-items: flex-start;
  }
  footer .footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
  .footer-meta-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .wrap {
    max-width: 1180px;
  }
}
