@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #070b1a;
  --navy: #101526;
  --orange: #ff6b21;
  --line: #dfe6ef;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
body { overflow-x: hidden; }
a { transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
img { display: block; max-width: 100%; }
svg { width: 1.15rem; height: 1.15rem; stroke-width: 2; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(7, 11, 26, .74);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
}

.site-header.solid {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(15, 23, 42, .09);
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-menu a {
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  font-weight: 650;
  padding: .72rem .9rem;
  border-radius: 999px;
}

.solid .nav-menu a { color: #1f2937; }
.nav-menu a:hover, .nav-menu a.active { color: white; background: rgba(255, 255, 255, .12); }
.solid .nav-menu a:hover, .solid .nav-menu a.active { color: var(--orange); background: rgba(255, 107, 33, .09); }

.nav-menu .nav-cta {
  margin-left: .35rem;
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 107, 33, .28);
}

.solid .nav-menu .nav-cta { color: white; }
.nav-menu .nav-cta:hover { transform: translateY(-1px); background: #f15e16; color: white; }

.nav-toggle {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: .6rem;
  color: white;
  background: rgba(255, 255, 255, .12);
}

.solid .nav-toggle { color: var(--ink); background: #eef2f7; }

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 107, 33, .24), transparent 28rem),
    linear-gradient(90deg, rgba(7, 11, 26, .98), rgba(7, 11, 26, .88) 42%, rgba(7, 11, 26, .42));
}

.hero-section:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 9rem;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero-section .grid > * { min-width: 0; }

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 36rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 1rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 36rem;
  object-fit: cover;
}

.eyebrow {
  color: #ff884d;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--orange); }

.btn-primary, .btn-secondary {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: .7rem;
  padding: .9rem 1.15rem;
  font-weight: 750;
}

.btn-primary { color: white; background: var(--orange); box-shadow: 0 18px 45px rgba(255, 107, 33, .32); }
.btn-primary:hover { background: #f15e16; transform: translateY(-1px); }
.btn-secondary { color: white; border: 1px solid rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .08); }
.btn-secondary:hover { background: rgba(255, 255, 255, .14); }

.metric {
  min-height: 6rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .8rem;
  background: rgba(255, 255, 255, .07);
}

.metric strong { display: block; color: white; font-size: 1.55rem; line-height: 1; }
.metric span { display: block; margin-top: .45rem; color: #cbd5e1; font-size: .82rem; line-height: 1.25rem; }

.section-pad { padding: 6rem 0; }
.section-heading { max-width: 48rem; }
.section-heading h2, .section-title {
  margin-top: 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}
.section-heading p { margin-top: 1.1rem; color: #64748b; font-size: 1.05rem; line-height: 1.85; }

.service-card, .value-card, .model-card, .blog-card, .post-card {
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: white;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.service-card {
  min-height: 17rem;
  padding: 1.5rem;
}

.service-card svg, .value-card svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--orange);
  padding: .45rem;
  border-radius: .65rem;
  background: rgba(255, 107, 33, .1);
}

.service-card h3, .value-card h3, .model-card h3, .blog-card h3, .post-card h2 {
  margin-top: 1.2rem;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 800;
}

.service-card p, .value-card p, .model-card p, .blog-card p, .post-card p {
  margin-top: .75rem;
  color: #64748b;
  line-height: 1.75;
}

.feature-line {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: #334155;
  font-weight: 650;
}

.feature-line svg {
  flex: 0 0 auto;
  color: white;
  background: var(--orange);
  border-radius: 999px;
  padding: .2rem;
}

.process-panel {
  border-radius: 1rem;
  background: var(--ink);
  padding: 1rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .15);
}

.process-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.process-step:last-child { border-bottom: 0; }
.process-step span { color: var(--orange); font-weight: 900; }
.process-step h3 { color: white; font-weight: 800; font-size: 1.1rem; }
.process-step p { margin-top: .35rem; color: #cbd5e1; line-height: 1.65; }

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

.tech-grid span {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .75rem;
  color: white;
  background: rgba(255, 255, 255, .06);
  font-weight: 750;
}

.blog-card { padding: 1.5rem; min-height: 18rem; }
.blog-card span, .post-card span { color: var(--orange); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.blog-card a, .post-card a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.2rem;
  color: var(--ink);
  font-weight: 800;
}
.blog-card a:hover, .post-card a:hover { color: var(--orange); }

.contact-band {
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 107, 33, .28), transparent 22rem),
    linear-gradient(135deg, #070b1a, #121a2e);
}

.contact-band h2 { margin-top: 1rem; max-width: 50rem; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; font-weight: 850; }
.contact-band p { margin-top: 1rem; color: #cbd5e1; line-height: 1.8; }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .85rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, .08);
}

.contact-card a, .contact-card p {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
  color: white;
  font-weight: 700;
}
.contact-card svg { color: #ff884d; flex: 0 0 auto; }

.site-footer { background: #050815; color: white; }
.site-footer h3 { margin-bottom: .9rem; color: white; font-weight: 800; }
.site-footer a, .site-footer p { display: block; margin-top: .55rem; color: #94a3b8; font-size: .95rem; }
.site-footer a:hover { color: white; }

.subhero {
  color: white;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 107, 33, .24), transparent 24rem),
    linear-gradient(135deg, #070b1a, #111a31);
}

.subhero h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.subhero p:not(.eyebrow) {
  margin-top: 1.4rem;
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.85;
}

.quote-panel {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, .08);
}
.quote-panel p { margin: 0; color: white; font-size: 1.45rem; line-height: 1.55; font-weight: 700; }

.value-card, .model-card { padding: 1.5rem; }
.industry-pill {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: .75rem;
  padding: 1rem;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.service-detail {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.2rem;
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: 1.5rem;
  background: white;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.service-detail > svg {
  width: 3rem;
  height: 3rem;
  color: var(--orange);
  padding: .65rem;
  border-radius: .75rem;
  background: rgba(255, 107, 33, .1);
}

.service-detail h2 { color: var(--ink); font-size: 1.35rem; font-weight: 850; }
.service-detail p { margin-top: .6rem; color: #64748b; line-height: 1.75; }
.service-detail ul { margin-top: 1rem; color: #334155; line-height: 1.9; font-weight: 650; }
.service-detail li { position: relative; padding-left: 1.1rem; }
.service-detail li:before { content: ""; position: absolute; left: 0; top: .82rem; width: .38rem; height: .38rem; border-radius: 999px; background: var(--orange); }

.post-card { overflow: hidden; padding: 1.25rem; }
.post-art {
  display: flex;
  height: 11rem;
  align-items: center;
  justify-content: center;
  margin: -.25rem -.25rem 1.25rem;
  border-radius: .75rem;
  color: white;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 107, 33, .8), transparent 9rem),
    linear-gradient(135deg, #070b1a, #18213a);
}
.post-art svg { width: 3.4rem; height: 3.4rem; }

@media (max-width: 1023px) {
  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: .85rem;
    padding: .65rem;
    background: white;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .18);
  }

  .nav-menu.open { display: flex; }
  .nav-menu a, .site-header .nav-menu a { color: #1f2937; }
  .nav-menu a:hover, .nav-menu a.active { color: var(--orange); background: rgba(255, 107, 33, .09); }
  .nav-menu .nav-cta, .site-header .nav-menu .nav-cta { margin-left: 0; color: white; text-align: center; }
  .hero-visual { min-height: 26rem; }
  .hero-visual img { min-height: 26rem; }
}

@media (max-width: 640px) {
  .site-header img { max-width: 13.5rem; height: auto; }
  .section-pad { padding: 4.5rem 0; }
  .eyebrow { font-size: .72rem; line-height: 1.55; overflow-wrap: anywhere; }
  .hero-section .max-w-3xl, .hero-section .max-w-2xl, .hero-visual {
    width: calc(100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
  }
  .hero-section h1 { font-size: 2.25rem; line-height: 1.1; overflow-wrap: break-word; }
  .hero-section p { overflow-wrap: break-word; }
  .hero-section .grid-cols-3 { grid-template-columns: 1fr; }
  .metric { min-height: 5.5rem; padding: .8rem; }
  .metric strong { font-size: 1.25rem; }
  .tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-detail { grid-template-columns: 1fr; }
}
