:root {
  --ink: #111113;
  --ink-soft: #4d535c;
  --muted: #777d86;
  --paper: #f5f5f7;
  --white: #ffffff;
  --black: #050507;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-dark: rgba(13, 16, 21, 0.74);
  --line: rgba(17, 17, 19, 0.1);
  --line-dark: rgba(255, 255, 255, 0.14);
  --teal: #00a39b;
  --teal-dark: #006b66;
  --cyan: #5bd6ff;
  --amber: #d89b35;
  --violet: #8d7aff;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-ui: "Inter", "Microsoft YaHei UI", "PingFang SC", "Segoe UI", sans-serif;
  --font-display: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #07090d 0, #07090d 720px, var(--paper) 720px),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
}

body::selection {
  background: rgba(0, 163, 155, 0.22);
}

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

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

h1,
h2,
h3,
.model-command strong,
.model-lanes article strong,
.preview-header strong,
.scenario-card > strong,
.example-card-head strong,
.service-card-head strong,
.price-line strong {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: clamp(16px, 3vw, 40px);
  right: clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 58px;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(11, 13, 18, 0.68);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(160%);
}

.brand,
.site-header nav,
.hero-actions,
.hero-metrics,
.preview-header,
.task-row,
.contact-section {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 780;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, #04c9bf, #09736e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 10px 24px rgba(0, 163, 155, 0.22);
}

.site-header nav {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.site-header nav a {
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 7px;
  transition: background 220ms var(--ease), color 220ms var(--ease);
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 760;
  white-space: nowrap;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease);
}

.nav-cta {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.secondary-link:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 34%;
  pointer-events: none;
  background: #000;
  content: "";
}

.hero::after {
  display: none;
  content: "";
}

.hero-code-rain,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-code-rain {
  z-index: 2;
  opacity: 0.92;
  mix-blend-mode: screen;
  pointer-events: none;
  filter: saturate(1.45) contrast(1.22);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.hero-image {
  display: none;
  z-index: 0;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.74) contrast(1.1) brightness(0.56);
  transform: scale(1.04);
  transition: transform 900ms var(--ease);
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 25px;
  width: min(1060px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 0 86px;
  color: var(--white);
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  animation: heroRise 900ms var(--ease) both;
}

h1 {
  display: grid;
  gap: 10px;
  max-width: 1120px;
  margin-bottom: 0;
  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 760;
  line-height: 1.05;
  text-wrap: balance;
  animation: heroRise 1000ms 90ms var(--ease) both;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.72;
  text-wrap: pretty;
  animation: heroRise 1000ms 180ms var(--ease) both;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation: heroRise 1000ms 260ms var(--ease) both;
}

.primary-button {
  padding: 0 22px;
  background: linear-gradient(135deg, #00bfb5, #007d78);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 163, 155, 0.24);
}

.primary-button:hover {
  box-shadow: 0 24px 58px rgba(0, 163, 155, 0.34);
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.hero-metrics {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(790px, 100%);
  margin-top: 18px;
  animation: heroRise 1000ms 360ms var(--ease) both;
}

.hero-metrics div {
  flex: 1 1 190px;
  min-width: 0;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.hero-metrics div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.105);
}

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

.hero-metrics strong {
  font-size: 23px;
  font-weight: 820;
}

.hero-metrics span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.section {
  position: relative;
  padding: 112px clamp(22px, 6vw, 92px);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading h2,
.contact-section h2,
.pilot-copy h2 {
  margin-bottom: 0;
  max-width: 820px;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 760;
  line-height: 1.16;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.pilot-copy p,
.contact-section p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.intro-section .section-heading,
.workflow-section .section-heading {
  max-width: 660px;
}

.product-section .section-heading {
  max-width: 980px;
}

.product-section .section-heading h2 {
  max-width: 900px;
}

.intro-section {
  margin-top: -1px;
  background: #f7f8fa;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.model-board {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.model-command {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 8px;
  background: #080b10;
  color: var(--white);
  box-shadow: 0 28px 74px rgba(5, 8, 12, 0.24);
}

.model-command span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.model-command strong {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 760;
  line-height: 1.28;
  text-wrap: balance;
}

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

.model-lanes article,
.scenario-card,
.timeline-item,
.workspace-preview,
.pilot-section,
.contact-section {
  border: 1px solid rgba(17, 17, 19, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.model-lanes article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 210px;
  padding: 22px;
  background: var(--white);
}

.model-lanes article span,
.flow-node span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(0, 163, 155, 0.18);
  border-radius: 8px;
  background: rgba(0, 163, 155, 0.08);
  color: var(--teal-dark);
  font-weight: 860;
}

.model-lanes article strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 760;
  line-height: 1.28;
}

.model-lanes article p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.workflow-section {
  overflow: hidden;
  background: #ffffff;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.agent-flow {
  position: relative;
  display: grid;
  gap: 14px;
}

.agent-flow::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 163, 155, 0.16), rgba(0, 163, 155, 0.58), rgba(0, 163, 155, 0.16));
  content: "";
}

.flow-node {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(17, 17, 19, 0.09);
  border-radius: 8px;
  background: rgba(248, 250, 251, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
}

.flow-node.is-active,
.flow-node:hover {
  transform: translateX(8px);
  border-color: rgba(0, 163, 155, 0.28);
  background: #ffffff;
}

.flow-node h3 {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 760;
  line-height: 1.24;
}

.flow-node p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.flow-node em {
  min-width: 144px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 163, 155, 0.16);
  border-radius: 8px;
  background: rgba(0, 163, 155, 0.07);
  color: var(--teal-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 840;
  text-align: center;
}

.product-section {
  overflow: hidden;
  background: #05070a;
  color: var(--white);
}

.product-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  content: "";
}

.product-heading {
  position: relative;
}

.product-section .section-heading h2 {
  color: var(--white);
}

.product-section .eyebrow {
  color: var(--cyan);
}

.workspace-preview {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(280px, 380px);
  gap: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(22px);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.62);
}

.workspace-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.workspace-brand span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #00e58d, #00a39b);
  color: #00140b;
  font-weight: 900;
}

.preview-sidebar nav {
  display: grid;
  gap: 8px;
}

.preview-sidebar nav span {
  padding: 11px 12px;
  border-radius: 8px;
  font-weight: 740;
}

.preview-sidebar nav .active {
  background: rgba(0, 255, 122, 0.13);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 255, 122, 0.22);
}

.preview-main {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 24px;
}

.preview-header {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.preview-header div {
  display: grid;
  gap: 5px;
}

.preview-header span,
.command-bar span,
.metric-strip span,
.task-table-head,
.review-stack small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.preview-header strong {
  color: var(--white);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 760;
  line-height: 1.22;
}

.preview-header button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-weight: 800;
}

.command-bar {
  display: grid;
  gap: 8px;
  padding: 17px;
  border: 1px solid rgba(0, 255, 122, 0.16);
  border-radius: 8px;
  background: rgba(0, 255, 122, 0.08);
}

.command-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
}

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

.metric-strip div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-strip strong {
  font-size: 26px;
}

.task-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.task-table-head,
.task-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.2fr) minmax(100px, 0.8fr) minmax(86px, 0.55fr) minmax(150px, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.task-table-head {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 840;
}

.task-row {
  padding: 15px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  transition: background 260ms var(--ease), transform 260ms var(--ease);
}

.task-row:hover,
.task-row.is-active {
  background: rgba(0, 255, 122, 0.075);
}

.task-row strong,
.task-row span {
  min-width: 0;
}

.task-row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.task-row em {
  width: fit-content;
  min-width: 68px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 840;
  text-align: center;
}

.status-review {
  background: rgba(216, 155, 53, 0.14);
  color: #ffd28b;
}

.status-done {
  background: rgba(0, 255, 122, 0.12);
  color: #7dffb1;
}

.status-running {
  background: rgba(91, 214, 255, 0.13);
  color: #9fe8ff;
}

.preview-insight {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  border-left: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.28);
}

.preview-insight > span {
  color: var(--amber);
  font-weight: 860;
}

.preview-insight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.66;
}

.review-stack {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.review-stack strong {
  color: var(--white);
}

.scenarios-section {
  background: #f6f7f8;
}

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

.scenario-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.scenario-card:hover,
.example-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 163, 155, 0.26);
  box-shadow: var(--shadow);
}

.scenario-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 178px;
  padding: 24px;
}

.scenario-card div:first-child {
  background: #101318;
  color: var(--white);
}

.scenario-card div:last-of-type {
  background: #ffffff;
}

.scenario-card span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.scenario-card div:last-of-type span {
  color: var(--teal-dark);
}

.scenario-card p {
  margin: 0;
  line-height: 1.7;
}

.scenario-card div:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.scenario-card div:last-of-type p {
  color: var(--ink-soft);
}

.scenario-card > strong {
  grid-column: 1 / -1;
  padding: 18px 24px;
  border-top: 1px solid rgba(17, 17, 19, 0.08);
  font-size: 20px;
  font-weight: 760;
  line-height: 1.26;
}

.example-card::before,
.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--cyan), transparent);
  opacity: 0;
  content: "";
  transition: opacity 260ms var(--ease);
}

.example-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.examples-section {
  background: #ffffff;
}

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

.example-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(17, 17, 19, 0.09);
  border-radius: 8px;
  background: #f9fafb;
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.example-card-head {
  display: grid;
  gap: 8px;
}

.example-card-head span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.45;
}

.example-card-head strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.26;
  text-wrap: balance;
}

.example-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.example-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-top: 4px;
}

.example-card dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.example-card dd {
  margin: -4px 0 8px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.services-section {
  background: #f5f5f7;
}

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

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(17, 17, 19, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.service-card.featured {
  border-color: rgba(255, 255, 255, 0.14);
  background: #080b10;
  color: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(-10px);
}

.service-card.featured:hover {
  transform: translateY(-16px);
}

.service-card-head {
  display: grid;
  gap: 8px;
}

.service-card-head span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card-head strong {
  font-size: 25px;
  font-weight: 760;
  line-height: 1.22;
  text-wrap: balance;
}

.service-card p,
.service-card li,
.price-line span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.service-card.featured p,
.service-card.featured li,
.service-card.featured .price-line span {
  color: rgba(255, 255, 255, 0.68);
}

.price-line {
  display: grid;
  gap: 4px;
  padding: 17px;
  border: 1px solid rgba(0, 163, 155, 0.18);
  border-radius: 8px;
  background: rgba(0, 163, 155, 0.08);
}

.service-card.featured .price-line {
  border-color: rgba(91, 214, 255, 0.18);
  background: rgba(91, 214, 255, 0.09);
}

.price-line strong {
  font-size: clamp(25px, 2.3vw, 30px);
  font-weight: 760;
  line-height: 1.12;
}

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

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "•";
}

.service-card.featured li::before {
  color: var(--cyan);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  color: var(--teal-dark);
  font-weight: 820;
  transition: transform 240ms var(--ease);
}

.service-note {
  display: block;
  margin-top: -4px;
  padding: 11px 12px;
  border: 1px solid rgba(91, 214, 255, 0.16);
  border-radius: 8px;
  background: rgba(91, 214, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.pilot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin: 0 clamp(22px, 6vw, 92px) 104px;
  padding: 44px;
  background: rgba(255, 255, 255, 0.86);
}

.pilot-steps {
  display: grid;
  gap: 12px;
}

.pilot-steps div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(17, 17, 19, 0.09);
  border-radius: 8px;
  background: #ffffff;
}

.pilot-steps strong {
  color: var(--teal-dark);
}

.pilot-steps span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: start;
  gap: clamp(24px, 5vw, 74px);
  margin: 0 clamp(22px, 6vw, 92px) 70px;
  padding: 38px 42px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #080b10;
  color: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.68);
}

.lead-form {
  display: grid;
  gap: 13px;
  min-width: 0;
}

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

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

.lead-form label span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 780;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  outline: 0;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.lead-form input {
  height: 44px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
  padding: 12px;
  line-height: 1.6;
}

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

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(0, 255, 122, 0.4);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(0, 255, 122, 0.1);
}

.lead-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.lead-form-actions .primary-button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.lead-form-actions .primary-button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.lead-form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.ai-assistant {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  display: grid;
  justify-items: end;
  gap: 10px;
  width: min(390px, calc(100vw - 32px));
}

.assistant-toggle,
.assistant-close,
.quick-prompts button,
.assistant-input button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.assistant-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #080b10;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.assistant-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
}

.assistant-toggle span {
  display: grid;
  width: 34px;
  height: 27px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(145deg, #00c8bd, #5bd6ff);
  color: #051014;
  font-size: 12px;
  font-weight: 900;
}

.assistant-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(160%);
  transform-origin: bottom right;
  animation: panelIn 360ms var(--ease) both;
}

.assistant-panel.is-collapsed {
  display: none;
}

.assistant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 17px;
  background: #080b10;
  color: var(--white);
}

.assistant-header div {
  display: grid;
  gap: 4px;
}

.assistant-header span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.assistant-close {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 20px;
}

.assistant-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding: 16px;
  background: #f5f6f8;
}

.message {
  max-width: 87%;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.message.bot {
  justify-self: start;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.message.user {
  justify-self: end;
  background: #080b10;
  color: var(--white);
}

.message.pending {
  color: var(--ink-soft);
}

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

.assistant-capabilities span {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(0, 163, 155, 0.14);
  border-radius: 8px;
  background: rgba(0, 163, 155, 0.08);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 820;
  text-align: center;
}

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

.quick-prompts button {
  min-height: 33px;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 760;
}

.assistant-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(17, 17, 19, 0.09);
  background: var(--white);
}

.assistant-input input {
  min-width: 0;
  height: 41px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 19, 0.12);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.assistant-input input:focus {
  border-color: rgba(0, 163, 155, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 163, 155, 0.1);
}

.assistant-input button {
  border-radius: 8px;
  background: #080b10;
  color: var(--white);
  font-weight: 820;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

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

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0, 200, 189, 0.18), transparent 28%),
    linear-gradient(180deg, #06080d 0%, #0b0f15 100%);
  color: var(--white);
}

.admin-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.admin-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.admin-body h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
}

.admin-intro {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

.admin-refresh {
  border: 1px solid rgba(255, 255, 255, 0.18);
  font: inherit;
  cursor: pointer;
}

.admin-hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-export,
.admin-refresh {
  border: 1px solid rgba(255, 255, 255, 0.18);
  font: inherit;
  cursor: pointer;
}

.admin-export:disabled,
.admin-refresh:disabled {
  cursor: progress;
  opacity: 0.7;
}

.danger-button {
  border-color: rgba(255, 101, 101, 0.28);
  background: rgba(255, 101, 101, 0.09);
  color: #ffb4b4;
}

.danger-button:hover {
  border-color: rgba(255, 101, 101, 0.44);
  background: rgba(255, 101, 101, 0.14);
}

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

.admin-auth,
.admin-summary article,
.admin-panel,
.lead-card,
.lead-empty,
.lead-detail-empty,
.lead-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.admin-auth {
  margin-bottom: 18px;
  padding: 18px;
}

.admin-auth[hidden] {
  display: none;
}

.admin-auth form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(240px, 360px) auto;
  gap: 16px;
  align-items: end;
}

.admin-auth strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
}

.admin-auth p,
.admin-auth label span,
.lead-follow-form label span,
.lead-detail-section span,
.lead-detail-grid dt,
.lead-detail-card header span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.admin-auth p {
  margin: 7px 0 0;
  line-height: 1.6;
}

.admin-auth label,
.lead-follow-form label {
  display: grid;
  gap: 8px;
}

.admin-auth input,
.lead-follow-form select,
.lead-follow-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  font: inherit;
  outline: none;
}

.admin-auth input,
.lead-follow-form select {
  height: 46px;
  padding: 0 13px;
}

.lead-follow-form textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.admin-auth input:focus,
.lead-follow-form select:focus,
.lead-follow-form textarea:focus {
  border-color: rgba(0, 255, 122, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 255, 122, 0.1);
}

.admin-summary article {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
}

.admin-summary span,
.admin-hint,
.lead-card-top span,
.lead-meta dt,
.lead-workflow span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.admin-summary strong {
  color: var(--white);
  font-size: 30px;
  font-weight: 760;
  line-height: 1.1;
}

.admin-panel {
  padding: 22px;
}

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

.admin-panel-head strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 760;
  line-height: 1.2;
}

.admin-panel-head p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.admin-hint {
  margin: 2px 0 0;
  text-align: right;
}

.admin-lead-list {
  display: grid;
  gap: 14px;
  align-content: start;
}

.admin-workbench {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  gap: 16px;
  align-items: start;
}

.lead-card {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 18px;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.lead-card:hover,
.lead-card.is-active {
  border-color: rgba(0, 255, 122, 0.36);
  background: rgba(0, 255, 122, 0.075);
}

.lead-card:hover {
  transform: translateY(-1px);
}

.lead-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.lead-card-top strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.2;
}

.lead-card-top em {
  width: fit-content;
  min-width: 116px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(0, 255, 122, 0.1);
  color: #8bffbc;
  font-size: 12px;
  font-style: normal;
  font-weight: 780;
  text-align: center;
}

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

.lead-meta div,
.lead-workflow {
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.lead-meta dt {
  margin-bottom: 6px;
}

.lead-meta dd,
.lead-workflow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.lead-workflow {
  display: grid;
  gap: 8px;
}

.lead-empty {
  padding: 28px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  text-align: center;
}

.lead-detail {
  min-width: 0;
}

.lead-detail-empty {
  padding: 32px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.lead-detail-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.lead-detail-card header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-detail-card h2 {
  margin: 6px 0 6px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.14;
}

.lead-detail-card header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.lead-detail-card header strong {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(0, 255, 122, 0.11);
  color: #8bffbc;
  font-size: 12px;
}

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

.lead-detail-grid div,
.lead-detail-section {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.lead-detail-grid dt {
  margin-bottom: 7px;
}

.lead-detail-grid dd,
.lead-detail-section p,
.lead-detail-section pre {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.lead-detail-section pre {
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "Consolas", "SFMono-Regular", monospace;
  font-size: 13px;
}

.lead-detail-section {
  display: grid;
  gap: 8px;
}

.conversation-messages {
  display: grid;
  gap: 10px;
}

.conversation-message {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.conversation-message strong {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.conversation-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.conversation-message.assistant {
  border-color: rgba(0, 255, 122, 0.16);
  background: rgba(0, 255, 122, 0.055);
}

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

.lead-follow-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lead-follow-actions .primary-button:disabled {
  cursor: progress;
  opacity: 0.65;
}

.lead-follow-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .intro-layout,
  .workflow-layout,
  .model-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workspace-preview,
  .example-grid,
  .pilot-section {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .service-card.featured {
    transform: none;
  }

  .service-card.featured:hover {
    transform: translateY(-6px);
  }

  .sticky-heading {
    position: static;
  }

  .preview-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .preview-sidebar nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .preview-insight {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

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

  .admin-workbench,
  .admin-auth form,
  .lead-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 840px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    min-height: auto;
    padding: 14px;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    overflow-x: auto;
  }

  .site-header nav a {
    flex: 1 0 auto;
    text-align: center;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 12px;
  }

  .admin-shell {
    width: calc(100% - 32px);
    padding-top: 28px;
  }

  .admin-hero,
  .admin-hero-actions,
  .admin-panel-head,
  .lead-card-top,
  .lead-detail-card header {
    display: grid;
  }

  .admin-hero-actions {
    justify-content: stretch;
  }

  .admin-hint {
    text-align: left;
  }

  .lead-detail-grid,
  .admin-summary {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    background: var(--paper);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-code-rain {
    opacity: 0.82;
  }

  .hero-content {
    width: calc(100% - 36px);
    min-height: 100svh;
    padding-top: 154px;
  }

  h1 {
    gap: 5px;
    font-size: clamp(38px, 10.8vw, 42px);
    line-height: 1.1;
  }

  h1 span {
    white-space: normal;
  }

  .hero-metrics,
  .hero-actions {
    align-items: stretch;
    width: 100%;
  }

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

  .section {
    padding: 70px 20px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 32px;
  }

  .section-heading h2,
  .contact-section h2,
  .pilot-copy h2 {
    font-size: clamp(27px, 7.4vw, 35px);
    line-height: 1.18;
  }

  .intro-layout,
  .workflow-layout,
  .model-lanes,
  .scenario-grid,
  .scenario-card,
  .preview-sidebar,
  .preview-sidebar nav,
  .metric-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .flow-node {
    grid-template-columns: minmax(0, 1fr);
    transform: none;
  }

  .flow-node.is-active,
  .flow-node:hover {
    transform: none;
  }

  .flow-node em {
    min-width: 0;
    width: fit-content;
  }

  .agent-flow::before {
    display: none;
  }

  .preview-header,
  .task-row {
    align-items: flex-start;
  }

  .task-table {
    overflow-x: visible;
  }

  .task-table-head {
    display: none;
  }

  .task-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    min-width: 0;
  }

  .pilot-section,
  .contact-section {
    margin-right: 20px;
    margin-left: 20px;
    padding: 24px;
  }

  .pilot-steps div {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-form-row,
  .lead-form-actions,
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-form-actions {
    display: grid;
  }

  .ai-assistant {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .assistant-panel {
    height: min(560px, calc(100vh - 104px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-code-rain {
    opacity: 0.36;
  }
}
