/* Hardstand marketing site — shared styles
   Brand: charcoal #14181B / deep #0E1114, orange #E8620C, bright #FF7A1F
   Wordmark: HARD (light) + STAND (orange). Strap: THE GROUND YOUR BUSINESS RUNS ON */

:root {
  --charcoal: #14181B;
  --deep: #0E1114;
  --panel: #171c20;
  --panel-2: #1c2226;
  --line: #29323a;
  --orange: #E8620C;
  --orange-bright: #FF7A1F;
  --green: #4CAF7D;
  --text: #F2F4F6;
  --muted: #9aa5ae;
  --muted-dim: #6f7c88;
  --max: 1160px;
  --radius: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,17,20,.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.wordmark {
  font-weight: 800; font-size: 22px; letter-spacing: 1px;
}
.wordmark .stand { color: var(--orange-bright); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px; color: var(--muted); font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.btn {
  display: inline-block; font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .1s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange-bright); color: #1A1206; }
.btn-primary:hover { background: var(--orange); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--muted); }
.nav .btn { padding: 9px 18px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(900px 420px at 78% -10%, rgba(232,98,12,.18), transparent 60%),
    linear-gradient(180deg, var(--charcoal), var(--deep));
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange-bright); margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px); line-height: 1.05; letter-spacing: -1px;
  font-weight: 800; max-width: 16ch;
}
.hero .lede {
  font-size: clamp(17px, 2.2vw, 21px); color: var(--muted);
  max-width: 60ch; margin-top: 22px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Hero two-column layout with phone mockup */
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-grid .hero h1 { max-width: none; }

/* ---------- Real app screenshot — phone bezel ---------- */
.phone-stage { display: flex; justify-content: center; }
.phone {
  width: 270px; background: #05070a; border: 9px solid #05070a;
  border-radius: 40px; padding: 0;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.85), 0 0 0 1px var(--line);
  position: relative; overflow: hidden;
}
.phone img { display: block; width: 100%; height: auto; border-radius: 32px; }
.phone-caption {
  text-align: center; color: var(--muted-dim); font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700; margin-top: 16px;
}

/* ---------- Real app screenshot — desktop browser frame ---------- */
.browser-frame {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--line);
  background: var(--panel); box-shadow: 0 30px 70px -30px rgba(0,0,0,.8);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: var(--panel-2); border-bottom: 1px solid var(--line);
}
.browser-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--line); display: inline-block; }
.browser-frame img { display: block; width: 100%; height: auto; }

/* ---------- Media split (screenshot beside copy) ---------- */
.media-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: center; text-align: left; }
.media-split .stat-num { text-align: left; }
.media-split .stat-label { margin-left: 0; margin-right: 0; text-align: left; }

/* ---------- Sections ---------- */
section { padding: 74px 0; }
.section-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange-bright); margin-bottom: 12px;
}
h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.5px; font-weight: 800; line-height: 1.1; }
h2 + .section-sub { margin-top: 16px; }
.section-sub { color: var(--muted); font-size: 18px; max-width: 62ch; }

.alt { background: var(--charcoal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- The cost stat ---------- */
.stat-band { text-align: center; }
.stat-num {
  font-size: clamp(44px, 7vw, 72px); font-weight: 800; letter-spacing: -1.5px;
  color: var(--orange-bright); line-height: 1;
}
.stat-label { color: var(--muted); font-size: 18px; margin-top: 14px; max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ---------- Three verbs ---------- */
.verbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.verb {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px;
}
.verb .step { color: var(--orange-bright); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.verb h3 { font-size: 24px; margin: 10px 0 8px; letter-spacing: -.3px; }
.verb p { color: var(--muted); font-size: 15px; }

/* ---------- Capabilities grid ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 40px; }
.cap {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px;
}
.cap .ic { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-bright); }
.cap h3 { font-size: 19px; margin: 8px 0 6px; letter-spacing: -.3px; }
.cap p { color: var(--muted); font-size: 14px; }

/* ---------- Industry chips ---------- */
.fam { margin-top: 26px; }
.fam-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-dim); margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.fam .chips { margin-top: 0; }
.chip {
  border: 1px solid var(--line); background: var(--panel); color: var(--text);
  padding: 10px 16px; border-radius: 999px; font-size: 15px; font-weight: 600;
}
.chip::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 2px; background: var(--orange-bright); margin-right: 9px; vertical-align: middle; }

/* ---------- Feature rows ---------- */
.rows { display: grid; gap: 18px; margin-top: 36px; }
.feature {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px;
}
.feature .idx {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(232,98,12,.14); color: var(--orange-bright); font-weight: 800; font-size: 18px;
}
.feature h3 { font-size: 19px; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---------- Who it's for ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.panel-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
}
.check { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.check li { position: relative; padding-left: 30px; color: var(--muted); font-size: 16px; }
.check li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 800;
}

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.ind {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px;
}
.ind h3 { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.ind h3::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--orange-bright); }
.ind ul { list-style: none; display: grid; gap: 6px; }
.ind li { color: var(--muted); font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 50% 120%, rgba(232,98,12,.22), transparent 60%),
    var(--charcoal);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { max-width: 20ch; margin: 0 auto; }
.cta-band p { color: var(--muted); font-size: 18px; margin: 16px auto 30px; max-width: 52ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.field { display: block; margin-bottom: 16px; }
.field label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.field input, .field textarea {
  width: 100%; background: var(--deep); border: 1px solid var(--line); border-radius: 12px;
  color: var(--text); padding: 12px 14px; font-size: 15px; font-family: inherit;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-detail { display: grid; gap: 6px; margin-bottom: 22px; }
.contact-detail .k { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-dim); font-weight: 700; }
.contact-detail .v { font-size: 18px; }
.contact-detail .v a:hover { color: var(--orange-bright); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line); padding: 40px 0; color: var(--muted-dim);
  background: var(--deep);
}
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 15px; }
.footer-links a:hover { color: var(--text); }
.strap-foot { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-dim); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 64px 0 40px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--charcoal), var(--deep)); }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 46px); letter-spacing: -1px; font-weight: 800; }
.page-hero p { color: var(--muted); font-size: 19px; max-width: 60ch; margin-top: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .verbs, .ind-grid { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-stage { order: -1; }
  .media-split { grid-template-columns: 1fr; gap: 26px; }
  .nav-links a:not(.btn) { display: none; }
}
