:root {
  --bg: #090909;
  --bg-soft: #111214;
  --surface: rgba(17, 18, 20, 0.72);
  --surface-strong: rgba(20, 22, 26, 0.94);
  --surface-border: rgba(255, 255, 255, 0.09);
  --text: #f5f1ea;
  --muted: #b2aca5;
  --accent: #f08c3c;
  --accent-strong: #ff6a29;
  --accent-soft: rgba(240, 140, 60, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 95, 31, 0.18), transparent 28%),
    radial-gradient(circle at 15% 20%, rgba(255, 135, 61, 0.14), transparent 26%),
    linear-gradient(135deg, #060606 0%, #0d0d0f 52%, #070707 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    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: 96px 96px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 95%);
  pointer-events: none;
  opacity: 0.35;
}

.page-shell {
  position: relative;
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 18px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-image {
  display: block;
  width: auto;
  height: 79.2px;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a,
.section-heading p,
.section-label,
.panel-label,
.trust-list span,
.table-row span:first-child,
.form-note,
label {
  color: var(--muted);
}

.site-nav a {
  font-size: 0.96rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid transparent;
  color: #121212;
  background: linear-gradient(135deg, #f8b370 0%, #f08c3c 48%, #ff6a29 100%);
  box-shadow: 0 20px 40px rgba(255, 106, 41, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  padding: 56px 0 72px;
  align-items: center;
}

.section-label {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.process-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  line-height: 0.95;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
  color: var(--accent);
}

.hero-description {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #d3cdc6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.trust-list li,
.feature-card,
.process-step,
.contact-form {
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-list li {
  padding: 16px 18px;
  border-radius: var(--radius-md);
}

.trust-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 5% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 106, 41, 0.22), transparent 70%);
  filter: blur(18px);
}

.dashboard-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(9, 9, 9, 0.88), rgba(20, 21, 24, 0.98));
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 26px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.28));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
}

.dashboard-logo-image {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-dot.active {
  height: 30px;
  background: linear-gradient(180deg, #ffd0a2, var(--accent));
}

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

.dashboard-panel,
.dashboard-table {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 15, 18, 0.84);
  padding: 22px;
}

.upload-panel {
  min-height: 264px;
}

.status-panel {
  min-height: 264px;
}

.panel-label {
  margin: 0 0 12px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dashboard-panel h2 {
  margin: 0 0 18px;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.upload-box {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(240, 140, 60, 0.16), transparent 65%),
    rgba(255, 255, 255, 0.02);
  text-align: center;
}

.upload-box p {
  margin: 8px 0 4px;
  font-weight: 700;
}

.upload-box span {
  font-size: 0.84rem;
  color: var(--muted);
}

.upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 208, 162, 0.96), rgba(255, 106, 41, 0.9));
  clip-path: polygon(50% 15%, 80% 46%, 64% 46%, 64% 82%, 36% 82%, 36% 46%, 20% 46%);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(240, 140, 60, 0.18);
  color: #ffd8b5;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
}

.status-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 22px 0 10px;
}

.step {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.step.active {
  background: linear-gradient(90deg, #ffc28b, var(--accent));
}

.status-labels {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

.status-labels span {
  min-width: 0;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-time {
  margin: 22px 0 0;
  color: #dbd4cc;
  line-height: 1.45;
}

.status-time strong {
  white-space: nowrap;
}

.dashboard-table {
  grid-column: 1 / -1;
}

.table-row,
.table-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.table-row {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.table-head {
  padding-top: 0;
}

.table-row span:last-child,
.table-footer span:last-child {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.table-footer {
  padding-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.car-glow {
  position: absolute;
  right: -16px;
  bottom: -14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 220px;
  opacity: 0.82;
  transform: rotate(-11deg);
}

.taillight {
  height: 26px;
  border-radius: 999px 18px 18px 999px;
  background:
    linear-gradient(90deg, rgba(255, 66, 24, 0.08), rgba(255, 81, 31, 0.86) 30%, rgba(255, 182, 120, 0.98));
  box-shadow:
    0 0 28px rgba(255, 81, 31, 0.42),
    0 0 70px rgba(255, 81, 31, 0.32);
}

.taillight.short {
  width: 80%;
  margin-left: auto;
}

.value-section,
.process-section,
.contact-section {
  padding: 54px 0;
}

.section-heading,
.process-copy,
.contact-copy {
  max-width: 680px;
}

.section-heading p {
  margin: 0 0 12px;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.process-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  text-transform: uppercase;
}

.section-heading span,
.process-copy p,
.contact-copy p,
.feature-card p,
.process-step p {
  display: block;
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #d1cbc4;
}

.feature-grid,
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.feature-card,
.process-step {
  padding: 24px;
  border-radius: 26px;
}

.feature-icon,
.process-step span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Barlow", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.feature-card h3,
.process-step h3 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  padding: 28px;
  border-radius: 28px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

input::placeholder,
textarea::placeholder {
  color: #8e8881;
}

textarea {
  resize: vertical;
  min-height: 138px;
}

input:focus-visible,
textarea:focus-visible,
.button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 3px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .hero,
  .process-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .dashboard-card {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 18px;
  }

  .brand-image {
    height: 67.2px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-cta {
    width: 100%;
  }

  .trust-list,
  .feature-grid,
  .process-steps,
  .dashboard-main {
    grid-template-columns: 1fr;
  }

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

  .dashboard-sidebar {
    flex-direction: row;
    justify-content: center;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .status-labels {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 16vw, 4.1rem);
  }

  .hero-description,
  .section-heading span,
  .process-copy p,
  .contact-copy p,
  .feature-card p,
  .process-step p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .status-pill {
    padding: 10px 14px;
  }

  .status-labels {
    font-size: 0.68rem;
  }

  .feature-card,
  .process-step,
  .contact-form,
  .dashboard-panel,
  .dashboard-table {
    padding: 20px;
  }

  .table-row,
  .table-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .table-row span:last-child,
  .table-footer span:last-child {
    text-align: left;
  }

  .car-glow {
    width: 150px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .value-section,
  .process-section,
  .contact-section {
    animation: revealUp 700ms ease both;
  }

  .hero-visual {
    animation-delay: 120ms;
  }

  .value-section {
    animation-delay: 180ms;
  }

  .process-section {
    animation-delay: 260ms;
  }

  .contact-section {
    animation-delay: 340ms;
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
