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

:root {
  --gold: #C9A96E;
  --gold-light: #E2C99A;
  --gold-dim: #8A6D42;
  --ivory: #F4F0E8;
  --ivory-dim: #D8D2C4;
  --bg: #0A0906;
  --bg-1: #111009;
  --bg-2: #181510;
  --bg-3: #1E1B14;
  --border: rgba(201,169,110,0.15);
  --border-mid: rgba(201,169,110,0.25);
  --text-muted: #7A7060;
  --text-mid: #A89880;
  --signal-green: #4A8C5C;
  --signal-green-dim: rgba(74,140,92,0.12);
  --signal-amber: #B8872A;
  --signal-red: #8C4A4A;
  --signal-red-dim: rgba(140,74,74,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Syne', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; letter-spacing: 0.02em; }
h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; }
h3 { font-size: 1.4rem; font-weight: 400; }
p { color: var(--ivory-dim); line-height: 1.75; }
a { color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,9,6,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  color: var(--bg) !important;
  background: var(--gold);
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold-light) !important; }

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute; top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  position: relative;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-headline { position: relative; max-width: 900px; margin-bottom: 1.5rem; }
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  position: relative;
  max-width: 590px;
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 3rem;
  line-height: 1.8;
}
.hero-ctas { position: relative; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-primary { color: var(--bg); background: var(--gold); border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-secondary {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--border-mid);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-disclaimer {
  position: relative;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 590px;
  line-height: 1.6;
  font-family: 'DM Mono', ui-monospace, monospace;
}

.ticker {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 3rem;
  animation: tick 30s linear infinite;
  white-space: nowrap;
}
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: flex; gap: 0.5rem; align-items: center;
}
.ticker-item .up { color: var(--signal-green); }
.ticker-item .down { color: var(--signal-red); }
.ticker-item .label { color: var(--text-muted); }

.section-label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold-dim); }

#problem { background: var(--bg-1); }
.problem-grid, .solution-grid, .usecase-grid, .plans-grid, .method-grid, .faq-grid, .contact-inner, .deliverable-wrap { display: grid; }
.problem-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.problem-item { padding: 2rem 0; border-top: 1px solid var(--border); }
.problem-num {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.problem-item h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.signal-card { background: var(--bg); padding: 2rem 1.75rem; }
.signal-type {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.signal-type.green { color: var(--signal-green); }
.signal-type.amber { color: var(--signal-amber); }
.signal-type.red { color: var(--signal-red); }
.signal-ref {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}
.signal-brand { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; margin-bottom: 1.25rem; }
.signal-data { display: flex; flex-direction: column; gap: 0.5rem; }
.signal-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.signal-row .key {
  color: var(--text-muted);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}
.signal-row .val {
  color: var(--ivory-dim);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
}
.signal-row .val.pos { color: var(--signal-green); }
.signal-row .val.neg { color: var(--signal-red); }
.signal-badge {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.signal-badge.green { background: var(--signal-green-dim); color: var(--signal-green); }
.signal-badge.amber { background: rgba(184,135,42,0.12); color: var(--signal-amber); }
.signal-badge.red { background: var(--signal-red-dim); color: var(--signal-red); }

#solution, #plans, #contact { background: var(--bg-2); }
.solution-grid {
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.solution-block { padding: 2.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.solution-block:nth-child(2n) { border-right: none; }
.solution-block:nth-child(n+3) { border-bottom: none; }
.solution-icon {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.solution-block h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.solution-list, .usecase-list, .plan-features, .footer-links { list-style: none; }
.solution-list { display: flex; flex-direction: column; gap: 0.5rem; }
.solution-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.03em;
}
.solution-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dim); }

.usecase-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.usecase-card { padding: 2rem; border: 1px solid var(--border); border-radius: 2px; }
.usecase-for {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.usecase-card h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.usecase-list { display: flex; flex-direction: column; gap: 0.6rem; }
.usecase-list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.usecase-list li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-size: 1rem; }

#deliverables, #methodology { background: var(--bg-1); }
.deliverable-wrap { grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3.5rem; align-items: start; }
.deliverable-files { display: flex; flex-direction: column; border: 1px solid var(--border); }
.file-row { display: flex; align-items: center; gap: 1.25rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.file-row:last-child { border-bottom: none; }
.file-icon {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  background: rgba(201,169,110,0.08);
  padding: 0.3rem 0.5rem;
  border-radius: 2px;
  white-space: nowrap;
}
.file-name { font-family: 'DM Mono', ui-monospace, monospace; font-size: 0.75rem; color: var(--ivory-dim); letter-spacing: 0.05em; }
.file-sub { font-size: 0.7rem; color: var(--text-muted); }
.deliverable-desc p { margin-bottom: 1.5rem; font-size: 0.92rem; }

.brands-row {
  display: flex; align-items: center; gap: 2.5rem;
  flex-wrap: wrap;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 3rem;
}
.brands-label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}

.plans-grid {
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.plan-card { padding: 2.5rem 2rem; border-right: 1px solid var(--border); position: relative; }
.plan-card:last-child { border-right: none; }
.plan-card.featured { background: var(--bg-3); border-top: 2px solid var(--gold); }
.plan-badge {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.2rem 0.8rem;
  white-space: nowrap;
}
.plan-name {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.plan-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-price span { font-size: 1.1rem; color: var(--text-mid); }
.plan-period {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.plan-for {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.plan-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.plan-features li {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-dim); font-size: 0.7rem; }
.plan-limit {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'DM Mono', ui-monospace, monospace;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.plan-cta {
  display: block; width: 100%; text-align: center;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem;
  border-radius: 2px;
  text-decoration: none;
}
.plan-cta.outline { color: var(--gold); border: 1px solid var(--border-mid); background: transparent; }
.plan-cta.solid { color: var(--bg); background: var(--gold); border: 1px solid var(--gold); }
.plans-note {
  margin-top: 2rem;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.method-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.method-block { background: var(--bg); padding: 2rem; display: flex; gap: 1.5rem; align-items: start; }
.method-num {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-top: 0.2rem;
  white-space: nowrap;
}
.method-block h3 { font-size: 1rem; margin-bottom: 0.5rem; font-family: 'Syne', sans-serif; font-weight: 500; }
.method-block p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

.disclaimer-box {
  background: rgba(201,169,110,0.04);
  border: 1px solid var(--border-mid);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}
.disclaimer-box p {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  line-height: 1.9;
}

#risk { background: var(--bg-1); padding: 4rem 0; }
.risk-inner { border: 1px solid var(--border); padding: 2.5rem; }
.risk-inner h3 {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.25rem;
}
.risk-inner p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.faq-grid { grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); margin-top: 3.5rem; }
.faq-item { padding: 2rem 0; border-bottom: 1px solid var(--border); padding-right: 3rem; }
.faq-item:nth-child(even) { padding-right: 0; padding-left: 3rem; border-left: 1px solid var(--border); }
.faq-q {
  font-size: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.faq-a {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.03em;
}

.contact-inner { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-card { border: 1px solid var(--border); background: rgba(201,169,110,0.04); padding: 2rem; }
.contact-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
}
.contact-actions { display:flex; flex-direction:column; gap:1rem; margin-top:1.5rem; }
.contact-line {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; }
.footer-legal {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.9;
}
.footer-legal a { color: var(--text-muted); text-decoration: underline; }
.footer-stripe {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-align: right;
}

.policy-main { min-height: 100vh; padding: 9rem 2rem 6rem; }
.policy-container { max-width: 820px; margin: 0 auto; }
.policy-container h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); margin-bottom: 0.5rem; }
.policy-date {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
.policy-notice {
  background: rgba(201,169,110,0.04);
  border: 1px solid var(--border-mid);
  padding: 1.2rem 1.5rem;
  margin-bottom: 3rem;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.policy-section { margin-bottom: 2.5rem; }
.policy-section h2 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--ivory); }
.policy-section p, .policy-section li {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.03em;
  line-height: 1.9;
  margin-bottom: 0.75rem;
}
.policy-section ul { padding-left: 1.5rem; }
.back-link { margin-top: 3rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.8s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

@media (max-width: 900px) {
  .problem-grid, .solution-grid, .usecase-grid, .plans-grid, .method-grid, .contact-inner, .deliverable-wrap, .footer-top, .faq-grid { grid-template-columns: 1fr; }
  .plan-card { border-right: none; border-bottom: 1px solid var(--border); }
  .plan-card:last-child { border-bottom: none; }
  .solution-block { border-right: none !important; }
  .solution-block:nth-child(n+3) { border-bottom: 1px solid var(--border); }
  .solution-block:last-child { border-bottom: none; }
  .faq-item:nth-child(even) { padding-left: 0; border-left: none; }
  .signal-grid { grid-template-columns: 1fr; }
  .site-nav .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 1.25rem; }
  #hero { padding: 0 1.25rem 4rem; }
  .section { padding: 5rem 0; }
  .ticker-inner { animation-duration: 45s; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-stripe { text-align: left; margin-top: 1rem; }
  .brands-row { gap: 1.2rem; }
  .policy-main { padding-left: 1.25rem; padding-right: 1.25rem; }
}
@media (max-width: 900px) {
  .signal-grid { display: grid; grid-template-columns: 1fr; }
}
