* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #030303;
  color: #ffffff;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(248, 113, 113, 0.2), transparent 32rem),
    radial-gradient(circle at 82% 8%, rgba(250, 204, 21, 0.09), transparent 30rem),
    linear-gradient(135deg, #030303 0%, #0a0a0a 45%, #111111 100%);
}

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

.site-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 28px;
}

.topbar,
.trust-strip,
.delivery-panel,
.split-panel,
.ops-grid article,
.module-grid article,
.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 14, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  padding: 18px 22px;
}

.nav-actions {
  display: flex;
  gap: 12px;
  color: #d4d4d8;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-actions a {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
}

.eyebrow {
  margin: 0 0 10px;
  color: #fca5a5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  padding: 72px 0 28px;
}

.hero-copy {
  min-height: 560px;
  border-radius: 36px;
  padding: 54px;
  background:
    linear-gradient(140deg, rgba(248, 113, 113, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.lede {
  max-width: 760px;
  color: #d4d4d8;
  font-size: 1.12rem;
  line-height: 1.75;
}

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

.primary,
.secondary {
  border-radius: 18px;
  padding: 16px 22px;
  font-weight: 950;
}

.primary {
  background: #f87171;
  color: #050505;
}

.secondary {
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
}

.quote-card {
  align-self: stretch;
  border-radius: 36px;
  padding: 34px;
}

.quote-card h2,
.section-heading h2,
.split-panel h2,
.delivery-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
}

.quote-card p,
.ops-grid p,
.delivery-panel p,
.module-grid p {
  color: #c4c4c7;
  line-height: 1.7;
}

.quote-grid,
.delivery-checks,
.service-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.quote-grid span,
.delivery-checks span,
.service-list span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
  color: #f4f4f5;
  font-weight: 800;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border-radius: 26px;
  padding: 18px;
}

.trust-strip span {
  color: #fef3c7;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-layout,
.split-panel,
.ops-grid,
.delivery-panel {
  margin-top: 28px;
}

.section-heading {
  padding: 34px 0 20px;
}

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

.module-grid article,
.ops-grid article {
  min-height: 240px;
  border-radius: 30px;
  padding: 28px;
}

.module-grid h3,
.ops-grid h3 {
  margin: 0;
  font-size: 1.65rem;
}

.split-panel,
.delivery-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  padding: 34px;
}

@media (max-width: 900px) {
  .hero,
  .split-panel,
  .delivery-panel,
  .module-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding: 34px;
  }

  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }
}
