:root {
  color-scheme: light;
  font-family: Inter, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f3f5fa;
  color: #111827;
  line-height: 1.45;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.78);
  border-bottom: 1px solid rgba(191, 219, 254, 0.24);
}

.topbar-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.topbar-brand {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.46rem 0.88rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(191, 219, 254, 0.5);
  background: linear-gradient(140deg, rgba(59, 130, 246, 0.9), rgba(29, 78, 216, 0.95));
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.topbar-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.36);
}

.topbar-cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.8),
    0 0 0 6px rgba(147, 197, 253, 0.45);
}

.hero {
  background:
    radial-gradient(circle at 85% 0%, rgba(148, 197, 255, 0.28), transparent 44%),
    linear-gradient(140deg, #0f1d46, #1d4ed8 60%, #2563eb);
  color: #fff;
  padding: 2rem 0 3rem;
  position: relative;
  overflow: clip;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.brand-logo {
  width: clamp(180px, 28vw, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(2, 6, 23, 0.25));
  position: relative;
  z-index: 1;
}

.logo-glow-wrap {
  position: relative;
  isolation: isolate;
}

.logo-glow-wrap::before {
  content: "";
  position: absolute;
  inset: 7px 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(147, 197, 253, 0.5), rgba(59, 130, 246, 0.14) 55%, transparent 75%);
  filter: blur(12px);
  transform-origin: center;
  animation: logoGlowPulse 3.8s ease-in-out infinite;
}

@keyframes logoGlowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  color: #bfdbfe;
  font-size: 0.84rem;
}

.hero-layout {
  display: grid;
  gap: 1.8rem;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bfdbfe;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero p {
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
  color: #dbeafe;
}

.trust-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.trust-points li {
  position: relative;
  padding-left: 1.2rem;
  color: #dbeafe;
  font-size: 0.95rem;
}

.trust-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #93c5fd;
  position: absolute;
  left: 0;
  top: 0.53rem;
}

.hero-graphic {
  margin: 0;
}

.hero-graphic img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 35px rgba(2, 6, 23, 0.4);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.hero-graphic:hover img {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(2, 6, 23, 0.45);
}

.hero-graphic figcaption {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: #dbeafe;
}

.hero-graphic a {
  color: #fff;
}

.highlights {
  margin: -1.45rem auto 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlights article {
  background: #ffffff;
  border: 1px solid #dbe3f2;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.highlights article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #64748b;
}

.highlights strong {
  display: block;
  margin-top: 0.35rem;
  color: #0f172a;
  font-size: 1.05rem;
}

.process {
  margin: 1rem auto;
}

.process h2 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  color: #0f172a;
}

.process-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid article {
  background: #ffffff;
  border: 1px solid #dbe3f2;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-grid article:hover {
  transform: translateY(-3px);
  border-color: #c7d7f3;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.process-grid h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.03rem;
  color: #1e293b;
}

.process-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.5;
  font-size: 0.94rem;
}

.card {
  margin: 1rem auto 3rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #dbe3f2;
  box-shadow: 0 16px 36px rgba(31, 58, 138, 0.1);
  padding: 1.75rem;
  position: relative;
}

.card h2 {
  margin: 0;
}

.card-intro {
  margin: 0.55rem 0 1.25rem;
  color: #475569;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d4d8e5;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #f8fbff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.message-field {
  margin-top: 1rem;
}

.file-field {
  margin-top: 1rem;
}

.upload-hint {
  margin: 0.5rem 0 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.5;
}

#upload-feedback {
  min-height: 1.15rem;
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
}

#upload-feedback.error {
  color: #b91c1c;
}

#upload-feedback.success {
  color: #166534;
}

button {
  margin-top: 1rem;
  padding: 0.7rem 1.1rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

button:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(37, 99, 235, 0.33);
}

button:active {
  transform: translateY(0);
}

button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.5),
    0 0 0 6px rgba(37, 99, 235, 0.35);
}

#form-status {
  min-height: 1.25rem;
  margin-top: 0.75rem;
}

#form-status.success {
  color: #166534;
}

#form-status.error {
  color: #b91c1c;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-item] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].is-visible [data-animate-item] {
  opacity: 1;
  transform: translateY(0);
}

[data-animate].is-visible [data-animate-item]:nth-child(1) {
  transition-delay: 70ms;
}

[data-animate].is-visible [data-animate-item]:nth-child(2) {
  transition-delay: 140ms;
}

[data-animate].is-visible [data-animate-item]:nth-child(3) {
  transition-delay: 210ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate],
  [data-animate-item] {
    opacity: 1 !important;
    transform: none !important;
  }

  .logo-glow-wrap::before {
    animation: none !important;
  }
}

@media (max-width: 860px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .highlights {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .hero-graphic img {
    height: 220px;
  }

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

  .topbar-inner {
    min-height: 56px;
  }

  .topbar-brand {
    font-size: 0.92rem;
  }
}
