/* Bermuda Mining redesign based on Lazyweb references:
   service status dashboards, industrial monitoring, and institutional crypto UI. */

:root {
  --paper: #101310;
  --paper-2: #181c18;
  --panel: #f4ecdc;
  --panel-2: #e8ddc9;
  --ink: #131712;
  --ink-2: #384239;
  --muted: #667368;
  --line: rgba(190, 161, 105, 0.32);
  --line-strong: rgba(190, 161, 105, 0.58);
  --coal: #090b0a;
  --coal-2: #141813;
  --blue: #2f6f73;
  --green: #0f7b5f;
  --yellow: #bea169;
  --red: #8f2f2a;
  --rust: #9b7042;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.26) inset;
  --radius: 6px;
  --container: min(1220px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--panel);
  background:
    linear-gradient(90deg, rgba(190, 161, 105, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(190, 161, 105, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #151914 0%, #101310 48%, #0b0d0c 100%),
    var(--paper);
  background-size: 36px 36px;
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  color: #b8c4b8;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--panel);
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 17ch;
  font-size: 2.7rem;
  font-weight: 760;
}

h2 {
  font-size: 2rem;
  font-weight: 740;
}

h3 {
  font-size: 1rem;
  font-weight: 720;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(190, 161, 105, 0.18), transparent 18%, transparent 82%, rgba(47, 111, 115, 0.14)),
    linear-gradient(180deg, rgba(244, 236, 220, 0.08), transparent 34%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin-bottom: 26px;
}

.section-heading p {
  font-size: 0.98rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(190, 161, 105, 0.16);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--coal);
  background: var(--yellow);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: var(--blue);
}

.button-ghost {
  color: var(--panel);
  background: transparent;
  border-color: var(--line-strong);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: #fff;
  border-color: var(--yellow);
  background: rgba(190, 161, 105, 0.1);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h2,
.card h3,
.card strong {
  color: var(--ink);
}

.card p,
.card li,
.card span {
  color: var(--muted);
}

.card .button-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
}

.card .button-ghost:hover,
.card .button-ghost:focus-visible {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-pill-live {
  color: var(--green);
  border-color: rgba(19, 132, 91, 0.35);
  background: rgba(19, 132, 91, 0.08);
}

.status-pill-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(190, 161, 105, 0.24);
  background: rgba(12, 14, 12, 0.9);
  backdrop-filter: blur(16px);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--coal);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px 11px;
  border: 3px solid var(--yellow);
  transform: skewX(-12deg);
}

.brand-mark::after {
  inset: 13px 8px 8px 16px;
  border-color: var(--panel);
  border-left: 0;
  border-top: 0;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--panel);
  font-size: 1rem;
  font-weight: 850;
}

.brand-text small {
  color: #aeb7ab;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #d0c7b6;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: rgba(47, 111, 115, 0.16);
}

.header-actions {
  display: flex;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 236, 220, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 4px;
  background: var(--panel);
  border-radius: 2px;
}

.nav-toggle span:nth-child(3) {
  margin-bottom: 0;
}

.mobile-menu {
  display: none;
  width: var(--container);
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--coal-2);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 6px;
}

.mobile-menu a {
  padding: 10px;
  border-radius: var(--radius);
  color: #d0c7b6;
  font-weight: 720;
}

.hero {
  padding: 54px 0 44px;
  background:
    linear-gradient(180deg, rgba(190, 161, 105, 0.12), rgba(16, 19, 16, 0)),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 560px;
  padding: 28px 0;
}

.hero-lead {
  max-width: 48ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.hero-points li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  color: #c9d0c3;
  font-size: 0.92rem;
}

.hero-points li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border: 3px solid var(--green);
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ticker span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(190, 161, 105, 0.34);
  border-radius: 999px;
  color: #eadcc1;
  background: rgba(244, 236, 220, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-panel {
  display: grid;
}

.status-card {
  display: grid;
  min-height: 560px;
  overflow: hidden;
}

.status-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.status-main > div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  background: var(--panel-2);
}

.status-main > div:last-child {
  border-right: 0;
}

.metric-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric-value {
  color: var(--coal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 1.55rem;
  font-weight: 800;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.status-grid article {
  padding: 16px;
  border-right: 1px solid var(--line);
}

.status-grid article:last-child {
  border-right: 0;
}

.status-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 1.2rem;
}

.status-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.terminal {
  display: grid;
  align-content: start;
  min-height: 280px;
  background: var(--coal);
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.terminal-head span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}

.terminal-head span:first-child {
  background: var(--red);
}

.terminal-head span:nth-child(3) {
  background: var(--green);
}

.terminal-head p {
  margin-left: 5px;
  color: #91a6b5;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
}

.terminal-log {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.terminal-log li {
  color: #dce9ef;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
}

.terminal-log li::before {
  content: ">";
  margin-right: 8px;
  color: var(--yellow);
}

.pulse {
  background: var(--coal);
  color: var(--panel);
}

.pulse h2,
.pulse h3,
.pulse strong {
  color: var(--panel);
}

.pulse .eyebrow {
  color: var(--yellow);
}

.pulse .eyebrow-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(190, 161, 105, 0.18);
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pulse-card {
  min-height: 150px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.13);
  background: var(--coal-2);
  box-shadow: none;
}

.pulse-card p {
  color: #98a8b3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pulse-card strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--panel);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 1.85rem;
}

.pulse-card span {
  color: #98a8b3;
  font-size: 0.85rem;
}

.ops-board {
  margin-top: 10px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.13);
  background: var(--coal-2);
  box-shadow: none;
}

.ops-board .card-head {
  border-bottom-color: rgba(255, 255, 255, 0.13);
  color: #98a8b3;
}

.ops-board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ops-board-grid > div {
  padding: 22px;
}

.ops-board-grid > div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.ops-board h3,
.service-breakdown h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.ops-feed {
  display: grid;
  gap: 12px;
}

.ops-feed li {
  display: grid;
  gap: 3px;
}

.ops-feed span,
.bar-row span {
  color: #98a8b3;
  font-size: 0.78rem;
}

.ops-feed strong {
  color: #fff;
  font-size: 0.92rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 48px;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.bar {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--green));
}

.bar-row > strong {
  color: #fff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
  text-align: right;
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
  gap: 16px;
  align-items: start;
}

.calculator-section,
.supported,
.pricing,
.lead {
  background: var(--paper);
}

.calculator-grid .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.calculator-card,
.calc-results {
  overflow: hidden;
}

.calculator-card {
  padding: 20px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 22px;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.segmented button,
.equipment-filter button,
.step-button {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.segmented button {
  min-height: 38px;
}

.segmented button.is-active,
.equipment-filter button.is-active,
.step-button.is-active {
  color: #fff;
  background: var(--coal);
}

.calc-form {
  display: grid;
  gap: 16px;
}

.calc-form label {
  display: grid;
  gap: 9px;
}

.calc-form label > span,
.lead-form label > span {
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  accent-color: var(--rust);
}

.inline-field {
  display: grid;
  grid-template-columns: 110px auto;
  gap: 8px;
  align-items: center;
}

.inline-field.single-line {
  grid-template-columns: minmax(0, 1fr) auto;
}

.inline-field input,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--panel);
  outline: none;
}

.inline-field input:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 92, 211, 0.12);
}

.inline-field span {
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
}

.result-stack,
.calc-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.result-stack article,
.calc-summary > div {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.result-stack article:nth-child(2n),
.calc-summary > div:nth-child(2n) {
  border-right: 0;
}

.result-stack p,
.calc-summary p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-stack strong,
.calc-summary strong {
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 1.2rem;
}

.result-stack .result-emphasis {
  background: #efe1c5;
}

.result-stack .result-emphasis strong {
  color: var(--rust);
}

.calc-note {
  padding: 16px 18px;
  color: var(--ink-2);
  background: var(--panel-2);
  font-size: 0.88rem;
}

.capabilities {
  background: var(--paper-2);
}

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

.feature-card,
.equipment-card,
.pricing-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 18px;
  box-shadow: none;
}

.feature-card {
  border-top: 5px solid var(--rust);
}

.feature-card:nth-child(2),
.feature-card:nth-child(5) {
  border-top-color: var(--blue);
}

.feature-card:nth-child(3),
.feature-card:nth-child(6) {
  border-top-color: var(--green);
}

.feature-card p,
.equipment-card p,
.pricing-card p {
  font-size: 0.92rem;
}

.equipment-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.equipment-filter button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.equipment-card.is-hidden {
  display: none;
}

.tag {
  width: fit-content;
}

.equipment-card .tag {
  color: var(--ink-2);
  background: var(--panel-2);
  border-color: var(--line);
}

.onboarding {
  background: var(--paper-2);
}

.onboarding-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.onboarding-grid .section-heading {
  margin-bottom: 0;
}

.step-list {
  display: grid;
  gap: 8px;
}

.step-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid var(--line);
  text-align: left;
  background: var(--panel);
}

.step-button span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.step-button.is-active span {
  color: #fff;
}

.step-preview {
  padding: 18px;
  box-shadow: none;
}

.step-progress {
  height: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--paper-2);
}

.step-progress-bar {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--rust), var(--yellow));
  transition: width 220ms ease;
}

.step-label {
  margin-bottom: 8px;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.step-preview h3 {
  margin-bottom: 10px;
}

.step-points {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.step-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.step-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: var(--green);
}

.pricing-card {
  min-height: 410px;
}

.pricing-card.featured {
  color: #fff;
  background: var(--coal);
  border-color: var(--coal);
}

.pricing-card.featured h3,
.pricing-card.featured strong,
.pricing-card.featured li,
.pricing-card.featured p {
  color: #fff;
}

.pricing-card.featured .button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.pricing-head {
  display: grid;
  gap: 6px;
}

.pricing-card > strong {
  color: var(--rust);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 2rem;
}

.pricing-card > span {
  color: var(--muted);
  font-size: 0.8rem;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 14px;
}

.pricing-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  color: var(--ink-2);
  font-size: 0.92rem;
}

.pricing-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  background: var(--green);
}

.pricing-card .button {
  margin-top: auto;
}

.faq {
  background: var(--paper-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.faq-question {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--rust);
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
}

.faq-answer p {
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 22px;
  align-items: start;
}

.lead-copy {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.contact-panels {
  display: grid;
  gap: 10px;
}

.contact-card,
.lead-form-wrap {
  padding: 18px;
  box-shadow: none;
}

.contact-card {
  display: grid;
  gap: 5px;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--rust);
}

.contact-card span {
  color: var(--ink-2);
  font-size: 0.88rem;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form .button {
  width: 100%;
}

.form-result {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  background: var(--panel-2);
  font-size: 0.88rem;
}

.site-footer {
  padding: 42px 0;
  color: #cbd4d8;
  background: var(--coal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 26px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: #98a8b3;
  font-size: 0.88rem;
}

.site-footer a {
  display: block;
  margin-top: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.reveal.is-visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header .container {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .hero-grid,
  .calculator-grid,
  .onboarding-grid,
  .faq-grid,
  .lead-grid,
  .ops-board-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .status-card {
    min-height: auto;
  }

  .feature-grid,
  .equipment-grid,
  .pricing-grid,
  .pulse-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ops-board-grid > div:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 52px 0;
  }

  .container,
  .mobile-menu {
    width: min(100% - 24px, 1220px);
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy {
    padding: 0;
  }

  .status-main,
  .status-grid,
  .pulse-grid,
  .feature-grid,
  .equipment-grid,
  .pricing-grid,
  .result-stack,
  .calc-summary,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .status-main > div,
  .status-grid article,
  .result-stack article,
  .calc-summary > div {
    border-right: 0;
  }

  .segmented {
    grid-template-columns: 1fr;
  }

  .inline-field,
  .inline-field.single-line,
  .bar-row {
    grid-template-columns: 1fr;
  }

  .bar-row > strong {
    text-align: left;
  }

  .hero-actions .button,
  .mobile-menu .button {
    width: 100%;
  }
}
