:root {
  --bg: #080a08;
  --panel: #111411;
  --panel-2: #181b17;
  --line: #2b3028;
  --text: #f3f4ef;
  --muted: #a8ada4;
  --green: #b6e900;
  --orange: #ff6500;
  --max: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.site-header {
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(4vw, calc((100vw - var(--max)) / 2));
  background: rgba(8, 10, 8, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.brand small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.btn) {
  color: #c7cbc2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.nav > a:not(.btn):hover { color: white; }
.menu-toggle {
  display: none;
  border: 1px solid #3c4238;
  border-radius: 10px;
  background: #111411;
  color: white;
  padding: 8px 11px;
  font-size: 24px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-green { background: var(--green); color: #090b08; }
.btn-orange { background: var(--orange); color: white; }
.btn-outline { border-color: #51584d; background: transparent; }
.btn-ghost { border-color: #495047; background: #111510; }
.btn-large { padding: 16px 28px; font-size: 18px; }

.hero {
  min-height: 820px;
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 4vw;
  padding: 72px max(4vw, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -3%;
  background: url("assets/highrise-crane-bg.svg") center 42% / cover no-repeat;
  opacity: 0.68;
  filter: saturate(0.75) contrast(1.08);
  z-index: -2;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.60) 36%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 10, 8, 0.20), rgba(8, 10, 8, 0.76) 92%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-glow {
  position: absolute;
  z-index: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.13;
}
.glow-green { background: var(--green); left: -280px; top: 50px; }
.glow-orange { background: var(--orange); right: -260px; top: 20px; }
.hero-copy, .hero-product, .feature-strip { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.25em;
  font-weight: 800;
  color: var(--green);
}
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(76px, 9vw, 148px);
  line-height: 0.78;
  margin: 18px 0 24px;
  letter-spacing: -0.035em;
  font-weight: 900;
}
.hero h1 span { color: var(--orange); text-shadow: 0 0 35px rgba(255, 101, 0, 0.18); }
.hero h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  text-transform: uppercase;
  margin: 0 0 20px;
  color: #d9ddcf;
}
.hero-text { font-size: 18px; line-height: 1.7; color: #c3c7be; max-width: 700px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.single-action { max-width: 260px; }
.hero-product { transform: perspective(1300px) rotateY(-5deg) rotateX(2deg); }
.screen-shell {
  background: #090b09;
  border: 1px solid #42483f;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.screen-shell img { border-radius: 11px; width: 100%; height: auto; }
.screen-bar { height: 28px; display: flex; align-items: center; gap: 7px; padding: 0 8px; }
.screen-bar span { width: 8px; height: 8px; border-radius: 50%; background: #555; }
.screen-bar span:first-child { background: var(--orange); }
.screen-bar span:nth-child(2) { background: #d7a200; }
.screen-bar span:nth-child(3) { background: var(--green); }
.screen-bar b { font-size: 9px; letter-spacing: 0.18em; color: #8e958a; margin-left: auto; }
.status-chip {
  position: absolute;
  right: 20px;
  bottom: -24px;
  background: #111511;
  border: 1px solid #30362d;
  border-radius: 99px;
  padding: 10px 15px;
  font-size: 12px;
  color: #ccd2c8;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.status-chip i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 12px var(--green);
}
.feature-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 40px;
  border-top: 1px solid #31362f;
  border-bottom: 1px solid #31362f;
  background: rgba(9, 12, 9, 0.7);
}
.feature-strip div { display: flex; gap: 14px; align-items: center; padding: 18px 20px; border-right: 1px solid #31362f; }
.feature-strip div:last-child { border-right: 0; }
.feature-strip b { font-family: "Barlow Condensed", sans-serif; font-size: 26px; color: var(--orange); }
.feature-strip span { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-weight: 700; line-height: 1.25; }

.section { max-width: var(--max); margin: auto; padding: 110px 4vw; }
.section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 14px 0 26px;
  letter-spacing: -0.02em;
}
.section p { color: var(--muted); line-height: 1.75; font-size: 17px; }
.intro-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 90px; align-items: start; }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.feature-list article > span { font-family: "Barlow Condensed", sans-serif; color: var(--green); font-size: 22px; font-weight: 800; }
.feature-list h3 { font-family: "Barlow Condensed", sans-serif; font-size: 30px; text-transform: uppercase; margin: 0 0 4px; }
.feature-list p { margin: 0; font-size: 15px; }

.product-showcase { max-width: none; background: #0c0f0c; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.showcase-heading { max-width: var(--max); margin: 0 auto 55px; padding: 0 4vw; }
.showcase-heading p:last-child { max-width: 650px; }
.showcase-grid { max-width: var(--max); margin: auto; padding: 0 4vw; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.product-card {
  background: linear-gradient(145deg, #171b16, #0f120f);
  border: 1px solid #2c322a;
  border-radius: 22px;
  overflow: hidden;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.product-card.wide { grid-column: 1 / -1; display: grid; grid-template-columns: 0.55fr 1.45fr; align-items: center; }
.card-copy span { font-size: 11px; letter-spacing: 0.22em; font-weight: 800; color: var(--orange); }
.card-copy h3 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-size: 46px; line-height: 1; margin: 12px 0; }
.card-copy p { font-size: 15px; margin: 0; }
.product-card .screen-shell { border-radius: 12px; padding: 5px; }
.product-card .screen-shell img { border-radius: 7px; }

.operations-band { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #30352d; border: 1px solid #30352d; }
.mini-grid div { background: #121512; padding: 28px; }
.mini-grid b { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 28px; color: var(--green); }
.mini-grid div:nth-child(even) b { color: var(--orange); }
.mini-grid span { color: #aab0a6; font-size: 13px; }

.pricing-heading { max-width: 930px; text-align: center; margin: 0 auto 58px; }
.pricing-heading p { margin-left: auto; margin-right: auto; max-width: 820px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-card {
  position: relative;
  min-height: 370px;
  padding: 38px 32px 34px;
  border-radius: 22px;
  background: linear-gradient(145deg, #171b16, #0d100d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.plan-green { border: 1px solid rgba(182, 233, 0, 0.65); box-shadow: inset 0 0 0 1px rgba(182, 233, 0, 0.04); }
.plan-orange { border: 1px solid rgba(255, 101, 0, 0.75); box-shadow: inset 0 0 0 1px rgba(255, 101, 0, 0.05); }
.featured-plan { transform: translateY(-10px); }
.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 !important;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: white !important;
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.plan-name { margin: 0 !important; font-family: "Barlow Condensed", sans-serif; font-size: 30px !important; font-weight: 900; letter-spacing: 0.05em; color: white !important; }
.plan-green .plan-name { color: var(--green) !important; }
.plan-orange .plan-name { color: var(--orange) !important; }
.plan-price { display: flex; flex-direction: column; align-items: center; margin: 22px 0 20px !important; }
.plan-price span { font-family: "Barlow Condensed", sans-serif; font-size: 78px; line-height: 0.95; font-weight: 900; }
.plan-green .plan-price span { color: var(--green); }
.plan-orange .plan-price span { color: var(--orange); }
.plan-price small { margin-top: 7px; color: #d6dad1; font-size: 14px; }
.plan-divider { width: 72%; height: 1px; background: #3b4138; margin-bottom: 24px; }
.plan-users { display: flex; flex-direction: column; gap: 5px; margin: 0 !important; }
.plan-users strong { font-family: "Barlow Condensed", sans-serif; font-size: 44px; line-height: 1; color: white; }
.plan-users span { color: #aab0a6; font-size: 12px; font-weight: 800; letter-spacing: 0.2em; }

.setup-panel {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  border: 1px solid #363c32;
  border-radius: 20px;
  overflow: hidden;
  background: #101310;
}
.setup-panel > div { padding: 30px; }
.setup-panel > div + div { border-left: 1px solid #32372f; }
.setup-heading h3 { margin: 10px 0 0; font-family: "Barlow Condensed", sans-serif; font-size: 34px; line-height: 1.05; text-transform: uppercase; }
.setup-option { display: flex; flex-direction: column; justify-content: center; }
.setup-option span { font-size: 12px; font-weight: 900; letter-spacing: 0.14em; }
.setup-option strong { margin-top: 10px; font-family: "Barlow Condensed", sans-serif; font-size: 42px; line-height: 1; }
.setup-option p { margin: 12px 0 0; font-size: 14px; }
.setup-green span, .setup-green strong { color: var(--green); }
.setup-orange span, .setup-orange strong { color: var(--orange); }
.setup-orange strong { font-size: 32px; }

.about { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 70px; align-items: center; }
.about-logo { display: flex; align-items: center; justify-content: center; }
.about-logo img {
  border-radius: 0;
  filter: drop-shadow(0 34px 55px rgba(0, 0, 0, 0.45));
}

.contact-section {
  max-width: var(--max);
  margin: 0 auto 100px;
  padding: 78px 4vw;
  border-top: 1px solid #3a4036;
  border-bottom: 1px solid #3a4036;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(50px, 7vw, 110px);
  background: linear-gradient(120deg, rgba(182, 233, 0, 0.055), rgba(255, 101, 0, 0.045));
}
.contact-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 6vw, 86px);
  text-transform: uppercase;
  line-height: 0.92;
  margin: 14px 0 24px;
}
.contact-copy > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.contact-direct {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #343a31;
}
.contact-direct span {
  display: block;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.contact-direct a {
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-direct a:hover { color: var(--green); }
.contact-form {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid #343a31;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(23, 27, 22, 0.98), rgba(12, 15, 12, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.form-field { min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label {
  display: block;
  margin-bottom: 9px;
  color: #edf0e9;
  font-size: 13px;
  font-weight: 800;
}
.form-field label span { color: var(--orange); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #434a3f;
  border-radius: 9px;
  background: #0b0e0b;
  color: white;
  font: inherit;
  padding: 14px 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input,
.form-field select { min-height: 50px; }
.form-field textarea { min-height: 160px; resize: vertical; line-height: 1.55; }
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: #5b6455; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(182, 233, 0, 0.12);
}
.form-field select { color-scheme: dark; }
.form-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}
.form-note {
  margin: 13px 0 0;
  color: #8f958c;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.confirmation-main {
  min-height: calc(100vh - 190px);
  display: grid;
  place-items: center;
  padding: 80px 20px;
}
.confirmation-card {
  width: min(760px, 100%);
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid #343a31;
  border-radius: 24px;
  background: linear-gradient(145deg, #151915, #0d100d);
  text-align: center;
}
.confirmation-card img { width: 130px; margin: 0 auto 26px; }
.confirmation-card h1 {
  margin: 14px 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 8vw, 78px);
  line-height: 0.95;
  text-transform: uppercase;
}
.confirmation-card > p:not(.section-kicker) {
  max-width: 590px;
  margin: 0 auto 30px;
  color: var(--muted);
  line-height: 1.7;
}

footer {
  max-width: var(--max);
  margin: auto;
  padding: 36px 4vw 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: #8f958c;
  font-size: 13px;
}
.footer-brand img { width: 44px; height: 44px; }
.footer-brand strong { font-size: 22px; color: white; }
.footer-brand small { font-size: 7px; }
.footer-center { text-align: center; }
.footer-center p { margin: 0 0 10px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.footer-links a, footer > a { color: #c0c5bb; text-decoration: none; }
.footer-links a:hover, footer > a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }

.legal-page { min-height: 100vh; }
.legal-header { position: relative; }
.legal-main { max-width: 1050px; margin: 0 auto; padding: 80px 24px 100px; }
.legal-card {
  background: linear-gradient(145deg, #151915, #0f120f);
  border: 1px solid #30362e;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 68px);
}
.legal-card h1 {
  margin: 10px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 8vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
}
.legal-effective { margin: 12px 0 40px; color: #c1c6bb; font-weight: 700; }
.legal-card h2 {
  margin: 38px 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  color: var(--green);
}
.legal-card p { color: #b6bbb1; line-height: 1.75; }
.legal-card a { color: var(--green); }
.legal-footer { max-width: 1050px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

@media (max-width: 1050px) {
  .nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 24px 4vw;
    background: #090b09;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav > a { padding: 13px 10px; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-product { transform: none; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip div:last-child { grid-column: 1 / -1; }
  .intro-grid, .operations-band, .about { grid-template-columns: 1fr; gap: 45px; }
  .product-card.wide { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .product-card.wide { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; margin: auto; }
  .featured-plan { transform: none; }
  .setup-panel { grid-template-columns: 1fr; }
  .setup-panel > div + div { border-left: 0; border-top: 1px solid #32372f; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  footer { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 650px) {
  .site-header { height: 72px; padding: 0 18px; }
  .nav { top: 72px; padding: 18px; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 24px; }
  .hero { padding: 52px 20px 44px; min-height: auto; gap: 48px; }
  .hero h1 { font-size: clamp(66px, 21vw, 92px); }
  .hero h2 { font-size: 34px; }
  .hero-text { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .single-action { max-width: none; }
  .status-chip { right: 8px; bottom: -20px; }
  .feature-strip { display: none; }
  .section { padding: 78px 20px; }
  .section h2 { font-size: clamp(46px, 15vw, 64px); }
  .showcase-heading, .showcase-grid { padding-left: 20px; padding-right: 20px; }
  .product-card { padding: 20px; }
  .card-copy h3 { font-size: 38px; }
  .mini-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 330px; padding-left: 20px; padding-right: 20px; }
  .plan-price span { font-size: 68px; }
  .setup-panel > div { padding: 26px 22px; }
  .about-logo { max-width: 380px; }
  .contact-section { margin: 0 20px 70px; padding: 50px 22px; gap: 38px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .contact-form { padding: 24px 18px; }
  .legal-header .btn { min-height: 40px; padding: 10px 13px; font-size: 12px; }
  .legal-main { padding: 50px 16px 70px; }
  .legal-card { border-radius: 18px; }
}


/* Launch content additions */
.how-it-works {
  border-top: 1px solid var(--line);
}
.how-heading,
.faq-heading {
  max-width: 860px;
  margin-bottom: 52px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.step-card {
  position: relative;
  min-height: 310px;
  padding: 36px 32px;
  border: 1px solid #30362d;
  border-radius: 20px;
  background: linear-gradient(145deg, #171b16, #0f120f);
}
.step-card:nth-child(2) { border-color: rgba(255, 101, 0, 0.6); }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(182, 233, 0, 0.55);
  border-radius: 50%;
  color: var(--green);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 900;
}
.step-card:nth-child(2) .step-number { border-color: rgba(255, 101, 0, 0.65); color: var(--orange); }
.step-card h3 {
  margin: 28px 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}
.step-card p { margin: 0; font-size: 15px; }

.security-section {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
  padding-left: max(4vw, calc((100vw - var(--max)) / 2));
  padding-right: max(4vw, calc((100vw - var(--max)) / 2));
  background: #0c0f0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.security-copy { max-width: 620px; overflow-wrap: anywhere; }
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: #343a31;
}
.security-grid article {
  min-height: 220px;
  padding: 30px;
  background: #121512;
}
.security-grid article > span {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
}
.security-grid article:nth-child(odd) > span { color: var(--green); }
.security-grid h3 {
  margin: 16px 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}
.security-grid p { margin: 0; font-size: 14px; }

.mission-copy { max-width: 820px; }
.mission-copy h2 { margin-bottom: 30px; }
.mission-copy p { margin: 0 0 18px; }
.mission-copy .mission-lead {
  color: #eef1e9;
  font-size: 20px;
  font-weight: 600;
}

.faq-section {
  border-top: 1px solid var(--line);
}
.faq-list {
  max-width: 980px;
  border-top: 1px solid #343a31;
}
.faq-list details {
  border-bottom: 1px solid #343a31;
}
.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  list-style: none;
  color: #f3f5ef;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.faq-list details[open] summary::after { content: "–"; color: var(--green); }
.faq-list details p {
  max-width: 850px;
  margin: -4px 0 25px;
  padding-right: 45px;
  font-size: 16px;
}
.faq-list a { color: var(--green); }

@media (max-width: 1050px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .security-section { grid-template-columns: minmax(0, 1fr); gap: 45px; }
  .security-copy, .security-grid { min-width: 0; width: 100%; }
}

@media (max-width: 650px) {
  .step-card { padding: 28px 24px; }
  .security-grid { grid-template-columns: 1fr; }
  .security-grid article { min-height: 0; padding: 26px 22px; }
  .mission-copy .mission-lead { font-size: 18px; }
  .faq-list summary { font-size: 24px; padding-right: 42px; }
  .faq-list details p { padding-right: 0; }
}


/* CrewGap Field Notes / Blog — V1.9 */
.nav { gap: 22px; }
.nav > a[aria-current="page"] { color: var(--green); }
.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.text-link:hover { color: white; }
.home-blog-section { border-top: 1px solid var(--line); }
.home-blog-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}
.home-blog-heading h2 { max-width: 850px; margin-bottom: 0; }
.home-featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  overflow: hidden;
  border: 1px solid #33392f;
  border-radius: 24px;
  background: linear-gradient(145deg, #171b16, #0e110e);
}
.home-featured-cover { display: flex; align-items: center; justify-content: center; background: #080a08; }
.home-featured-cover img { width: 100%; height: auto; object-fit: contain; }
.home-featured-copy { align-self: center; padding: clamp(34px, 5vw, 68px); }
.post-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; color: #9fa59c; font-size: 12px; font-weight: 800; letter-spacing: 0.05em; }
.post-meta span:first-child { color: var(--orange); letter-spacing: 0.14em; }
.home-featured-copy h3 { margin: 20px 0 16px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(42px, 5vw, 68px); line-height: 0.98; text-transform: uppercase; }
.home-featured-copy h3 a { text-decoration: none; }
.home-featured-copy h3 a:hover { color: var(--green); }
.home-featured-copy p { margin: 0 0 28px; }

.blog-hero {
  min-height: 570px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 70px;
  align-items: center;
  overflow: hidden;
  padding: 95px max(4vw, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8,10,8,.96), rgba(8,10,8,.74)),
    repeating-linear-gradient(0deg, transparent, transparent 45px, rgba(255,255,255,.028) 46px),
    repeating-linear-gradient(90deg, transparent, transparent 45px, rgba(255,255,255,.028) 46px);
}
.blog-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -170px;
  border: 90px solid rgba(182,233,0,.05);
  transform: rotate(18deg);
}
.blog-hero-copy { position: relative; z-index: 1; max-width: 980px; }
.blog-hero h1 { margin: 18px 0 24px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(64px, 8vw, 124px); line-height: .82; text-transform: uppercase; letter-spacing: -.025em; }
.blog-hero h1 span { color: var(--orange); }
.blog-hero p:last-child { max-width: 810px; color: #c0c5bc; font-size: 18px; line-height: 1.75; }
.blog-hero-mark { position: relative; z-index: 1; min-height: 330px; display: flex; flex-direction: column; justify-content: center; padding: 42px; border: 1px solid #353b32; background: rgba(14,17,14,.78); box-shadow: 0 35px 80px rgba(0,0,0,.34); }
.blog-hero-mark span, .blog-hero-mark b { font-family: "Barlow Condensed", sans-serif; font-size: clamp(58px, 6vw, 92px); line-height: .75; text-transform: uppercase; }
.blog-hero-mark span { color: var(--green); }
.blog-hero-mark b { color: white; }
.blog-hero-mark small { margin-top: 45px; color: var(--orange); font-family: "Barlow Condensed", sans-serif; font-size: 38px; font-weight: 900; }
.blog-index-section { padding-top: 90px; }
.blog-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 46px; }
.blog-toolbar h2 { margin-bottom: 0; }
.blog-search { width: min(360px, 100%); }
.blog-search span { display: block; margin-bottom: 9px; color: #d4d8d0; font-size: 12px; font-weight: 800; }
.blog-search input { width: 100%; min-height: 50px; padding: 13px 15px; border: 1px solid #434a3f; border-radius: 9px; background: #0b0e0b; color: white; font: inherit; }
.blog-search input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(182,233,0,.12); }
.blog-index-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(330px, .6fr); gap: 28px; align-items: stretch; }
.featured-article-card { overflow: hidden; border: 1px solid #33392f; border-radius: 24px; background: linear-gradient(145deg, #171b16, #0e110e); }
.featured-article-card[hidden] { display: none; }
.featured-article-image { display: block; aspect-ratio: 1200 / 630; overflow: hidden; }
.featured-article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.featured-article-image:hover img { transform: scale(1.015); }
.featured-article-body { padding: clamp(28px, 4vw, 52px); }
.featured-article-body h2 { margin: 18px 0 15px; font-size: clamp(44px, 5vw, 68px); }
.featured-article-body h2 a { text-decoration: none; }
.featured-article-body h2 a:hover { color: var(--green); }
.featured-article-body p { max-width: 720px; margin: 0 0 28px; }
.blog-topic-panel { padding: 38px 34px; border: 1px solid #33392f; border-radius: 24px; background: #101310; }
.blog-topic-panel h3 { margin: 14px 0 24px; font-family: "Barlow Condensed", sans-serif; font-size: 44px; text-transform: uppercase; }
.blog-topic-panel ul { list-style: none; margin: 0; padding: 0; }
.blog-topic-panel li { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 22px 0; border-top: 1px solid #31362e; }
.blog-topic-panel li > span { color: var(--orange); font-family: "Barlow Condensed", sans-serif; font-size: 22px; font-weight: 900; }
.blog-topic-panel li:nth-child(even) > span { color: var(--green); }
.blog-topic-panel strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 25px; text-transform: uppercase; }
.blog-topic-panel small { display: block; margin-top: 4px; color: #9ea49b; line-height: 1.5; }
.no-results { padding: 40px; text-align: center; }
.blog-purpose-band { max-width: var(--max); margin: 0 auto 100px; padding: 70px 4vw; display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; align-items: center; border-top: 1px solid #343a31; border-bottom: 1px solid #343a31; background: linear-gradient(120deg, rgba(182,233,0,.045), rgba(255,101,0,.04)); }
.blog-purpose-band h2 { margin: 14px 0 0; font-family: "Barlow Condensed", sans-serif; font-size: clamp(46px, 6vw, 78px); line-height: .95; text-transform: uppercase; }
.blog-purpose-band > p { color: #bcc1b8; font-size: 20px; line-height: 1.75; }

.article-header { max-width: 1160px; margin: 0 auto; padding: 82px 24px 48px; }
.article-back { display: inline-flex; gap: 9px; align-items: center; margin-bottom: 36px; color: var(--green); font-weight: 800; text-decoration: none; }
.article-back:hover { color: white; }
.article-header h1 { max-width: 1120px; margin: 22px 0 18px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(66px, 8vw, 120px); line-height: .86; text-transform: uppercase; letter-spacing: -.025em; }
.article-deck { max-width: 950px; margin: 0; color: #c0c5bc; font-size: clamp(21px, 2.4vw, 31px); line-height: 1.45; }
.article-author { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.article-author img { width: 52px; height: 52px; border-radius: 10px; }
.article-author strong, .article-author span { display: block; }
.article-author span { margin-top: 3px; color: #969d93; font-size: 13px; }
.article-cover { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.article-cover img { width: 100%; border: 1px solid #343a31; border-radius: 22px; }
.article-layout { max-width: 1240px; margin: 0 auto; padding: 75px 24px 110px; display: grid; grid-template-columns: minmax(0, 780px) minmax(260px, 320px); justify-content: space-between; gap: 70px; align-items: start; }
.article-body { min-width: 0; }
.article-body > p, .article-body > ul, .article-body > ol { color: #c2c7be; font-size: 18px; line-height: 1.9; }
.article-body > p { margin: 0 0 25px; }
.article-body .article-lead { color: #f0f2ed; font-size: 24px; line-height: 1.65; font-weight: 600; }
.article-body h2 { margin: 62px 0 22px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(42px, 5vw, 61px); line-height: 1; text-transform: uppercase; color: white; }
.article-body ul, .article-body ol { padding-left: 27px; margin: 0 0 28px; }
.article-body li { margin: 11px 0; padding-left: 6px; }
.article-body li::marker { color: var(--orange); font-weight: 900; }
.article-body ol li::marker { color: var(--green); }
.article-callout { margin: 48px 0; padding: 34px 38px; border-left: 6px solid var(--orange); background: linear-gradient(90deg, rgba(255,101,0,.1), rgba(255,101,0,.02)); }
.article-callout span { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .2em; }
.article-callout p { margin: 12px 0 0; color: white; font-family: "Barlow Condensed", sans-serif; font-size: 34px; line-height: 1.2; text-transform: uppercase; }
.article-source-note { margin: 55px 0; padding: 24px 26px; border: 1px solid #3a4037; border-radius: 12px; color: #9ea49b; font-size: 14px; line-height: 1.7; }
.article-source-note strong { color: var(--green); }
.article-source-note a { color: var(--green); }
.article-cta { margin-top: 66px; padding: 38px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(182,233,0,.42); border-radius: 18px; background: linear-gradient(120deg, rgba(182,233,0,.08), rgba(255,101,0,.045)); }
.article-cta h2 { margin: 12px 0 0; font-size: 42px; }
.article-sidebar { position: sticky; top: 112px; display: grid; gap: 22px; }
.article-sidebar-card { padding: 28px; border: 1px solid #353b32; border-radius: 16px; background: #101310; }
.article-sidebar-card > span { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.article-sidebar-card h3 { margin: 13px 0 10px; font-family: "Barlow Condensed", sans-serif; font-size: 36px; text-transform: uppercase; }
.article-sidebar-card p { margin: 0; color: #aeb4aa; font-size: 14px; line-height: 1.7; }
.article-share-card button { width: 100%; margin: 18px 0 0; padding: 13px; border: 1px solid #4b5347; border-radius: 8px; background: #0a0d0a; color: white; font: inherit; font-weight: 800; cursor: pointer; }
.article-share-card button:hover { border-color: var(--green); }
.article-share-card .copy-status { min-height: 22px; margin-top: 9px; color: var(--green); font-size: 12px; }

.ad-slot { max-width: var(--max); margin-left: auto; margin-right: auto; border: 1px dashed #5b6355; background: repeating-linear-gradient(135deg, #111411, #111411 12px, #141814 12px, #141814 24px); color: #8f978c; text-align: center; }
.ad-slot:not([hidden]) { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ad-slot span { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.ad-slot strong { margin-top: 8px; color: white; font-family: "Barlow Condensed", sans-serif; font-size: 24px; text-transform: uppercase; }
.ad-slot small { margin-top: 5px; }
.ad-slot img { width: 100%; height: 100%; object-fit: cover; }
.ad-slot a { display: block; width: 100%; height: 100%; }
.ad-slot-leaderboard { width: min(970px, calc(100% - 48px)); min-height: 130px; margin-top: 42px; margin-bottom: 0; }
.ad-slot-inline { min-height: 170px; margin-top: 45px; margin-bottom: 45px; }
.ad-slot-sidebar { min-height: 280px; width: 100%; }
.ad-slot-footer { min-height: 150px; margin-top: 50px; }

.legal-blog-link { color: #c7cbc2; text-decoration: none; font-weight: 700; }
.legal-blog-link:hover { color: white; }

@media (max-width: 1180px) {
  .home-featured-post, .blog-index-grid { grid-template-columns: 1fr; }
  .home-featured-cover img { aspect-ratio: 1200 / 630; }
  .blog-topic-panel { padding: 34px; }
  .article-layout { grid-template-columns: minmax(0, 760px); justify-content: center; }
  .article-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-sidebar .ad-slot { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .blog-hero { grid-template-columns: 1fr; min-height: 0; gap: 40px; }
  .blog-hero-mark { min-height: 230px; max-width: 480px; }
  .blog-toolbar, .home-blog-heading { align-items: start; flex-direction: column; }
  .blog-search { width: 100%; }
  .blog-purpose-band { grid-template-columns: 1fr; gap: 20px; }
  .article-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 650px) {
  .home-featured-post { border-radius: 17px; }
  .home-featured-copy { padding: 26px 22px 30px; }
  .home-featured-copy h3 { font-size: 42px; }
  .blog-hero { padding: 68px 20px; }
  .blog-hero h1 { font-size: 61px; }
  .blog-hero p:last-child { font-size: 16px; }
  .blog-hero-mark { min-height: 190px; padding: 28px; }
  .blog-index-section { padding-top: 68px; }
  .featured-article-card, .blog-topic-panel { border-radius: 17px; }
  .featured-article-body, .blog-topic-panel { padding: 25px 21px; }
  .featured-article-body h2 { font-size: 44px; }
  .blog-purpose-band { margin: 0 20px 70px; padding: 48px 22px; }
  .blog-purpose-band > p { font-size: 17px; }
  .article-header { padding: 58px 20px 38px; }
  .article-header h1 { font-size: 62px; }
  .article-cover { padding: 0 16px; }
  .article-cover img { border-radius: 13px; }
  .article-layout { padding: 52px 20px 75px; gap: 46px; }
  .article-body > p, .article-body > ul, .article-body > ol { font-size: 17px; line-height: 1.82; }
  .article-body .article-lead { font-size: 21px; }
  .article-body h2 { margin-top: 50px; font-size: 43px; }
  .article-callout { padding: 27px 22px; }
  .article-callout p { font-size: 28px; }
  .article-cta { padding: 27px 22px; }
  .article-cta h2 { font-size: 36px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-sidebar .ad-slot { grid-column: auto; }
  .ad-slot-leaderboard { width: calc(100% - 40px); min-height: 105px; }
}

@media (max-width: 650px) {
  .blog-purpose-band > * { min-width: 0; }
  .blog-purpose-band h2 { font-size: 40px; overflow-wrap: anywhere; }
}

@media (max-width: 650px) {
  .article-header h1,
  .article-body h2 { overflow-wrap: anywhere; }
}

@media (max-width: 650px) {
  .article-header h1 {
    font-size: clamp(36px, 11.3vw, 44px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }
  .article-body h2 {
    font-size: clamp(32px, 10.2vw, 40px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }
}


/* Managed blog archive cards */
.blog-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 38px; }
.blog-card { overflow: hidden; border: 1px solid #30372f; border-radius: 14px; background: #0d100d; }
.blog-card > a { display: block; aspect-ratio: 1200 / 630; overflow: hidden; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.blog-card:hover img { transform: scale(1.025); }
.blog-card > div { padding: 22px; }
.blog-card h3 { margin: 14px 0 10px; font-family: "Barlow Condensed", sans-serif; font-size: 30px; line-height: 1; text-transform: uppercase; }
.blog-card h3 a { color: #fff; text-decoration: none; }
.blog-card p { color: #aeb5ae; line-height: 1.65; }
@media (max-width: 1000px) { .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .blog-card-grid { grid-template-columns: 1fr; } }
