:root {
  --navy: #052b63;
  --navy-dark: #061b3d;
  --blue: #0ea5e9;
  --cyan: #22c5ff;
  --orange: #ff7a00;
  --text: #0b1f3a;
  --muted: #64748b;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --border: rgba(14, 165, 233, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, rgba(34, 197, 255, 0.14), transparent 32%),
              radial-gradient(circle at 85% 18%, rgba(255, 122, 0, 0.12), transparent 30%),
              linear-gradient(135deg, #f8fbff 0%, #eef7ff 48%, #ffffff 100%);
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 28px clamp(18px, 4vw, 72px);
  isolation: isolate;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(5, 43, 99, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(5, 43, 99, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.88), transparent 85%);
}

.orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.32;
  z-index: -2;
}

.orb-one { background: var(--cyan); left: -140px; top: 120px; }
.orb-two { background: var(--orange); right: -120px; bottom: 60px; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(430px, 60vw);
  padding: 10px 0;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(5, 43, 99, 0.08));
}

.hotline {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--navy);
  padding: 8px 2px;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hotline svg {
  width: 22px;
  height: 22px;
  fill: var(--orange);
  filter: drop-shadow(0 8px 16px rgba(255, 122, 0, 0.26));
}

.hotline strong {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--orange);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  max-width: 1180px;
  margin: 72px auto 42px;
}

.hero-content { max-width: 680px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 34px rgba(14, 165, 233, 0.12);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 122, 0, 0.14);
  animation: pulse 1.8s infinite;
}

h1 {
  margin: 24px 0 18px;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--navy-dark);
  font-family: "Neue Einstellung", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.lead {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #075aa8 55%, var(--blue));
  box-shadow: 0 20px 38px rgba(5, 43, 99, 0.22);
}

.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(5, 43, 99, 0.12);
}

.status-card {
  width: min(100%, 520px);
  margin-top: 30px;
  padding: 18px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 24px 60px rgba(5, 43, 99, 0.10);
  backdrop-filter: blur(16px);
}

.status-card > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.status-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.status-card strong {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(5, 43, 99, 0.09);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  animation: shimmer 2.6s ease-in-out infinite;
}

.hero-panel {
  border: 1px solid rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.68);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(5, 43, 99, 0.14);
  backdrop-filter: blur(20px);
}

.panel-header {
  display: flex;
  gap: 8px;
  padding: 10px 10px 18px;
}

.panel-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(5, 43, 99, 0.18);
}
.panel-header span:nth-child(2) { background: rgba(14, 165, 233, 0.42); }
.panel-header span:nth-child(3) { background: rgba(255, 122, 0, 0.62); }

.solution-list { display: grid; gap: 16px; }

.solution-list article {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(237,248,255,0.84));
  border: 1px solid rgba(5, 43, 99, 0.08);
  overflow: hidden;
}

.solution-list article::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  right: -40px;
  top: -48px;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.solution-list h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--navy-dark);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.solution-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  max-width: 1180px;
  margin: 42px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p { margin: 0; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: .7; }
}

@keyframes shimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}

@media (max-width: 900px) {
  .page-shell { padding: 18px; }
  .site-header { align-items: flex-start; }
  .brand { width: min(330px, 64vw); }
  .hero { grid-template-columns: 1fr; margin-top: 42px; }
  .hero-panel { order: 2; }
  .hotline { padding: 6px 0; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .site-header { flex-direction: column; }
  .brand { width: min(100%, 360px); }
  .hotline { justify-content: flex-start; width: 100%; }
  .hotline strong { font-size: 20px; }
  h1 { font-size: 42px; }
  .btn { width: 100%; }
  .status-card > div:first-child { align-items: flex-start; flex-direction: column; }
}
