@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap");

:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --accent: #2563eb;
  --accent-2: #06b6d4;
  --brand-dark: #0f172a;
  --glass: rgba(255, 255, 255, 0.7);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header-solid {
  background: rgba(255, 255, 255, 0.94);
}

.header-shell {
  min-height: 76px;
}

.brand {
  margin: 0;
}

.brand a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  position: relative;
  padding-left: 54px;
  letter-spacing: -0.03em;
}

.brand a::before {
  content: "R";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #22d3ee);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.18s ease;
  font-weight: 500;
  font-size: 15px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #2563eb;
  background: #eff6ff;
  transform: translateY(-1px);
}

.home-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 55%, #ecfeff 100%);
  padding: 80px 0;
}

.home-hero-grid,
.home-band-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.home-hero-copy h2,
.home-band-copy h2,
.section-heading h2,
.cta-shell h2 {
  letter-spacing: -0.04em;
}

.home-hero-copy h2 {
  margin: 0 0 24px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
}

.home-hero-copy h2 span {
  display: block;
  color: #2563eb;
}

.home-hero-copy p {
  margin: 0 0 32px;
  max-width: 640px;
  font-size: 22px;
  line-height: 1.7;
  color: var(--muted);
}

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

.btn-primary-blue {
  background: #2563eb;
  box-shadow: none;
}

.btn-primary-blue:hover {
  background: #1d4ed8;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: #374151;
  border: 2px solid #d1d5db;
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: #2563eb;
  color: #2563eb;
  text-decoration: none;
}

.btn-large {
  padding: 15px 32px;
  font-size: 18px;
}

.hero-stat-stage {
  position: relative;
  min-height: 420px;
}

.hero-stat-shadow {
  position: absolute;
  inset: 18px 24px -18px 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  opacity: 0.2;
  transform: rotate(3deg);
}

.hero-stat-card {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-stat-value {
  font-size: 86px;
  line-height: 1;
  font-weight: 800;
}

.hero-stat-label {
  margin-top: 10px;
  font-size: 26px;
}

.home-section {
  padding: 80px 0;
}

.page-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 55%, #ecfeff 100%);
  padding: 64px 0;
}

.page-hero h1 {
  margin: 0 0 20px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0;
  max-width: 780px;
  font-size: 22px;
  line-height: 1.7;
  color: var(--muted);
}

.page-section {
  padding: 72px 0;
}

.alt-section {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.page-divider .container {
  border-top: 1px solid #e5e7eb;
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading h2,
.cta-shell h2,
.home-band-copy h2 {
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
}

.section-heading p,
.cta-shell p,
.home-band-copy p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 22px;
  line-height: 1.7;
  color: var(--muted);
}

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

.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.reverse-showcase .product-showcase-visual {
  order: 1;
}

.reverse-showcase .product-showcase-copy {
  order: 2;
}

.product-showcase-copy h2 {
  margin: 0 0 24px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.product-showcase-copy p {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
}

.page-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.page-checks li {
  position: relative;
  padding-left: 34px;
  margin: 14px 0;
  color: #374151;
  font-size: 18px;
}

.page-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: 18px;
}

.blue-checks li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='%232563eb' d='M7.629 13.99L3.53 9.89a1 1 0 10-1.414 1.415l5 5a1 1 0 001.414 0l10-10A1 1 0 0017.176 4.3L7.629 13.99z'/></svg>");
}

.cyan-checks li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='%230891b2' d='M7.629 13.99L3.53 9.89a1 1 0 10-1.414 1.415l5 5a1 1 0 001.414 0l10-10A1 1 0 0017.176 4.3L7.629 13.99z'/></svg>");
}

.soft-panel {
  margin: 0 0 28px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.soft-panel-cyan {
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.soft-panel h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
}

.dot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dot-list li {
  position: relative;
  padding-left: 20px;
  margin: 10px 0;
  color: #374151;
}

.dot-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 700;
}

.product-showcase-visual {
  display: flex;
  justify-content: center;
}

.showcase-card {
  width: min(520px, 100%);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.showcase-card-blue {
  background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.showcase-card-cyan {
  background: linear-gradient(135deg, #cffafe, #dbeafe);
}

.showcase-panel {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.centered-panel {
  text-align: center;
}

.panel-line {
  height: 12px;
  border-radius: 999px;
  background: #bfdbfe;
  margin-bottom: 10px;
}

.panel-line.short {
  width: 75%;
}

.panel-line.full {
  width: 100%;
  background: #93c5fd;
}

.panel-line.medium {
  width: 84%;
}

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

.metric-box,
.metric-strip {
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  padding: 18px;
}

.metric-box strong,
.metric-strip strong {
  display: block;
  color: #2563eb;
  font-size: 26px;
  line-height: 1.2;
}

.metric-box span,
.metric-strip span {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 14px;
}

.metric-box.center {
  text-align: center;
}

.metric-strip {
  margin-top: 16px;
  text-align: center;
}

.round-badge {
  width: 128px;
  height: 128px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 800;
}

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

.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.service-card-wide {
  grid-column: 1 / -1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.contact-card,
.contact-form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.contact-card h2,
.contact-form-card h2 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-copy,
.form-note {
  color: var(--muted);
  font-size: 17px;
}

.contact-details {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-detail {
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.contact-detail span {
  display: block;
  margin-bottom: 6px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-detail p,
.contact-detail a {
  margin: 0;
  color: #111827;
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font: inherit;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.14);
}

.form-submit {
  justify-self: start;
}

.value-card {
  padding: 36px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.12);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
}

.value-card h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.2;
}

.value-card p {
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
}

.home-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
}

.home-band-copy p {
  margin: 0 0 28px;
  color: #dbeafe;
}

.band-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.band-checks li {
  position: relative;
  padding-left: 42px;
  margin: 18px 0;
  color: #dbeafe;
  font-size: 19px;
}

.band-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.home-band-panel {
  display: flex;
  justify-content: center;
}

.band-panel-card {
  width: min(440px, 100%);
  border-radius: 28px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.35);
}

.band-panel-line {
  height: 14px;
  border-radius: 999px;
  background: rgba(191, 219, 254, 0.9);
  margin-bottom: 14px;
}

.line-long {
  width: 78%;
}

.line-mid {
  width: 100%;
  background: rgba(147, 197, 253, 0.95);
}

.line-short {
  width: 84%;
}

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

.band-mini-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 20px 18px;
  color: #1d4ed8;
  text-align: center;
}

.band-mini-card strong,
.band-mini-card span {
  display: block;
}

.band-mini-card strong {
  font-size: 24px;
  line-height: 1.2;
}

.band-mini-card span {
  color: #4b5563;
  font-size: 14px;
  margin-top: 4px;
}

.home-cta {
  background: #fff;
}

.cta-shell {
  text-align: center;
  max-width: 900px;
}

.cta-shell p {
  margin-bottom: 32px;
}

.hero {
  padding: 72px 0 48px;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 12%;
  width: 360px;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(14, 165, 164, 0.06);
  opacity: 0.95;
}

.hero h1,
.hero h2 {
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.05;
}

.hero h1 {
  font-size: 40px;
}

.hero h2 {
  font-size: 38px;
}

.hero p {
  margin: 0 auto 20px;
  color: var(--muted);
  max-width: 760px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(14, 165, 164, 0.12);
  border: 0;
  letter-spacing: 0.2px;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(14, 165, 164, 0.12);
  color: var(--brand-dark);
  box-shadow: none;
}

.btn-light {
  background: #fff;
  color: #0b2b52;
}

.features,
.two-column-grid,
.info-grid,
.highlight-grid,
.compat-grid {
  display: grid;
  gap: 20px;
}

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

.features {
  margin: 48px 0;
  gap: 24px;
}

.info-grid,
.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.features article,
.info-card,
.card {
  background: var(--card);
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.features article {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.features article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.features h3,
.info-card h3,
.card h2,
.card h3,
.section-title {
  margin-top: 0;
}

.features h3::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 20px rgba(14, 165, 164, 0.08);
}

.page-intro,
.center-copy {
  color: var(--muted);
  max-width: 900px;
}

.center-copy {
  margin: 0 auto;
  text-align: center;
}

.highlight-section {
  margin: 64px 0;
  padding: 48px 0;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-radius: 12px;
}

.highlight-inner h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.highlight-inner p {
  color: var(--muted);
}

.cta-section {
  margin-top: 28px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-page {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin: 32px auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pill-blue {
  background: #eff6ff;
  color: #0b5ea8;
}

.pill-cyan {
  background: #ecfeff;
  color: #036b64;
}

.visual-panel {
  background: linear-gradient(180deg, #eef8ff, #ecfeff);
  padding: 24px;
  border-radius: 12px;
}

.visual-panel-cyan {
  background: linear-gradient(180deg, #ecfeff, #e6f5ff);
}

.visual-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.image-wrap {
  text-align: center;
  margin-bottom: 12px;
}

.image-wrap img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(3, 63, 86, 0.06);
}

.metric-bars div {
  height: 12px;
  background: #dbeeff;
  border-radius: 999px;
  margin-bottom: 8px;
}

.metric-bars div:nth-child(2) {
  width: 100%;
  background: #c7e7ff;
}

.metric-bars div:nth-child(1) {
  width: 75%;
}

.metric-bars div:nth-child(3) {
  width: 85%;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.stat-card {
  background: linear-gradient(180deg, #f7fbff, #eef8ff);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

.stat-card-block {
  margin-top: 12px;
}

.stat-value {
  font-weight: 700;
  color: #0b5ea8;
  font-size: 18px;
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.feature-list li::before,
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='%2306b6d4' d='M7.629 13.99L3.53 9.89a1 1 0 10-1.414 1.415l5 5a1 1 0 001.414 0l10-10A1 1 0 0017.176 4.3L7.629 13.99z'/></svg>");
  background-size: 18px;
  background-repeat: no-repeat;
}

.band-section {
  padding: 36px 0;
}

.hero-band {
  padding: 48px 0;
}

.hero-band-blue {
  background: linear-gradient(180deg, #f1f7ff, #eaf8ff);
}

.hero-band-cyan {
  background: linear-gradient(180deg, #f1fbfb, #e9f7ff);
}

.light-blue-band {
  background: linear-gradient(180deg, #f0f8ff, #e8fbff);
}

.light-cyan-band {
  background: linear-gradient(180deg, #f0fffe, #eef9ff);
}

.white-band {
  background: #fff;
}

.dark-cta-band {
  background: linear-gradient(180deg, #021026, #0b2b52);
  color: #dbeefd;
}

.dark-cta-band p {
  color: #dbeefd;
}

.section-title,
.center-text {
  text-align: center;
}

.contact-panel {
  margin-top: 28px;
  background: #f8fafc;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.03);
}

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

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

.industry-card {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.industry-card-top {
  height: 8px;
}

.industry-blue {
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.industry-cyan {
  background: linear-gradient(90deg, #06b6d4, #14b8a6);
}

.industry-sky {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.industry-navy {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
}

.industry-amber {
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.industry-card-body {
  padding: 24px;
}

.industry-card h3 {
  margin-bottom: 8px;
}

.industry-card p {
  color: var(--muted);
}

.site-footer {
  background: #fff;
  border-top: 1px solid rgba(229, 231, 235, 0.95);
  padding: 36px 0;
  color: var(--muted);
}

.site-footer small {
  color: var(--muted);
}

.footer-shell {
  text-align: center;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.2em;
}

li {
  margin: 8px 0;
}

.card ul li {
  position: relative;
  padding-left: 28px;
}

@media (max-width: 900px) {
  .features,
  .two-column-grid,
  .info-grid,
  .highlight-grid,
  .compat-grid,
  .industry-grid,
  .product-page,
  .value-grid,
  .home-hero-grid,
  .home-band-grid,
  .product-showcase,
  .service-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero::after {
    display: none;
  }

  .hero-stat-stage {
    min-height: 320px;
  }

  .home-hero-copy h2 {
    font-size: 42px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .section-heading h2,
  .cta-shell h2,
  .home-band-copy h2,
  .product-showcase-copy h2 {
    font-size: 34px;
  }

  .home-hero-copy p,
  .section-heading p,
  .cta-shell p,
  .home-band-copy p,
  .page-hero p,
  .product-showcase-copy p {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
  }

  .site-header .container {
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
  }

  .hero h1,
  .hero h2 {
    font-size: 28px;
  }

  .home-hero {
    padding: 56px 0;
  }

  .home-section,
  .home-band {
    padding: 56px 0;
  }

  .home-hero-copy h2 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .hero-stat-value {
    font-size: 64px;
  }

  .hero-stat-label {
    font-size: 20px;
  }

  .value-card {
    padding: 28px 24px;
  }

  .value-card h3 {
    font-size: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .showcase-card {
    padding: 24px;
  }

  .showcase-panel {
    padding: 22px;
  }

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

  .contact-card h2,
  .contact-form-card h2 {
    font-size: 30px;
  }
}
