/* =========================================================
   MERIDIAN — Static Brutalist Swiss Landing
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-2: #f3f4f6;
  --fg: #0a0a0a;
  --fg-2: #4b5563;
  --inv: #ffffff;
  --accent: #ff3333;
  --accent-h: #cc0000;
  --border: #0a0a0a;
  --border-soft: rgba(10, 10, 10, 0.1);
  --border-dark: rgba(255, 255, 255, 0.15);
  --font-display: "Cabinet Grotesk", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ============ Utilities ============ */
.accent { color: var(--accent); }
.hide-md-down { display: none !important; }
.show-md-down { display: inline-flex; }
.text-right { text-align: right; }
.dim { color: rgba(255, 255, 255, 0.7); }
.muted { color: rgba(255, 255, 255, 0.5) !important; }

@media (min-width: 768px) {
  .hide-md-down { display: revert !important; }
  .show-md-down { display: none !important; }
}

/* ============ Grid ============ */
.grid { display: grid; }
.grid-12 { grid-template-columns: repeat(12, 1fr); }

.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

@media (min-width: 768px) {
  .md-col-3 { grid-column: span 3; }
  .md-col-4 { grid-column: span 4; }
  .md-col-5 { grid-column: span 5; }
  .md-col-7 { grid-column: span 7; }
  .md-col-8 { grid-column: span 8; }
  .md-col-9 { grid-column: span 9; }
  .md-col-6 { grid-column: span 6; }
}

.cell-r { border-right: 1px solid var(--border); }
.cell-l { border-left: 1px solid var(--border); }
.cell-r-dark { border-right: 1px solid var(--border-dark); }

/* ============ Typography ============ */
.section-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  padding: 18px 20px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .logo { padding: 18px 32px; }
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.nav-desktop {
  align-items: center;
  gap: 40px;
  padding: 0 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex !important; }
}

.nav-desktop a { transition: color 0.15s; }
.nav-desktop a:hover { color: var(--accent); }

.header-cta {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.btn-cta-header {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  background: var(--fg);
  color: var(--inv);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.15s;
}

.btn-cta-header:hover { background: var(--accent); }

.mobile-toggle {
  padding: 18px 20px;
  border-left: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu a {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.mobile-menu a.mobile-cta {
  background: var(--fg);
  color: var(--inv);
  border-bottom: 0;
}

/* ============ Hero ============ */
.hero {
  border-bottom: 1px solid var(--border);
}

.statusbar {
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.status-cell {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .status-cell { padding: 12px 32px; }
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  display: inline-block;
  border-radius: 999px;
}

.hero-left {
  padding: 64px 20px;
}
@media (min-width: 768px) {
  .hero-left { padding: 96px 48px; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: clamp(44px, 9vw, 112px);
  line-height: 0.88;
}

.hero-sub {
  margin-top: 40px;
  max-width: 560px;
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.7;
}

.hero-ctas {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  min-width: 260px;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.btn-primary {
  background: var(--fg);
  color: var(--inv);
}
.btn-primary:hover { background: var(--accent); }
.btn-primary .arr { transition: transform 0.2s; }
.btn-primary:hover .arr { transform: rotate(45deg); }

.btn-ghost {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
}
.btn-ghost:hover { background: var(--fg); color: var(--inv); }
.btn-ghost .arr { transition: transform 0.2s; }
.btn-ghost:hover .arr { transform: translateX(4px); }

.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.hero-stat {
  padding: 24px 0;
}
.hero-stat + .hero-stat {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(10, 10, 10, 0.6);
  margin-top: 8px;
}

.hero-right {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  min-height: 400px;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.7;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hero-right-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
@media (min-width: 768px) {
  .hero-right-content { padding: 40px; }
}
.hr-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.hr-top .dot {
  background: var(--accent);
  border-radius: 0;
  margin-right: 6px;
}
.hr-panel {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 24px;
  max-width: 420px;
  font-family: var(--font-mono);
}
.hr-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.hr-line {
  font-size: 13px;
  line-height: 1.7;
}
.hr-ready {
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.caret-blink {
  animation: blink 1s steps(1) infinite;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ============ Logo Marquee ============ */
.logo-marquee {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}
.marquee-label {
  padding: 24px 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .marquee-label { padding: 32px; }
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  z-index: 2;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  padding: 24px 0;
  animation: marquee 28s linear infinite;
}
@media (min-width: 768px) {
  .marquee-track { padding: 32px 0; }
}
.marquee-item {
  padding: 0 40px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .marquee-item { padding: 0 56px; font-size: 30px; }
}
.marquee-item .star { color: var(--accent); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ Section heads ============ */
.section-head {
  border-bottom: 1px solid var(--border);
}
.head-left {
  padding: 48px 20px;
}
@media (min-width: 768px) {
  .head-left { padding: 48px; }
}
.head-right {
  padding: 48px 20px;
  display: flex;
  align-items: flex-end;
}
.head-right p {
  max-width: 640px;
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .head-right { padding: 48px; }
}

.section-head-dark {
  border-bottom: 1px solid var(--border-dark);
}

/* ============ Features ============ */
.features {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature {
  position: relative;
  padding: 40px;
  background: #fff;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.feature:hover { background: #0a0a0a; color: #fff; }
.feature:hover .feature-icon { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (min-width: 768px) {
  .feature:nth-child(3n) { border-right: 0; }
  .feature:not(:nth-child(3n)) { border-right: 1px solid var(--border); }
  .feature:nth-last-child(-n + 3) { border-bottom: 0; }
}
.feature-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.feature-code {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.6;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.feature-desc {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ============ Stats ============ */
.stats {
  background: #0a0a0a;
  color: #fff;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-cell {
  padding: 40px;
  border-bottom: 1px solid var(--border-dark);
  border-right: 1px solid var(--border-dark);
}
.stat-cell:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) {
  .stat-cell { border-bottom: 0; }
  .stat-cell:nth-child(2n) { border-right: 1px solid var(--border-dark); }
  .stat-cell:nth-child(4n) { border-right: 0; }
}
.stat-cell .big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-cell .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

/* ============ Testimonials ============ */
.testimonials {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(160px, auto);
  }
}
.testimonial {
  padding: 40px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.testimonial:last-child { border-right: 0; }
.testimonial.dark { background: #0a0a0a; color: #fff; }
.testimonial.accent { background: var(--accent); color: #fff; }
.testimonial.span-2x2 {
  grid-column: span 1;
  grid-row: span 1;
}
@media (min-width: 768px) {
  .testimonial.span-2x2 { grid-column: span 2; grid-row: span 2; }
}
.testimonial-idx {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.7;
  margin-bottom: 24px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.testimonial-author {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
}
.testimonial-author .role { opacity: 0.6; }

/* ============ Pricing ============ */
.pricing {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.tier {
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
}
.tier:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .tier { border-bottom: 0; border-right: 1px solid var(--border); }
  .tier:last-child { border-right: 0; }
}
.tier.dark { background: #0a0a0a; color: #fff; }
.tier-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.tier-code {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.7;
}
.tier-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  background: var(--accent);
  color: #fff;
  padding: 4px 8px;
}
.tier-name {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: clamp(28px, 3.2vw, 36px);
  margin-top: 24px;
}
.tier-desc {
  font-family: var(--font-mono);
  font-size: 14px;
  margin-top: 12px;
  opacity: 0.85;
}
.tier-price {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tier-price .amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.tier-price .period {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.tier-features {
  margin-top: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-mono);
  font-size: 14px;
}
.tier-features .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-cta {
  margin-top: 40px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.15s, color 0.15s;
}
.tier:not(.dark) .tier-cta {
  background: var(--fg);
  color: var(--inv);
}
.tier:not(.dark) .tier-cta:hover { background: var(--accent); }
.tier.dark .tier-cta {
  background: #fff;
  color: var(--fg);
}
.tier.dark .tier-cta:hover { background: var(--accent); color: #fff; }
.tier-cta:disabled { opacity: 0.6; cursor: wait; }

/* ============ FAQ ============ */
.faq {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.faq-left {
  padding: 48px 20px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .faq-left { padding: 48px; border-bottom: 0; }
}
.faq-contact {
  font-family: var(--font-mono);
  font-size: 14px;
  margin-top: 24px;
  max-width: 360px;
  color: rgba(10, 10, 10, 0.7);
}
.faq-contact a {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.accordion {
  display: flex;
  flex-direction: column;
}
.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-item:last-child { border-bottom: 0; }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  transition: background 0.15s, color 0.15s;
}
@media (min-width: 768px) {
  .acc-trigger { padding: 24px 48px; }
}
.acc-trigger:hover,
.acc-item.open .acc-trigger {
  background: var(--fg);
  color: var(--inv);
}
.acc-trigger .acc-num {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.6;
  padding-top: 8px;
  flex-shrink: 0;
  min-width: 32px;
}
.acc-trigger .acc-chevron {
  font-family: var(--font-mono);
  font-size: 18px;
  opacity: 0.8;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-trigger .acc-q { flex: 1; }
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}
.acc-item.open .acc-content { max-height: 600px; }
.acc-content .acc-inner {
  padding: 8px 20px 32px;
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.8);
  max-width: 640px;
}
@media (min-width: 768px) {
  .acc-content .acc-inner { padding: 8px 48px 32px 112px; }
}

/* ============ CTA / Newsletter ============ */
.cta {
  position: relative;
  background: var(--accent);
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-status {
  border-bottom: 1px solid var(--border);
}
.cta-status .status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-left {
  padding: 80px 20px;
}
@media (min-width: 768px) {
  .cta-left { padding: 112px 48px; border-right: 1px solid var(--border); }
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.88;
  font-size: clamp(48px, 9vw, 110px);
}
.cta-right {
  background: #0a0a0a;
  color: #fff;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
@media (min-width: 768px) {
  .cta-right { padding: 64px 48px; }
}
.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.cta-sub {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}
.newsletter-row {
  display: flex;
  border: 1px solid #fff;
}
.newsletter-row input {
  flex: 1;
  background: transparent;
  color: #fff;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  border: 0;
  outline: none;
}
.newsletter-row input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-row button {
  background: #fff;
  color: #0a0a0a;
  padding: 0 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, color 0.15s;
}
.newsletter-row button:hover { background: var(--accent); color: #fff; }
.newsletter-row button:disabled { opacity: 0.6; cursor: wait; }
.fineprint {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}

/* ============ Footer ============ */
.footer {
  background: #0a0a0a;
  color: #fff;
}
.footer-meta {
  border-bottom: 1px solid var(--border-dark);
}
.footer-meta .cell {
  padding: 24px 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .footer-meta .cell { padding: 24px 48px; }
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--border-dark);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-col {
  padding: 32px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.footer-col:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) {
  .footer-col { padding: 48px; border-bottom: 0; }
  .footer-col:nth-child(2n) { border-right: 1px solid var(--border-dark); }
  .footer-col.last,
  .footer-col:nth-child(4n) { border-right: 0; }
}
.footer-h {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--accent); }

.footer-bigtype {
  padding: 48px 20px;
  border-bottom: 1px solid var(--border-dark);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.85;
  font-size: 20vw;
  color: #fff;
  user-select: none;
}
@media (min-width: 768px) {
  .footer-bigtype { padding: 80px 48px; font-size: 18vw; }
}

.footer-bottom .cell {
  padding: 24px 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .socials {
  display: flex;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer-bottom .socials { justify-content: flex-end; }
  .footer-bottom .cell { padding: 24px 48px; }
}
.footer-bottom .socials a:hover { color: var(--accent); }

/* ============ Toasts ============ */
.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: calc(100vw - 40px);
}
.toast {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  min-width: 280px;
  box-shadow: 6px 6px 0 0 #0a0a0a;
  animation: toast-in 0.2s ease-out;
}
.toast.success { border-color: #0a0a0a; }
.toast.error { background: #0a0a0a; color: #fff; border-color: var(--accent); box-shadow: 6px 6px 0 0 var(--accent); }
.toast .t-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  margin-bottom: 4px;
}
.toast .t-desc {
  font-size: 12px;
  opacity: 0.8;
}
@keyframes toast-in {
  from { transform: translateX(20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
