/* Rowe Power Solutions — dark industrial / neon accent */
:root {
  --bg: #070f0b;
  --bg-elevated: #0c1810;
  --bg-card: #0f1c14;
  --bg-card-hover: #132418;
  --forest: #0a1a10;
  --border: rgba(57, 255, 20, 0.12);
  --border-strong: rgba(57, 255, 20, 0.28);
  --text: #e8f5e9;
  --text-muted: #9bb5a3;
  --text-dim: #6f8878;
  --neon: #39ff14;
  --neon-soft: rgba(57, 255, 20, 0.15);
  --neon-glow: rgba(57, 255, 20, 0.45);
  --flame: #ff4500;
  --flame-soft: rgba(255, 69, 0, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --header-h: 72px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(57, 255, 20, 0.07), transparent 55%),
    radial-gradient(800px 500px at 100% 20%, rgba(255, 69, 0, 0.04), transparent 50%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: var(--neon);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #7dff5c;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--neon);
  color: #041008;
  padding: 0.6rem 1rem;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(7, 15, 11, 0.82);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.brand:hover {
  color: var(--text);
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 0 24px var(--neon-soft);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0.15rem;
  transition: color 0.15s ease;
  position: relative;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--neon);
}

.site-nav a[aria-current="page"],
.site-nav a.is-active {
  color: var(--neon);
}

.site-nav a[aria-current="page"]:not(.nav-cta)::after,
.site-nav a.is-active:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: 0;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--neon-glow);
}

.nav-cta {
  margin-left: 0.35rem;
  padding: 0.45rem 0.9rem !important;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--neon-soft);
  color: var(--neon) !important;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.12);
}

.nav-cta:hover {
  background: rgba(57, 255, 20, 0.22);
  color: #b8ff9e !important;
}

.nav-cta[aria-current="page"],
.nav-cta.is-active {
  background: rgba(57, 255, 20, 0.28);
  border-color: var(--neon);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}

.page-hero {
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
}

.hero-glow {
  position: absolute;
  inset: 10% 20% auto;
  height: 280px;
  background: radial-gradient(ellipse at center, var(--neon-glow), transparent 70%);
  opacity: 0.18;
  filter: blur(40px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(57, 255, 20, 0.06);
  color: var(--neon);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 700;
  max-width: 18ch;
}

.page-hero h1 {
  max-width: 28ch;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
}

.card h2,
.why-card h2 {
  font-size: 1.12rem;
  font-weight: 600;
}

h3 {
  font-size: 1.12rem;
  font-weight: 600;
}

.hero-sub,
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 54ch;
  margin: 0 0 1.5rem;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-actions {
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  font-family: inherit;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--neon);
  color: #041008;
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.35);
}

.btn-primary:hover {
  color: #041008;
  background: #6dff4a;
  box-shadow: 0 0 36px rgba(57, 255, 20, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  color: var(--neon);
  border-color: var(--neon);
  background: var(--neon-soft);
}

.logo-frame {
  position: relative;
  margin-inline: auto;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 22px;
  padding: 4px;
  background: linear-gradient(145deg, rgba(57, 255, 20, 0.45), rgba(10, 26, 16, 0.2) 40%, rgba(255, 69, 0, 0.25));
  box-shadow: var(--shadow), 0 0 60px rgba(57, 255, 20, 0.12);
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 18px;
  border: 1px solid rgba(57, 255, 20, 0.15);
  pointer-events: none;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Proof strip under hero */
.proof-strip {
  border-block: 1px solid var(--border-strong);
  background:
    linear-gradient(90deg, rgba(57, 255, 20, 0.06), transparent 40%, rgba(57, 255, 20, 0.04)),
    var(--bg-elevated);
  box-shadow: inset 0 0 40px rgba(57, 255, 20, 0.04);
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 0.85rem 0;
}

.proof-item {
  min-width: 0;
}

.proof-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neon);
}

.proof-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.proof-text strong {
  color: var(--neon);
  font-weight: 600;
}

.proof-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
  min-height: 2.5rem;
}

.highlights-also {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.highlights-also strong {
  color: var(--text-muted);
  font-weight: 600;
}

/* Sections */
.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(12, 24, 16, 0.65), rgba(7, 15, 11, 0.2));
  border-block: 1px solid var(--border);
}

.section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.45rem;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(57, 255, 20, 0.06);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--neon);
  background: var(--neon-soft);
  border: 1px solid var(--border);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-icon.accent-flame {
  color: var(--flame);
  background: var(--flame-soft);
  border-color: rgba(255, 69, 0, 0.35);
}

/* Home CTA cards */
.home-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.home-cta-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.45rem;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-cta-card:hover,
.home-cta-card:focus-visible {
  color: inherit;
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(57, 255, 20, 0.06);
  outline: none;
}

.home-cta-card h3 {
  color: var(--text);
}

.home-cta-card p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.home-cta-link {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--neon);
  letter-spacing: 0.02em;
}

.home-bottom-cta {
  margin-top: 2rem;
}

/* IoT */
.iot-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.iot-experience {
  margin-top: 0.25rem;
}

.experience-panel {
  min-height: 18rem;
  transition: opacity 0.18s ease;
}

.experience-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.experience-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
}

.experience-lead {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.experience-panel.is-focus .experience-title {
  color: var(--neon);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.feature-list strong {
  display: block;
  color: var(--neon);
  font-family: var(--mono);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.feature-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.protocol-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(400px 200px at 80% 0%, rgba(57, 255, 20, 0.1), transparent 60%),
    var(--bg-elevated);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.05);
}

.protocol-label {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.protocol-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.chip {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  font: inherit;
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.25);
  cursor: default;
}

.chip-tip {
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

/* Highlight ONLY while hovered, focused, or actively selected — never by default */
.chip-tip:hover,
.chip-tip:focus-visible,
.chip-tip.is-active {
  color: #041008;
  background: var(--neon);
  border-color: var(--neon);
  font-weight: 600;
  outline: none;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.35);
}

.protocol-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* Why */
.credibility-callout {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), transparent 55%), var(--bg-card);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.credibility-callout strong {
  color: var(--neon);
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.why-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlights {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), transparent 45%), var(--bg-elevated);
  padding: 1.35rem 1.35rem 1.2rem;
}

.highlights-title {
  margin-bottom: 0.85rem;
  font-size: 1rem;
  color: var(--text);
}

.highlights-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.55rem;
}

.highlights-list li::marker {
  color: var(--neon);
}

/* About */
.about-layout .about-head {
  margin-bottom: 1.25rem;
}

.about-bio p {
  color: var(--text-muted);
  margin-top: 0;
}

.about-linkedin-wrap {
  margin: 1.5rem 0 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-direct {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(300px 160px at 0% 0%, rgba(255, 69, 0, 0.08), transparent 55%),
    var(--bg-card);
}

.contact-label {
  margin: 0 0 0.35rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-email {
  display: inline-block;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.65rem;
  word-break: break-all;
}

.contact-hint {
  margin: 0 0 1.15rem;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #08140d;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.12);
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.privacy-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}


/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  background: #050a07;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-name {
  margin: 0;
  font-weight: 700;
}

.footer-tag {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--mono);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--neon);
}

.footer-nav a[aria-current="page"],
.footer-nav a.is-active {
  color: var(--neon);
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .iot-layout,
  .contact-grid,
  .home-cta-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip-inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .proof-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  }

  .hero-visual {
    order: -1;
  }

  .logo-frame {
    width: min(100%, 320px);
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(7, 15, 11, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a[aria-current="page"]:not(.nav-cta)::after,
  .site-nav a.is-active:not(.nav-cta)::after {
    display: none;
  }

  .site-nav a[aria-current="page"]:not(.nav-cta),
  .site-nav a.is-active:not(.nav-cta) {
    box-shadow: inset 3px 0 0 var(--neon);
  }

  .nav-cta {
    margin: 0.65rem 0 0 !important;
    text-align: center;
    border-bottom: none !important;
  }

  .brand-tag {
    display: none;
  }



}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .card,
  .btn,
  .chip-tip,
  .home-cta-card {
    transition: none;
  }
}

.muted-note {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  opacity: 0.65;
  font-weight: 400;
}
