:root {
  /* 站管家：深蓝建站 · 明亮可信 */
  --glow: #60a5fa;
  --glow-soft: rgba(96, 165, 250, 0.35);
  --accent: #2563eb;
  --accent-bright: #3b82f6;
  --steel: #1e4d8c;
  --primary: #1f4b7a;
  --primary-deep: #163a5f;
  --primary-mid: #2a6aa0;
  --ink: #0f2744;
  --slate: #1e3a5f;
  --text: #14324a;
  --text-soft: #5b7388;
  --text-on-dark: #f0f9ff;
  --text-on-dark-soft: rgba(224, 242, 254, 0.88);
  --surface: #f2f6fb;
  --surface-alt: #e8f0f8;
  --white: #ffffff;
  --line: rgba(31, 75, 122, 0.12);
  --line-strong: rgba(31, 75, 122, 0.22);
  --chip-bg: rgba(255, 255, 255, 0.72);
  --chip-border: rgba(31, 75, 122, 0.2);
  --shadow:
    0 4px 6px rgba(22, 58, 95, 0.04),
    0 22px 50px rgba(22, 58, 95, 0.1);
  --shadow-soft:
    0 2px 4px rgba(22, 58, 95, 0.03),
    0 12px 28px rgba(22, 58, 95, 0.07);
  --shadow-glass:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 40px rgba(22, 58, 95, 0.1);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1240px;
  --font-display: "Sora", "Noto Sans SC", "PingFang SC", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(96, 165, 250, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(31, 75, 122, 0.07), transparent 45%),
    var(--surface);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.22;
  font-weight: 700;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-deep), var(--glow));
  border-radius: 2px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: none;
}

.section-head > p,
.section-head-center > p:last-child {
  max-width: 42ch;
  color: var(--text-soft);
  font-size: 15px;
}

.section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head-center h2 {
  max-width: none;
}

.lead {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(12px);
}

.depth-card {
  box-shadow: var(--shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 248, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header .container {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--primary-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.header-contact {
  position: relative;
}

.header-contact-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, var(--surface-alt));
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.header-contact-trigger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-qr-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.header-contact:hover .header-qr-panel,
.header-contact:focus-within .header-qr-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-qr-panel img {
  width: 100%;
  border-radius: 12px;
}

.header-qr-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}

.header-qr-panel p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(115deg, #0b6bcb 0%, #0284c7 55%, #38bdf8 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 28px rgba(11, 107, 203, 0.28);
}

.btn-glow {
  animation: pulseSteel 2.8s ease-in-out infinite;
}

@keyframes pulseSteel {
  0%,
  100% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.22) inset,
      0 12px 28px rgba(11, 107, 203, 0.28);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.28) inset,
      0 14px 36px rgba(56, 189, 248, 0.4);
  }
}

.btn-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.btn-ghost-light {
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.4);
  color: var(--text-on-dark);
}

.btn-ghost-light:hover {
  background: rgba(148, 163, 184, 0.18);
}

.btn-header {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
  white-space: nowrap;
}

/* ========== Hero（高度对齐 geo-site，文案靠版心） ========== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 0 48px;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(ellipse 55% 50% at 78% 28%, rgba(56, 189, 248, 0.22), transparent 58%),
    radial-gradient(ellipse 40% 40% at 12% 80%, rgba(11, 107, 203, 0.1), transparent 55%),
    linear-gradient(165deg, #eef6fc 0%, #f7fbfe 42%, #e8f3fb 100%);
}

.hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-fx__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
  animation: meshDrift 40s linear infinite;
}

@keyframes meshDrift {
  to {
    background-position: 48px 48px;
  }
}

.hero-fx__press {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 40px,
    rgba(148, 163, 184, 0.03) 40px,
    rgba(148, 163, 184, 0.03) 41px
  );
  opacity: 0.7;
}

.hero-fx__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-fx__glow--a {
  width: 380px;
  height: 380px;
  right: -40px;
  top: -80px;
  background: rgba(100, 116, 139, 0.35);
}

.hero-fx__glow--b {
  width: 280px;
  height: 280px;
  left: 8%;
  bottom: -60px;
  background: rgba(51, 65, 85, 0.4);
}

.hero-poster {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
  /* 与下方 .container 同宽同边距对齐 */
}

.hero-copy {
  width: 100%;
  max-width: 36em;
}

.hero-eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  margin-top: 0;
  max-width: none;
  white-space: normal;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.28;
}

.hero-lead {
  margin-top: 16px;
  max-width: 40ch;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-chips span {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--chip-border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

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

/* Press pipeline dashboard hero stage — 视觉靠向版心 */
.hero-stage {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 360px;
  padding: 0;
}

.press-dash {
  width: min(100%, 540px);
  margin: 0 auto;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(165deg, #ffffff 0%, #f3f9fd 100%);
  border: 1px solid rgba(11, 107, 203, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 60px rgba(8, 84, 160, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  animation: dashFloat 7s ease-in-out infinite;
}

@keyframes dashFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.press-dash__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.press-dash__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bae6fd;
}

.press-dash__chrome span:nth-child(1) {
  background: #38bdf8;
}
.press-dash__chrome span:nth-child(2) {
  background: #0ea5e9;
}
.press-dash__chrome span:nth-child(3) {
  background: #0b6bcb;
}

.press-dash__chrome em {
  margin-left: 8px;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.press-dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.press-kpi {
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(11, 107, 203, 0.05);
  border: 1px solid rgba(11, 107, 203, 0.1);
}

.press-kpi--accent {
  border-color: rgba(14, 165, 233, 0.35);
  background: linear-gradient(160deg, rgba(56, 189, 248, 0.16), rgba(11, 107, 203, 0.08));
}

.press-kpi small {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
}

.press-kpi strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.press-kpi em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 11px;
  color: var(--text-soft);
}

.press-pipe {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
  padding: 14px 10px;
  border-radius: 12px;
  background: rgba(11, 107, 203, 0.04);
  border: 1px solid rgba(11, 107, 203, 0.1);
  overflow-x: auto;
}

.press-pipe__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  min-width: 64px;
}

.press-pipe__step i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dbeafe;
  border: 2px solid #93c5fd;
  box-shadow: 0 0 0 3px rgba(11, 107, 203, 0.12);
}

.press-pipe__step.is-done i {
  background: #0ea5e9;
  border-color: #bae6fd;
}

.press-pipe__step.is-active i {
  background: #0b6bcb;
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.28), 0 0 16px rgba(56, 189, 248, 0.35);
  animation: nodePulse 2.2s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25), 0 0 16px rgba(56, 189, 248, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.15), 0 0 22px rgba(56, 189, 248, 0.4);
  }
}

.press-pipe__step span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
}

.press-pipe__step.is-active span {
  color: var(--primary-deep);
}

.press-pipe__rail {
  flex: 1 1 12px;
  height: 2px;
  min-width: 10px;
  margin: 0 2px 16px;
  background: linear-gradient(90deg, #7dd3fc, #0ea5e9);
  border-radius: 2px;
  opacity: 0.7;
}

.press-orders {
  display: grid;
  gap: 8px;
}

.press-orders article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(11, 107, 203, 0.04);
  border: 1px solid rgba(11, 107, 203, 0.1);
}

.press-orders strong {
  display: block;
  font-size: 12px;
  font-family: var(--font-display);
  color: var(--ink);
}

.press-orders span {
  font-size: 11px;
  color: var(--text-soft);
}

.tag {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 6px;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
}

.tag-run {
  background: rgba(14, 165, 233, 0.14);
  color: #0369a1;
}

.tag-out {
  background: rgba(11, 107, 203, 0.12);
  color: #0854a0;
}

.tag-ship {
  background: rgba(56, 189, 248, 0.16);
  color: var(--ink);
}

/* Why */
.why-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.why-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: none;
}

.why-points {
  display: grid;
  gap: 14px;
}

.why-points article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
}

.why-points span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: -0.04em;
}

.why-points h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.why-points p {
  color: var(--text-soft);
  font-size: 14px;
}

/* Capabilities / Promise */
.promise-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(148, 163, 184, 0.12), transparent 60%),
    linear-gradient(180deg, var(--surface-alt), var(--surface));
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promise-row article {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.promise-row article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-deep), var(--glow));
}

.cap-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e293b, #334155);
  color: #e2e8f0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.promise-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-deep);
}

.promise-row p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* Shots */
.shots-section {
  background: var(--white);
}

.shot-feature {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(100, 116, 139, 0.35), transparent 55%),
    linear-gradient(145deg, #0c1222 0%, #1e293b 55%, #334155 100%);
  color: var(--text-on-dark);
  box-shadow: var(--shadow);
}

.shot-feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a4a86;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.shot-feature-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.shot-feature-copy span {
  color: var(--accent-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.shot-feature-copy h3 {
  margin-top: 10px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.shot-feature-copy p {
  margin-top: 12px;
  color: var(--text-on-dark-soft);
  font-size: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 14px;
}

.text-link:hover {
  color: #fff;
}

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

.shot-tile {
  padding: 12px;
  border-radius: var(--radius-lg);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.shot-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.shot-tile-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0854a0;
  margin-bottom: 12px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
}

.shot-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shot-tile span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
}

.shot-tile h3 {
  margin-top: 4px;
  font-size: 17px;
}

.shot-tile p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 13px;
}

/* Flow */
.flow-section {
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(71, 85, 105, 0.35), transparent 60%),
    linear-gradient(165deg, #0a4a86 0%, #0b6bcb 50%, #0284c7 100%);
  color: var(--text-on-dark);
}

.flow-section .section-kicker {
  color: var(--accent-bright);
}

.flow-section .section-kicker::before {
  background: linear-gradient(90deg, var(--accent-bright), transparent);
}

.flow-section .section-head-center > p:last-child {
  color: var(--text-on-dark-soft);
}

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

.flow-rail li {
  padding: 26px 20px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.flow-rail span {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 12px;
}

.flow-rail h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.flow-rail p {
  color: var(--text-on-dark-soft);
  font-size: 13px;
}

/* Scenes */
.scenes-section {
  background: var(--white);
}

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

.scene-list article {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.scene-list article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.scene-list h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.scene-list p {
  color: var(--text-soft);
  font-size: 14px;
}

/* CTA */
.cta-band {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(71, 85, 105, 0.4), transparent 60%),
    linear-gradient(165deg, #0a4a86 0%, #0b6bcb 45%, #38bdf8 120%);
  color: var(--text-on-dark);
}

.cta-band-fx {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(148, 163, 184, 0.04) 80px,
    rgba(148, 163, 184, 0.04) 81px
  );
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.cta-logo {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}

.cta-band h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 10px;
  max-width: none;
}

.cta-band p {
  color: var(--text-on-dark-soft);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Contact */
.contact-section {
  background: var(--surface-alt);
}

.contact-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-xl);
}

.contact-qr-block {
  text-align: center;
}

.contact-qr-block img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-qr-block p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-soft);
}

.contact-copy h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 10px;
}

.contact-copy > p {
  color: var(--text-soft);
  max-width: 48ch;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-highlights li {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.08);
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* Footer */
.site-footer {
  padding: 44px 0 100px;
  background: #0a4a86;
  color: rgba(226, 232, 240, 0.65);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand-block p {
  max-width: 48ch;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  font-size: 12px;
}

.footer-legal a {
  color: rgba(241, 245, 249, 0.9);
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 15, 26, 0.94);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(12px);
}

.mobile-cta-bar .btn {
  flex: 1;
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1100px) {
  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-copy {
    max-width: none;
  }

  .hero-poster,
  .why-layout,
  .shot-feature,
  .promise-row,
  .flow-rail,
  .shot-trio,
  .contact-panel,
  .cta-band-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-stage {
    min-height: 0;
    order: -1;
  }

  .press-dash {
    width: 100%;
  }

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

  .nav {
    display: none;
  }

  .header-actions.is-open .nav {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(244, 246, 248, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .header-actions.is-open .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 36px 0 44px;
  }

  .hero-copy h1 {
    font-size: clamp(24px, 6.5vw, 30px);
  }

  .press-dash__kpis {
    grid-template-columns: 1fr;
  }

  .press-pipe {
    justify-content: flex-start;
  }

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

  .flow-rail,
  .shot-trio {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 22px;
    gap: 20px;
  }

  .contact-qr-block {
    max-width: 180px;
    margin: 0 auto;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .btn-header {
    display: none;
  }
}

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

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