/* ============================================================
   FuelTrust — shared site design system (fueltrust.io)
   World: engine-room metering panel × full-bleed maritime photo.
   Tokens from ../branding/FUELTRUST-BRAND.md — do not improvise colors.
   Shared by index.html and future /product|/industry pages.
   ============================================================ */
.ft {
  --navy: #0a387c;
  --navy-dark: #051e4a;
  --navy-deep: #041838;      /* scrim floor for photo bands */
  --navy-light: #4a6ba3;
  --teal: #278a92;
  --teal-light: #5babb5;
  --teal-dark: #1a5a63;
  --cyan: #0089c7;
  --orange: #ef9000;
  --orange-bright: #ffa41f;
  --yellow: #f9bd19;
  --ink: #12233d;            /* body text on light */
  --ink-2: #3d5578;          /* secondary text on light (navy-tinted, not gray) */
  --paper: #ffffff;
  --deck: #f2f5f8;           /* alternate light ground */
  --line: #d8e2ec;           /* hairlines on light */
  --snow: #eef4f9;           /* body text on dark */
  --snow-2: #b9cde2;         /* secondary text on dark */
  --maxw: 1160px;
  --radius: 3px;             /* instrument, not app */
  --font-display: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Roboto', -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-meter: 'Roboto Mono', 'SF Mono', Menlo, monospace; /* measurement voice only */
}.ft, .ft * { margin: 0; padding: 0; box-sizing: border-box; }.ft {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}.ft img { max-width: 100%; display: block; }.ft a { color: var(--teal-dark); text-decoration: none; }/* teal-dark: AA on white; brighter teals reserved for dark grounds */
.ft a:hover { color: var(--navy); }/* ---------- type scale ---------- */
.ft h1, .ft h2, .ft h3 { font-family: var(--font-display); color: var(--navy); }.ft h1 {
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: .14em;
  line-height: 1.12;
  text-transform: uppercase;
  color: #fff;
  text-wrap: balance;
}.ft h1 strong { font-weight: 700; }.ft h2 { font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: .02em; line-height: 1.25; text-wrap: balance; }.ft h3 { font-weight: 600; font-size: 1.12rem; letter-spacing: .01em; }.ft .lede { font-size: 1.16rem; color: var(--ink-2); max-width: 62ch; }.ft p { max-width: 70ch; }/* ---------- legend plate: the section-heading grammar ---------- */
.ft .plate {
  display: inline-block;
  border: 1px solid var(--teal);
  padding: 10px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--paper);
  position: relative;
}.ft .plate::before, .ft .plate::after {  /* panel screws */
  content: '';
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal-light);
}.ft .plate::before { left: 9px; }.ft .plate::after { right: 9px; }.ft .plate--dark { background: transparent; color: var(--snow); border-color: var(--teal-light); }.ft .section-head { text-align: center; margin-bottom: 26px; }.ft .section-head h2 { margin-top: 22px; }.ft .section-head .lede { margin: 14px auto 0; }/* ---------- layout ---------- */
.ft .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }.ft section { padding: 104px 0; }.ft section.tight { padding: 72px 0; }.ft .ground-deck { background: var(--deck); }/* ---------- nav ---------- */
.ft .nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s ease-out, box-shadow .25s ease-out;
  padding: 18px 0;
}.ft .nav.solid { background: var(--navy-deep); box-shadow: 0 2px 14px rgba(4, 24, 56, .45); padding: 10px 0; }.ft .nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }.ft .nav-brand { display: flex; align-items: center; gap: 12px; }.ft .nav-brand img { height: 40px; width: auto; }.ft .nav-brand span {
  font-family: var(--font-display); font-weight: 700; font-size: 1.28rem;
  color: #fff; letter-spacing: .04em;
}.ft .nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }.ft .nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--snow);
}.ft .nav-links a:hover { color: var(--teal-light); }.ft .btn-nav { border: 1px solid var(--orange); color: var(--orange-bright) !important; padding: 9px 18px; border-radius: var(--radius); }.ft .btn-nav:hover { background: var(--orange); color: #fff !important; }.ft .nav-toggle { display: none; background: none; border: 1px solid var(--snow-2); border-radius: var(--radius); color: var(--snow); font-size: 1.2rem; padding: 4px 12px; cursor: pointer; }/* ---------- buttons ---------- */
.ft .btn {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 15px 34px; border-radius: var(--radius); cursor: pointer;
  transition: transform .15s ease-out, background .15s ease-out, color .15s ease-out;
  border: 1px solid transparent;
}.ft .btn-primary { background: var(--orange); color: #fff; }.ft .btn-primary:hover { background: var(--orange-bright); color: #fff; transform: translateY(-1px); }.ft .btn-ghost { border-color: rgba(255,255,255,.75); color: #fff; }.ft .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-1px); }.ft .btn-ghost-navy { border-color: var(--navy); color: var(--navy); }.ft .btn-ghost-navy:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }.ft .btn:focus-visible, .ft a:focus-visible, .ft button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }/* ---------- image holders ----------
   Every photographic slot. Real photography replaces the SVG file
   (see IMAGE-MANIFEST.md); the HOLDER tag is removed by deleting
   the data-holder attribute — no CSS surgery needed. */
.ft .img-slot { position: relative; overflow: hidden; background: var(--navy-dark); }.ft .img-slot > img, .ft .img-slot > .slot-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }.ft .img-slot[data-holder]::after {
  content: 'IMAGE HOLDER · ' attr(data-holder);
  position: absolute; right: 10px; bottom: 8px; z-index: 5;
  font-family: var(--font-meter); font-size: .58rem; letter-spacing: .1em;
  color: rgba(255,255,255,.85); background: rgba(4,24,56,.55);
  padding: 3px 8px; border: 1px dashed rgba(255,255,255,.45); border-radius: 2px;
  pointer-events: none;
}/* ---------- hero ---------- */
.ft .hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 140px 24px 120px; color: #fff;
}.ft .hero .scrim {  /* navy scrim over photography — never flat black */
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(4,24,56,.62) 0%, rgba(4,24,56,.28) 42%, rgba(4,24,56,.78) 100%);
}.ft .hero-inner { position: relative; z-index: 2; max-width: 1000px; }.ft .hero-kicker {
  font-family: var(--font-display); font-weight: 600; font-size: .86rem;
  letter-spacing: .42em; text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 26px; max-width: none; /* opt out of the base ".ft p{max-width:70ch}" rule —
    that rule is for reading-width body copy; this is a short label that should span its
    full centered parent, not get clipped to a left-stuck 70ch box */
}.ft .hero-sub { margin: 30px auto 40px; max-width: 58ch; font-size: 1.8rem; color: var(--snow); }.ft .hero-sub .tagline { font-family: var(--font-display); font-weight: 800; color: var(--teal-light); white-space: nowrap; }.ft .hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }.ft .hero-scroll {
  position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.8); font-size: 1.4rem; line-height: 1;
}/* hero instrument strip — product truth, not fake telemetry */
.ft .meter-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(4,24,56,.82); border-top: 1px solid rgba(91,171,181,.4);
}.ft .meter-strip .wrap { display: flex; justify-content: center; gap: 0; }.ft .meter-cell {
  flex: 1; max-width: 340px; padding: 18px 26px; text-align: center;
  border-left: 1px solid rgba(91,171,181,.25);
}.ft .meter-cell:first-child { border-left: none; }.ft .meter-cell .meter-val {
  font-family: var(--font-meter); font-size: 1.24rem; font-weight: 500;
  color: var(--teal-light); font-variant-numeric: tabular-nums;
}.ft .meter-cell .meter-lbl {
  font-family: var(--font-display); font-weight: 600; font-size: .64rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--snow-2); margin-top: 4px;
}/* ---------- mimic diagram (earth → emissions) ---------- */
.ft .mimic { margin: 54px auto 0; max-width: 980px; }.ft .mimic svg { width: 100%; height: auto; display: block; }.ft .mimic .flow-path { stroke-dasharray: 2600; stroke-dashoffset: 2600; }.ft .mimic.lit .flow-path { animation: flowdraw 2.6s ease-out forwards; }.ft .mimic .node-lamp { opacity: 0; }.ft .mimic.lit .node-lamp { animation: lampon .5s ease-out forwards; }.ft .mimic.lit .node-lamp:nth-of-type(1) { animation-delay: .5s; }@keyframes flowdraw { to { stroke-dashoffset: 0; } }@keyframes lampon { to { opacity: 1; } }.ft .mimic-caption {
  text-align: center; font-family: var(--font-meter); font-size: .68rem;
  letter-spacing: .14em; color: var(--ink-2); margin-top: 14px; text-transform: uppercase;
}/* ---------- hex tiles (honeycomb, pointy-top) ---------- */
.ft .hex-field { margin-top: 64px; }.ft .hex-row { display: flex; justify-content: center; gap: 22px; }.ft .hex-row + .hex-row { margin-top: -62px; }.ft .hex {
  --hw: 284px;
  width: var(--hw); height: calc(var(--hw) * 1.14);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  position: relative; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  color: #fff; padding: 30px;
  background: var(--teal-light); /* shows as a thin border ring around the inset photo/scrim below */
}.ft .hex.img-slot img.slot-bg { inset: 2px; }
/* .hex.img-slot (not .hex alone) beats .band-dark .scrim's specificity when a hex
   tile sits inside a band-dark section (e.g. Platform) — without this, the section's
   own scrim rule ties and wins on source order, silently overriding the hex's. */
.ft .hex.img-slot .scrim {
  position: absolute; inset: 2px; z-index: 1;
  background: linear-gradient(180deg, rgba(5,30,74,.45), rgba(4,24,56,.72));
  transition: background .2s ease-out;
}.ft .hex:hover .scrim { background: linear-gradient(180deg, rgba(5,30,74,.3), rgba(4,24,56,.6)); }.ft .hex-body { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; }.ft .hex-body img { height: 30px; width: auto; }/* product wordmark PNGs */
.ft .hex-name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: .1em; text-transform: uppercase; }.ft .hex-role { font-size: .8rem; color: var(--snow-2); max-width: 24ch; line-height: 1.45; }.ft .hex-cta {
  font-family: var(--font-display); font-weight: 700; font-size: .66rem;
  letter-spacing: .22em; text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255,255,255,.8); padding: 8px 16px; border-radius: 2px;
  transition: background .15s ease-out;
}.ft .hex:hover .hex-cta { background: var(--orange); border-color: var(--orange); }/* ---------- product rows (dual-track detail) ---------- */
.ft .track-label {
  font-family: var(--font-meter); font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal-dark); margin-bottom: 8px;
}.ft .prod-row {
  display: grid; grid-template-columns: 300px 1fr; gap: 44px;
  padding: 40px 0; border-top: 1px solid var(--line); align-items: start;
}.ft .prod-row:last-child { border-bottom: 1px solid var(--line); }.ft .prod-id img { height: 34px; width: auto; margin-bottom: 12px; }.ft .prod-id .prod-tm { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--navy); }.ft .prod-id .prod-kind { font-family: var(--font-meter); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); margin-top: 6px; }.ft .prod-copy p { color: var(--ink-2); }.ft .prod-copy ul { margin: 14px 0 18px 0; padding-left: 0; list-style: none; }.ft .prod-copy li { padding-left: 26px; position: relative; margin-bottom: 8px; color: var(--ink); }.ft .prod-copy li::before {   /* indicator lamp */
  content: ''; position: absolute; left: 4px; top: .52em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 2px rgba(39,138,146,.22);
}.ft .prod-link { font-family: var(--font-display); font-weight: 700; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; }/* ---------- dark measurement band ---------- */
.ft .band-dark { position: relative; color: var(--snow); overflow: hidden; }.ft .band-dark .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(4,24,56,.88), rgba(5,30,74,.8) 50%, rgba(4,24,56,.92)); }.ft .band-dark .wrap { position: relative; z-index: 2; }.ft .band-dark h2 { color: #fff; }.ft .band-dark p { color: var(--snow-2); }.ft .gauge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 56px; }.ft .gauge-card { text-align: center; padding: 30px 22px 26px; border: 1px solid rgba(91,171,181,.35); border-radius: var(--radius); background: rgba(4,24,56,.5); }.ft .gauge-card svg { width: 148px; height: 92px; margin: 0 auto 10px; display: block; }.ft .gauge-card .g-arc { stroke: rgba(184,205,226,.28); }.ft .gauge-card .g-fill { stroke: var(--teal-light); stroke-dasharray: 180; stroke-dashoffset: 180; }.ft .gauge-card.lit .g-fill { animation: gfill 1.4s ease-out forwards; }@keyframes gfill { to { stroke-dashoffset: var(--g-off, 40); } }.ft .gauge-card .g-needle { transform-origin: 74px 84px; transform: rotate(-90deg); }.ft .gauge-card.lit .g-needle { animation: gneedle 1.4s cubic-bezier(.2,.8,.3,1) forwards; }@keyframes gneedle { to { transform: rotate(var(--g-rot, 20deg)); } }.ft .gauge-title { font-family: var(--font-display); font-weight: 700; font-size: .92rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; }.ft .gauge-text { font-size: .86rem; color: var(--snow-2); margin: 8px auto 0; max-width: 34ch; }.ft .reg-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 44px; }.ft .reg-chip {
  font-family: var(--font-meter); font-size: .72rem; letter-spacing: .1em;
  color: var(--snow); border: 1px solid rgba(91,171,181,.5); border-radius: 2px;
  padding: 7px 14px; background: rgba(39,138,146,.14);
}.ft .illustrative { font-family: var(--font-meter); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--snow-2); opacity: .8; }/* ---------- why panel schedule ---------- */
.ft .schedule { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 48px; transition: box-shadow .2s ease-out; }.ft .schedule:hover { box-shadow: 0 8px 24px rgba(10,56,124,.12); }.ft .schedule-row { display: grid; grid-template-columns: 240px 1fr; border-top: 1px solid var(--line); background: var(--paper); }.ft .schedule-row:first-child { border-top: none; }.ft .schedule-key {
  padding: 24px 26px; background: var(--deck);
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--navy);
  border-right: 1px solid var(--line); display: flex; align-items: center;
}.ft .schedule-val { padding: 24px 30px; color: var(--ink-2); }.ft .schedule-val strong { color: var(--ink); }/* ---------- contact ---------- */
.ft .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; align-items: start; }.ft .contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 36px; background: var(--paper); transition: box-shadow .2s ease-out; }.ft .contact-card:hover { box-shadow: 0 8px 24px rgba(10,56,124,.14); }.ft .contact-card dt { font-family: var(--font-display); font-weight: 700; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); margin-top: 20px; }.ft .contact-card dt:first-child { margin-top: 0; }.ft .contact-card dd { font-family: var(--font-meter); font-size: 1rem; margin-top: 4px; }.ft .social-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }.ft .social-row a {
  font-family: var(--font-display); font-weight: 600; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 7px 13px; border-radius: 2px; color: var(--teal-dark);
}.ft .social-row a:hover { border-color: var(--teal); }/* ---------- footer ---------- */
.ft .footer { position: relative; color: var(--snow); }.ft .footer .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(4,24,56,.9), rgba(4,24,56,.96)); }.ft .footer-inner { position: relative; z-index: 2; padding-block: 76px 34px; }.ft .footer-tagline { max-width: min(420px, 100%); height: auto; margin-bottom: 44px; }.ft .footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }.ft .footer h4 { font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 16px; }.ft .footer ul { list-style: none; }.ft .footer li { margin-bottom: 9px; }.ft .footer a { color: var(--snow-2); font-size: .9rem; }.ft .footer a:hover { color: #fff; }.ft .footer-legal {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(91,171,181,.3);
  font-size: .78rem; color: var(--snow-2); display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}.ft .footer-legal p { max-width: none; }/* ---------- reveal on scroll ---------- */
.ft .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease-out, transform .6s ease-out; }.ft .reveal.lit { opacity: 1; transform: none; }/* ---------- responsive ---------- */
@media (max-width: 980px) {.ft .hex { --hw: 236px; }.ft .footer-cols { grid-template-columns: 1fr 1fr; }.ft .gauge-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }.ft .prod-row { grid-template-columns: 1fr; gap: 16px; }.ft .contact-grid { grid-template-columns: 1fr; }.ft .meter-strip .wrap { flex-direction: column; }.ft .meter-cell { max-width: none; border-left: none; border-top: 1px solid rgba(91,171,181,.25); }.ft .meter-cell:first-child { border-top: none; }.ft .hero { padding-bottom: 40px; }.ft .hero-scroll { display: none; }.ft .meter-strip { position: static; margin-top: 48px; }
}@media (max-width: 1080px) {.ft .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-deep); flex-direction: column; padding: 22px 28px; gap: 18px;
    border-top: 1px solid rgba(91,171,181,.3);
  }.ft .nav-links.open { display: flex; }.ft .nav-toggle { display: block; }.ft .nav { background: var(--navy-deep); padding: 10px 0; }
}@media (max-width: 900px) {/* 3-across honeycomb needs ~808px; stack before it can overflow */
.ft .hex-row { flex-direction: column; align-items: center; gap: 18px; }.ft .hex-row + .hex-row { margin-top: 18px; }.ft .hex { --hw: 268px; }
}@media (max-width: 640px) {.ft section { padding: 64px 0; }.ft .schedule-row { grid-template-columns: 1fr; }.ft .schedule-key { border-right: none; border-bottom: 1px solid var(--line); }
}/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {.ft .reveal { opacity: 1; transform: none; transition: none; }.ft .mimic .flow-path { stroke-dashoffset: 0; animation: none; }.ft .mimic .node-lamp, .ft .mimic.lit .node-lamp { opacity: 1; animation: none; }.ft .gauge-card .g-fill { stroke-dashoffset: var(--g-off, 40); animation: none !important; }.ft .gauge-card .g-needle { transform: rotate(var(--g-rot, 20deg)); animation: none !important; }.ft .btn, .ft .hex .scrim { transition: none; }
}
/* ============================================================
   EMBED MODE — add class "ft--embed" alongside "ft" when this
   markup is pasted into a host page that already has its own
   header. Un-fixes our nav so it cannot float over the host UI.
   ============================================================ */
.ft.ft--embed .nav { position: static; }
.ft.ft--embed .hero { padding-top: 96px !important; }
.ft.ft--embed { position: relative; }
