:root {
  --ink: #071516;
  --ink-2: #102629;
  --muted: #5d6b70;
  --line: #dce7e8;
  --surface: #ffffff;
  --surface-2: #f4f8f7;
  --surface-3: #eaf3f1;
  --teal: #05b8a6;
  --teal-dark: #087769;
  --lime: #9fe642;
  --amber: #f6b944;
  --blue: #3385d6;
  --shadow: 0 20px 60px rgba(7, 21, 22, 0.13);
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-140%);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.anchor-alias {
  position: relative;
  top: -86px;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(7, 21, 22, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.site-header-solid {
  background: rgba(7, 21, 22, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(5, 184, 166, 0.22);
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(159, 230, 66, 0.72);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta i,
.button i {
  font-size: 1.15rem;
  line-height: 1;
}

.solution-icon i,
.feature-icon i {
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 96px 0 46px;
  color: #fff;
  background: var(--ink);
}

.hero-bg,
.hero-bg::after,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.72;
}

.hero-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 21, 22, 0.98) 0%, rgba(7, 21, 22, 0.82) 35%, rgba(7, 21, 22, 0.2) 72%, rgba(7, 21, 22, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 21, 22, 0.38) 0%, rgba(7, 21, 22, 0.12) 48%, rgba(7, 21, 22, 0.9) 100%);
}

.hero-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
  animation: gridDrift 18s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - var(--container)) / 2));
  padding-top: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  font-size: clamp(2.9rem, 4.8vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.7rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.6vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(159, 230, 66, 0.23);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-top: 34px;
}

.hero-metrics div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 1rem;
}

.hero-metrics span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.hero-status {
  position: absolute;
  z-index: 1;
  right: max(16px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  width: min(340px, calc(100% - 32px));
  color: #fff;
}

.pulse-card,
.mini-feed {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 21, 22, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.pulse-card {
  min-height: 98px;
  padding: 18px;
}

.pulse-card p {
  margin: 0 0 4px 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
}

.pulse-card strong {
  display: block;
  margin-left: 22px;
  font-size: 1.26rem;
}

.status-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(159, 230, 66, 0.7);
  animation: pulse 2s infinite;
}

.mini-feed {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 12px;
}

.mini-feed span {
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.section {
  padding: 104px 0;
}

.section-heading {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  width: auto;
  margin: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow),
.ecosystem-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.solution-grid,
.process-grid,
.feature-layout,
.ecosystem-section,
.operation-shell,
.contact-section,
.footer-grid,
.footer-bottom {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.94fr 0.94fr;
  gap: 16px;
  align-items: stretch;
}

.solution-card,
.feature-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.solution-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  flex-direction: column;
  padding: 24px;
  box-shadow: 0 18px 60px rgba(7, 21, 22, 0.08);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 88% 10%, rgba(159, 230, 66, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(5, 184, 166, 0.08), rgba(255, 255, 255, 0) 56%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 184, 166, 0.34);
  box-shadow: 0 28px 80px rgba(7, 21, 22, 0.13);
}

.solution-card:hover::before,
.solution-card-featured::before {
  opacity: 1;
}

.solution-card-featured {
  background:
    linear-gradient(135deg, rgba(7, 21, 22, 0.97), rgba(9, 41, 43, 0.96)),
    var(--ink);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.solution-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.solution-badge,
.solution-label {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.solution-badge {
  justify-content: center;
  width: 42px;
  color: var(--ink);
  background: var(--lime);
}

.solution-label {
  padding: 0 10px;
  color: var(--teal-dark);
  background: rgba(5, 184, 166, 0.1);
}

.solution-card-featured .solution-label {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
}

.solution-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(5, 184, 166, 0.11);
}

.solution-card-featured .solution-icon {
  color: var(--lime);
  background: rgba(159, 230, 66, 0.11);
}

.solution-icon i {
  font-size: 1.72rem;
}

.solution-card h3 {
  font-size: 1.52rem;
}

.solution-card p {
  margin: 0;
}

.solution-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

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

.solution-chips span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-2);
  font-size: 0.8rem;
  font-weight: 900;
}

.solution-card-featured .solution-chips span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.solution-preview,
.solution-mini-chart,
.solution-network {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 248, 247, 0.86);
}

.solution-card-featured .solution-preview {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.solution-preview {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.solution-preview span {
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.solution-preview span:nth-child(1) {
  width: 74%;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

.solution-preview span:nth-child(2) {
  width: 52%;
}

.solution-preview span:nth-child(3) {
  width: 88%;
}

.solution-mini-chart {
  height: 78px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 12px;
}

.solution-mini-chart span {
  flex: 1;
  min-height: 18px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--teal), rgba(5, 184, 166, 0.3));
}

.solution-mini-chart span:nth-child(1) {
  height: 34%;
}

.solution-mini-chart span:nth-child(2) {
  height: 58%;
}

.solution-mini-chart span:nth-child(3) {
  height: 46%;
}

.solution-mini-chart span:nth-child(4) {
  height: 86%;
  background: linear-gradient(180deg, var(--lime), rgba(159, 230, 66, 0.34));
}

.solution-network {
  position: relative;
  height: 78px;
  background:
    linear-gradient(30deg, transparent 48%, rgba(5, 184, 166, 0.34) 49%, rgba(5, 184, 166, 0.34) 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, rgba(159, 230, 66, 0.4) 49%, rgba(159, 230, 66, 0.4) 51%, transparent 52%),
    rgba(244, 248, 247, 0.86);
}

.solution-network span {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(5, 184, 166, 0.1);
}

.solution-network span:nth-child(1) {
  left: 18px;
  top: 16px;
}

.solution-network span:nth-child(2) {
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(159, 230, 66, 0.14);
}

.solution-network span:nth-child(3) {
  right: 20px;
  bottom: 16px;
}

.solution-card p,
.feature-card p,
.process-step p,
.tab-panel p,
.faq-list p,
.site-footer p,
.site-footer li,
.form-note {
  color: var(--muted);
}

.solution-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.intro-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
}

.feature-section {
  background: var(--ink);
  color: #fff;
}

.feature-section .section-heading p:not(.eyebrow),
.feature-card p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr);
  gap: 42px;
  align-items: start;
}

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

.feature-card {
  min-height: 222px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--lime);
  background: rgba(159, 230, 66, 0.1);
}

.feature-icon i {
  font-size: 1.55rem;
}

.ecosystem-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: center;
}

.ecosystem-visual {
  position: relative;
}

.ecosystem-visual::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, rgba(5, 184, 166, 0.08) 0 1px, transparent 1px 18px);
}

.ecosystem-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.check-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.check-grid i {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(5, 184, 166, 0.1);
  font-size: 1rem;
  line-height: 1;
}

.process-section {
  background: var(--surface-2);
}

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

.process-step {
  min-height: 268px;
  padding: 22px;
  background: var(--surface);
}

.process-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.operation-section {
  padding: 0;
  background: linear-gradient(180deg, var(--surface-2) 0%, #ffffff 100%);
}

.operation-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(5, 184, 166, 0.35), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(159, 230, 66, 0.22), transparent 28%),
    linear-gradient(135deg, #071516, #0c2a2b);
  box-shadow: 0 28px 90px rgba(7, 21, 22, 0.22);
}

.operation-copy {
  display: grid;
  align-content: center;
}

.operation-copy h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.operation-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

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

.operation-flow article {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.operation-flow article::before {
  content: "";
  position: absolute;
  inset: 20px 20px auto;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

.operation-flow article::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(159, 230, 66, 0.12);
  box-shadow: inset 0 0 0 1px rgba(159, 230, 66, 0.18);
}

.operation-step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--lime);
  font-weight: 950;
}

.operation-flow h3 {
  font-size: 1.18rem;
}

.operation-flow p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.tabs-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 60%, var(--surface-3) 100%);
}

.tabs-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.tab-button {
  min-height: 56px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.active {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--teal);
}

.tab-panel {
  padding: 34px;
}

.tab-panel h3 {
  font-size: 1.55rem;
}

.faq-section {
  background: var(--surface-3);
}

.faq-list {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--teal-dark);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
  padding: 104px 0;
}

.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-lines a,
.contact-lines span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 13px 14px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.help-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 118px 0 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 21, 22, 0.96), rgba(7, 21, 22, 0.82)),
    url("assets/inove-hero-platform.png") center right / cover no-repeat,
    var(--ink);
  overflow: hidden;
}

.help-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
}

.help-hero-inner,
.help-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.help-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
}

.help-hero-inner h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 4.8vw, 5.3rem);
}

.help-hero-inner p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.help-section {
  padding: 86px 0 110px;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
}

.help-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.help-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

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

.help-option {
  min-height: 124px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(7, 21, 22, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.help-option:hover,
.help-option:focus-visible,
.help-option.active {
  transform: translateY(-3px);
  border-color: rgba(5, 184, 166, 0.55);
  background:
    linear-gradient(135deg, rgba(5, 184, 166, 0.08), rgba(159, 230, 66, 0.12)),
    #fff;
  box-shadow: 0 22px 70px rgba(7, 21, 22, 0.12);
}

.help-option i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(5, 184, 166, 0.1);
  font-size: 1.45rem;
}

.help-option-wide {
  grid-column: span 2;
}

.request-panel {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(5, 184, 166, 0.28), transparent 34%),
    linear-gradient(135deg, #071516, #0c2a2b);
  box-shadow: 0 28px 90px rgba(7, 21, 22, 0.18);
}

.request-panel[hidden] {
  display: none;
}

.request-copy h2 {
  max-width: 880px;
  font-size: clamp(1.8rem, 2.7vw, 2.9rem);
}

.request-copy p:not(.eyebrow) {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.72);
}

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

.request-grid label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.request-grid input,
.request-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.request-grid input {
  height: 50px;
  padding: 0 14px;
}

.request-grid textarea {
  min-height: 132px;
  resize: vertical;
  padding: 13px 14px;
}

.request-grid input::placeholder,
.request-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.request-grid input:focus,
.request-grid textarea:focus {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.12);
}

.request-field-wide {
  grid-column: 1 / -1;
}

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

.request-submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.request-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.legal-hero {
  padding: 132px 0 68px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 21, 22, 0.96), rgba(8, 119, 105, 0.76)),
    url("assets/inove-hero-platform.png") center / cover no-repeat,
    var(--ink);
}

.legal-hero-shell,
.legal-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.legal-hero-shell {
  max-width: 860px;
  margin-left: max(16px, calc((100vw - var(--container)) / 2));
}

.legal-hero h1 {
  max-width: 820px;
  margin: 10px 0 16px;
  font-size: clamp(2.45rem, 7vw, 4.7rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.legal-meta span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.legal-page {
  background: var(--surface-2);
}

.legal-section {
  padding: 54px 0 84px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(7, 21, 22, 0.07);
}

.legal-toc strong {
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.legal-toc a {
  color: var(--muted);
  font-weight: 800;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--ink);
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(7, 21, 22, 0.06);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.legal-card h3 {
  margin: 18px 0 8px;
  font-size: 1.02rem;
}

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

.legal-card p {
  margin: 0 0 12px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-highlight {
  border-color: rgba(5, 184, 166, 0.26);
  background:
    linear-gradient(135deg, rgba(5, 184, 166, 0.08), rgba(159, 230, 66, 0.1)),
    #fff;
}

.legal-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(5, 184, 166, 0.22);
  border-radius: var(--radius);
  background: rgba(5, 184, 166, 0.08);
  color: var(--ink);
}

.legal-callout i {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-callout p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 21, 22, 0.72);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.success-modal {
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 1.6rem;
}

.success-modal h2 {
  font-size: 2rem;
}

.success-modal p {
  color: var(--muted);
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1.08fr 1fr 0.9fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.66);
  overflow-wrap: anywhere;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 54px 54px;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(159, 230, 66, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(159, 230, 66, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .nav-links {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(7, 21, 22, 0.96);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
  }

  .nav-cta {
    margin-top: 6px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 36px;
  }

  .hero-bg img {
    object-position: 62% center;
    opacity: 0.54;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(7, 21, 22, 0.98) 0%, rgba(7, 21, 22, 0.82) 64%, rgba(7, 21, 22, 0.5) 100%),
      linear-gradient(180deg, rgba(7, 21, 22, 0.2) 0%, rgba(7, 21, 22, 0.9) 100%);
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 24px auto 0;
  }

  .feature-layout,
  .ecosystem-section,
  .operation-shell,
  .contact-section,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

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

  .help-option-wide {
    grid-column: span 2;
  }

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

  .operation-flow {
    grid-template-columns: 1fr;
  }

  .operation-flow article {
    min-height: 190px;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    width: calc(100% - 24px);
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 102px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-metrics,
  .solution-grid,
  .feature-list,
  .process-grid,
  .footer-grid,
  .check-grid,
  .tabs,
  .help-options,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .help-option-wide,
  .request-field-wide {
    grid-column: auto;
  }

  .help-hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

  .help-option {
    min-height: 96px;
    grid-template-columns: auto 1fr;
    align-items: center;
    align-content: center;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 22px;
  }

  .hero-metrics div {
    min-height: 74px;
    padding: 10px;
  }

  .hero-metrics strong {
    font-size: 0.84rem;
  }

  .hero-metrics span {
    font-size: 0.72rem;
  }

  .hero-status {
    display: none;
  }

  .hero-actions .button,
  .button-secondary,
  .button-primary {
    width: 100%;
  }

  .section,
  .contact-section,
  .help-section,
  .legal-section {
    padding: 72px 0;
  }

  .legal-hero {
    padding: 112px 0 58px;
  }

  .legal-card {
    padding: 22px;
  }

  .solution-card,
  .feature-card,
  .process-step {
    min-height: auto;
  }

  .tabs {
    border-bottom: 0;
  }

  .tab-button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tab-panel {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.45rem;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .ecosystem-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .contact-form,
  .solution-card,
  .feature-card,
  .process-step,
  .operation-shell,
  .request-panel,
  .success-modal {
    padding: 18px;
  }

}
