:root {
  --bg: #E9E9E9;
  --card: #FFFFFF;
  --ink: #46504B;
  --ink-soft: #6B746F;
  --ink-faint: #98A09B;
  --line: #D8DBD9;

  --brand: #00ED8F;
  --brand-ink: #0A3F28;

  --situasjon: #00ED8F;
  --worst: #B5551F;
  --worst-bg: #FBF0E8;
  --fokus: #2C4B63;
  --fokus-bg: #EBF0F4;
  --beslutninger: #46504B;
  --beslutninger-bg: #ECEDEB;
  --interessenter: #3F6B4F;
  --interessenter-bg: #EDF3EE;

  --radius: 12px;
  --font-body: 'Nunito', system-ui, sans-serif;
  --font-mono: 'Nunito', system-ui, sans-serif;
  --font-data: ui-monospace, 'SF Mono', 'Cascadia Code', Consolas, monospace;
  --ink-dark: #383F3B;
}

* { box-sizing: border-box; }

/* .plan-chip and .varsel-banner both set their own `display`, which has the
   same specificity as the browser's built-in [hidden] rule and loads later
   -- so without this, hidden elements using those classes render anyway. */
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(720px 420px at 50% 0%, rgba(0, 237, 143, 0.12), transparent 70%),
    var(--bg);
  background-attachment: fixed;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ---------- topbar ---------- */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 4vw, 48px);
  gap: 12px;
  flex-wrap: wrap;
  background: var(--ink);
  box-shadow: 0 4px 20px -8px rgba(20, 25, 31, 0.35);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wordmark img {
  height: 26px;
  width: auto;
  display: block;
}

.wordmark span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 10px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upload-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.upload-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.help-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-btn:hover { color: #fff; border-color: rgba(255, 255, 255, 0.6); }

/* ---------- status strip: live clock + system health ---------- */

.status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 7px clamp(16px, 4vw, 48px);
  background: var(--ink-dark);
}

.status-clock {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}

.sandbox-notice {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.01em;
  color: #ffb27a;
  background: rgba(181, 85, 31, 0.25);
  border: 1px solid rgba(181, 85, 31, 0.5);
  border-radius: 999px;
  padding: 3px 10px;
}

.status-items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.status-item[data-state="ok"] .status-dot {
  background: var(--brand);
  box-shadow: 0 0 5px rgba(0, 237, 143, 0.7);
}

.status-item[data-state="error"] .status-dot { background: var(--worst); }

/* ---------- live indicator dot (national section heading) ---------- */

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  margin-right: 7px;
  animation: livepulse 2.2s ease-in-out infinite;
}

@keyframes livepulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 237, 143, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(0, 237, 143, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}

/* ---------- cookie consent banner ---------- */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.45);
  z-index: 190;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-banner-actions button {
  font-family: var(--font-body);
  font-size: 13px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 16px;
}

#cookieDecline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
}
#cookieDecline:hover { color: #fff; }

#cookieAccept {
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 800;
}
#cookieAccept:hover { opacity: 0.9; }

/* ---------- welcome overlay (price + short about, shown first) ---------- */

.welcome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 25, 31, 0.6);
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.welcome-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.45);
}

.welcome-logo {
  height: 30px;
  margin-bottom: 20px;
}

.welcome-lead {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 14px;
}

.welcome-price {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.welcome-training {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
  margin: 0 0 22px;
}

#welcomeStartBtn {
  background: var(--brand);
  color: var(--brand-ink);
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
}

#welcomeStartBtn:hover { opacity: 0.9; }

.welcome-skip {
  background: none;
  border: none;
  color: var(--ink-faint);
  font-family: var(--font-body);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 12px;
  padding: 4px;
}

.welcome-skip:hover { color: var(--ink-soft); }

/* ---------- onboarding overlay ----------
   The highlight box uses a giant box-shadow spread to dim the whole page
   except a see-through window around itself -- a genuine cutout, not a
   separate dark layer on top of the UI. */

.onboarding-highlight {
  position: fixed;
  border: 2px solid var(--brand);
  border-radius: 14px;
  box-shadow: 0 0 0 9999px rgba(20, 25, 31, 0.6);
  pointer-events: none;
  z-index: 210;
  transition: top 0.35s ease, left 0.35s ease, width 0.35s ease, height 0.35s ease;
}

.onboarding-tooltip {
  position: fixed;
  z-index: 211;
  max-width: min(320px, calc(100vw - 32px));
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
  transition: top 0.35s ease, left 0.35s ease;
}

.onboarding-tooltip p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
}

.onboarding-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.onboarding-controls button {
  font-family: var(--font-body);
  font-size: 13px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 14px;
}

#onboardingSkip {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
}
#onboardingSkip:hover { color: #fff; }

#onboardingNext {
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 800;
}
#onboardingNext:hover { opacity: 0.9; }

.plan-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--interessenter);
  background: var(--interessenter-bg);
  border-radius: 999px;
  padding: 6px 6px 6px 12px;
}

.plan-chip button {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
}

/* ---------- layout ---------- */

main {
  flex: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  align-self: center;
  padding: 28px clamp(16px, 4vw, 48px) 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---------- boards ---------- */

.board {
  background: var(--card);
  border: 1px solid rgba(20, 25, 31, 0.06);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 1px 2px rgba(20, 25, 31, 0.04), 0 10px 28px -14px rgba(20, 25, 31, 0.16);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.board:hover {
  box-shadow: 0 2px 4px rgba(20, 25, 31, 0.05), 0 16px 36px -14px rgba(20, 25, 31, 0.2);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .board { transition: none; }
  .board:hover { transform: none; }
}

.board-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.question {
  font-size: 13px;
  color: var(--ink-faint);
}

.board-situasjon {
  border-top: 3px solid var(--situasjon);
  padding: 26px 28px;
}

.board-situasjon textarea {
  font-size: 20px;
  line-height: 1.5;
}

textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  resize: vertical;
  padding: 0;
}

textarea::placeholder {
  color: var(--ink-faint);
}

textarea:focus {
  outline: none;
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 720px) {
  .board-grid { grid-template-columns: 1fr; }
}

.board-derived { border-top: 3px solid var(--line); transition: border-color 0.2s ease; }
.board-derived[data-field="worstCase"] { border-top-color: var(--worst); }
.board-derived[data-field="worstCase"] .eyebrow { color: var(--worst); }
.board-derived[data-field="fokus"] { border-top-color: var(--fokus); }
.board-derived[data-field="fokus"] .eyebrow { color: var(--fokus); }
.board-derived[data-field="beslutninger"] { border-top-color: var(--beslutninger); }
.board-derived[data-field="beslutninger"] .eyebrow { color: var(--beslutninger); }
.board-derived[data-field="interessenter"] { border-top-color: var(--interessenter); }
.board-derived[data-field="interessenter"] .eyebrow { color: var(--interessenter); }

.board-body { position: relative; min-height: 64px; }

.empty-state {
  font-size: 14px;
  color: var(--ink-faint);
  font-style: italic;
}

.board.is-thinking .empty-state,
.board.is-thinking textarea {
  opacity: 0.45;
}

.board.is-thinking .board-body::after {
  content: "tenker …";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  animation: pulse 1.3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .board.is-thinking .board-body::after { animation: none; }
}

/* ---------- varsel banner ---------- */

.varsel-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--worst-bg);
  color: var(--worst);
  border: 1px solid var(--worst);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.varsel-icon { font-size: 15px; line-height: 1.4; }

.varsel-banner[hidden] { display: none; }

/* ---------- restore banner ---------- */

.restore-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--fokus-bg);
  color: var(--fokus);
  border: 1px solid var(--fokus);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
}

.restore-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

#restoreBtn {
  background: var(--fokus);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
#restoreBtn:hover { opacity: 0.85; }

.text-link-btn-light {
  background: none;
  border: none;
  color: var(--fokus);
  font-family: var(--font-body);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}

/* ---------- print header (screen: hidden, print: shown) ---------- */

.print-header { display: none; }

/* ---------- paywall ---------- */

.paywall-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 10px 28px -14px rgba(20, 25, 31, 0.4);
}

.paywall-banner strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.paywall-banner span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.paywall-banner button {
  background: var(--brand);
  color: var(--brand-ink);
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.paywall-banner button:hover { opacity: 0.85; }

.paywall-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.paywall-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.angrerett-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 320px;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-align: right;
}

.angrerett-check input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--brand);
}

.paywall-banner button:disabled {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}

.text-link-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}

.text-link-btn:hover { color: #fff; }

.recover-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.recover-form input {
  flex: 1;
  min-width: 200px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
}

.recover-form input:focus { outline: none; border-color: var(--brand); }

.recover-form button {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.recover-form button:hover { opacity: 0.85; }
.recover-form button:disabled { opacity: 0.5; cursor: default; }

/* ---------- toast ---------- */

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100vw - 32px);
  background: var(--interessenter);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 10px 28px -10px rgba(20, 25, 31, 0.35);
  z-index: 100;
  text-align: center;
}

/* ---------- section divider ---------- */

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  margin: 12px 0 4px;
}

/* ---------- national situational awareness ---------- */

.national-section {
  margin-top: 4px;
  padding: 18px clamp(0px, 3vw, 20px);
  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.national-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.national-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 860px) {
  .national-grid { grid-template-columns: 1fr; }
}

.national-panel {
  background: var(--card);
  border: 1px solid rgba(20, 25, 31, 0.05);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}

.national-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.refresh-btn {
  background: transparent;
  border: none;
  color: var(--ink-faint);
  font-size: 16px;
  cursor: pointer;
  padding: 6px 8px;
  margin: -6px -8px;
  line-height: 1;
  transition: transform 0.3s ease, color 0.15s ease;
}

.refresh-btn:hover { color: var(--ink); }
.refresh-btn.is-spinning { animation: spin 0.6s linear; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.national-panel-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.national-item {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.national-item:last-child { border-bottom: none; padding-bottom: 0; }

.national-item-meta {
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2px;
}

.national-item-text { color: var(--ink); }

.national-panel-source {
  font-size: 11px;
  color: var(--ink-faint);
  text-decoration: none;
}

.national-panel-source:hover { text-decoration: underline; }

.outage-panel {
  background: var(--card);
  border: 1px solid rgba(20, 25, 31, 0.05);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.outage-note {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
  margin: 0;
}

.outage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.outage-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--fokus);
  background: var(--fokus-bg);
  border-radius: 999px;
  padding: 6px 12px;
  text-decoration: none;
}

.outage-links a:hover { text-decoration: underline; }

/* ---------- footer ---------- */

.site-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer p {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
  margin: 0;
}

.site-footer strong { color: var(--ink-soft); }

.site-footer a {
  color: var(--fokus);
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

/* ---------- mobile ---------- */

@media (max-width: 520px) {
  main { padding-top: 18px; gap: 14px; }

  .board-situasjon { padding: 20px 18px; }
  .board-situasjon textarea { font-size: 17px; }

  .national-section { padding: 14px 12px; }

  .onboarding-tooltip { padding: 14px 16px; }
}

/* ---------- print: a clean incident report, not a screenshot of the app ---------- */

@media print {
  .topbar, .status-strip, .section-divider, .national-section,
  .site-footer, .restore-banner, .cookie-banner, .welcome-overlay,
  .onboarding-highlight, .onboarding-tooltip, .toast, .paywall-banner,
  .recover-form, #printBtn, #helpBtn, #uploadBtn, #planChip, .refresh-btn {
    display: none !important;
  }

  body { background: #fff; }

  main { max-width: 100%; padding: 0; }

  .print-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid #000;
  }

  .print-header img { height: 28px; }
  .print-header strong { display: block; font-size: 15px; }
  .print-header span { font-size: 11px; color: #444; }

  .board, .national-panel, .outage-panel {
    box-shadow: none !important;
    border: 1px solid #999 !important;
    break-inside: avoid;
  }

  .board-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }

  textarea {
    height: auto !important;
    overflow: visible !important;
    resize: none !important;
    color: #000 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .board.is-thinking .board-body::after {
    content: none !important;
    display: none !important;
  }
  .board.is-thinking .empty-state,
  .board.is-thinking textarea {
    opacity: 1 !important;
  }

  .eyebrow { color: #000 !important; }
}
