:root {
  color-scheme: light;
  --navy: #0b1220;
  --navy-soft: #152033;
  --blue: #275fd3;
  --blue-dark: #1f4fac;
  --blue-soft: #edf3ff;
  --green: #0d9367;
  --green-soft: #eaf8f3;
  --amber: #a66708;
  --amber-soft: #fff5df;
  --text: #172033;
  --muted: #657086;
  --line: #dfe4ec;
  --line-strong: #cdd5e1;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --container: 1180px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform 0.16s ease;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #8cb2ff;
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  padding: 0 max(22px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid rgba(223, 228, 236, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand {
  flex: 0 0 auto;
  min-height: 44px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.2px;
}

.brand-copy b,
.brand-copy small,
.footer-brand b,
.footer-brand small {
  display: block;
}

.brand-copy b {
  color: var(--navy);
  font-size: 15px;
  letter-spacing: 0.2px;
}

.brand-copy small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 10px;
}

.topbar nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.topbar nav a {
  color: #4f5a70;
  font-size: 13px;
  font-weight: 650;
  transition: color 0.16s ease;
}

.topbar nav a:hover {
  color: var(--blue);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(39, 95, 211, 0.2);
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 11px 28px rgba(39, 95, 211, 0.25);
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 12px;
  box-shadow: none;
}

.button-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: #344056;
  box-shadow: none;
}

.button-secondary:hover {
  border-color: #aeb9c9;
  background: var(--surface-soft);
  color: var(--navy);
  box-shadow: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px max(22px, calc((100vw - var(--container)) / 2)) 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: 62px;
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -220px;
  left: 52%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(39, 95, 211, 0.07);
  filter: blur(70px);
}

.eyebrow {
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--blue);
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 820;
  line-height: 1.13;
  letter-spacing: -2.8px;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.assurance-list {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
}

.assurance-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #59657a;
  font-size: 11px;
  font-weight: 650;
}

.assurance-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.product-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cfd7e4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(26, 42, 70, 0.16);
}

.window-bar {
  height: 47px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: #637087;
  font-size: 10px;
}

.window-bar > b {
  color: #4f5a6e;
  font-size: 10px;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cfd5df;
}

.window-secure {
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-secure i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.window-body {
  min-height: 425px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  background: #f5f7fa;
}

.demo-sidebar {
  padding: 18px 11px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--navy);
  color: #8f9bb0;
}

.demo-sidebar > b {
  margin: 0 7px 15px;
  color: #fff;
  font-size: 13px;
}

.demo-sidebar span {
  padding: 9px 8px;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 650;
}

.demo-sidebar span.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.demo-main {
  min-width: 0;
  padding: 22px;
}

.demo-heading,
.delivery-card > header,
.demo-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.demo-heading small,
.demo-heading strong,
.delivery-card header small,
.delivery-card header b,
.demo-panel-head small,
.demo-panel-head b {
  display: block;
}

.demo-heading small,
.delivery-card header small,
.demo-panel-head small {
  color: #8590a3;
  font-size: 8px;
}

.demo-heading strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 15px;
}

.demo-heading > span,
.demo-panel-head > span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 8px;
  font-weight: 750;
}

.status-grid {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.status-grid article {
  min-width: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #e3e7ee;
  border-radius: 10px;
  background: #fff;
}

.status-grid small,
.status-grid b {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-grid small {
  color: #8a95a8;
  font-size: 7px;
}

.status-grid b {
  margin-top: 3px;
  color: #344056;
  font-size: 8px;
}

.status-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 7px;
  font-weight: 850;
}

.status-icon.page {
  background: var(--blue-soft);
  color: var(--blue);
}

.status-icon.domain {
  background: var(--green-soft);
  color: var(--green);
}

.status-icon.track {
  background: var(--amber-soft);
  color: var(--amber);
}

.delivery-card {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid #e1e6ed;
  border-radius: 12px;
  background: #fff;
}

.delivery-card header b {
  margin-top: 4px;
  color: #2f3a50;
  font-size: 11px;
}

.tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--amber);
  font-size: 8px;
  font-weight: 750;
}

.delivery-steps {
  position: relative;
  margin-top: 19px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.delivery-steps::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: #dfe4eb;
}

.delivery-steps span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #8a94a6;
  font-size: 7px;
  text-align: center;
}

.delivery-steps i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 2px solid #e0e5ec;
  border-radius: 50%;
  background: #fff;
  color: #8792a5;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.delivery-steps .done,
.delivery-steps .current {
  color: #3e4a5f;
  font-weight: 700;
}

.delivery-steps .done i {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.delivery-steps .current i {
  border-color: var(--blue);
  color: var(--blue);
}

.delivery-detail {
  margin-top: 17px;
  padding-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid #edf0f4;
}

.delivery-detail div {
  min-width: 0;
}

.delivery-detail small,
.delivery-detail b {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.delivery-detail small {
  color: #929caf;
  font-size: 7px;
}

.delivery-detail b {
  margin-top: 4px;
  color: #455066;
  font-size: 8px;
}

.value-strip {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 26px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip article {
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.value-strip article:first-child {
  padding-left: 0;
}

.value-strip article:last-child {
  padding-right: 0;
  border-right: 0;
}

.value-strip b,
.value-strip span {
  display: block;
}

.value-strip b {
  color: var(--navy);
  font-size: 14px;
}

.value-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.section {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-label {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.7px;
}

.section h2,
.cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -1.7px;
}

.section-heading > p:last-child,
.split-copy > p:not(.section-label),
.service-card > div > p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

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

.feature-card {
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.feature-card:hover {
  border-color: #c6d2e5;
  box-shadow: 0 17px 42px rgba(27, 43, 70, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 22px 0 10px;
  color: #202b40;
  font-size: 17px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 78px;
  border-top: 1px solid var(--line);
}

.split-section.reverse {
  grid-template-columns: minmax(460px, 1.1fr) minmax(0, 0.9fr);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #465268;
  font-size: 12px;
  line-height: 1.65;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.domain-demo,
.tracking-demo {
  padding: 22px;
  border: 1px solid #d6dce6;
  border-radius: 17px;
  background: var(--surface-soft);
  box-shadow: 0 18px 48px rgba(31, 47, 73, 0.09);
}

.demo-panel-head {
  margin-bottom: 14px;
}

.demo-panel-head b {
  margin-top: 4px;
  color: #2d394e;
  font-size: 14px;
}

.demo-panel-head > span {
  background: #fff;
  color: #5d687b;
  border: 1px solid var(--line);
}

.domain-row,
.provider-row {
  min-width: 0;
  padding: 14px;
  display: grid;
  align-items: center;
  gap: 12px;
  border: 1px solid #e0e5ec;
  border-radius: 11px;
  background: #fff;
}

.domain-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.domain-row + .domain-row,
.provider-row + .provider-row {
  margin-top: 9px;
}

.domain-row b,
.domain-row small,
.provider-row b,
.provider-row small {
  display: block;
}

.domain-row b {
  overflow-wrap: anywhere;
  color: #303b50;
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 11px;
}

.domain-row small,
.provider-row small {
  margin-top: 4px;
  color: #8a94a6;
  font-size: 9px;
  line-height: 1.5;
}

.type {
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
}

.type.fixed {
  background: var(--blue-soft);
  color: var(--blue);
}

.type.wildcard {
  background: #f0edff;
  color: #6651bd;
}

.domain-row em,
.provider-row em {
  color: #657086;
  font-size: 8px;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.domain-row em.ready,
.provider-row.active em {
  color: var(--green);
}

.domain-row em.waiting {
  color: var(--amber);
}

.provider-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.provider-row.active {
  border-color: #bfe3d5;
}

.provider-row b {
  color: #303b50;
  font-size: 11px;
}

.provider-mark {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.provider-mark.server {
  background: var(--green-soft);
  color: var(--green);
  font-size: 8px;
}

.provider-mark.link {
  background: var(--amber-soft);
  color: var(--amber);
}

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

.role-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.role-grid article > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1px;
}

.role-grid h3 {
  margin: 29px 0 11px;
  color: #202b40;
  font-size: 20px;
}

.role-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.workflow-section {
  border-top: 1px solid var(--line);
}

.workflow-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.workflow-list li {
  position: relative;
  min-height: 205px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
}

.workflow-list li > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.workflow-list h3 {
  margin: 34px 0 9px;
  color: #222d41;
  font-size: 16px;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.service-section {
  padding-top: 0;
}

.service-card {
  padding: 50px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
}

.service-card .section-label {
  color: #89afff;
}

.service-card h2 {
  color: #fff;
}

.service-card > div > p:not(.section-label) {
  color: #aab5c8;
}

.service-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-points span {
  min-height: 70px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce3ee;
  font-size: 11px;
  line-height: 1.5;
}

.service-points i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(66, 210, 154, 0.14);
  color: #65d9ab;
  font-style: normal;
  font-weight: 850;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 9px;
}

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

.faq-list summary {
  min-height: 64px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #2d394e;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.16s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 19px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.cta {
  width: min(var(--container), calc(100% - 44px));
  margin: 15px auto 90px;
  padding: 43px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 19px;
  background: var(--blue);
  color: #fff;
}

.cta small {
  color: #c9d9ff;
  font-size: 11px;
}

.cta h2 {
  max-width: 680px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -1px;
}

.button-light {
  flex: 0 0 auto;
  border-color: #fff;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: none;
}

.button-light:hover {
  border-color: #eef3ff;
  background: #eef3ff;
  color: var(--blue-dark);
  box-shadow: none;
}

footer {
  width: min(var(--container), calc(100% - 44px));
  min-height: 100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
  color: #7a8599;
  font-size: 11px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 10px;
}

.footer-brand b {
  color: #344056;
  font-size: 12px;
}

.footer-brand small {
  margin-top: 3px;
  color: #8a94a6;
  font-size: 9px;
}

footer > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #4f5d73;
  font-weight: 700;
}

footer > a:hover {
  color: var(--blue);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-window {
    width: min(760px, 100%);
  }

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

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .split-section.reverse .tracking-demo {
    order: 2;
  }

  .workflow-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .topbar {
    min-height: 64px;
    gap: 16px;
  }

  .topbar nav {
    display: none;
  }

  .topbar .button {
    margin-left: auto;
  }

  .hero {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .value-strip {
    grid-template-columns: 1fr;
  }

  .value-strip article,
  .value-strip article:first-child,
  .value-strip article:last-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

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

  .service-card {
    padding: 38px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-section .section-heading {
    margin-bottom: 28px;
  }

  .cta {
    padding: 36px;
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    padding: 26px 0;
    grid-template-columns: 1fr auto;
  }

  footer > span {
    grid-column: 1 / -1;
    order: 3;
  }
}

@media (max-width: 620px) {
  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .topbar {
    padding-right: 14px;
    padding-left: 14px;
  }

  .topbar .button-small {
    min-height: 44px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero {
    padding: 54px 14px 64px;
    gap: 42px;
  }

  .hero::before {
    left: 10%;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.2vw, 45px);
    line-height: 1.16;
    letter-spacing: -1.8px;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }

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

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

  .assurance-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 8px;
  }

  .window-body {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    display: none;
  }

  .demo-main {
    padding: 14px;
  }

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

  .status-grid article {
    padding: 10px;
  }

  .delivery-card {
    padding: 13px;
  }

  .delivery-steps {
    grid-template-columns: repeat(5, minmax(46px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .delivery-detail {
    grid-template-columns: 1fr;
  }

  .value-strip,
  .section,
  .cta,
  footer {
    width: calc(100% - 28px);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section h2 {
    font-size: 31px;
    letter-spacing: -1.1px;
  }

  .section-heading > p:last-child,
  .split-copy > p:not(.section-label),
  .service-card > div > p:not(.section-label) {
    font-size: 13px;
    line-height: 1.8;
  }

  .feature-grid,
  .workflow-list {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 23px;
  }

  .split-section,
  .split-section.reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }

  .domain-demo,
  .tracking-demo {
    padding: 13px;
  }

  .domain-row,
  .provider-row {
    gap: 9px;
    padding: 12px;
  }

  .domain-row em,
  .provider-row em {
    grid-column: 2;
    justify-self: start;
  }

  .role-grid article {
    padding: 24px;
  }

  .workflow-list li {
    min-height: 0;
  }

  .workflow-list h3 {
    margin-top: 25px;
  }

  .service-card {
    padding: 27px 22px;
  }

  .service-points {
    grid-template-columns: 1fr;
  }

  .cta {
    margin-bottom: 62px;
    padding: 28px 23px;
  }

  .cta .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  footer > span,
  footer > a {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* DJ r7g: original, dependency-free technology visual system. */
:root {
  color-scheme: dark;
  --dj-ink: #eef6ff;
  --dj-muted: #8a99b6;
  --dj-cyan: #5be7ff;
  --dj-blue: #4d8dff;
  --dj-violet: #8b6cff;
  --dj-magenta: #e66cff;
  --dj-green: #45e0b4;
  --dj-panel: rgba(10, 18, 36, 0.78);
  --dj-panel-solid: #0b1326;
  --dj-line: rgba(134, 184, 255, 0.16);
  --dj-line-strong: rgba(107, 222, 255, 0.31);
  --navy: #07101f;
  --navy-soft: #101a32;
  --blue: var(--dj-cyan);
  --blue-dark: #30c8f2;
  --blue-soft: rgba(91, 231, 255, 0.11);
  --green: var(--dj-green);
  --green-soft: rgba(69, 224, 180, 0.11);
  --amber: #ffc866;
  --amber-soft: rgba(255, 200, 102, 0.11);
  --text: var(--dj-ink);
  --muted: var(--dj-muted);
  --line: var(--dj-line);
  --line-strong: var(--dj-line-strong);
  --surface: #050815;
  --surface-soft: #091022;
}

body.dj-site {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(92, 77, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 8% 28%, rgba(34, 202, 255, 0.09), transparent 28rem),
    #050815;
  color: var(--dj-ink);
}

.dj-site > main,
.dj-site > footer {
  position: relative;
  z-index: 2;
}

.dj-site > .topbar {
  position: sticky;
  top: 0;
  z-index: 30;
}

.dj-ambient {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.dj-cursor-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.dj-cursor-grid[hidden] {
  display: none;
}

.dj-texture {
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(112, 187, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 187, 255, 0.025) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 7px, rgba(255, 255, 255, 0.012) 8px, transparent 9px 15px);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.35) 72%, transparent);
}

.dj-laser-flow {
  position: absolute;
  top: -14vh;
  right: -15vw;
  width: min(90vw, 1180px);
  height: 75vh;
  opacity: 0.54;
  filter: blur(1px) saturate(1.22);
  transform: rotate(-11deg);
}

.dj-laser-flow::before,
.dj-laser-flow::after,
.dj-laser-flow i {
  content: "";
  position: absolute;
  left: 4%;
  right: 2%;
  height: 2px;
  border-radius: 999px;
  transform-origin: right center;
  animation: dj-laser-sweep 9s ease-in-out infinite alternate;
}

.dj-laser-flow::before {
  top: 35%;
  background: linear-gradient(90deg, transparent, rgba(86, 227, 255, 0.12), #70edff, transparent 88%);
  box-shadow: 0 0 20px #5be7ff, 0 0 70px rgba(91, 231, 255, 0.45);
}

.dj-laser-flow::after {
  top: 43%;
  height: 1px;
  background: linear-gradient(90deg, transparent 7%, #8d72ff, rgba(230, 108, 255, 0.82), transparent 90%);
  box-shadow: 0 0 18px #9777ff, 0 0 64px rgba(151, 119, 255, 0.4);
  animation-delay: -3.6s;
}

.dj-laser-flow i:nth-child(1) {
  top: 39%;
  height: 18px;
  opacity: 0.2;
  background: linear-gradient(90deg, transparent 15%, #5be7ff, #8b6cff, transparent 85%);
  filter: blur(10px);
  animation-delay: -1.5s;
}

.dj-laser-flow i:nth-child(2) {
  top: 54%;
  right: 16%;
  opacity: 0.37;
  background: linear-gradient(90deg, transparent, #e66cff, transparent);
  animation-delay: -5.2s;
}

.dj-laser-flow i:nth-child(3) {
  top: 24%;
  left: 24%;
  opacity: 0.35;
  background: linear-gradient(90deg, transparent, #4d8dff, transparent);
  animation-delay: -7s;
}

.dj-orbit {
  position: absolute;
  border: 1px solid rgba(104, 190, 255, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 48px rgba(93, 92, 255, 0.035), 0 0 80px rgba(74, 183, 255, 0.025);
}

.dj-orbit::before,
.dj-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: inherit;
}

.dj-orbit::before { inset: 10%; }
.dj-orbit::after { inset: 22%; }
.dj-orbit-one { width: 42rem; height: 42rem; left: -20rem; top: 34vh; }
.dj-orbit-two { width: 28rem; height: 28rem; right: -12rem; bottom: -9rem; }

.topbar {
  min-height: 76px;
  border-color: rgba(116, 184, 255, 0.13);
  background: rgba(5, 8, 21, 0.74);
  box-shadow: 0 12px 42px rgba(1, 4, 14, 0.24);
  backdrop-filter: blur(24px) saturate(1.25);
}

.brand-mark {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(105, 231, 255, 0.34);
  background: linear-gradient(145deg, rgba(87, 224, 255, 0.18), rgba(115, 82, 255, 0.22));
  color: #dffaff;
  font-size: 13px;
  letter-spacing: -0.3px;
  box-shadow: inset 0 0 24px rgba(99, 215, 255, 0.1), 0 0 28px rgba(82, 140, 255, 0.14);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -120% 36%;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(24deg) translateX(-220%);
  animation: dj-logo-scan 5.8s ease-in-out infinite;
}

.brand-copy b,
.footer-brand b {
  color: #f3f8ff;
}

.brand-copy small,
.footer-brand small {
  color: #7889a8;
}

.topbar nav a {
  position: relative;
  color: #92a1bc;
}

.topbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: linear-gradient(90deg, var(--dj-cyan), var(--dj-violet));
  transition: right 0.22s ease;
}

.topbar nav a:hover { color: #e9faff; }
.topbar nav a:hover::after { right: 0; }

.button {
  position: relative;
  overflow: hidden;
  border-color: rgba(91, 231, 255, 0.4);
  background: linear-gradient(118deg, #23bce9, #4c76f4 48%, #875df4);
  box-shadow: 0 14px 36px rgba(48, 136, 255, 0.23), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button::after {
  content: "";
  position: absolute;
  top: -120%;
  bottom: -120%;
  left: -35%;
  width: 24%;
  background: rgba(255, 255, 255, 0.36);
  transform: rotate(17deg);
  transition: left 0.45s ease;
}

.button:hover {
  border-color: rgba(123, 237, 255, 0.72);
  background: linear-gradient(118deg, #2bcaf5, #5884ff 48%, #946aff);
  box-shadow: 0 17px 45px rgba(50, 142, 255, 0.3), 0 0 35px rgba(91, 231, 255, 0.1);
}

.button:hover::after { left: 118%; }

.button-secondary {
  border-color: rgba(132, 179, 255, 0.22);
  background: rgba(10, 19, 38, 0.68);
  color: #dce9fb;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(91, 231, 255, 0.42);
  background: rgba(16, 31, 59, 0.88);
  color: #fff;
}

.hero {
  min-height: min(910px, calc(100vh - 76px));
  padding-top: 108px;
  padding-bottom: 110px;
  background:
    linear-gradient(90deg, rgba(5, 8, 21, 0.96) 0%, rgba(5, 8, 21, 0.68) 54%, rgba(5, 8, 21, 0.18) 100%),
    radial-gradient(circle at 71% 44%, rgba(64, 110, 255, 0.11), transparent 24rem);
}

.hero::before {
  top: 2%;
  left: 56%;
  width: 38rem;
  height: 38rem;
  background: conic-gradient(from 120deg, rgba(91, 231, 255, 0.06), rgba(139, 108, 255, 0.19), rgba(230, 108, 255, 0.05), rgba(91, 231, 255, 0.06));
  filter: blur(72px);
  animation: dj-hero-breathe 8s ease-in-out infinite alternate;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  color: #8cefff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.7px;
}

.eyebrow span {
  position: relative;
  width: 35px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dj-cyan));
  box-shadow: 0 0 12px var(--dj-cyan);
}

.eyebrow span::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c5f9ff;
  box-shadow: 0 0 12px #5be7ff;
}

.hero h1 {
  color: #f0f7ff;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 840;
  line-height: 1.05;
  letter-spacing: -4.2px;
  text-wrap: balance;
}

.masked-heading {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  filter: blur(9px);
  animation: dj-mask-reveal 1.05s cubic-bezier(0.22, 0.76, 0.2, 1) 0.12s forwards;
}

.hero h1 .masked-heading-accent {
  padding-bottom: 0.08em;
  color: transparent;
  background: linear-gradient(95deg, #72efff 5%, #71a7ff 38%, #a377ff 68%, #f48cff 96%);
  background-size: 180% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 44px rgba(105, 191, 255, 0.12);
  animation: dj-mask-reveal 1.1s cubic-bezier(0.22, 0.76, 0.2, 1) 0.35s forwards, dj-text-flow 6s linear 1.5s infinite;
}

.hero-lead {
  max-width: 650px;
  color: #9cabca;
  font-size: 16px;
  line-height: 1.9;
  text-wrap: pretty;
}

.assurance-list li { color: #8393b0; }
.assurance-list li::before {
  border: 1px solid rgba(69, 224, 180, 0.2);
  background: rgba(69, 224, 180, 0.08);
  box-shadow: 0 0 18px rgba(69, 224, 180, 0.08);
}

.hero-ascii {
  position: absolute;
  left: 0;
  bottom: -102px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  color: rgba(105, 232, 255, 0.36);
  font-family: "SFMono-Regular", Consolas, monospace;
  pointer-events: none;
}

.hero-ascii > span {
  padding: 5px 8px;
  border: 1px solid rgba(91, 231, 255, 0.15);
  border-radius: 999px;
  color: rgba(141, 238, 255, 0.58);
  font-size: 7px;
  letter-spacing: 1.1px;
}

.hero-ascii pre {
  margin: 0;
  font: 7px/1.12 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.5px;
  white-space: pre;
  mask-image: linear-gradient(90deg, #000 20%, transparent 100%);
}

.product-window {
  position: relative;
  border-color: rgba(110, 192, 255, 0.23);
  background: rgba(7, 14, 29, 0.84);
  box-shadow: 0 34px 90px rgba(0, 4, 18, 0.6), 0 0 70px rgba(76, 100, 255, 0.11), inset 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(1500px) rotateY(-2.4deg) rotateX(1deg);
}

.product-window::after {
  content: "DJ CONTROL / LIVE";
  position: absolute;
  right: 18px;
  bottom: 11px;
  z-index: 4;
  color: rgba(111, 232, 255, 0.22);
  font: 7px/1 Consolas, monospace;
  letter-spacing: 1.3px;
}

.window-bar {
  border-color: rgba(120, 179, 255, 0.11);
  background: rgba(6, 11, 24, 0.95);
  color: #71819f;
}

.window-bar > b { color: #98a9c6; }
.window-dots i:nth-child(1) { background: #ff6c90; }
.window-dots i:nth-child(2) { background: #ffc866; }
.window-dots i:nth-child(3) { background: #45e0b4; }
.window-secure i { box-shadow: 0 0 10px var(--dj-green); }

.window-body { background: rgba(7, 13, 27, 0.96); }
.demo-sidebar {
  border-right: 1px solid rgba(123, 175, 255, 0.1);
  background: linear-gradient(180deg, rgba(13, 22, 44, 0.97), rgba(7, 12, 27, 0.97));
  color: #6f809f;
}
.demo-sidebar > b { color: #bff8ff; }
.demo-sidebar span.active {
  border: 1px solid rgba(91, 231, 255, 0.16);
  background: linear-gradient(90deg, rgba(91, 231, 255, 0.12), rgba(139, 108, 255, 0.1));
  color: #ebfbff;
}
.demo-main { background: radial-gradient(circle at 85% 4%, rgba(113, 82, 255, 0.1), transparent 18rem); }
.demo-heading strong { color: #e8f3ff; }
.demo-heading > span,
.demo-panel-head > span {
  border: 1px solid rgba(69, 224, 180, 0.14);
  background: rgba(69, 224, 180, 0.08);
  color: #68e9c3;
}
.status-grid article,
.delivery-card {
  border-color: rgba(124, 177, 255, 0.12);
  background: rgba(12, 21, 40, 0.82);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}
.status-grid b,
.delivery-card header b,
.delivery-detail b { color: #dce9f8; }
.status-grid small,
.delivery-card header small,
.delivery-detail small { color: #71809e; }
.delivery-steps::before { background: rgba(132, 174, 232, 0.14); }
.delivery-steps i { border-color: rgba(135, 175, 232, 0.19); background: #0b1428; color: #8493ad; }
.delivery-steps .done,
.delivery-steps .current { color: #c3d0e4; }
.delivery-detail { border-color: rgba(132, 174, 232, 0.1); }

.value-strip {
  border-color: var(--dj-line);
  background: linear-gradient(90deg, transparent, rgba(65, 124, 255, 0.035), transparent);
}
.value-strip article { border-color: var(--dj-line); }
.value-strip b { color: #edf7ff; }
.value-strip span { color: #7788a6; }
.neon-word,
.outline-word,
.scan-word {
  font: 800 11px/1.2 "SFMono-Regular", Consolas, monospace;
  letter-spacing: 1.9px;
}
.neon-word { color: #8ff2ff !important; text-shadow: 0 0 18px rgba(91, 231, 255, 0.62); }
.outline-word { color: transparent !important; -webkit-text-stroke: 1px rgba(164, 145, 255, 0.85); text-shadow: 0 0 20px rgba(139, 108, 255, 0.24); }
.scan-word {
  color: transparent !important;
  background: linear-gradient(90deg, #88f3ff, #e585ff, #88f3ff) 0 0 / 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: dj-text-flow 4s linear infinite;
}

.section { border-color: var(--dj-line); }
.section-label {
  color: #71e8ff;
  font-family: "SFMono-Regular", Consolas, monospace;
  text-shadow: 0 0 18px rgba(91, 231, 255, 0.22);
}
.section h2,
.cta h2 { color: #eff7ff; }
.section-heading > p:last-child,
.split-copy > p:not(.section-label),
.service-card > div > p:not(.section-label) { color: #8797b3; }

.section-title-gradient {
  color: transparent !important;
  background: linear-gradient(92deg, #f1f8ff 8%, #8eeeff 42%, #b28bff 76%, #f1f8ff 100%) 0 0 / 180% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dj-text-flow 7s linear infinite;
}
.section-title-outline { text-shadow: -1px 0 rgba(91, 231, 255, 0.35), 1px 0 rgba(230, 108, 255, 0.25), 0 0 34px rgba(75, 143, 255, 0.12); }
.section-title-scan {
  position: relative;
  color: #eaf4ff !important;
  background: linear-gradient(180deg, #f5fbff 0 46%, #6fe8ff 48% 53%, #f5fbff 55% 100%);
  background-size: 100% 210%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dj-title-scan 5.6s ease-in-out infinite;
}
.section-title-split { text-shadow: 2px 0 rgba(91, 231, 255, 0.38), -2px 0 rgba(230, 108, 255, 0.28), 0 16px 40px rgba(51, 90, 180, 0.17); }

.feature-card,
.role-grid article,
.workflow-list li,
.domain-demo,
.tracking-demo,
.faq-list details {
  border-color: rgba(124, 178, 255, 0.13);
  background: linear-gradient(145deg, rgba(13, 23, 44, 0.8), rgba(7, 13, 28, 0.9));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}
.feature-card:hover,
.role-grid article:hover,
.workflow-list li:hover {
  border-color: rgba(91, 231, 255, 0.29);
  box-shadow: 0 20px 55px rgba(0, 4, 18, 0.35), 0 0 30px rgba(91, 231, 255, 0.055), inset 0 1px rgba(255, 255, 255, 0.04);
}
.feature-card h3,
.role-grid h3,
.workflow-list h3 { color: #dfeeff; }
.feature-card p,
.role-grid p,
.workflow-list p { color: #7f90ad; }
.feature-icon {
  border: 1px solid rgba(91, 231, 255, 0.15);
  background: linear-gradient(145deg, rgba(91, 231, 255, 0.12), rgba(139, 108, 255, 0.11));
  color: #75ebff;
  box-shadow: 0 0 25px rgba(91, 231, 255, 0.06);
}
.role-grid article > span { color: #77eaff; font-family: Consolas, monospace; }
.workflow-list li > span {
  border: 1px solid rgba(91, 231, 255, 0.23);
  background: linear-gradient(135deg, rgba(91, 231, 255, 0.16), rgba(139, 108, 255, 0.2));
  color: #c9f8ff;
  box-shadow: 0 0 22px rgba(91, 231, 255, 0.08);
}
.check-list li { color: #94a4bf; }
.check-list li::before { border: 1px solid rgba(69, 224, 180, 0.15); background: rgba(69, 224, 180, 0.08); }

.domain-demo,
.tracking-demo { box-shadow: 0 24px 70px rgba(0, 4, 17, 0.42), 0 0 60px rgba(67, 118, 255, 0.06); }
.demo-panel-head b,
.domain-row b,
.provider-row b { color: #dce9fa; }
.demo-panel-head > span { border-color: rgba(129, 178, 244, 0.14); background: rgba(130, 166, 224, 0.06); color: #8393ad; }
.domain-row,
.provider-row {
  border-color: rgba(127, 178, 247, 0.12);
  background: rgba(10, 19, 38, 0.82);
}
.domain-row small,
.provider-row small { color: #7585a1; }
.type.fixed,
.provider-mark { background: rgba(91, 231, 255, 0.1); color: #70e9ff; }
.type.wildcard { background: rgba(139, 108, 255, 0.12); color: #b49cff; }
.provider-mark.server { background: rgba(69, 224, 180, 0.1); color: #63e5bf; }
.provider-mark.link { background: rgba(255, 200, 102, 0.1); color: #ffd079; }

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 199, 255, 0.19);
  background:
    radial-gradient(circle at 0 100%, rgba(45, 212, 255, 0.1), transparent 25rem),
    radial-gradient(circle at 100% 0, rgba(136, 84, 255, 0.17), transparent 27rem),
    #080f20;
  box-shadow: 0 28px 80px rgba(0, 3, 16, 0.45), inset 0 1px rgba(255, 255, 255, 0.04);
}
.service-card .section-label { color: #78eaff; }
.service-card > div > p:not(.section-label) { color: #8f9fba; }
.service-points span { border-color: rgba(130, 182, 255, 0.13); background: rgba(255, 255, 255, 0.025); color: #bdcbe0; }

.faq-list summary { color: #d6e5f7; }
.faq-list details p { color: #8595af; }
.faq-list summary span { color: #73eaff; }

.cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(102, 224, 255, 0.26);
  background:
    linear-gradient(120deg, rgba(24, 183, 223, 0.88), rgba(58, 93, 217, 0.92) 48%, rgba(126, 76, 221, 0.9)),
    #284fbe;
  box-shadow: 0 30px 75px rgba(27, 75, 194, 0.31), inset 0 1px rgba(255, 255, 255, 0.22);
}
.cta::before {
  content: "";
  position: absolute;
  inset: -70% -10%;
  background: repeating-linear-gradient(105deg, transparent 0 48px, rgba(255, 255, 255, 0.045) 49px 50px);
  animation: dj-cta-grid 15s linear infinite;
}
.cta > * { position: relative; z-index: 1; }
.cta small { color: #d5f9ff; }
.button-light { border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.94); color: #183a86; }
.button-light:hover { border-color: #fff; background: #fff; color: #183a86; }

footer { border-color: var(--dj-line); color: #8295b3; }
.footer-brand b { color: #d8e8fa; }
footer > a { color: #8ba2c0; }
footer > a:hover { color: #76eaff; }

[data-dj-light-bound="1"] { position: relative; isolation: isolate; }
[data-dj-light-bound="1"]::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--dj-light-x, -500px) var(--dj-light-y, -500px), rgba(91, 231, 255, 0.09), transparent 68%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
[data-dj-light-bound="1"]:hover::before { opacity: 1; }
[data-dj-light-bound="1"] > * { position: relative; z-index: 1; }

.dj-reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(5px);
  transition: opacity 0.72s ease var(--dj-delay, 0ms), transform 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) var(--dj-delay, 0ms), filter 0.72s ease var(--dj-delay, 0ms);
}
.dj-reveal.dj-visible { opacity: 1; transform: none; filter: none; }

@keyframes dj-mask-reveal {
  to { clip-path: inset(0 0 0 0); filter: blur(0); }
}
@keyframes dj-text-flow { to { background-position: -180% 0; } }
@keyframes dj-title-scan { 0%, 20% { background-position: 0 0; } 50%, 100% { background-position: 0 100%; } }
@keyframes dj-laser-sweep { from { transform: rotate(-3deg) scaleX(0.88); } to { transform: rotate(4deg) scaleX(1.04); } }
@keyframes dj-logo-scan { 0%, 62% { transform: rotate(24deg) translateX(-240%); } 82%, 100% { transform: rotate(24deg) translateX(480%); } }
@keyframes dj-hero-breathe { from { transform: scale(0.94) rotate(-6deg); opacity: 0.7; } to { transform: scale(1.08) rotate(8deg); opacity: 1; } }
@keyframes dj-cta-grid { to { transform: translateX(98px); } }

@media (max-width: 1040px) {
  .product-window { transform: none; }
  .hero-ascii { position: static; margin-top: 25px; }
}

@media (max-width: 820px) {
  .topbar { min-height: 66px; }
  .hero { min-height: 0; padding-top: 76px; }
  .dj-laser-flow { top: -7vh; right: -48vw; width: 140vw; opacity: 0.32; }
}

@media (max-width: 620px) {
  .hero { padding-top: 58px; }
  .hero h1 { font-size: clamp(39px, 11vw, 52px); letter-spacing: -2.6px; }
  .hero-ascii { grid-template-columns: 1fr; opacity: 0.72; }
  .hero-ascii pre { font-size: 6px; }
  .product-window::after { display: none; }
  .service-card { border-radius: 18px; }
  .dj-orbit-one { left: -31rem; }
}

@media (prefers-reduced-motion: reduce) {
  .dj-laser-flow::before,
  .dj-laser-flow::after,
  .dj-laser-flow i,
  .brand-mark::after,
  .masked-heading,
  .hero h1 .masked-heading-accent,
  .section-title-gradient,
  .section-title-scan,
  .scan-word,
  .cta::before,
  .hero::before {
    animation: none !important;
  }
  .masked-heading { clip-path: none; filter: none; }
  .dj-reveal { opacity: 1; transform: none; filter: none; }
}

.dj-save-data .dj-site .dj-laser-flow::before,
.dj-save-data .dj-site .dj-laser-flow::after,
.dj-save-data .dj-site .dj-laser-flow i,
.dj-save-data .dj-site .brand-mark::after,
.dj-save-data .dj-site .masked-heading,
.dj-save-data .dj-site .hero h1 .masked-heading-accent,
.dj-save-data .dj-site .section-title-gradient,
.dj-save-data .dj-site .section-title-scan,
.dj-save-data .dj-site .scan-word,
.dj-save-data .dj-site .cta::before,
.dj-save-data .dj-site .hero::before { animation: none !important; }
.dj-save-data .dj-site .masked-heading { clip-path: none; filter: none; }
.dj-save-data .dj-site .dj-reveal { opacity: 1; transform: none; filter: none; }

@media (forced-colors: active) {
  .dj-site .dj-ambient { display: none; }
  .dj-site .masked-heading-accent,
  .dj-site .outline-word,
  .dj-site .scan-word,
  .dj-site .section-title-gradient,
  .dj-site .section-title-scan {
    color: CanvasText !important;
    background: none !important;
    -webkit-text-fill-color: CanvasText;
    -webkit-text-stroke: 0;
    text-shadow: none;
  }
}
