:root {
  --bg: #0d1723;
  --bg-soft: #122132;
  --surface: rgba(12, 23, 36, 0.78);
  --surface-strong: #101d2d;
  --line: rgba(188, 211, 234, 0.16);
  --text: #ecf2f7;
  --muted: #a8b7c8;
  --accent: #f3a63b;
  --accent-strong: #ff7a18;
  --accent-soft: rgba(243, 166, 59, 0.14);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 166, 59, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(54, 123, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #09111a 0%, #0d1723 48%, #0a131d 100%);
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 40px;
}

.email-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.email-widget-panel {
  width: min(100vw - 28px, 360px);
  padding: 18px;
  border: 1px solid rgba(188, 211, 234, 0.14);
  border-radius: 28px;
  background: rgba(10, 20, 32, 0.96);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.email-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.email-widget-persona {
  display: flex;
  align-items: center;
  gap: 12px;
}

.email-widget-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #101823;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.email-widget-kicker {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-widget-header h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
}

.email-widget-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.email-widget-thread {
  display: grid;
  gap: 10px;
  margin: 16px 0 14px;
}

.email-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.5;
}

.email-bubble p {
  margin: 0;
}

.email-bubble-incoming {
  border-top-left-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.email-bubble-incoming.subtle {
  color: var(--muted);
}

.email-bubble-outgoing {
  justify-self: end;
  border-top-right-radius: 8px;
  background: linear-gradient(135deg, rgba(243, 166, 59, 0.2), rgba(255, 122, 24, 0.14));
  color: var(--text);
}

.email-widget-form {
  display: grid;
  gap: 12px;
}

.email-widget-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.email-widget-form input,
.email-widget-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(2, 6, 12, 0.92);
  color: var(--text);
  font: inherit;
}

.email-widget-form textarea {
  min-height: 88px;
  resize: vertical;
}

.email-widget-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.email-widget-send {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0a121b;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.email-widget-send span {
  font-size: 1.1rem;
}

.email-widget-send[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.email-widget-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.email-widget-status.is-success {
  color: #7be0a7;
}

.email-widget-status.is-error {
  color: #ff8d8d;
}

.email-widget-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 18px 0 12px;
  border: 1px solid rgba(188, 211, 234, 0.16);
  border-radius: 999px;
  background: rgba(18, 33, 50, 0.96);
  color: var(--text);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.email-widget-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(243, 166, 59, 0.16);
}

.email-widget-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.email-widget-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

@media (max-width: 720px) {
  .email-widget {
    right: 14px;
    bottom: 14px;
  }

  .email-widget-meta {
    grid-template-columns: 1fr;
  }

  .email-widget-panel {
    width: min(100vw - 20px, 340px);
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 7, 15, 0.72);
  backdrop-filter: blur(10px);
}

.modal-backdrop.is-visible {
  display: flex;
}

.recruit-modal {
  position: relative;
  width: min(100%, 520px);
  overflow: hidden;
  border-radius: 18px;
  background: #f7f5f1;
  color: #121212;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  cursor: pointer;
}

.modal-close span {
  font-size: 1.4rem;
  line-height: 1;
}

.modal-visual {
  padding: 18px 18px 0;
  background: #060606;
}

.poster-frame {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 220px;
  padding: 10px 10px 24px;
  color: #fff;
  text-transform: uppercase;
}

.poster-top,
.poster-middle,
.poster-bottom {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.poster-top {
  font-size: clamp(2rem, 4vw, 3rem);
}

.poster-middle {
  font-size: 1.5rem;
}

.poster-bottom {
  font-size: 1.75rem;
}

.poster-truck {
  position: relative;
  width: 190px;
  height: 95px;
  margin: 6px 0;
}

.poster-truck::before,
.poster-truck::after,
.poster-truck span,
.poster-truck span::before,
.poster-truck span::after {
  position: absolute;
  content: "";
  border: 3px solid #fff;
}

.poster-truck::before {
  left: 16px;
  bottom: 26px;
  width: 86px;
  height: 30px;
  border-radius: 6px;
}

.poster-truck::after {
  right: 20px;
  bottom: 26px;
  width: 52px;
  height: 42px;
  border-radius: 6px;
}

.poster-truck span:first-child {
  left: 78px;
  bottom: 48px;
  width: 40px;
  height: 20px;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.poster-truck span:nth-child(2) {
  left: 42px;
  bottom: 56px;
  width: 10px;
  height: 34px;
  border-radius: 4px;
}

.poster-truck span:nth-child(3) {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  border-width: 0 0 3px;
}

.poster-truck span:first-child::before,
.poster-truck span:first-child::after,
.poster-truck span:nth-child(2)::before,
.poster-truck span:nth-child(2)::after {
  border-radius: 999px;
}

.poster-truck span:first-child::before {
  left: -68px;
  top: 52px;
  width: 24px;
  height: 24px;
}

.poster-truck span:first-child::after {
  right: -60px;
  top: 52px;
  width: 26px;
  height: 26px;
}

.poster-truck span:nth-child(2)::before {
  left: 86px;
  top: 52px;
  width: 18px;
  height: 18px;
}

.poster-truck span:nth-child(2)::after {
  left: 114px;
  top: 52px;
  width: 18px;
  height: 18px;
}

.modal-copy {
  padding: 28px 34px 34px;
  text-align: center;
}

.modal-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.modal-copy p {
  margin: 18px 0 0;
  color: #1d1d1d;
  line-height: 1.6;
  font-size: 1.2rem;
}

.modal-cta-copy {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.modal-button {
  margin-top: 22px;
  min-width: 204px;
  color: #fff;
  background: #0f74bc;
  text-transform: uppercase;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 15, 24, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 209, 113, 0.12), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(243, 166, 59, 0.2);
  overflow: hidden;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong,
.nav a,
.button,
.section-heading h2,
.hero h1,
.info-card h3,
.stack-card h3,
.timeline-item h3,
.contact-card h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.section {
  padding: 88px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding-top: 64px;
  padding-inline: 20px;
  padding-bottom: 28px;
  align-items: center;
  border: 1px solid rgba(188, 211, 234, 0.12);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(8, 16, 28, 0.68), rgba(14, 29, 48, 0.52));
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 12, 20, 0.9) 0%, rgba(7, 12, 20, 0.72) 35%, rgba(7, 12, 20, 0.38) 100%),
    radial-gradient(circle at top left, rgba(243, 166, 59, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(54, 123, 255, 0.22), transparent 36%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  box-shadow: inset 0 0 140px rgba(4, 8, 16, 0.82);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.56) contrast(1.02);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.spotlight h2,
.contact-card h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.8rem);
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.spotlight-copy p,
.timeline-item p,
.contact-card p,
.footer p,
.info-card p,
.stack-card li,
.contact-details p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  color: #09111a;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card,
.info-card,
.stack-card,
.timeline-item,
.contact-card,
.trust-band,
.section-grid,
.spotlight {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.panel-card,
.info-card,
.stack-card,
.timeline-item,
.contact-card {
  border-radius: var(--radius-lg);
}

.stat-card,
.summary-card {
  padding: 24px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.stat-card a {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-family: "Space Grotesk", sans-serif;
}

.accent-card {
  background: linear-gradient(135deg, rgba(243, 166, 59, 0.22), rgba(255, 122, 24, 0.18));
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.summary-grid span {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
}

.trust-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-grid {
  margin-top: 56px;
  padding: 34px;
  border-radius: 32px;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.spotlight h2,
.contact-card h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  margin-bottom: 18px;
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: 28px;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.info-card h3,
.stack-card h3,
.timeline-item h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding: 34px;
  border-radius: 32px;
}

.spotlight-stack {
  display: grid;
  gap: 18px;
}

.stack-card {
  padding: 24px;
}

.stack-card ul {
  margin: 0;
  padding-left: 18px;
}

.stack-card li + li {
  margin-top: 10px;
}

.stack-card.muted {
  background: rgba(255, 255, 255, 0.03);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.timeline-item {
  padding: 28px;
}

.timeline-item span {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 34px;
}

.contact-form {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  background: #050608;
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(236, 242, 247, 0.78);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(243, 166, 59, 0.7);
  outline-offset: 1px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.contact-checkbox input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.contact-submit {
  justify-self: start;
  min-width: 120px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: #f3f0ea;
  color: #111;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #fff;
}

.contact-submit[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.contact-status {
  min-height: 1.5rem;
  margin: -6px 0 0;
  color: var(--muted);
}

.contact-status.is-success {
  color: #7be0a7;
}

.contact-status.is-error {
  color: #ff8d8d;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  padding: 20px 0 18px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(243, 166, 59, 0.18);
}

.footer-mark img {
  width: 42px;
  height: 42px;
  display: block;
}

.footer-brand strong {
  color: rgba(236, 242, 247, 0.92);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.3;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-delay-1 {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar {
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 15, 24, 0.96);
  }

  .nav.is-open {
    display: flex;
  }

  .hero,
  .spotlight,
  .contact-card,
  .trust-band,
  .services-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero {
    padding-inline: 18px;
    padding-bottom: 22px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    top: 10px;
    padding: 14px 16px;
  }

  .brand-copy span:last-child {
    display: none;
  }

  .modal-copy {
    padding: 24px 20px 26px;
  }

  .modal-copy p {
    font-size: 1.02rem;
  }

  .modal-cta-copy {
    font-size: 1.55rem;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 42px;
  }

  .section-grid,
  .spotlight,
  .contact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .trust-band {
    padding: 20px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 10px;
  }

  .contact-submit {
    justify-self: center;
  }

  .footer-brand {
    gap: 10px;
  }
}
