:root {
  color-scheme: light;
  --site-ink: #171a1f;
  --site-muted: #626c7a;
  --site-subtle: #8b95a3;
  --site-paper: #f5f7fa;
  --site-white: #ffffff;
  --site-line: #d8dee8;
  --site-dark: #080a0d;
  --site-dark-soft: #111419;
  --site-blue: #2d79f3;
  --site-blue-hover: #1f68df;
  --site-orange: #f05a3c;
  --site-success: #18794e;
  --site-danger: #b42318;
  --site-content: 1240px;
  --site-reading: 760px;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--site-dark);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  letter-spacing: 0;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--site-ink);
  background: var(--site-paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a,
button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  border-radius: 0;
}

img,
video,
canvas {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--site-blue);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(82, 148, 255, 0.92);
  outline-offset: 3px;
}

.site-container {
  width: min(calc(100% - 48px), var(--site-content));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 80;
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #f7f9fc;
  background: rgba(5, 7, 9, 0.54);
  backdrop-filter: blur(16px);
}

.site-header--inner {
  position: sticky;
  top: 0;
  background: rgba(8, 10, 13, 0.94);
}

.site-header--home {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  background: rgba(5, 7, 9, 0.86);
}

.site-nav {
  position: relative;
  width: min(calc(100% - 48px), var(--site-content));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-size: 18px;
  font-weight: 750;
}

.site-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.site-nav__links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 0;
  color: #d6dbe3;
  font-size: 14px;
}

.site-nav__links a,
.site-nav__login,
.site-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
}

.site-nav__links a:hover,
.site-nav__login:hover,
.site-menu a:hover {
  color: #ffffff;
}

.site-nav__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.site-nav__login {
  color: #d6dbe3;
}

.site-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.2;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-button--primary {
  color: #ffffff;
  background: var(--site-blue);
}

.site-button--primary:hover {
  background: var(--site-blue-hover);
}

.site-button--secondary {
  border-color: #b9c4d1;
  color: #243247;
  background: #ffffff;
}

.site-button--secondary:hover {
  border-color: #8796a9;
  background: #f5f7fa;
}

.site-button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #f7f9fc;
  background: rgba(8, 10, 13, 0.32);
}

.site-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.site-button--light {
  border-color: #bdc7d4;
  color: #253143;
  background: #ffffff;
}

.site-button--light:hover {
  border-color: #8f9baa;
  background: #f5f7fa;
}

.site-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.site-menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.site-menu-button img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

.site-menu {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 18px 24px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #e7eaf0;
  background: rgba(8, 10, 13, 0.98);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.28);
}

.site-menu__links {
  display: grid;
  gap: 2px;
}

.site-menu__links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-menu__actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.phoenix-story {
  position: relative;
  height: 210svh;
  min-height: 1280px;
  color: #f7f9fc;
  background: var(--site-dark);
}

.phoenix-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 720px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 72px;
  overflow: hidden;
}

.phoenix-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #080a0d;
}

.phoenix-media,
.phoenix-media picture,
.phoenix-media img,
.phoenix-media video,
.phoenix-media canvas,
.phoenix-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phoenix-media img,
.phoenix-media video {
  object-fit: cover;
  object-position: center center;
}

.phoenix-media picture {
  z-index: 0;
}

.phoenix-media [data-phoenix-static] {
  opacity: 0;
  visibility: hidden;
}

.phoenix-story[data-motion-mode="static"] [data-phoenix-start] {
  opacity: 0;
  visibility: hidden;
}

.phoenix-story[data-motion-mode="static"] [data-phoenix-static] {
  opacity: 1;
  visibility: visible;
}

.phoenix-media video {
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}

.phoenix-story[data-video-ready="true"] .phoenix-media video {
  opacity: 1;
}

.phoenix-media canvas {
  z-index: 2;
  pointer-events: none;
}

.phoenix-shade {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.99) 0%, rgba(3, 5, 7, 0.91) 24%, rgba(3, 5, 7, 0.55) 44%, rgba(3, 5, 7, 0.05) 76%),
    linear-gradient(180deg, rgba(2, 3, 5, 0.52) 0%, rgba(2, 3, 5, 0.04) 34%, rgba(2, 3, 5, 0.58) 100%);
}

.phoenix-hero__content,
.phoenix-stage {
  position: relative;
  z-index: 6;
}

.phoenix-hero__content {
  width: min(calc(100% - 48px), var(--site-content));
  height: 100%;
  margin-inline: auto;
  padding-top: 76px;
  display: flex;
  align-items: center;
}

.phoenix-copy {
  width: min(552px, 47%);
  padding-bottom: 26px;
}

.hero-eyebrow,
.page-eyebrow,
.section-kicker {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.hero-eyebrow {
  margin-bottom: 20px;
  color: #d7dce4;
}

.hero-eyebrow::before,
.page-eyebrow::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  background: var(--site-orange);
}

.phoenix-copy h1 {
  max-width: 100%;
  margin: 0;
  color: #f7f9fc;
  font-size: 72px;
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-value {
  max-width: 520px;
  margin: 22px 0 0;
  color: #f1f3f6;
  font-size: 28px;
  font-weight: 650;
  line-height: 1.38;
}

.hero-value__line {
  display: inline;
}

.hero-description {
  max-width: 510px;
  margin: 18px 0 0;
  color: #bcc3cd;
  font-size: 17px;
  line-height: 1.75;
}

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

.hero-actions .site-button {
  min-width: 132px;
}

.phoenix-stage {
  position: absolute;
  right: max(24px, calc((100vw - var(--site-content)) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 243, 247, 0.7);
  font-size: 12px;
}

.phoenix-stage__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--site-orange);
  box-shadow: 0 0 14px rgba(240, 90, 60, 0.72);
}

.capability-peek {
  position: relative;
  z-index: 8;
  min-height: 72px;
  color: #4d596a;
  background: var(--site-paper);
}

.capability-peek__inner {
  width: min(calc(100% - 48px), var(--site-content));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}

.capability-peek img {
  width: 18px;
  height: 18px;
  opacity: 0.58;
}

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

#capabilities,
#scenarios {
  scroll-margin-top: 76px;
}

.home-section--paper {
  background: var(--site-paper);
}

.home-section--white {
  background: var(--site-white);
}

.section-heading {
  max-width: 760px;
}

.section-kicker {
  color: #687386;
}

.section-heading h2 {
  margin: 16px 0 0;
  color: var(--site-ink);
  font-size: 44px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--site-muted);
  font-size: 17px;
  line-height: 1.75;
}

.capability-list {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
}

.capability-entry {
  min-height: 220px;
  padding: 30px 36px 30px 0;
  transition: background 180ms ease;
}

.capability-entry + .capability-entry {
  padding-left: 36px;
  border-left: 1px solid var(--site-line);
}

.capability-entry:hover,
.capability-entry.is-active {
  background: rgba(45, 121, 243, 0.045);
}

.capability-entry__number,
.scenario-row__number {
  display: block;
  color: var(--site-orange);
  font-size: 12px;
  font-weight: 750;
}

.capability-entry h3 {
  margin: 34px 0 0;
  font-size: 23px;
  line-height: 1.35;
}

.capability-entry p {
  margin: 12px 0 0;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.7;
}

.capability-entry a {
  min-height: 44px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  color: #1f65c5;
  font-size: 14px;
  font-weight: 650;
}

.scenario-list {
  margin-top: 54px;
  border-top: 1px solid var(--site-line);
}

.scenario-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.8fr) minmax(300px, 1.2fr);
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--site-line);
  transition: color 180ms ease, background 180ms ease;
}

.scenario-row:hover,
.scenario-row.is-active {
  background: #fafbfc;
}

.scenario-row h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.scenario-row p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.7;
}

.enterprise-band {
  padding: 104px 0;
  color: #f7f9fc;
  background: #111419;
}

.enterprise-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.enterprise-band .section-kicker {
  color: #aab3c0;
}

.enterprise-band h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.enterprise-band p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #aeb6c2;
  font-size: 16px;
  line-height: 1.75;
}

.site-footer {
  color: #d3d8df;
  background: #080a0d;
}

.site-footer__main {
  padding: 68px 0 54px;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 48px;
}

.site-footer__brand p {
  max-width: 380px;
  margin: 20px 0 0;
  color: #929caa;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer__group strong {
  display: block;
  margin-bottom: 14px;
  color: #f4f6f8;
  font-size: 14px;
}

.site-footer__group a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #99a3b0;
  font-size: 13px;
  transition: color 160ms ease;
}

.site-footer__group a:hover {
  color: #ffffff;
}

.site-footer__legal {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: #7f8996;
  font-size: 12px;
  line-height: 1.8;
}

.site-footer__records {
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 9px;
}

.site-footer__records a:hover {
  color: #cbd2db;
}

.security-record {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.security-record img {
  width: 16px;
  height: 17px;
  object-fit: contain;
}

.inner-main {
  background: var(--site-paper);
}

.page-hero {
  padding: 98px 0 90px;
  color: #f6f8fb;
  background: #111419;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 64px;
}

.page-eyebrow {
  color: #c9d0d9;
}

.page-hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 56px;
  font-weight: 730;
  line-height: 1.18;
  letter-spacing: 0;
}

.page-hero__lead {
  margin: 0;
  color: #aeb7c3;
  font-size: 17px;
  line-height: 1.8;
}

.content-band {
  padding: 94px 0;
  background: var(--site-paper);
}

.content-band--white {
  background: var(--site-white);
}

.content-band--dark {
  color: #f6f8fb;
  background: #15191f;
}

.content-heading {
  max-width: 760px;
}

.content-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0;
}

.content-heading p {
  margin: 16px 0 0;
  color: var(--site-muted);
  font-size: 16px;
  line-height: 1.78;
}

.content-band--dark .content-heading p {
  color: #aeb7c3;
}

.content-band--dark .content-heading h2 {
  color: #f6f8fb;
}

.line-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--site-line);
}

.line-item {
  min-height: 190px;
  padding: 28px 34px 30px 0;
  border-bottom: 1px solid var(--site-line);
}

.line-item[id] {
  scroll-margin-top: 96px;
}

.line-item:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--site-line);
}

.line-item h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

.line-item p {
  margin: 12px 0 0;
  color: var(--site-muted);
  line-height: 1.75;
}

.line-item a {
  min-height: 44px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  color: #1f65c5;
  font-size: 14px;
  font-weight: 650;
}

.detail-list {
  max-width: 940px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--site-line);
}

.detail-list li {
  min-height: 88px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  border-bottom: 1px solid var(--site-line);
}

.detail-list strong {
  color: #2a3443;
}

.detail-list span {
  color: var(--site-muted);
  line-height: 1.72;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 72px;
  align-items: start;
}

.contact-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--site-line);
}

.contact-list li {
  min-height: 74px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--site-line);
}

.contact-list span {
  color: var(--site-muted);
  font-size: 14px;
}

.contact-list strong,
.contact-list a {
  overflow-wrap: anywhere;
  font-size: 17px;
}

.license-panel {
  padding: 34px;
  border: 1px solid #cdd4de;
  border-radius: 8px;
  background: #ffffff;
}

.license-panel h2,
.form-panel h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.35;
}

.license-panel p {
  margin: 14px 0 0;
  color: var(--site-muted);
  line-height: 1.75;
}

.license-panel .detail-list {
  margin-top: 24px;
}

.license-panel .detail-list li {
  grid-template-columns: 150px minmax(0, 1fr);
}

.portal-layout {
  min-height: calc(100svh - 76px);
  padding: 72px 0 96px;
  background: var(--site-paper);
}

.portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 72px;
  align-items: start;
}

.portal-intro {
  padding-top: 24px;
}

.portal-intro h1 {
  margin: 20px 0 0;
  font-size: 48px;
  line-height: 1.18;
  letter-spacing: 0;
}

.portal-intro > p {
  margin: 18px 0 0;
  color: var(--site-muted);
  font-size: 16px;
  line-height: 1.8;
}

.portal-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--site-line);
}

.portal-steps li {
  padding: 20px 0;
  border-bottom: 1px solid var(--site-line);
}

.portal-steps strong {
  display: block;
  margin-bottom: 7px;
}

.portal-steps span {
  color: var(--site-muted);
  line-height: 1.7;
}

.form-panel {
  padding: 34px;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(26, 35, 49, 0.08);
}

.site-form {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

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

.site-form label {
  display: grid;
  gap: 8px;
  color: #394455;
  font-size: 14px;
  font-weight: 650;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #bdc7d4;
  border-radius: 6px;
  color: #172033;
  background: #ffffff;
  outline: none;
}

.site-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
  line-height: 1.65;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: var(--site-blue);
  box-shadow: 0 0 0 3px rgba(45, 121, 243, 0.12);
}

.verification-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  gap: 10px;
}

.site-form__agree {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--site-muted) !important;
  font-weight: 500 !important;
  line-height: 1.65;
}

.site-form__agree input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.site-form__agree a,
.portal-link {
  color: #1f65c5;
  font-weight: 650;
}

.form-message,
.field-status {
  min-height: 22px;
  margin: 0;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.6;
}

.form-message.is-error,
.field-status.is-error {
  color: var(--site-danger);
}

.form-message.is-ok,
.field-status.is-ok {
  color: var(--site-success);
}

.form-help {
  margin: 18px 0 0;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.75;
}

.policy-layout {
  padding: 76px 0 100px;
  background: var(--site-white);
}

.policy-header {
  max-width: var(--site-reading);
}

.policy-header h1 {
  margin: 20px 0 0;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0;
}

.policy-header p {
  margin: 16px 0 0;
  color: var(--site-muted);
  line-height: 1.75;
}

.policy-content {
  max-width: var(--site-reading);
  margin-top: 52px;
}

.policy-content section {
  padding: 34px 0;
  border-top: 1px solid var(--site-line);
}

.policy-content h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
}

.policy-content p,
.policy-content li {
  color: #4e5968;
  line-height: 1.85;
}

.policy-content ul,
.policy-content ol {
  padding-left: 22px;
}

body.legal-page {
  background: var(--site-white);
}

.legal-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--site-white);
}

.legal-document {
  width: min(calc(100% - 48px), 920px);
  margin-inline: auto;
  padding: 92px 0 112px;
  flex: 1 0 auto;
}

.legal-document h1 {
  max-width: 760px;
  margin: 0;
  color: var(--site-ink);
  font-size: 48px;
  font-weight: 730;
  line-height: 1.2;
  letter-spacing: 0;
}

.legal-document .meta {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--site-subtle);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.legal-document > h2 {
  max-width: 760px;
  margin: 46px 0 14px;
  padding-top: 32px;
  border-top: 1px solid var(--site-line);
  color: #242a33;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.45;
}

.legal-document p,
.legal-document li {
  color: #4e5968;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.88;
}

.legal-document > p,
.legal-document > ul,
.legal-document > ol {
  max-width: 780px;
}

.legal-document ul,
.legal-document ol {
  margin: 0;
  padding-left: 23px;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document a:not(.site-brand):not(.site-button) {
  color: #1f65c5;
  text-decoration: underline;
  text-decoration-color: rgba(31, 101, 197, 0.34);
  text-underline-offset: 3px;
}

.legal-document .contact-box {
  max-width: 860px;
  margin-top: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
  color: #2a3443;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.legal-document .contact-box span {
  overflow-wrap: anywhere;
}

.legal-document--sections > .hero {
  padding: 0 0 48px;
  border: 0;
  border-bottom: 1px solid var(--site-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-document--sections .eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #687386;
  font-size: 13px;
  font-weight: 700;
}

.legal-document--sections .eyebrow::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  background: var(--site-orange);
}

.legal-document--sections .lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--site-muted);
  font-size: 17px;
  line-height: 1.82;
}

.legal-document--sections > .section {
  margin: 0;
  padding: 38px 0;
  border: 0;
  border-bottom: 1px solid var(--site-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-document--sections > .section h2 {
  max-width: 760px;
  margin: 0 0 14px;
  color: #242a33;
  font-size: 23px;
  line-height: 1.45;
}

.legal-document--sections > .section > p {
  max-width: 780px;
  margin: 0;
}

.legal-document--sections .grid {
  max-width: 860px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
}

.legal-document--sections .item {
  min-width: 0;
  padding: 24px 28px 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.legal-document--sections .item + .item {
  padding-left: 28px;
  border-left: 1px solid var(--site-line);
}

.legal-document--sections .item h3 {
  margin: 0;
  color: #2a3443;
  font-size: 18px;
  line-height: 1.45;
}

.legal-document--sections .item p {
  margin: 10px 0 0;
}

@media (max-width: 960px) {
  .site-nav__links,
  .site-nav__login,
  .site-nav__actions > .site-button {
    display: none;
  }

  .site-nav__actions {
    margin-left: auto;
  }

  .site-menu-button {
    display: inline-flex;
  }

  .phoenix-copy {
    width: min(520px, 55%);
  }

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

  .capability-entry {
    min-height: 150px;
    padding: 26px 0;
  }

  .capability-entry + .capability-entry {
    padding-left: 0;
    border-top: 1px solid var(--site-line);
    border-left: 0;
  }

  .capability-entry h3 {
    margin-top: 18px;
  }

  .scenario-row {
    grid-template-columns: 70px minmax(180px, 0.8fr) minmax(260px, 1.2fr);
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero__grid,
  .split-layout,
  .portal-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portal-intro {
    padding-top: 0;
  }
}

@media (max-width: 840px) {
  .site-container,
  .site-nav,
  .phoenix-hero__content,
  .capability-peek__inner {
    width: calc(100% - 36px);
  }

  .site-header,
  .site-nav {
    min-height: 68px;
  }

  #capabilities,
  #scenarios {
    scroll-margin-top: 68px;
  }

  .line-item[id] {
    scroll-margin-top: 84px;
  }

  .site-menu {
    top: 68px;
  }

  .phoenix-story {
    height: 100svh;
    min-height: 720px;
  }

  .phoenix-pin {
    position: relative;
    height: 100svh;
    min-height: 720px;
    grid-template-rows: minmax(0, 1fr) 76px;
  }

  .phoenix-media video,
  .phoenix-media canvas {
    display: none;
  }

  .phoenix-media img {
    object-position: 68% center;
  }

  .phoenix-shade {
    background:
      linear-gradient(180deg, rgba(3, 5, 7, 0.72) 0%, rgba(3, 5, 7, 0.34) 34%, rgba(3, 5, 7, 0.9) 100%),
      linear-gradient(90deg, rgba(3, 5, 7, 0.94) 0%, rgba(3, 5, 7, 0.62) 62%, rgba(3, 5, 7, 0.16) 100%);
  }

  .phoenix-hero__content {
    height: 100%;
    padding-top: 68px;
    align-items: flex-end;
  }

  .phoenix-copy {
    width: 100%;
    padding: 0 0 58px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .phoenix-copy h1 {
    font-size: 48px;
    line-height: 1.04;
  }

  .hero-value {
    max-width: 360px;
    margin-top: 16px;
    font-size: 23px;
    line-height: 1.4;
  }

  .hero-value__line {
    display: block;
  }

  .hero-description {
    max-width: 350px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .site-button {
    min-width: 0;
    padding-inline: 14px;
  }

  .phoenix-stage {
    display: none;
  }

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

  .section-heading h2 {
    font-size: 36px;
  }

  .scenario-row {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
  }

  .scenario-row p {
    grid-column: 2;
  }

  .enterprise-band {
    padding: 82px 0;
  }

  .enterprise-band__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .enterprise-band h2 {
    font-size: 34px;
  }

  .site-footer__legal {
    flex-direction: column;
  }

  .site-footer__records {
    justify-content: flex-start;
  }

  .page-hero {
    padding: 74px 0 66px;
  }

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

  .content-band {
    padding: 74px 0;
  }

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

  .line-item,
  .line-item:nth-child(even) {
    min-height: 0;
    padding: 26px 0;
    border-left: 0;
  }

  .portal-layout {
    padding: 58px 0 80px;
  }

  .portal-intro h1 {
    font-size: 40px;
  }

  .policy-layout {
    padding: 62px 0 82px;
  }

  .policy-header h1 {
    font-size: 40px;
  }

  .legal-document {
    width: calc(100% - 36px);
    padding: 72px 0 92px;
  }

  .legal-document h1 {
    font-size: 40px;
  }
}

@media (max-width: 620px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-list li,
  .license-panel .detail-list li,
  .contact-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-form__row,
  .verification-row {
    grid-template-columns: 1fr;
  }

  .verification-row .site-button {
    width: 100%;
  }

  .form-panel,
  .license-panel {
    padding: 24px 20px;
  }

  .legal-document {
    padding: 58px 0 76px;
  }

  .legal-document h1 {
    font-size: 36px;
  }

  .legal-document > h2 {
    margin-top: 38px;
    padding-top: 28px;
    font-size: 21px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 16px;
    line-height: 1.82;
  }

  .legal-document .contact-box,
  .legal-document--sections .grid {
    grid-template-columns: 1fr;
  }

  .legal-document--sections .item {
    padding: 22px 0;
  }

  .legal-document--sections .item + .item {
    padding-left: 0;
    border-top: 1px solid var(--site-line);
    border-left: 0;
  }

  .legal-document--sections > .hero {
    padding-bottom: 38px;
  }

  .legal-document--sections > .section {
    padding: 32px 0;
  }

  .legal-document--sections > .section h2 {
    font-size: 21px;
  }
}

@media (max-width: 430px) {
  .site-container,
  .site-nav,
  .phoenix-hero__content,
  .capability-peek__inner {
    width: calc(100% - 36px);
  }

  .site-brand {
    font-size: 17px;
  }

  .site-brand img {
    width: 34px;
    height: 34px;
  }

  .phoenix-story,
  .phoenix-pin {
    min-height: 700px;
  }

  .hero-description {
    font-size: 15px;
  }

  .section-heading h2,
  .content-heading h2 {
    font-size: 32px;
  }

  .page-hero h1,
  .portal-intro h1,
  .policy-header h1 {
    font-size: 36px;
  }

  .site-menu__actions {
    grid-template-columns: 1fr;
  }
}

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

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

  .phoenix-story {
    height: 100svh;
    min-height: 720px;
  }

  .phoenix-pin {
    position: relative;
  }

  .phoenix-media video,
  .phoenix-media canvas {
    display: none;
  }
}
