:root {
  --primary: #ff4500;
  --secondary: #ffc857;
  --tech-blue: #00a4ff;
  --deep-slate: #1e2a3a;
  --cyan: #0088cc;
  --neutral: #f5f5f5;
  --text: #1e2a3a;
  --radius: 16px;
  --shadow-soft: 0 15px 35px rgba(30, 42, 58, 0.12);
  --shadow-card: 0 10px 25px rgba(30, 42, 58, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: var(--neutral);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page-shell {
  min-height: 100vh;
  padding: 0 24px 80px;
}

main {
  max-width: 1100px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 42, 58, 0.08);
  transform: translateY(-120%);
  opacity: 0;
}

.site-header.animate-drop.play {
  animation: headerDrop 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark .mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  line-height: 1.2;
}

.brand-name {
  font-weight: 600;
}

.brand-caption {
  color: rgba(30, 42, 58, 0.7);
}

.header-ctas {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 20px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(255, 69, 0, 0.4);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(30, 42, 58, 0.3);
  color: var(--text);
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: var(--cyan);
  padding: 12px 10px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 120px 0 64px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: rgba(30, 42, 58, 0.7);
  margin: 0 0 12px;
}

.hero-title {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-subhead {
  margin: 0 0 32px;
  color: rgba(30, 42, 58, 0.8);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 16px;
  background: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(30, 42, 58, 0.08);
}

.lead-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.card-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(30, 42, 58, 0.7);
  margin: 0;
}

.eyebrow-meta {
  font-size: 0.85rem;
  color: var(--tech-blue);
  margin: 0;
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(30, 42, 58, 0.2);
  padding: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--neutral);
  transition: border 0.25s, box-shadow 0.25s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--tech-blue);
  box-shadow: 0 0 0 3px rgba(0, 164, 255, 0.2);
}

section {
  margin-bottom: 72px;
}

.section-header h2 {
  margin: 8px 0 24px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}

.solutions-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
}

.trust-bar {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.trust-bar .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 164, 255, 0.1);
  color: var(--tech-blue);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
}

.logo-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(30, 42, 58, 0.3);
  font-size: 0.85rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.steps ol {
  padding-left: 20px;
  margin-top: 0;
}

.steps li {
  margin-bottom: 16px;
}

.quote {
  margin: 32px 0 0;
  padding: 24px;
  border-left: 4px solid var(--primary);
  background: rgba(255, 69, 0, 0.05);
  border-radius: 12px;
}

.deliverables ul {
  padding-left: 20px;
  margin-top: 12px;
}

.faq-items details {
  border: 1px solid rgba(30, 42, 58, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  background: #fff;
}

.faq-items details + details {
  margin-top: 12px;
}

.faq-items summary {
  cursor: pointer;
  font-weight: 600;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: radial-gradient(circle at top right, rgba(0, 164, 255, 0.25), transparent 55%),
    linear-gradient(135deg, rgba(255, 200, 87, 0.3), rgba(255, 69, 0, 0.8));
  color: #fff;
  box-shadow: 0 30px 60px rgba(30, 42, 58, 0.25);
}

.final-cta-content {
  padding: 48px;
}

.final-cta p,
.final-cta h2 {
  color: #fff;
}

.cta-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 32px 0 16px;
}

.tiny-line {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(30, 42, 58, 0.1);
  padding: 32px 0;
  color: rgba(30, 42, 58, 0.8);
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--deep-slate);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.toast.show {
  animation: toastSlide 3s ease forwards;
}

.hero-stagger {
  opacity: 0;
  transform: translateY(24px);
}

body.page-loaded .hero-stagger {
  animation: heroFade 0.9s ease forwards;
}

body.page-loaded .hero-stagger:nth-child(1) {
  animation-delay: 0.1s;
}

body.page-loaded .hero-stagger:nth-child(2) {
  animation-delay: 0.2s;
}

body.page-loaded .hero-stagger:nth-child(3) {
  animation-delay: 0.3s;
}

body.page-loaded .hero-stagger:nth-child(4) {
  animation-delay: 0.45s;
}

body.page-loaded .hero-stagger:nth-child(5) {
  animation-delay: 0.6s;
}

body.page-loaded .hero-stagger:nth-child(6) {
  animation-delay: 0.75s;
}

.sr {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sr.visible {
  opacity: 1;
  transform: none;
}

@keyframes headerDrop {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding-top: 80px;
  }

  .cta-row {
    flex-direction: column;
  }

  .final-cta-content {
    padding: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .site-header {
    transform: none;
    opacity: 1;
  }

  .hero-stagger,
  .sr {
    opacity: 1;
    transform: none;
  }
}
