:root {
  --bg: #0b0f14;
  --bg-soft: #111821;
  --panel: #151e29;
  --panel-2: #0f151d;
  --text: #f4f7fb;
  --muted: #a9b4c2;
  --line: rgba(255,255,255,.10);
  --accent: #ff7a1a;
  --accent-2: #ff9a4f;
  --shadow: 0 24px 60px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,122,26,.14), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11,15,20,.82);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: -.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,122,26,.55);
  background: linear-gradient(145deg, rgba(255,122,26,.22), rgba(255,122,26,.04));
  color: var(--accent-2);
  border-radius: 11px;
  box-shadow: inset 0 0 22px rgba(255,122,26,.10);
}
.nav { display: flex; align-items: center; gap: 26px; color: #c6ced8; font-size: .94rem; }
.nav a:hover { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #15100a;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255,122,26,.20);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255,122,26,.28); }
.button-small { min-height: 40px; padding: 0 16px; }
.button-ghost { background: transparent; color: var(--text); border-color: var(--line); box-shadow: none; }
.button-ghost:hover { border-color: rgba(255,122,26,.65); box-shadow: none; }

.hero { padding: 112px 0 96px; min-height: 78vh; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 64px; }
.eyebrow { color: var(--accent-2); letter-spacing: .16em; font-size: .76rem; font-weight: 800; margin: 0 0 16px; }
h1,h2,h3 { font-family: "Space Grotesk", Inter, sans-serif; margin-top: 0; line-height: 1.05; }
h1 { font-size: clamp(3.4rem, 8vw, 7rem); letter-spacing: -.065em; margin-bottom: 26px; }
h1 span { color: var(--accent-2); }
.hero-lead { max-width: 720px; color: #bdc7d3; font-size: 1.18rem; margin: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; color: #8793a2; margin-top: 26px; font-size: .9rem; }
.trust-row span::before { content: "•"; color: var(--accent); margin-right: 8px; }

.forge-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,122,26,.18); filter: blur(55px); right: -100px; top: -90px; }
.forge-icon { position: relative; width: 116px; height: 116px; display: grid; place-items: center; border-radius: 26px; background: #0e141c; border: 1px solid rgba(255,122,26,.5); color: var(--accent-2); font: 700 2rem "Space Grotesk"; }
.mini-label { font-size: .75rem; letter-spacing: .14em; color: #7f8b9a; font-weight: 800; }
.forge-card h2 { font-size: 2.25rem; margin-bottom: 12px; }
.forge-card p:last-child { color: var(--muted); margin-bottom: 0; }

.section { padding: 96px 0; border-top: 1px solid var(--line); }
.section-alt { background: var(--panel-2); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2, .about-grid h2, .contact-card h2 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.04em; margin-bottom: 14px; }
.section-heading > p:last-child, .about-copy, .contact-card > div > p:last-child { color: var(--muted); }
.cards.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 34px; }
.service-number { color: var(--accent); font-size: .8rem; font-weight: 800; letter-spacing: .12em; margin-bottom: 28px; }
.service-card h3 { font-size: 2rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); }
.service-card ul { padding-left: 18px; margin-bottom: 0; color: #d0d7df; }
.service-card li { margin: 9px 0; }
.service-card li::marker { color: var(--accent); }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-item { min-height: 150px; display: flex; align-items: flex-end; padding: 24px; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,122,26,.10), rgba(255,255,255,.025)); font-weight: 700; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about-copy p { margin-top: 0; font-size: 1.08rem; }

.contact-section { padding-bottom: 110px; }
.contact-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 44px; border: 1px solid rgba(255,122,26,.35); border-radius: 24px; background: linear-gradient(140deg, rgba(255,122,26,.13), rgba(255,255,255,.025)); }
.contact-actions { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }
.copy-status { margin: 0; min-height: 22px; font-size: .85rem; color: var(--muted); text-align: center; }
.footer { border-top: 1px solid var(--line); padding: 32px 0 40px; color: #7f8a98; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { color: var(--text); }

@media (max-width: 860px) {
  .nav a:not(.button) { display: none; }
  .hero { padding: 82px 0 72px; }
  .hero-grid, .about-grid, .contact-card { grid-template-columns: 1fr; gap: 36px; }
  .forge-card { min-height: 320px; }
  .cards.two-col { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-actions { min-width: 0; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .site-header .button-small { display: inline-flex; }
  .nav { gap: 10px; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 8px; }
  .work-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .service-card, .contact-card { padding: 26px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}
