:root {
  color-scheme: dark;
  --bg: #05070d;
  --bg-soft: #0b1220;
  --panel: rgba(15, 23, 38, 0.82);
  --panel-strong: rgba(19, 29, 48, 0.96);
  --text: #f5f8ff;
  --muted: #9eacc3;
  --soft: #dbe7f8;
  --line: rgba(156, 196, 255, 0.16);
  --line-strong: rgba(156, 196, 255, 0.32);
  --blue: #3478ff;
  --cyan: #61e8ff;
  --green: #37e79a;
  --gold: #f4c95d;
  --pink: #d862ff;
  --danger: #ff6b7a;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f8ff;
  --bg-soft: #e9f0fb;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --text: #09111f;
  --muted: #53627a;
  --soft: #24334a;
  --line: rgba(18, 40, 75, 0.14);
  --line-strong: rgba(18, 40, 75, 0.24);
  --blue: #195dff;
  --cyan: #008db7;
  --green: #027f58;
  --gold: #9b6400;
  --pink: #9340d4;
  --danger: #ba1d39;
  --shadow: 0 24px 80px rgba(42, 65, 105, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(97, 232, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 232, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(52, 120, 255, 0.16), transparent 42%),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  min-width: 320px;
}

[data-theme="light"] body,
body[data-theme="light"] {
  background:
    linear-gradient(rgba(0, 141, 183, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 141, 183, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(52, 120, 255, 0.12), transparent 42%),
    var(--bg);
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
}

.announce {
  background: rgba(5, 7, 13, 0.84);
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
  text-align: center;
  padding: 10px 16px;
}

[data-theme="light"] .announce {
  background: rgba(255, 255, 255, 0.86);
}

.announce b {
  color: var(--cyan);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 180px;
  height: auto;
}

.mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(97, 232, 255, 0.22), rgba(216, 98, 255, 0.16)), var(--panel-strong);
  border: 1px solid rgba(97, 232, 255, 0.42);
  box-shadow: inset 0 0 24px rgba(97, 232, 255, 0.12);
  color: var(--text);
  font-weight: 900;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.theme-toggle,
.menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.theme-toggle svg,
.menu-toggle svg {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(97, 232, 255, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), #4cc8ee);
  color: #03111a;
  font-weight: 900;
  box-shadow: 0 16px 50px rgba(52, 120, 255, 0.24);
  cursor: pointer;
  text-align: center;
}

.btn.secondary {
  background: var(--panel);
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: none;
}

.btn.full {
  width: 100%;
}

.mobile-panel {
  display: none;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  padding: 10px;
}

.mobile-panel a {
  display: block;
  padding: 12px;
  color: var(--soft);
  border-radius: var(--radius);
}

.mobile-panel a:hover {
  background: color-mix(in srgb, var(--blue) 12%, transparent);
}

.mobile-panel.open {
  display: block;
}

.mobile-sticky-cta {
  display: none;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

section {
  position: relative;
  padding: 96px 0;
}

.hero {
  padding-top: 84px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.eyebrow:before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.headline-accent,
.text-accent {
  color: transparent;
  background: linear-gradient(90deg, var(--text), var(--cyan) 45%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy,
.lead {
  color: var(--soft);
  font-size: 19px;
  line-height: 1.62;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.micro-proof,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-card,
.micro-proof > div,
.card,
.metric,
.widget,
.price-card,
.industry-card,
.post-card,
.faq-item,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, color-mix(in srgb, var(--panel-strong) 82%, transparent), color-mix(in srgb, var(--bg-soft) 72%, transparent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.micro-proof > div {
  padding: 16px;
}

.micro-proof strong,
.stat strong {
  display: block;
  color: var(--text);
  font-size: 24px;
  margin-bottom: 4px;
}

.micro-proof span,
.stat span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.dashboard {
  min-height: 780px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, color-mix(in srgb, var(--panel-strong) 92%, transparent), color-mix(in srgb, var(--bg) 96%, transparent));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 610px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 62%, transparent), transparent 42%),
    linear-gradient(180deg, transparent 62%, color-mix(in srgb, var(--bg) 78%, transparent));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
}

.floating-panel {
  position: absolute;
  z-index: 2;
  width: 230px;
  border: 1px solid color-mix(in srgb, var(--cyan) 30%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px);
  padding: 16px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
}

.floating-panel.primary {
  left: 22px;
  bottom: 24px;
}

.floating-panel.secondary {
  right: 22px;
  top: 24px;
}

.floating-panel small {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-panel strong {
  display: block;
  color: var(--text);
  font-size: 34px;
  margin: 6px 0 4px;
}

.floating-panel span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.dashboard:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(97, 232, 255, 0.06) 50%, transparent 51%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 140px 140px, 100% 44px;
  pointer-events: none;
}

[data-theme="light"] .dashboard:before {
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(0, 141, 183, 0.04) 50%, transparent 51%),
    linear-gradient(rgba(9, 17, 31, 0.035) 1px, transparent 1px);
  background-size: 140px 140px, 100% 44px;
}

.dash-top {
  position: relative;
  height: 54px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.traffic {
  display: flex;
  gap: 8px;
}

.traffic i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.traffic i:nth-child(1) { background: #ff5f56; }
.traffic i:nth-child(2) { background: #ffbd2e; }
.traffic i:nth-child(3) { background: #27c93f; }

.live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.dash-body {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 726px;
}

.dash-side {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
}

.side-item {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
  padding: 0 10px;
  margin-bottom: 7px;
}

.side-item.active {
  color: var(--text);
  background: linear-gradient(90deg, color-mix(in srgb, var(--blue) 84%, transparent), color-mix(in srgb, var(--cyan) 14%, transparent));
  border: 1px solid var(--line-strong);
}

.icon-box {
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.dash-main {
  padding: 22px 22px 154px;
}

.dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dash-head h3 {
  margin-bottom: 5px;
  font-size: 24px;
}

.dash-head span {
  color: var(--muted);
  font-size: 12px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.metric {
  min-height: 122px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.metric:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 13px;
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background: var(--green);
}

.metric:nth-child(2):after { background: var(--pink); }
.metric:nth-child(3):after { background: var(--gold); }
.metric:nth-child(5):after { background: var(--cyan); }

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 9px;
}

.metric strong {
  display: block;
  font-size: 28px;
}

.metric small {
  display: block;
  color: var(--green);
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.25;
}

.dash-widgets {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 12px;
}

.widget {
  min-height: 260px;
  padding: 16px;
}

.widget-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.widget-title h4 {
  margin: 0;
  font-size: 15px;
}

.widget-title span {
  color: var(--muted);
  font-size: 11px;
}

.feed {
  display: grid;
  gap: 11px;
}

.feed-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  color: var(--soft);
  font-size: 12px;
}

.avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cyan) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--cyan) 40%, transparent);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.feed-row small {
  color: var(--muted);
  font-size: 10px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
}

.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--green);
  border-radius: 4px;
}

.check-list li:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 4px;
  height: 8px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.phone-brief {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 220px;
  border: 1px solid color-mix(in srgb, var(--cyan) 38%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  padding: 14px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.phone-brief small {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone-brief strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.phone-brief p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 36px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-head p {
  max-width: 430px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card,
.industry-card,
.post-card,
.price-card,
.faq-item {
  padding: 22px;
}

.card .num,
.kicker {
  display: inline-flex;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.card h3,
.industry-card h3,
.post-card h3,
.price-card h3 {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.card p,
.industry-card p,
.post-card p,
.price-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.55;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-soft) 58%, transparent);
}

.scorecard-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--cyan) 26%, transparent);
  border-radius: var(--radius);
  background: linear-gradient(120deg, color-mix(in srgb, var(--blue) 14%, transparent), transparent 35%),
    linear-gradient(300deg, color-mix(in srgb, var(--green) 12%, transparent), transparent 32%),
    var(--panel-strong);
}

.score-ui {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 18px;
  background: color-mix(in srgb, var(--bg) 54%, transparent);
}

.score-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row b {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.score-row span {
  color: var(--muted);
  font-size: 12px;
}

.score-row strong {
  color: var(--gold);
  font-size: 20px;
}

.agent-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: start;
}

.agent-copy {
  position: sticky;
  top: 108px;
}

.department-grid {
  display: grid;
  gap: 14px;
}

.department {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px;
}

.department h3 {
  color: var(--cyan);
  margin: 0;
  font-size: 16px;
}

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

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 42%, transparent);
  color: var(--soft);
  padding: 7px 10px;
  font-size: 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline-step {
  border-top: 1px solid var(--line-strong);
  padding-top: 22px;
}

.timeline-step span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-step h3 {
  margin: 18px 0 12px;
  font-size: 22px;
}

.timeline-step p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.price-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: color-mix(in srgb, var(--cyan) 48%, transparent);
  box-shadow: 0 22px 80px rgba(52, 120, 255, 0.2);
}

.price {
  margin: 18px 0;
}

.price strong {
  font-size: 38px;
}

.price span {
  color: var(--muted);
}

.price-card .btn {
  margin-top: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.form-card {
  padding: 24px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--soft);
  font-weight: 800;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg) 66%, transparent);
  color: var(--text);
  padding: 10px 12px;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--danger);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.article {
  max-width: 820px;
}

.article h1 {
  font-size: clamp(42px, 5vw, 72px);
}

.article-body {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 32px;
}

.article-body h2 {
  font-size: 32px;
  margin: 42px 0 14px;
}

.article-body h3 {
  font-size: 23px;
  margin: 30px 0 12px;
}

.article-body p,
.article-body li {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.75;
}

.article-body a {
  color: var(--cyan);
  text-decoration: underline;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--cyan);
  background: var(--panel);
  color: var(--soft);
}

.sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.cta-box {
  border: 1px solid color-mix(in srgb, var(--cyan) 32%, transparent);
  border-radius: var(--radius);
  background: linear-gradient(90deg, color-mix(in srgb, var(--blue) 18%, transparent), transparent 44%), var(--panel-strong);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(140px, 0.3fr));
  gap: 26px;
}

.footer h3,
.footer h4 {
  color: var(--text);
  margin: 0 0 12px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.subtle {
  color: var(--muted);
}

.center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 1050px) {
  .hero-grid,
  .scorecard-panel,
  .agent-grid,
  .form-grid,
  .blog-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .agent-copy,
  .sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .announce {
    font-size: 12px;
  }

  .nav,
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 148px;
  }

  section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero .micro-proof {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(97, 232, 255, 0.52);
    background: linear-gradient(135deg, var(--blue), #4cc8ee);
    color: #03111a;
    font-weight: 900;
    box-shadow: 0 18px 60px rgba(52, 120, 255, 0.36);
  }

  body {
    padding-bottom: 78px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-visual img {
    min-height: 410px;
    object-position: 58% center;
  }

  .floating-panel {
    width: calc(50% - 22px);
    padding: 12px;
  }

  .floating-panel.primary {
    left: 12px;
    bottom: 12px;
  }

  .floating-panel.secondary {
    right: 12px;
    top: 12px;
  }

  .floating-panel strong {
    font-size: 24px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-copy,
  .lead {
    font-size: 17px;
  }

  .micro-proof,
  .stat-grid,
  .dash-widgets,
  .grid-2,
  .grid-3,
  .grid-4,
  .timeline,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric {
    min-height: 106px;
  }

  .feed-row:nth-child(n+4) {
    display: none;
  }

  .dashboard {
    min-height: auto;
  }

  .dash-body {
    display: block;
    min-height: auto;
  }

  .dash-side {
    display: none;
  }

  .dash-main {
    padding: 18px;
  }

  .dash-head {
    display: block;
  }

  .phone-brief {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0 18px 18px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

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

  .score-row {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 26px;
  }
}
