:root {
  --red: #c82032;
  --ink: #111827;
  --graphite: #2f3a45;
  --steel: #64748b;
  --line: #d9e2ec;
  --paper: #f7fafc;
  --white: #ffffff;
  --navy: #122033;
  --green: #087568;
  --amber: #c88719;
  --blue: #2563eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 226, 236, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 15px;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--red);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button:hover {
  transform: translateY(-1px);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 20, 32, 0.92) 0%, rgba(13, 20, 32, 0.78) 38%, rgba(13, 20, 32, 0.42) 66%, rgba(13, 20, 32, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 20, 32, 0.72) 0%, rgba(13, 20, 32, 0.02) 48%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 54px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd6dc;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  max-width: 810px;
  margin: 18px 0 18px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 710px;
  color: #dbe6f0;
  font-size: clamp(19px, 2.2vw, 25px);
  margin: 0 0 30px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 60px;
  max-width: 1000px;
}

.metric {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 16px;
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1;
}

.metric span {
  display: block;
  color: #c9d5e1;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding: 58px 0;
}

.section.alt {
  background: var(--paper);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--steel);
  font-size: clamp(17px, 2vw, 21px);
}

.kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.grid-3,
.trade-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--steel);
}

.card.accent {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.card.accent p {
  color: #cbd5e1;
}

.card.highlight {
  border-color: rgba(200, 32, 50, 0.32);
  background: #fff8f9;
}

.trade-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
  text-decoration: none;
}

.trade-card strong {
  font-size: 20px;
}

.trade-card span {
  color: var(--steel);
  font-size: 14px;
  margin-top: 14px;
}

.trade-card.live {
  border-color: rgba(200, 32, 50, 0.45);
  box-shadow: inset 0 4px 0 var(--red);
}

.trade-card:hover {
  border-color: var(--red);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: var(--graphite);
}

.feature-list b {
  color: var(--ink);
}

.check {
  width: 34px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
  font-size: 11px;
}

.platform-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 32px;
}

.platform-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.platform-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.platform-row:last-child {
  padding-bottom: 0;
}

.platform-row strong {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
}

.platform-row p {
  margin: 0;
  color: var(--graphite);
}

.app-identity {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.app-identity img {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.app-identity strong {
  display: block;
  font-size: 20px;
}

.app-identity span {
  color: var(--steel);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.logo-tile {
  min-height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  font-weight: 850;
  text-align: center;
  padding: 14px;
}

.cta-band {
  color: var(--white);
  background: var(--ink);
}

.cta-band .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  color: #d4dee9;
  font-size: 19px;
  margin: 14px 0 0;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 82px 0 58px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #d4dee9;
  font-size: clamp(18px, 2.2vw, 24px);
}

.resource-list {
  display: grid;
  gap: 18px;
}

.resource-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.resource-item h3 {
  margin: 0 0 6px;
}

.resource-item p {
  margin: 0;
  color: var(--steel);
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--paper);
}

.contact-panel a {
  font-weight: 900;
  color: var(--red);
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--graphite);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 122px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(37, 99, 235, 0.16);
  border-color: var(--blue);
}

.form-note {
  color: var(--steel);
  font-size: 13px;
  margin: 12px 0 0;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 38px;
  font-size: clamp(26px, 4vw, 40px);
}

.legal-content p,
.legal-content li {
  color: var(--graphite);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 42px;
  align-items: start;
}

.guide-content h2 {
  margin-top: 38px;
  font-size: clamp(28px, 4vw, 44px);
}

.guide-content h3 {
  margin: 24px 0 8px;
  font-size: 22px;
}

.guide-content p,
.guide-content li {
  color: var(--graphite);
}

.quality-grid {
  display: grid;
  gap: 18px;
  margin: 30px 0 42px;
}

.quality-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.quality-grid span,
.sidebar-facts strong {
  color: var(--red);
  font-weight: 950;
}

.quality-grid h2 {
  margin: 8px 0 12px;
}

.method-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 40px;
  padding: 0;
  list-style: none;
}

.method-list li {
  border-left: 4px solid var(--red);
  background: var(--white);
  padding: 14px 18px;
}

.guide-sidebar {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
}

.guide-sidebar h3 {
  margin-top: 0;
}

.sidebar-facts {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.sidebar-facts span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 14px;
  color: var(--graphite);
  font-weight: 850;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--steel);
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(220px, 0.25fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
}

.footer-brand {
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 8px;
}

.footer p {
  max-width: 760px;
  margin: 0;
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
}

.nav {
  min-height: 66px;
}

.premium-hero {
  min-height: calc(100vh - 66px);
  align-items: center;
}

.premium-hero .hero-media::after {
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.95) 0%, rgba(8, 13, 22, 0.86) 42%, rgba(8, 13, 22, 0.48) 72%, rgba(8, 13, 22, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 13, 22, 0.74) 0%, rgba(8, 13, 22, 0.0) 55%);
}

.premium-hero .hero-inner {
  padding: 74px 0 50px;
}

.premium-hero h1 {
  max-width: 920px;
  font-size: clamp(52px, 7.5vw, 102px);
}

.premium-hero .hero-copy {
  max-width: 760px;
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  margin-top: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 13, 22, 0.42);
  backdrop-filter: blur(12px);
}

.hero-proof-row div {
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof-row div:first-child {
  border-left: 0;
}

.hero-proof-row strong {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.hero-proof-row span {
  display: block;
  color: #cbd5e1;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
}

.product-band {
  background:
    linear-gradient(135deg, #0d1420 0%, #151f2f 58%, #231016 100%);
  color: var(--white);
  overflow: hidden;
}

.product-band h2,
.product-band .lead {
  color: var(--white);
}

.product-band .lead {
  color: #d5dee8;
}

.product-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 50px;
  align-items: center;
}

.product-feature > * {
  min-width: 0;
}

.trade-product-band {
  padding-top: 72px;
  padding-bottom: 72px;
}

.app-identity.inverse {
  margin: 28px 0;
}

.app-identity.inverse span {
  color: #cbd5e1;
}

.app-store-badge {
  min-height: 54px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 8px;
  background: #05070a;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.app-store-badge span {
  font-size: 11px;
  line-height: 1;
  color: #d1d5db;
}

.app-store-badge strong {
  font-size: 22px;
  line-height: 1.1;
}

.product-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.product-stat-row span {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #d4dee9;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.product-stat-row strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.product-device-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(180px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.device-stack {
  display: grid;
  gap: 18px;
}

.device-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.product-band .device-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.device-card img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: contain;
  object-position: top center;
  border-radius: 8px;
  background: #eef3f8;
}

.main-device img {
  max-height: 500px;
}

.compact-device img {
  max-height: 250px;
}

.device-card figcaption {
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 10px;
}

.product-band .device-card figcaption {
  color: #d4dee9;
}

.path-section {
  background: #f3f6f9;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.path-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.path-card::before {
  content: none;
}

.path-card > * {
  position: relative;
}

.path-card small {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.path-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.path-card strong {
  display: block;
  font-size: clamp(24px, 2.5vw, 31px);
  line-height: 1.02;
}

.path-card p {
  color: var(--steel);
  margin: 18px 0 0;
}

.path-card.candidate {
  box-shadow: inset 0 4px 0 var(--red), 0 16px 40px rgba(15, 23, 42, 0.08);
}

.path-card.institution {
  box-shadow: inset 0 4px 0 var(--green), 0 16px 40px rgba(15, 23, 42, 0.08);
}

.path-card.institution small {
  background: var(--green);
}

.path-card.guide {
  box-shadow: inset 0 4px 0 var(--navy), 0 16px 40px rgba(15, 23, 42, 0.08);
}

.path-card.guide small {
  background: var(--navy);
}

.path-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 32, 50, 0.28);
}

.trades-band {
  background: #f7fafc;
}

.guide-video-feature {
  background: #f7fafc;
}

.guide-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: 44px;
  align-items: center;
}

.video-card {
  border-radius: 8px;
  padding: 12px;
  background: #0b1220;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.video-frame {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(200, 32, 50, 0.82), rgba(17, 24, 39, 0.88)),
    url("/assets/hero-trades-training.png") center / cover;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.video-topline,
.video-title,
.video-play,
.video-progress {
  position: relative;
}

.video-topline {
  color: #ffd6dc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.video-title {
  max-width: 500px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1;
  font-weight: 950;
}

.video-play {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 900;
  margin: 24px 0 20px;
  text-decoration: none;
}

.video-chapters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  margin: 0 0 18px;
}

.video-chapters span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.11);
  font-size: 12px;
  font-weight: 850;
}

.video-progress {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.video-progress span {
  display: block;
  width: 64%;
  height: 100%;
  background: var(--white);
}

.video-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.video-points li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  padding: 14px;
  font-weight: 800;
}

.guide-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 20, 32, 0.96), rgba(32, 16, 23, 0.9)),
    url("/assets/hero-trades-training.png") center / cover;
  padding: 82px 0;
}

.guide-hero h1 {
  max-width: 800px;
  margin: 0 0 18px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
}

.guide-hero p {
  max-width: 760px;
  color: #d4dee9;
  font-size: clamp(18px, 2vw, 23px);
}

.light-video {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.guide-intro-section {
  padding: 56px 0;
  background: var(--white);
}

.guide-intro {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 40px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.guide-intro > * {
  min-width: 0;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.workflow-strip article {
  min-height: 210px;
  padding: 26px;
  border-left: 1px solid var(--line);
}

.workflow-strip article:first-child {
  border-left: 0;
}

.workflow-strip span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.workflow-strip h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.workflow-strip p {
  margin: 0;
  color: var(--steel);
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 72px;
  }

  .hero-metrics,
  .hero-proof-row,
  .grid-3,
  .grid-2,
  .trade-grid,
  .product-feature,
  .guide-video-layout,
  .guide-intro,
  .workflow-strip,
  .path-grid,
  .split,
  .guide-layout,
  .logo-row,
  .section-heading,
  .cta-band .wrap,
  .contact-box,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-proof-row div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof-row div:first-child {
    border-top: 0;
  }

  .product-device-grid {
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  }

  .workflow-strip article,
  .workflow-strip article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .workflow-strip article:first-child {
    border-top: 0;
  }

  .two-up {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-metrics {
    margin-top: 42px;
  }

  .section {
    padding: 66px 0;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    font-size: 13px;
  }

  .nav-links .button {
    width: 100%;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(13, 20, 32, 0.95) 0%, rgba(13, 20, 32, 0.88) 60%, rgba(13, 20, 32, 0.7) 100%),
      linear-gradient(0deg, rgba(13, 20, 32, 0.74) 0%, rgba(13, 20, 32, 0.12) 52%);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 43px;
  }

  .premium-hero h1 {
    font-size: 47px;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .path-card {
    min-height: 260px;
  }

  .product-stat-row {
    grid-template-columns: 1fr;
  }

  .product-device-grid {
    grid-template-columns: 1fr;
  }

  .device-stack {
    grid-template-columns: 1fr;
  }

  .video-points {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: 310px;
    padding: 22px;
  }

  .platform-row,
  .resource-item,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
  }

  .footer .wrap,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
