/* Annual-report tone: typography and whitespace carry the page. Minimal
   decoration — the product's own screenshots are the proof, not graphics.
   The page uses the full width of the screen rather than a narrow centred
   column — a wide outer container throughout, with each report section
   split into a label column (the kicker) and a content column, so long
   lines of body text never stretch edge to edge even though the page does. */

:root {
  --m-page-width: 1500px;
}

.m-page {
  max-width: var(--m-page-width);
  margin: 0 auto;
  padding: 0 40px;
}

.m-page.m-page-wide {
  max-width: var(--m-page-width);
}

.m-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  max-width: var(--m-page-width);
  margin: 0 auto;
  gap: 16px;
}

.m-nav .links {
  display: flex;
  gap: 22px;
  white-space: nowrap;
}

.m-nav .brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  text-decoration: none;
}

.m-nav .links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
}

.m-nav .cta {
  background: var(--accent);
  color: #ffffff !important;
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

.m-nav .cta.secondary {
  background: transparent;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border);
}

/* Hero — immersive full-bleed gradient with an abstract "flight path /
   network" motif standing in for stock photography (no third-party image
   downloaded — an abstract mark avoids any licensing question entirely
   while still giving the page an immersive opening). */
.m-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1c47 0%, #123a8c 45%, #1d5fd6 100%);
  padding: 96px 40px 80px;
  color: #ffffff;
}

.m-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.m-hero-bg svg { width: 100%; height: 100%; }

.hero-route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 2 8;
  stroke-linecap: round;
}

.hero-node {
  fill: #ffffff;
  opacity: 0.7;
}

.hero-stars circle { fill: #ffffff; opacity: 0.5; }

.hero-skyline rect {
  fill: rgba(255, 255, 255, 0.12);
}

.hero-skyline rect.skyline-bright {
  fill: rgba(255, 255, 255, 0.2);
}

.hero-tower rect,
.hero-tower line {
  fill: rgba(255, 255, 255, 0.28);
  stroke: rgba(255, 255, 255, 0.28);
}

.hero-tower line { stroke-width: 2; }

.tower-light {
  fill: #ff5c5c;
  animation: towerBlink 1.8s ease-in-out infinite;
}

@keyframes towerBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero-runway { fill: rgba(255, 255, 255, 0.07); }

.hero-runway-line {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 2;
  stroke-dasharray: 14 12;
}

.hero-flightpath {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.5;
  stroke-dasharray: 3 7;
  stroke-linecap: round;
}

.hero-plane { fill: rgba(255, 255, 255, 0.92); }

.m-hero-content {
  position: relative;
  max-width: var(--m-page-width);
  margin: 0 auto;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
}

.m-hero-content h1 {
  font-size: 46px;
  line-height: 1.16;
  font-weight: 800;
  max-width: 880px;
  margin: 0 0 22px;
  color: #ffffff;
}

.m-hero-content .lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin: 0 0 14px;
}

.m-hero-content .lead-sub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  max-width: 700px;
  margin: 0 0 34px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .m-hero { padding: 64px 24px 56px; }
  .m-hero-content h1 { font-size: 30px; }
}

.m-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.m-btn.large { padding: 14px 26px; font-size: 16px; }

.m-btn.primary { background: var(--accent); color: #ffffff; }
.m-btn.secondary { background: var(--surface); color: var(--text-primary); border: 1px solid var(--border); }

.m-hero .m-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Who It's For — vertical cards */
.m-verticals {
  padding: 56px 40px;
  border-bottom: 1px solid var(--gridline);
}

.m-verticals-inner {
  max-width: var(--m-page-width);
  margin: 0 auto;
}

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

@media (max-width: 1000px) {
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .vertical-grid { grid-template-columns: 1fr; }
}

.vertical-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vertical-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(11, 11, 11, 0.08);
}

/* Icon chips — replaces flat emoji with line-art SVGs on a coloured
   gradient badge, so each vertical/value column gets a distinct accent
   instead of relying on system emoji rendering (which varies by OS and
   reads as "cheap" rather than designed). */
.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.icon-chip svg { width: 26px; height: 26px; }

.icon-chip-1 { background: linear-gradient(135deg, #2a78d6, #123a8c); }
.icon-chip-2 { background: linear-gradient(135deg, #9333ea, #5b1fa8); }
.icon-chip-3 { background: linear-gradient(135deg, #2ab6d6, #1d5fd6); }
.icon-chip-4 { background: linear-gradient(135deg, #fab219, #e08600); }

/* Icon to the left, title to the right, vertically centred on the icon's
   square footprint — a compact header row instead of the icon sitting
   stacked full-width above the title. */
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.card-header h3 {
  margin: 0;
}

.vertical-card h3 {
  font-size: 16px;
}

.vertical-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Proof-point callout — a highlighted box inside a report section, rather
   than plain paragraphs, so supporting evidence reads as a distinct,
   citable aside instead of blending into the main claim. */
.proof-callout {
  background: var(--page);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 22px 26px;
  margin-top: 20px;
  max-width: 700px;
}

.proof-callout-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 10px;
}

.proof-callout p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 10px;
}

.proof-callout p:last-child { margin-bottom: 0; }

/* Generic report section — a hairline rule, a small-caps kicker sitting in
   its own left-hand label column, body content in a wide column beside it.
   Uses the full page width; the kicker column keeps that width from just
   becoming empty margin the way a single centred column would. */
.m-report-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 48px;
  padding: 44px 40px;
  border-top: 1px solid var(--gridline);
  max-width: var(--m-page-width);
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  .m-report-section { padding: 32px 20px; }
}

.kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.m-report-section > .kicker {
  grid-column: 1;
  margin-bottom: 0;
}

.m-report-section > *:not(.kicker) {
  grid-column: 2;
}

@media (max-width: 900px) {
  .m-report-section {
    grid-template-columns: 1fr;
  }
  .m-report-section > .kicker {
    margin-bottom: 14px;
  }
  .m-report-section > *:not(.kicker) {
    grid-column: 1;
  }
}

.m-report-section p.lead {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 14px;
  max-width: 700px;
}

.m-report-section p.body {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 700px;
}

.report-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  max-width: 700px;
}

.report-list li {
  font-size: 15px;
  color: var(--text-primary);
  padding: 7px 0 7px 20px;
  border-top: 1px solid var(--gridline);
  position: relative;
}

.report-list li:first-child { border-top: none; }

.report-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.report-list.report-list-columns {
  max-width: 100%;
  column-count: 2;
  column-gap: 40px;
}

@media (max-width: 700px) {
  .report-list.report-list-columns { column-count: 1; }
}

.report-list.report-list-columns li {
  break-inside: avoid;
}

.report-steps {
  list-style: none;
  counter-reset: rstep;
  margin: 0 0 24px;
  padding: 0;
  max-width: 700px;
}

.report-steps li {
  counter-increment: rstep;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  padding: 10px 0 10px 34px;
  border-top: 1px solid var(--gridline);
  position: relative;
}

.report-steps li:first-child { border-top: none; }

.report-steps li::before {
  content: counter(rstep);
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-footnote {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* The one process diagram */
.process-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  margin: 8px 0 28px;
}

.process-step {
  flex: 1;
  min-width: 140px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--text-primary);
  background: var(--surface);
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--text-muted);
  font-size: 16px;
}

@media (max-width: 700px) {
  .process-flow { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* "Owned by You" — text plus a flat vector scene (reception counter,
   staff badge, guest, rating star on a dotted link) standing in for a
   stock photo of a check-in encounter; keeps the same line-art language
   as the icon chips instead of introducing a photographic style. */
.owned-by-you-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .owned-by-you-grid { grid-template-columns: 1fr; }
  .scene-panel { max-width: 320px; margin: 0 auto; }
}

.scene-panel svg { width: 100%; height: auto; }

.scene-floor { stroke: var(--gridline); stroke-width: 1.5; }
.scene-outline { fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.scene-solid { fill: var(--accent); }
.scene-fill { fill: var(--accent-track); stroke: var(--accent); stroke-width: 1.6; }
.scene-badge { fill: #ffffff; stroke: var(--accent); stroke-width: 1.6; }
.scene-desktop { fill: var(--surface); stroke: var(--border); }
.scene-desk { fill: var(--accent-track); stroke: var(--accent); stroke-width: 1.5; }
.scene-desk-accent { fill: var(--accent); }
.scene-dotted { fill: none; stroke: var(--text-muted); stroke-width: 1.4; stroke-dasharray: 2 5; stroke-linecap: round; }
.scene-star { fill: var(--warning); }

/* Business Value — three plain columns, no card chrome */
.value-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 100%;
}

.value-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
}

.value-col h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0;
}

.value-col p.lead {
  font-size: 16px;
}

.value-col p.body {
  font-size: 14px;
}

.value-col .report-list li {
  font-size: 13px;
}

/* Team Rewards — a highlighted blue band, distinct from the plain report
   sections around it, since it's a key differentiator worth visually
   standing out rather than reading like just another paragraph. */
.m-report-section.band-blue {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1c47 0%, #123a8c 55%, #1d5fd6 100%);
  color: #ffffff;
  border-top: none;
  border-radius: 16px;
  padding: 48px 40px;
  margin: 36px auto;
}

/* A trophy + team-of-people mark, faint in the corner — reinforces the
   section's subject without competing with the text for attention. */
.band-motif {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 260px;
  height: 260px;
  fill: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.band-blue .kicker { color: rgba(255, 255, 255, 0.75); }
.band-blue p.lead { color: #ffffff; }
.band-blue p.body { color: rgba(255, 255, 255, 0.85); }
.band-blue p.body em { color: #ffffff; font-style: normal; font-weight: 600; }
.band-blue .report-footnote { color: rgba(255, 255, 255, 0.55); }
.band-blue .report-footnote em { font-style: italic; }

@media (max-width: 900px) {
  .m-report-section.band-blue { padding: 36px 24px; }
}

.team-rewards-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 32px;
  align-items: start;
  margin: 22px 0 26px;
}

@media (max-width: 900px) {
  .team-rewards-grid { grid-template-columns: 1fr; gap: 24px; }
}

.team-rewards-copy p.body:first-child { margin-top: 0; }

.stat-callouts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-callout {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 320px;
  width: 100%;
}

.stat-callout-value {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-callout-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.stat-callout-source {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

/* Final CTA — still a centred, narrower reading measure on purpose: a
   closing statement, not a data section, so it doesn't need the kicker/
   content split. The page around it is full width; this one block staying
   readable-width is a typographic choice, not leftover unused margin. */
.m-cta-report {
  text-align: center;
  padding: 56px 40px 64px;
  max-width: var(--m-page-width);
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  .m-cta-report { padding: 40px 20px 48px; }
}

.m-cta-report h2 {
  font-size: 24px;
  max-width: 720px;
  margin: 0 auto 16px;
}

.m-cta-report p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 12px;
}

.m-cta-report .m-btn {
  margin-top: 12px;
}

footer.m-footer {
  border-top: 1px solid var(--gridline);
  padding: 40px 40px 28px;
  color: var(--text-muted);
  font-size: 13px;
  max-width: var(--m-page-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.m-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.m-footer-brand .m-footer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.m-footer-brand .m-footer-tagline {
  font-size: 12px;
  margin-top: 2px;
}

.m-footer-offices {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.m-footer-office h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.m-footer-office p {
  margin: 0 0 6px;
  line-height: 1.5;
}

.m-footer-office a {
  color: var(--text-muted);
}

.m-footer-legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--gridline);
  font-size: 11px;
}

@media (max-width: 760px) {
  .m-hero-report h1 { font-size: 26px; }
  .m-nav .links { display: none; }
  footer.m-footer { padding: 28px 20px 24px; }
  .m-footer-inner { gap: 24px; }
  .m-footer-offices { gap: 24px; }
}
