/* 星轨智造 — 官方网站 */
:root {
  --ink: #0b1220;
  --ink-soft: #1a2438;
  --steel: #2a3a55;
  --mist: #e8eef7;
  --paper: #f4f7fb;
  --white: #ffffff;
  --muted: #5c6b82;
  --line: rgba(15, 28, 48, 0.1);
  --brand: #6b3fd4;
  --brand-deep: #4f28a8;
  --brand-glow: rgba(107, 63, 212, 0.35);
  --accent: #3d8bfd;
  --ok: #1f9d6a;
  --shadow: 0 18px 50px rgba(11, 18, 32, 0.12);
  --radius: 4px;
  --nav-h: 76px;
  --font-display: "Sora", "Noto Sans SC", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

@media (min-width: 1600px) {
  .container {
    width: min(1440px, calc(100% - 80px));
  }
}

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-solid {
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header.is-light {
  background: rgba(244, 247, 251, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-dark {
  display: none;
}

.site-header.is-light .logo-light {
  display: none;
}

.site-header.is-light .logo-dark {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.site-header.is-light .nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.site-header.is-light .nav-links a:hover,
.site-header.is-light .nav-links a.is-active {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  place-items: center;
}

.site-header.is-light .nav-toggle {
  border-color: var(--line);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: 0.25s ease;
}

.site-header.is-light .nav-toggle span {
  background: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--brand-glow);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--steel);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(15, 28, 48, 0.2);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 72px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(107, 63, 212, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(61, 139, 253, 0.18), transparent 50%),
    linear-gradient(165deg, #070b14 0%, #121c31 45%, #0d1526 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
  animation: gridDrift 28s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  top: 12%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 60px rgba(255, 255, 255, 0.02);
  pointer-events: none;
  animation: orbitPulse 8s ease-in-out infinite;
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(72px); }
}

@keyframes orbitPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  width: min(1440px, calc(100% - 48px));
}

@media (min-width: 1600px) {
  .hero-layout {
    width: min(1560px, calc(100% - 80px));
  }
}

.hero-inner {
  max-width: none;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.9s ease 0.1s forwards;
}

.hero-title {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.9s ease 0.25s forwards;
}

.hero-title-pre {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.hero-title-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28em 0.55em;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-word {
  white-space: nowrap;
}

.hero-word-accent {
  background: linear-gradient(135deg, #fff 30%, #a8c8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sep {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(61, 139, 253, 0.75);
}

.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255, 255, 255, 0.68);
  max-width: 42em;
  line-height: 1.75;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.9s ease 0.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.9s ease 0.55s forwards;
}

.hero-aside {
  position: relative;
  min-height: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.9s ease 0.35s forwards;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orbit-ring {
  position: absolute;
  top: 50%;
  left: 55%;
  width: min(340px, 80%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 48px rgba(255, 255, 255, 0.015);
}

.hero-orbit-ring--inner {
  width: min(220px, 55%);
  border-color: rgba(107, 63, 212, 0.25);
  box-shadow: inset 0 0 40px rgba(107, 63, 212, 0.08);
}

.hero-pill {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
  max-width: 220px;
}

.hero-pill strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.hero-pill--1 {
  top: 8%;
  right: 8%;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-pill--2 {
  top: 42%;
  left: 0;
  animation: heroFloat 6s ease-in-out 1.5s infinite;
}

.hero-pill--3 {
  bottom: 6%;
  right: 12%;
  animation: heroFloat 6s ease-in-out 3s infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Promo film ---------- */
.promo-film-frame {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #05080f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.promo-film-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #05080f;
}

.hero-film {
  width: 100%;
}

@media (max-width: 760px) {
  .promo-film-frame {
    border-radius: 10px;
  }
}

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 64px;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 80% at 85% 0%, rgba(107, 63, 212, 0.3), transparent 55%),
    linear-gradient(160deg, #0a1020, #152038 70%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 36em;
  font-size: 1.05rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-mist {
  background: var(--mist);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.section-dark .eyebrow {
  color: #b79cff;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Feature strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.trust-item {
  background: var(--ink-soft);
  padding: 28px 24px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

/* ---------- Capability grid ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.cap-item {
  padding-top: 20px;
  border-top: 2px solid var(--brand);
}

.cap-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  margin-bottom: 10px;
}

.cap-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-grid .cap-item a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Industry ---------- */
.industry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.industry-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.industry-item:hover {
  transform: translateX(6px);
}

.industry-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}

.industry-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.industry-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.industry-item .tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--brand-deep);
  font-weight: 600;
}

/* ---------- Solutions modules ---------- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.module {
  padding: 32px 28px;
  background: var(--white);
  border-left: 3px solid var(--brand);
  box-shadow: var(--shadow);
}

.module h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.module p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.module ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.module ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* ---------- Timeline / about ---------- */
.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--line);
  margin-left: 8px;
}

.timeline-item {
  position: relative;
  padding: 0 0 36px 32px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--paper);
}

.timeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.value-list {
  display: grid;
  gap: 20px;
}

.value-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.value-item h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.value-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Results ---------- */
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.result-item {
  text-align: center;
  padding: 28px 16px;
}

.result-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.result-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(107, 63, 212, 0.35), transparent 55%),
    linear-gradient(120deg, #0b1220, #1a1630 60%, #0f1a30);
  color: #fff;
  overflow: hidden;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 28em;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  border-bottom: 1px solid var(--line);
}

.contact-person {
  min-width: 0;
}

.contact-person:first-child {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.contact-person .contact-row:last-child {
  border-bottom: none;
}

.contact-row {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.contact-row dd {
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.form-success {
  display: none;
  padding: 16px;
  background: rgba(31, 157, 106, 0.1);
  color: var(--ok);
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-weight: 600;
}

.form-success.is-show {
  display: block;
}

.form-error {
  display: none;
  padding: 16px;
  background: rgba(220, 53, 69, 0.08);
  color: #c0392b;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-weight: 600;
}

.form-error.is-show {
  display: block;
}

#contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ---------- Industry detail blocks ---------- */
.detail-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.detail-block:last-child {
  border-bottom: 0;
}

.detail-side h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.detail-side .pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.detail-side p {
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-body h4 {
  font-size: 0.95rem;
  margin: 18px 0 10px;
  color: var(--ink-soft);
}

.detail-body h4:first-child {
  margin-top: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 12px;
  background: var(--mist);
  font-size: 13px;
  color: var(--ink-soft);
  border-radius: 2px;
}

/* ---------- Industry deep dive ---------- */
.industry-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(244, 247, 251, 0.96);
  backdrop-filter: blur(10px);
}

.industry-jump a {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: 0.2s ease;
}

.industry-jump a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.industry-deep {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.industry-deep.industry-single {
  padding: 0;
  border-bottom: 0;
}

.industry-deep.industry-single .industry-deep-head h2 {
  display: none;
}

.page-hero-compact {
  padding: calc(var(--nav-h) + 48px) 0 32px;
}

.page-hero-compact h1 {
  margin-top: 8px;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.industry-deep:last-of-type {
  border-bottom: 0;
}

.industry-deep-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.industry-deep-head .pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.industry-deep-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.industry-deep-head .lead {
  color: var(--muted);
  font-size: 1.02rem;
}

.industry-deep-head .position {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(107, 63, 212, 0.06);
  border-left: 3px solid var(--brand);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.pain-item {
  background: var(--white);
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.pain-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.pain-item p {
  color: var(--muted);
  font-size: 0.88rem;
}

.industry-deep h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 8px 0 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.process-card {
  background: var(--white);
  padding: 20px 20px 18px;
  border-top: 3px solid var(--brand);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.05);
}

.process-card h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.process-card .pain {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.process-card .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 6px;
}

.process-card ul {
  list-style: none;
}

.process-card li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.process-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.sell-box {
  background: var(--mist);
  padding: 24px 26px;
}

.sell-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.sell-box ol {
  padding-left: 1.2em;
  color: var(--ink-soft);
}

.sell-box li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.sell-box li strong {
  color: var(--ink);
}

/* ---------- Product / industry UI shots ---------- */
.ui-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 8px 0 36px;
}

.ui-gallery.ui-gallery-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ui-shot {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.06);
}

.ui-shot img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  background: #0f172a;
}

.ui-shot figcaption {
  padding: 12px 16px 14px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  border-top: 1px solid var(--line);
}

.ui-shot figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.ui-shot-mobile img {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #1a1d24;
}

.agent-block {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 0 0 40px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.agent-block:nth-of-type(even) {
  grid-template-columns: 1fr 1.15fr;
}

.agent-block:nth-of-type(even) .agent-block-media {
  order: 2;
}

.agent-block-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.agent-block-body .agent-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-deep);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.agent-block-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.agent-block-body ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.agent-block-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.agent-block-media {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0f172a;
}

.agent-block-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.industry-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 28px;
}

.industry-shots .ui-shot figcaption {
  padding: 10px 12px 12px;
  font-size: 0.82rem;
}

@media (max-width: 960px) {
  .pain-grid,
  .process-grid,
  .ui-gallery,
  .ui-gallery.ui-gallery-3,
  .industry-shots,
  .agent-block,
  .agent-block:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .agent-block:nth-of-type(even) .agent-block-media {
    order: 0;
  }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #070b14;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 28em;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .trust-strip,
  .cap-grid,
  .result-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industry-list,
  .module-grid,
  .about-grid,
  .contact-grid,
  .detail-block {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    width: min(1280px, calc(100% - 40px));
  }

  .hero-aside {
    min-height: 0;
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 28px);
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: rgba(11, 18, 32, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.is-light .nav-links {
    background: rgba(244, 247, 251, 0.98);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-header.is-light .nav-links a {
    border-bottom-color: var(--line);
  }

  .nav-cta {
    margin-top: 12px;
    width: 100%;
  }

  .contact-people {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-person:first-child {
    padding-right: 0;
    border-right: none;
  }

  .contact-person:not(:last-child) .contact-row:last-child {
    border-bottom: 1px solid var(--line);
  }

  .trust-strip,
  .cap-grid,
  .result-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-start;
    min-height: auto;
    padding: calc(var(--nav-h) + 28px) 0 48px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    width: calc(100% - 28px);
  }

  .hero-eyebrow {
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    margin-bottom: 12px;
  }

  .hero-aside {
    min-height: 0;
    max-width: none;
    margin-inline: 0;
    width: 100%;
  }

  .hero-orbit-ring {
    left: 50%;
    width: min(280px, 78%);
  }

  .hero-orbit-ring--inner {
    width: min(180px, 50%);
  }

  .hero-pill {
    max-width: min(180px, 48vw);
    padding: 11px 13px;
    font-size: 0.74rem;
  }

  .hero-pill strong {
    font-size: 0.95rem;
  }

  .hero-pill--1 { top: 2%; right: 0; }
  .hero-pill--2 { top: 38%; left: 0; }
  .hero-pill--3 { bottom: 2%; right: 2%; }

  .hero-title {
    margin-bottom: 14px;
  }

  .hero-title-main {
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
    gap: 0.18em 0.4em;
  }

  .hero-title-pre {
    font-size: clamp(1.2rem, 5vw, 1.4rem);
    margin-bottom: 8px;
  }

  .hero p.lead {
    font-size: 0.98rem;
    max-width: none;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 56px 0;
  }

  .industry-item {
    grid-template-columns: 64px 1fr;
  }
}

@media (max-width: 420px) {
  .hero-title-main {
    font-size: 1.75rem;
  }

  .hero-aside {
    min-height: 0;
  }

  .hero-pill {
    max-width: 46vw;
    padding: 10px 11px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
