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

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #eef3ff;
  background-color: #030712;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

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

p {
  margin: 0;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.page-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(53, 141, 255, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(90, 0, 255, 0.18),
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(13, 209, 171, 0.16),
      transparent 60%
    );
  z-index: -2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(4, 11, 26, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(224, 231, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
  color: #fff;
  background: rgba(67, 112, 255, 0.3);
  font-weight: 600;
}

.lang-separator {
  color: rgba(224, 231, 255, 0.4);
  font-size: 0.85rem;
}

.brand {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  color: rgba(224, 231, 255, 0.72);
}

.nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.cta-button {
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #357bff, #5f2dff);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 32px rgba(53, 123, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(95, 45, 255, 0.25);
}

.cta-button.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(225, 231, 255, 0.85);
  box-shadow: none;
}

.cta-button.ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-button.primary {
  width: fit-content;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(18, 27, 49, 0.8);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.hero {
  padding: 80px 0 100px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(0, 103, 255, 0.18),
    transparent 65%
  );
  z-index: -1;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero-top {
  text-align: center;
}

.hero-copy {
  max-width: 800px;
  margin: 0 auto;
}

.hero-copy .sup-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(120, 165, 255, 0.85);
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
}

.lead {
  margin-top: 24px;
  color: rgba(225, 232, 255, 0.78);
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-form-card {
  margin-top: 36px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 18, 38, 0.9);
  box-shadow: 0 32px 70px rgba(8, 24, 71, 0.35);
  backdrop-filter: blur(18px);
}

.hero-form-card .form-header h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.hero-form-card .form-header p {
  color: rgba(210, 222, 255, 0.75);
  font-size: 0.95rem;
}

.demo-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.floating-input,
.floating-textarea {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(6, 10, 24, 0.7);
  border: 1px solid rgba(250, 253, 255, 0.08);
  border-radius: 16px;
  padding: 18px 16px 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.floating-input span,
.floating-textarea span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(144, 172, 255, 0.85);
}

.floating-input input,
.floating-textarea textarea {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #fff;
  font-family: inherit;
  resize: none;
}

.floating-input:focus-within,
.floating-textarea:focus-within {
  border-color: rgba(90, 149, 255, 0.65);
  box-shadow: 0 0 0 6px rgba(90, 149, 255, 0.08);
}

.submit-button {
  width: 100%;
  padding: 0.9rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #00d1ab, #4370ff);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 18px 44px rgba(0, 209, 171, 0.3);
}

.submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(67, 112, 255, 0.35);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: wait;
  box-shadow: none;
}

.fine-print {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(188, 204, 255, 0.65);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.hero-form {
  width: 100%;
}

.hero-form .hero-form-card {
  margin-top: 0;
}

.globe {
  position: relative;
  width: clamp(260px, 28vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 40, 82, 0.9), rgba(10, 18, 41, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(24, 40, 88, 0.45);
}

.globe-center {
  text-align: center;
}

.globe-center p {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(163, 188, 255, 0.75);
}

.globe-center strong {
  font-size: 3rem;
  letter-spacing: 0.1em;
}

.globe-center small {
  display: block;
  margin-top: 6px;
  color: rgba(180, 204, 255, 0.6);
}

.orbit {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: orbit-spin 12s linear infinite;
}

.orbit-2 {
  inset: 28%;
  animation-duration: 16s;
  border-style: solid;
  border-color: rgba(72, 166, 255, 0.25);
}

.orbit-3 {
  inset: 40%;
  animation-duration: 20s;
  border-style: dotted;
  border-color: rgba(0, 209, 171, 0.28);
}

.orbit span {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #00d1ab;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(0, 209, 171, 0.8);
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.stat-card {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 36, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-card h3 {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(200, 213, 255, 0.82);
}

.stat-card .score {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 10px 0;
}

.stat-card .desc {
  font-size: 0.9rem;
  color: rgba(196, 209, 240, 0.7);
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 3.5vw, 2.4rem);
}

.section-heading p {
  color: rgba(200, 214, 255, 0.7);
}

.metrics {
  padding: 120px 0 80px;
}

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

.metric-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 34, 0.76);
  transition: transform 0.25s ease, border 0.25s ease;
  height: 100%;
}

.metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 209, 171, 0.4);
}

.metric-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(67, 112, 255, 0.28), rgba(0, 209, 171, 0.28));
  font-weight: 600;
  color: rgba(208, 221, 255, 0.9);
  margin-bottom: 18px;
}

.process {
  padding: 100px 0 120px;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  inset: 8% 0;
  background: radial-gradient(circle at 50% 20%, rgba(74, 113, 255, 0.22), transparent 60%);
  z-index: -1;
}

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

.process-step {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 12, 26, 0.78);
  transition: transform 0.2s ease, border 0.2s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 112, 255, 0.5);
}

.step-index {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(165, 188, 255, 0.7);
}

.status-card {
  margin: 64px auto 0;
  padding: 28px;
  width: min(760px, 90vw);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 24, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(5, 19, 48, 0.35);
}

.status-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.status-header p {
  color: rgba(190, 206, 245, 0.68);
  margin-top: 8px;
}

.status-body {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.status-summary {
  display: flex;
  gap: 18px;
  align-items: center;
}

.status-summary .spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(82, 119, 255, 0.2);
  border-top-color: rgba(82, 119, 255, 0.9);
  animation: spin 1.2s linear infinite;
}

.status-title {
  font-size: 1.1rem;
}

.status-description {
  color: rgba(190, 206, 245, 0.7);
  margin-top: 4px;
  font-size: 0.95rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.status-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.status-timeline li {
  display: flex;
  gap: 16px;
  padding-left: 8px;
  position: relative;
}

.status-timeline li .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(103, 132, 255, 0.35);
  margin-top: 6px;
  position: relative;
}

.status-timeline li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.status-timeline li.active .dot {
  background: #4370ff;
  box-shadow: 0 0 16px rgba(67, 112, 255, 0.6);
}

.status-timeline li.active strong {
  color: #dce6ff;
}

.status-timeline li.completed strong {
  color: #a8ffef;
}

.status-timeline li.completed .dot {
  background: #00d1ab;
  box-shadow: 0 0 16px rgba(0, 209, 171, 0.6);
}

.status-timeline li .dot::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 1px;
  height: calc(100% + 10px);
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.status-timeline li:last-child .dot::after {
  display: none;
}

.spinner.done {
  border: 2px solid rgba(0, 209, 171, 0.55);
  background: radial-gradient(circle at center, rgba(0, 209, 171, 0.2), transparent);
  animation: none;
  position: relative;
}

.spinner.done::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 9px;
  border: 2px solid #00d1ab;
  border-top: none;
  border-right: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  box-shadow: 0 0 12px rgba(0, 209, 171, 0.7);
}

.dashboard-preview {
  padding: 100px 0 120px;
  position: relative;
}

.dashboard-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 209, 171, 0.08),
    transparent 70%
  );
  z-index: -1;
}

.dashboard-container {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.domain-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(0, 209, 171, 0.12);
  border: 1px solid rgba(0, 209, 171, 0.25);
  border-radius: 12px;
  font-size: 0.95rem;
}

.domain-icon {
  font-size: 1.2rem;
}

.domain-name {
  color: rgba(0, 209, 171, 0.95);
  font-weight: 600;
}

.dashboard-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.kpi-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 34, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 209, 171, 0.4);
}

.kpi-main {
  grid-column: span 1;
  background: rgba(0, 209, 171, 0.08);
  border-color: rgba(0, 209, 171, 0.2);
}

.kpi-visual {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
}

.donut-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 12px rgba(0, 209, 171, 0.4));
}

.donut-segment {
  transition: stroke-dasharray 1.5s ease-out;
}

.kpi-value-container {
  position: absolute;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.kpi-value {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00d1ab;
  line-height: 1;
}

.kpi-unit {
  font-size: 1.4rem;
  color: rgba(0, 209, 171, 0.8);
  font-weight: 600;
}

.kpi-card h4 {
  margin: 0;
  font-size: 1rem;
  color: rgba(220, 230, 255, 0.85);
  font-weight: 600;
}

.kpi-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  filter: grayscale(0.3);
}

.kpi-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 4px;
  line-height: 1;
}

.kpi-suffix {
  font-size: 1.2rem;
  color: rgba(200, 215, 255, 0.7);
  font-weight: 600;
}

.dashboard-models {
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 13, 26, 0.6);
}

.dashboard-models h4 {
  margin: 0 0 20px;
  font-size: 1.1rem;
  color: rgba(220, 230, 255, 0.9);
}

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

.model-item {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 18, 32, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.model-item:hover {
  transform: translateY(-2px);
  border-color: rgba(67, 112, 255, 0.4);
}

.model-label {
  font-size: 0.85rem;
  color: rgba(190, 205, 240, 0.75);
  text-align: center;
}

.model-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.model-unit {
  font-size: 0.9rem;
  color: rgba(200, 215, 255, 0.7);
}

.dashboard-tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.table-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 13, 26, 0.6);
}

.table-card h4 {
  margin: 0 0 20px;
  font-size: 1.1rem;
  color: rgba(220, 230, 255, 0.9);
}

.table-wrapper {
  overflow-x: auto;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table-wrapper thead th {
  text-align: left;
  padding: 12px 8px;
  color: rgba(180, 195, 240, 0.8);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-wrapper tbody td {
  padding: 14px 8px;
  color: rgba(210, 222, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.table-wrapper tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.url-cell {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(120, 165, 255, 0.9);
}

.number-cell {
  font-weight: 600;
  color: #fff;
  text-align: right;
}

.insights {
  padding: 100px 0 120px;
}

.insights-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.insight-card {
  padding: 24px 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 13, 26, 0.82);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.insight-card p {
  color: rgba(194, 210, 244, 0.72);
}

.insight-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(208, 222, 255, 0.8);
}

.cta-section {
  padding: 80px 0 100px;
}

.demo-form-section {
  padding: 100px 0 120px;
  position: relative;
}

.demo-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(67, 112, 255, 0.1),
    transparent 70%
  );
  z-index: -1;
}

.demo-form-section .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
}

.demo-form-section .hero-form-card {
  margin-top: 0;
}

.form-step {
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.generating-status {
  text-align: center;
  padding: 32px 0;
  margin-bottom: 32px;
}

.status-spinner {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 3px solid rgba(82, 119, 255, 0.2);
  border-top-color: rgba(82, 119, 255, 0.9);
  animation: spin 1.2s linear infinite;
}

.status-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d1ab, #4370ff);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(0, 209, 171, 0.3);
  animation: scaleIn 0.5s ease-out;
}

.generating-status h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: #fff;
}

.generating-status p {
  color: rgba(200, 214, 255, 0.75);
  font-size: 1rem;
  margin: 0;
}

.success-message {
  text-align: center;
  padding: 48px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d1ab, #4370ff);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(0, 209, 171, 0.3);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-message h3 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  color: #fff;
}

.success-message p {
  color: rgba(200, 214, 255, 0.85);
  font-size: 1.05rem;
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(140deg, rgba(30, 70, 184, 0.55), rgba(8, 27, 73, 0.45));
  padding: clamp(36px, 6vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.cta-copy p {
  max-width: 420px;
  color: rgba(226, 234, 255, 0.8);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 7, 18, 0.92);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 40px;
}

.footer-brand p {
  margin-top: 16px;
  color: rgba(192, 206, 240, 0.7);
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-links h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  color: rgba(212, 224, 255, 0.82);
}

.footer-links a,
.footer-links span {
  display: block;
  margin-bottom: 10px;
  color: rgba(184, 200, 240, 0.72);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: rgba(154, 174, 218, 0.6);
  font-size: 0.85rem;
}

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

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

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

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

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

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

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

  .kpi-main {
    grid-column: span 2;
  }

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

  .dashboard-tables {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 0 6px;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    width: calc(100vw - 8vw);
    background: rgba(7, 12, 26, 0.95);
    flex-direction: column;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(8, 14, 32, 0.4);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }
  
  .cta-button {
    display: none;
  }

  .hero {
    padding: 60px 0 80px;
  }
  
  .hero .container {
    gap: 40px;
  }
  
  .hero-bottom {
    gap: 40px;
  }

  .hero-form-card {
    padding: 24px;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .process-steps,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .domain-badge {
    margin-bottom: 0;
  }

  .kpi-main {
    grid-column: span 1;
  }

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 0 60px;
  }

  .hero-form-card {
    margin-top: 28px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
    white-space: nowrap;
  }

  .insight-card {
    padding: 22px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .cta-button {
    flex: 1 1 100%;
    text-align: center;
  }
}

