:root {
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 32%),
    radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.12), transparent 28%),
    linear-gradient(180deg, #020617 0%, #07111f 38%, #020617 100%);
}

.grid-pattern {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.rack-lines {
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.16), transparent 28%),
    repeating-linear-gradient(180deg, rgba(148, 163, 184, 0.16) 0, rgba(148, 163, 184, 0.16) 1px, transparent 1px, transparent 18px);
}

.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #22d3ee;
  outline-offset: 3px;
}

.section {
  margin-inline: auto;
  max-width: 80rem;
  padding: 4rem 1.25rem;
}

@media (min-width: 640px) {
  .section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 2rem;
  }
}

.page-hero {
  margin-inline: auto;
  max-width: 80rem;
  padding: 5rem 1.25rem 4rem;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 7rem 2rem 6rem;
  }
}

.page-hero h1 {
  max-width: 56rem;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 650;
  color: white;
  overflow-wrap: break-word;
}

.page-hero p:not(.eyebrow) {
  margin-top: 1.5rem;
  max-width: 48rem;
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.85;
}

.eyebrow {
  color: #67e8f9;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 1rem;
  color: white;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  line-height: 1.15;
  font-weight: 650;
  overflow-wrap: break-word;
}

@media (max-width: 420px) {
  .page-hero h1 {
    max-width: 20rem;
    font-size: 1.75rem;
    line-height: 1.18;
  }

  .section-title {
    max-width: 20rem;
    font-size: 1.55rem;
    line-height: 1.2;
  }
}

.body-lg {
  margin-top: 1.25rem;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.9;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-keywords span {
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.12);
  padding: 0.55rem 0.8rem;
  color: #cffafe;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-visual-stack {
  display: grid;
  gap: 0.75rem;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(51, 65, 85, 0.95);
  border-radius: 0.5rem;
  background: rgba(2, 6, 23, 0.8);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.28);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.72)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 34%);
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  aspect-ratio: 16 / 9;
}

.hero-photo-grid {
  display: grid;
  gap: 0.75rem;
}

.hero-photo-grid .hero-photo-card {
  aspect-ratio: 16 / 10;
}

@media (min-width: 640px) {
  .hero-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-photo-card figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  z-index: 1;
  max-width: calc(100% - 1.7rem);
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(2, 6, 23, 0.95);
}

.hero-signal-strip {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-signal-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero-signal-strip > span,
.visual-stat-grid div,
.reason-tile {
  border: 1px solid rgba(51, 65, 85, 0.95);
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.1), transparent 38%),
    rgba(15, 23, 42, 0.58);
  padding: 1rem;
}

.hero-signal-strip strong,
.visual-stat-grid strong,
.reason-tile strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-signal-strip > span,
.visual-stat-grid div > span,
.reason-tile > span {
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.6;
}

.visual-mosaic {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .visual-mosaic {
    grid-template-columns: 1.35fr 0.8fr;
  }
}

.visual-mosaic .image-frame {
  aspect-ratio: 4 / 3;
}

.visual-mosaic-main {
  min-height: 18rem;
}

.visual-stat-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .visual-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.equipment-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .equipment-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  }
}

.equipment-image {
  min-height: 22rem;
}

.reason-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.reason-tile .icon-wrap {
  margin-bottom: 1rem;
}

.card {
  border: 1px solid rgba(30, 41, 59, 1);
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.58);
  padding: 1.5rem;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.card:hover {
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(15, 23, 42, 0.74);
}

.card h2,
.card h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 650;
}

.icon-wrap {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.2rem;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(59, 130, 246, 0.08)),
    rgba(2, 6, 23, 0.54);
  color: #67e8f9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.icon-wrap svg {
  width: 1.35rem;
  height: 1.35rem;
}

.card p {
  margin-top: 0.75rem;
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.75;
}

.card a {
  margin-top: 1rem;
  display: inline-flex;
  color: #67e8f9;
  font-size: 0.875rem;
  font-weight: 650;
}

.card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1.5;
}

.card li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: #22d3ee;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #1e293b;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.46);
  font-size: 0.875rem;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid #1e293b;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: #e2e8f0;
  background: rgba(2, 6, 23, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-table td {
  color: #94a3b8;
  line-height: 1.7;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table strong {
  color: #f8fafc;
}

.spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.spec-strip span {
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.1);
  padding: 0.55rem 0.8rem;
  color: #bae6fd;
  font-size: 0.78rem;
  font-weight: 650;
}

.stack-map {
  display: grid;
  gap: 0.8rem;
}

.stack-row {
  display: grid;
  gap: 1rem;
  align-items: center;
  border: 1px solid #1e293b;
  border-left: 3px solid rgba(34, 211, 238, 0.62);
  border-radius: 0.5rem;
  background: linear-gradient(90deg, rgba(8, 145, 178, 0.14), rgba(15, 23, 42, 0.58));
  padding: 1rem;
}

@media (min-width: 768px) {
  .stack-row {
    grid-template-columns: 12rem 1fr auto;
  }
}

.stack-row h3,
.timeline-step h3,
.feature-panel h3 {
  color: white;
  font-weight: 650;
}

.stack-row p,
.timeline-step p,
.feature-panel p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.7;
}

.feature-panel > .section-title:first-of-type {
  margin-top: 1rem;
}

.matrix-list {
  border: 1px solid #1e293b;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.48);
}

.matrix-row {
  display: grid;
  gap: 1rem;
  border-bottom: 1px solid #1e293b;
  padding: 1rem;
}

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

@media (min-width: 768px) {
  .matrix-row {
    grid-template-columns: 0.9fr 1.2fr 1.2fr;
  }
}

.matrix-row strong {
  color: #f8fafc;
}

.matrix-row span {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.timeline-step {
  position: relative;
  border-top: 2px solid rgba(34, 211, 238, 0.5);
  padding-top: 1.25rem;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: -0.42rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: #22d3ee;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.feature-panel {
  border: 1px solid #1e293b;
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 36%),
    rgba(15, 23, 42, 0.56);
  padding: 1.5rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.58);
  box-shadow: 0 24px 70px rgba(8, 145, 178, 0.12);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.58)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 38%);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  max-width: calc(100% - 2rem);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.375rem;
  background: rgba(2, 6, 23, 0.74);
  padding: 0.6rem 0.75rem;
  color: #cbd5e1;
  font-size: 0.75rem;
  line-height: 1.5;
}

.feature-panel.feature-large {
  min-height: 100%;
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.78));
}

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(103, 232, 249, 0.22);
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.24);
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.72)),
    linear-gradient(90deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.12));
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 34%);
  pointer-events: none;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card .icon-wrap,
.solution-card h3,
.solution-card p,
.solution-card a {
  max-width: 31rem;
}

.solution-card h3,
.solution-card p,
.solution-card a {
  text-shadow: 0 2px 14px rgba(2, 6, 23, 0.92);
}

.solution-card h3 {
  margin-top: 0.4rem;
  font-size: 1.35rem;
}

.solution-card p {
  max-width: 34rem;
  color: #cbd5e1;
}

.solution-card a {
  margin-top: 1.1rem;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: #67e8f9;
  font-size: 0.875rem;
  font-weight: 700;
}

.solution-card a:hover {
  color: #a5f3fc;
}

.solution-card.solution-ai-compute {
  background-image: url("../img/solution-ai-compute.webp");
  background-position: center right;
}

.solution-card.solution-ai-compute::before {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.64)),
    linear-gradient(90deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.04) 72%);
}

.solution-hardware-sourcing {
  background-image: url("../img/solution-hardware-sourcing.webp");
}

.solution-procurement-support {
  background-image: url("../img/solution-procurement-support.webp");
}

.solution-refresh-logistics {
  background-image: url("../img/solution-refresh-logistics.webp");
}

form.feature-panel {
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.66);
}

.request-form {
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.95);
  border-radius: 0.75rem;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.74)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 36%);
  padding: 1.25rem;
  box-shadow:
    0 24px 80px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 640px) {
  .request-form {
    padding: 2rem;
  }
}

.request-form-header {
  display: grid;
  gap: 1rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.78);
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .request-form-header {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.request-form .section-title {
  max-width: 42rem;
}

.request-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.14);
  padding: 0.5rem 0.75rem;
  color: #bae6fd;
  font-size: 0.75rem;
  font-weight: 700;
}

.field {
  display: block;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  margin-top: 0.55rem;
  min-height: 3rem;
  border-color: rgba(51, 65, 85, 0.95);
  background: rgba(2, 6, 23, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(103, 232, 249, 0.48);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(34, 211, 238, 0.88);
  background: rgba(2, 6, 23, 0.96);
  outline: none;
  box-shadow:
    0 0 0 3px rgba(34, 211, 238, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-actions {
  display: grid;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(51, 65, 85, 0.78);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

@media (min-width: 640px) {
  .form-actions {
    grid-template-columns: 1fr auto;
  }
}

.form-actions p {
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.7;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-card {
  border: 1px solid rgba(51, 65, 85, 0.95);
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.1), transparent 36%),
    rgba(2, 6, 23, 0.62);
  padding: 1.5rem;
}

.contact-card-accent {
  border-color: rgba(34, 211, 238, 0.22);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 38%),
    rgba(8, 145, 178, 0.08);
}

.contact-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0;
}

.contact-list div {
  display: grid;
  gap: 0.35rem;
  border-top: 1px solid rgba(51, 65, 85, 0.74);
  padding: 1rem 0;
}

.contact-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-list div:last-child {
  padding-bottom: 0;
}

.contact-list dt {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list dd {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-list a {
  color: #67e8f9;
}

.contact-list a:hover {
  color: #a5f3fc;
}

.contact-checklist {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.8rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.55;
}

.contact-checklist li {
  position: relative;
  padding-left: 1.1rem;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #22d3ee;
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.55);
}

.split-cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .split-cta {
    grid-template-columns: 1fr auto;
  }
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: 160ms ease;
}

.btn-primary {
  background: #22d3ee;
  color: #020617;
}

.btn-primary:hover {
  background: #67e8f9;
}

.btn-secondary {
  border: 1px solid #334155;
  color: #e2e8f0;
}

.btn-secondary:hover {
  border-color: rgba(34, 211, 238, 0.7);
  color: white;
}

.tech-panel {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(2, 6, 23, 0.82);
  padding: 1rem;
  box-shadow: 0 0 50px rgba(34, 211, 238, 0.12);
}

.hero-image-window {
  position: relative;
  z-index: 1;
  height: 12rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 0.45rem;
  background: #020617;
  box-shadow: 0 24px 80px rgba(34, 211, 238, 0.18);
}

.hero-image-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(2, 6, 23, 0.88)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 36%);
}

.hero-image-window figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.75rem;
  z-index: 1;
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label {
  color: #94a3b8;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.telemetry-bar {
  display: block;
  height: 3rem;
  border-radius: 0.375rem;
  border: 1px solid #334155;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.42), rgba(59, 130, 246, 0.14));
}

.metric {
  border: 1px solid #1e293b;
  border-radius: 0.375rem;
  background: rgba(15, 23, 42, 0.7);
  padding: 0.75rem;
}

.metric span {
  display: block;
  color: #64748b;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 0.25rem;
  color: white;
  font-size: 1.1rem;
}

.pill {
  min-height: 4rem;
  border: 1px solid #1e293b;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.58);
  padding: 1rem;
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 650;
}

.cta-band {
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.84)),
    url("../img/cta-infrastructure-texture.webp");
  background-position: center;
  background-size: cover;
  padding: 2rem;
}

@media (min-width: 640px) {
  .cta-band {
    padding: 2.5rem;
  }
}

label {
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 650;
}

input,
select,
textarea {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid #334155;
  border-radius: 0.375rem;
  background: rgba(2, 6, 23, 0.72);
  padding: 0.75rem 0.85rem;
  color: white;
}

textarea::placeholder {
  color: #64748b;
}
