/* ============================================================
   Predict website — marketing styles
   Builds on the Predict Design System (tokens + base are linked
   via ../Predict Design System/styles.css). This file adds
   only the marketing-page layer: layout, sections, the live
   product previews, and motion.

   Rules held to (Predict DS + design review):
   - Flat colour only. No gradients, textures or decorative art.
   - Colour is signal or brand. The limit/recommendation hues
     appear ONLY inside the live app previews (wear vs limit).
   - Dark gunmetal shell (hero / CTA / footer), light content
     between — the same chrome-around-content the app uses.
   - Motion is short, functional, transform/opacity only.
   ============================================================ */

/* ---- Site-level variables (built on DS tokens) ---- */
:root {
  --shell:        var(--ink-800);     /* gunmetal hero / CTA / footer */
  --shell-deep:   var(--ink-900);     /* deeper gunmetal panels */
  --shell-line:   rgba(255, 255, 255, 0.10);
  --shell-text:   #ffffff;
  --shell-dim:    var(--ink-200);
  --shell-muted:  var(--ink-300);

  --content-max:  1200px;
  --wide-max:     1320px;
  --measure:      66ch;

  --section-y:    clamp(60px, 7vw, 116px);
  --gutter:       clamp(20px, 5vw, 48px);

  /* motion (mirrors DS; named here for the marketing layer) */
  --ease:         var(--ease-standard);      /* cubic-bezier(0.2,0,0,1) */
  --ease-soft:    var(--ease-out);           /* cubic-bezier(0.16,1,0.3,1) */
  --t-fast:       var(--duration-fast);      /* 120ms */
  --t-norm:       var(--duration-normal);    /* 180ms */
  --t-slow:       var(--duration-slow);      /* 280ms */
}

/* ============================================================
   Base page
   ============================================================ */
html { scroll-padding-top: 88px; scroll-behavior: smooth; }

body {
  background: var(--surface-page);
  color: var(--text-body);
  overflow-x: hidden;
}

::selection {
  background: var(--sapphire-100);
  color: var(--ink-900);
}

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

/* inline icons (Lucide sprite via <use>). 24px default mirrors Lucide's own
   output; component rules below size icons in context and override this. */
.lucide { width: 24px; height: 24px; flex: none; }
.lucide use { color: inherit; }

/* generous, varied section rhythm */
.section {
  padding-block: var(--section-y);
}
.section--tight { padding-block: clamp(40px, 4.5vw, 64px); }

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--wide-max); }
.container--narrow { max-width: 880px; }

/* shared type roles for the marketing layer */
h1, h2, h3 { letter-spacing: var(--tracking-wide); }

.display {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.005em;
  color: var(--text-strong);
}
.h-xl { font-size: clamp(1.9rem, 7.4vw, 4.25rem); }   /* hero */
.h-lg { font-size: clamp(2rem, 4.4vw, 3.1rem); }    /* section heads */
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }

.lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  max-width: var(--measure);
}

.muted { color: var(--text-muted); }
.numeric { font-family: var(--font-display); font-weight: var(--weight-bold); font-variant-numeric: tabular-nums; letter-spacing: var(--tracking-tight); }

/* a thin gold brand rule, used sparingly as a section opener */
.rule-accent {
  width: 44px; height: 3px;
  background: var(--brand-accent);
  border-radius: 999px;
  margin-bottom: 22px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-md);
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0 22px;
  height: var(--field-height-lg);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--t-norm) var(--ease),
              border-color var(--t-norm) var(--ease),
              color var(--t-norm) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-norm) var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(0) scale(0.985); }
.btn .lucide { width: 18px; height: 18px; }

.btn-primary {
  background: var(--sapphire-500);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--sapphire-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { background: var(--sapphire-700); }

/* secondary, for light surfaces */
.btn-secondary {
  background: var(--surface-card);
  color: var(--text-strong);
  border-color: var(--border-default);
}
.btn-secondary:hover { background: var(--sapphire-50); border-color: var(--sapphire-300); transform: translateY(-1px); }

/* ghost on dark shell */
.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border-color: var(--shell-line);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.28); }

.btn-sm { height: var(--field-height-sm); font-size: var(--text-sm); padding: 0 14px; }

/* a quiet inline text link with a moving arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-md);
  letter-spacing: 0.01em;
  color: var(--text-link);
  text-decoration: none;
}
.link-arrow .lucide { width: 17px; height: 17px; transition: transform var(--t-norm) var(--ease-soft); }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover .lucide { transform: translateX(4px); }
.link-arrow--light { color: #fff; }

:where(a, button, [tabindex]):focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-sm);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-sticky);
  height: 68px;
  display: flex;
  align-items: center;
  transition: background var(--t-slow) var(--ease),
              border-color var(--t-slow) var(--ease),
              backdrop-filter var(--t-slow) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: 100%;
  max-width: var(--wide-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; height: 30px; }
.nav__logo img { height: 30px; width: auto; }
.nav__logo-colour { display: none; }
.nav.is-solid .nav__logo-white { display: none; }
.nav.is-solid .nav__logo-colour { display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-md);
  letter-spacing: 0.01em;
  color: var(--shell-dim);
  text-decoration: none;
  transition: color var(--t-norm) var(--ease);
}
.nav__link:hover { color: #fff; text-decoration: none; }
.nav__right { display: flex; align-items: center; gap: 18px; }

/* solid state once scrolled past the hero */
.nav.is-solid {
  background: color-mix(in srgb, var(--surface-card) 86%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--border-subtle);
}
.nav.is-solid .nav__link { color: var(--text-body); }
.nav.is-solid .nav__link:hover { color: var(--text-strong); }

.nav__burger {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--shell-line);
  border-radius: var(--radius-sm); cursor: pointer; color: #fff;
}
.nav.is-solid .nav__burger { color: var(--text-strong); border-color: var(--border-default); }

/* ============================================================
   Hero (dark gunmetal shell)
   ============================================================ */
.shell { background: var(--shell); color: var(--shell-text); }
/* dark-section headings must override .display / base heading colour (dark ink) */
.shell h1, .shell h2, .shell h3,
.hero h1, .hero h2, .hero h3,
.cta h1, .cta h2, .cta h3 { color: #fff; }

.hero {
  position: relative;
  background: var(--shell);
  color: var(--shell-text);
  min-height: 100vh;          /* fallback for browsers without svh */
  min-height: 100svh;         /* full screen, accounting for mobile UI chrome */
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 64px;
  overflow: hidden;
  text-align: center;
}
.hero .container { width: 100%; }
/* full-bleed fixed-plant photograph behind the hero, settled into the brand */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0.5) brightness(0.8) contrast(1.04);
}
/* flat gunmetal scrim (not a gradient) so the centred headline stays legible */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(20, 36, 42, 0.72);
  pointer-events: none;
}
.hero__center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
/* grid/flex children default to min-width:auto and refuse to shrink below their
   content, which overflows narrow viewports. Let them shrink. */
.hero__center > *, .step > * { min-width: 0; }
.hero h1 { width: 100%; max-width: 60rem; margin: 0 auto 22px; line-height: var(--leading-tight); text-wrap: balance; }
.hero h1 .accent { color: var(--brand-accent); }
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: var(--leading-relaxed);
  color: var(--shell-dim);
  max-width: 44rem;
  margin: 0 auto 34px;
}
.hero__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   Live product preview ("app frame")
   A faithful render of the real Predict UI components, framed as
   the product. Not a screenshot, not a fake mock: the same
   markup language the app uses, on the same tokens.
   ============================================================ */
.appframe {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 100%;
}
.appframe__bar {
  display: flex; align-items: center; gap: 10px;
  height: 44px; padding-inline: 14px; min-width: 0;
  background: var(--shell);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.appframe__dots { display: inline-flex; gap: 6px; flex: none; }
.appframe__dots i { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,0.22); }
.appframe__pump {
  margin-left: 6px; min-width: 0; flex: 1;
  display: inline-flex; align-items: baseline; gap: 8px; overflow: hidden;
}
.appframe__pump b { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: var(--text-md); letter-spacing: 0.02em; flex: none; }
.appframe__pump span { font-size: var(--text-xs); color: var(--shell-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.appframe__asof {
  flex: none;
  font-size: var(--text-2xs); color: var(--shell-muted);
  text-transform: uppercase; letter-spacing: var(--tracking-caps);
  font-family: var(--font-display); font-weight: 600; white-space: nowrap;
}
/* Predict wordmark in the frame's title bar: marks each preview as a real
   view of the Predict platform */
.appframe__brand { flex: none; height: 15px; width: auto; margin-left: auto; }
.wearcard .appframe__brand { height: 13px; }
.appframe__body { padding: 16px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.appframe__body > * { min-width: 0; }

/* —— recommendation strip (matches prototype RecStrip) —— */
.recstrip {
  display: flex; align-items: stretch;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--main);
  background: var(--soft);
}
.recstrip__tag {
  flex: none;
  width: 142px;
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px;
  background: var(--main); color: #fff;
}
.recstrip__tag .lucide { width: 18px; height: 18px; }
.recstrip__tag span {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--tracking-caps);
  font-size: var(--text-2xs); white-space: nowrap;
}
.recstrip__body {
  flex: 1; min-width: 0;
  display: flex; align-items: center;
  padding: 10px 14px; min-height: 44px;
  font-family: var(--font-body); font-size: var(--text-sm);
  color: var(--text-body);
}
.recstrip__body b { font-family: var(--font-display); font-weight: 700; }
.rec-forward  { --main: var(--rec-forward);  --soft: var(--rec-forward-soft); }
.rec-extend   { --main: var(--rec-extend);   --soft: var(--rec-extend-soft); }
.rec-ontrack  { --main: var(--sapphire-500); --soft: var(--sapphire-50); }
.ink-throat { color: var(--gold-700); }
.ink-impeller { color: var(--sapphire-700); }
.ink-coverplate { color: #6c6c24; }   /* olive: cover-plate part identity */

/* —— pump identity line inside a card (Recommendations row) —— */
.recrow {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 12px;
  transition: box-shadow var(--t-norm) var(--ease), transform var(--t-norm) var(--ease);
}
.recrow:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.recrow__id { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.recrow__id b { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--text-strong); }
.recrow__id span { font-size: var(--text-sm); color: var(--text-muted); }

/* —— part / limit bar (usage vs replacement limit) —— */
.limitset { display: flex; flex-direction: column; gap: 13px; }
.limitbar__top {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 7px;
}
.limitbar__name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.01em; color: var(--lim-ink, var(--text-strong)); }
.limitbar__val { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; font-size: var(--text-sm); color: var(--text-body); }
.limitbar__val .lim { color: var(--text-muted); }
.limitbar__track {
  position: relative;
  height: 8px; border-radius: 999px;
  background: var(--grey-150);
  overflow: hidden;
}
.limitbar__fill {
  position: absolute; inset: 0 auto 0 0;
  width: var(--pct, 50%);
  border-radius: 999px;
  background: var(--lim, var(--sapphire-500));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 900ms var(--ease-soft);
}
.is-revealed .limitbar__fill { transform: scaleX(1); }
.limitbar--within      { --lim: var(--limit-within);      --lim-ink: var(--sapphire-700); }
.limitbar--approaching { --lim: var(--limit-approaching); --lim-ink: var(--status-watch-ink); }
.limitbar--over        { --lim: var(--limit-over);        --lim-ink: var(--status-critical-ink); }
/* part-identity colours — each wear part keeps the same colour wherever
   it appears (sampled to match the supplied part palette) */
.limitbar--impeller    { --lim: #8dbbd8; --lim-ink: #3a7595; }  /* steel blue  */
.limitbar--coverplate  { --lim: #adad5a; --lim-ink: #6c6c24; }  /* olive       */
.limitbar--frameplate  { --lim: #b79ac8; --lim-ink: #6f547f; }  /* lavender    */
.limitbar__meta { margin-top: 6px; font-size: var(--text-xs); color: var(--text-muted); }
.limitbar__meta b { font-family: var(--font-display); font-weight: 700; }

/* —— pump performance row, sitting with the part limits —— */
.perfrow {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  background: var(--grey-50);
}
.perfrow__k {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-sm); color: var(--text-strong);
}
.perfrow__k .lucide { width: 17px; height: 17px; color: var(--text-muted); }
.perfrow__v {
  font-family: var(--font-display); font-weight: 700;
  font-variant-numeric: tabular-nums; font-size: var(--text-sm);
  color: var(--text-body);
}
.perfrow__v--watch { color: var(--status-watch-ink); }

/* a small outlined weeks/score pill, like the app */
.pill {
  display: inline-flex; align-items: baseline; gap: 2px;
  padding: 1px 6px; border-radius: 999px;
  border: 1px solid var(--pill-line, var(--border-default));
  background: var(--surface-card);
  line-height: 1;
}
.pill b { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); font-variant-numeric: tabular-nums; color: var(--pill-ink, var(--text-strong)); }
.pill span { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xs); opacity: 0.55; color: var(--pill-ink, var(--text-strong)); }

/* efficiency chip */
.effchip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: var(--text-xs); color: var(--text-muted);
}
.effchip b { font-family: var(--font-display); font-weight: 700; font-size: var(--text-md); font-variant-numeric: tabular-nums; }
.effchip--ok b { color: var(--status-healthy-ink); }

/* —— wear-trend mini chart —— */
.trend { width: 100%; max-width: 100%; height: auto; display: block; }
.trend .grid-line { stroke: var(--grey-150); stroke-width: 1; }
.trend .limit-line { stroke: var(--status-critical); stroke-width: 1.5; stroke-dasharray: 5 4; }
.trend .series { fill: none; stroke: var(--gold-500); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.trend .proj { fill: none; stroke: var(--chart-projection); stroke-width: 2.5; stroke-dasharray: 4 4; stroke-linecap: round; }
.trend .dot { fill: var(--gold-500); stroke: #fff; stroke-width: 2; }
/* draw-on-reveal for the projection */
.trend .series, .trend .proj {
  stroke-dasharray: var(--len, 600);
  stroke-dashoffset: var(--len, 600);
  transition: stroke-dashoffset 1100ms var(--ease-soft);
}
.trend .proj { stroke-dasharray: 4 4; }            /* keep dashes; reveal via opacity instead */
.trend .proj { opacity: 0; transition: opacity 700ms var(--ease-soft) 600ms; }
.is-revealed .trend .series { stroke-dashoffset: 0; }
.is-revealed .trend .proj { opacity: 1; }

/* ============================================================
   The problem (two columns: simplified copy + feature image)
   ============================================================ */
/* full-bleed, light-washed photo backdrop — kept faint so the framed
   pump photo stays the focal point and the cards read cleanly */
#problem { position: relative; isolation: isolate; overflow: hidden; }
.problem__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.4) brightness(1.12) contrast(0.96);
}
.problem__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(247, 248, 249, 0.82); }
#problem > .container { position: relative; z-index: 2; }

.problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(32px, 5vw, 72px);
}
@media (max-width: 900px) { .problem__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; } }

.problem__col .display { margin-top: 0; }

/* simplified one-line rows */
.probrows { list-style: none; margin: clamp(28px, 3vw, 40px) 0 0; padding: 0; display: grid; gap: 14px; }
.probrow {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.probrow__ic {
  flex: none; display: grid; place-items: center;
  color: var(--sapphire-500); margin-top: 1px;
}
.probrow__ic .lucide { width: 26px; height: 26px; }
.probrow p {
  margin: 0;
  font-size: var(--text-base); line-height: var(--leading-relaxed);
  color: var(--text-body);
}
.probrow p b { color: var(--text-strong); font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .probrow:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-1px); }
}

/* feature image — contained, never full-bleed on this light section */
.problem__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
  align-self: center;
}
.problem__media img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Video (featured)
   ============================================================ */
.video__head { text-align: center; max-width: 32rem; margin: 0 auto clamp(32px, 4vw, 52px); }
.player {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--shell-deep);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.player video, .player__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* branded poster placeholder until the real founder still is added: an on-brand
   pump-maintenance still, darkened with the brand scrim so the flame + caption read.
   Swap player-poster-bg.jpg for the real video still (or set the <video> poster). */
.player__poster {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  background-color: var(--shell-deep);
  background-image: linear-gradient(rgba(18, 32, 38, 0.72), rgba(18, 32, 38, 0.80)), url('player-poster-bg.jpg');
  background-size: cover;
  background-position: center;
}
.player__flame { position: relative; width: 40px; height: auto; opacity: 0.92; }
.player__cap { position: relative; font-family: var(--font-display); font-weight: 600; color: var(--shell-dim); font-size: var(--text-sm); letter-spacing: 0.02em; }
.player__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 999px;
  background: var(--surface-card); color: var(--sapphire-600);
  border: none; cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-norm) var(--ease-soft), background var(--t-norm) var(--ease);
}
.player__play .lucide { width: 30px; height: 30px; margin-left: 4px; }
.player__play:hover { transform: translate(-50%, -50%) scale(1.06); }
.player__play:active { transform: translate(-50%, -50%) scale(0.97); }
.player__meta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px; font-size: var(--text-sm); color: var(--text-muted);
}
.player__meta .lucide { width: 15px; height: 15px; }

/* ============================================================
   Proof (the result) — simplified: the numbers beside the
   witness quote, over a light-washed photo band.
   ============================================================ */
.proof { background: var(--surface-page); position: relative; isolation: isolate; overflow: hidden; }
.proof__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.4) brightness(1.1) contrast(0.97);
}
.proof__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(247, 248, 249, 0.86); }
.proof > .container { position: relative; z-index: 2; }

.proof__intro { max-width: none; margin-bottom: clamp(28px, 4vw, 44px); }
.proof__intro .display { margin-top: 0; text-wrap: balance; }

/* three result cards across the top: solid surfaces so the numbers read
   cleanly over the photo band. A 3-up row + the quote card below is a
   different layout family from the CTA's two-column split. */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}
.metric {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px; row-gap: 4px;
  align-items: center; min-width: 0;
  padding: clamp(22px, 2.4vw, 30px);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.metric__ic { grid-row: 1 / span 2; align-self: center; color: var(--sapphire-500); }
.metric__ic .lucide { width: 30px; height: 30px; }
.metric__num {
  grid-column: 2; align-self: end;
  font-family: var(--font-display); font-weight: 700;
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
  font-size: clamp(2rem, 3.2vw, 2.6rem); line-height: 1; color: var(--text-strong);
}
.metric__num .unit { font-size: 0.45em; color: var(--text-muted); margin-left: 4px; letter-spacing: 0; }
.metric__cap { grid-column: 2; align-self: start; font-size: var(--text-sm); color: var(--text-body); line-height: var(--leading-snug); }
@media (max-width: 760px) {
  .metrics { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   How it works — the loop
   ============================================================ */
.loop { background: var(--surface-sunken); }
.loop__head { margin-bottom: clamp(44px, 5vw, 72px); max-width: 48rem; }
.loop__head .display { margin-top: 0; }

/* schedule mini-gantt */
.gantt { padding: 16px; }
.gantt__legend { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; font-size: var(--text-xs); color: var(--text-muted); font-family: var(--font-body); }
.gantt__legend span { display: inline-flex; align-items: center; gap: 7px; }
.gantt__dot { width: 12px; height: 12px; border-radius: 999px; background: var(--text-strong); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--border-strong); }
.gantt__diamond { width: 9px; height: 9px; transform: rotate(45deg); border: 2px solid var(--rec-forward); border-radius: 2px; }
.gantt__band { width: 14px; height: 12px; background: rgba(65,82,90,0.13); border-inline: 1px dashed var(--status-offline); }
.gantt__plot { position: relative; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; }
.gantt__row { display: flex; align-items: stretch; border-top: 1px solid var(--border-subtle); height: 40px; }
.gantt__row:first-child { border-top: none; }
.gantt__label {
  width: 96px; flex: none; display: flex; align-items: center;
  padding-inline: 12px; border-left: 3px solid var(--lane, var(--border-default));
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); color: var(--text-strong);
  background: var(--surface-card);
}
.gantt__track { position: relative; flex: 1; }
.gantt__shutdown { position: absolute; top: 0; bottom: 0; background: rgba(65,82,90,0.12); border-inline: 1px dashed var(--status-offline); }
.gantt__today { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--sapphire-400); }
.gantt__insp { position: absolute; top: 50%; width: 13px; height: 13px; border-radius: 999px; background: var(--mk, var(--text-strong)); border: 2.5px solid #fff; box-shadow: var(--shadow-sm); transform: translate(-50%, -50%); }
.gantt__move { position: absolute; top: 50%; height: 4px; border-radius: 999px; background: var(--mk); transform: translateY(-50%); opacity: 0.9; transform-origin: left center; transition: transform 800ms var(--ease-soft); }
.is-revealed .gantt__move { transform: translateY(-50%) scaleX(1); }
.gantt__move { transform: translateY(-50%) scaleX(0); }
.gantt__prop { position: absolute; top: 50%; width: 11px; height: 11px; transform: translate(-50%, -50%) rotate(45deg); background: var(--surface-card); border: 2px solid var(--mk); border-radius: 2px; }
.gantt__axis { display: flex; align-items: center; height: 26px; border-top: 1px solid var(--border-subtle); background: var(--surface-card); }
.gantt__axis .spacer { width: 96px; flex: none; }
.gantt__months { position: relative; flex: 1; height: 100%; }
.gantt__month { position: absolute; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-weight: 600; font-size: var(--text-2xs); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--text-muted); }
.lane-forward { --lane: var(--rec-forward); --mk: var(--rec-forward); }
.lane-extend  { --lane: var(--rec-extend);  --mk: var(--rec-extend); }
.lane-ontrack { --lane: var(--sapphire-500); --mk: var(--sapphire-500); }
.gantt__cap { margin-top: 12px; font-size: var(--text-xs); color: var(--text-muted); }

/* ============================================================
   Hero trust lockup (SNEF backing, on the dark shell)
   ============================================================ */
/* SNEF parent-company mark moved to the footer (see .footer__snef) */

/* ============================================================
   How it works — the loop, shown in full
   Four connected stages on a single vertical spine. Every stage
   is visible at once (no autoplay), so the section reads in full
   at a glance, in a screenshot, or in a share. The spine + numbered
   nodes carry the "this is one continuous loop" reading, and the
   closing node loops it back to the start.
   ============================================================ */
.floww {
  list-style: none; margin: 0; padding: 0;
  --node: 44px;
}
.floww__step { padding-bottom: clamp(36px, 5vw, 72px); }

/* stage content: text beside its live app frame */
.floww__card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

/* number box, inline before the stage title */
.floww__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.floww__head .cyc__title { margin-bottom: 0; }
.floww__marker {
  flex: none;
  width: var(--node); height: var(--node); border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-800); color: #fff;
}
.floww__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-lg); font-variant-numeric: tabular-nums;
}

/* loop closer: a full-width band that caps the numbered spine and sends the
   eye back to step 1. The hairline above it marks the end of the sequence;
   the node mirrors the number-box size so it reads as the spine continuing,
   tinted (not dark-filled) so it reads as "cycle", not "step 5". */
.floww__loop {
  display: grid;
  grid-template-columns: var(--node) 1fr auto;
  align-items: center;
  gap: clamp(16px, 2.4vw, 24px);
  margin-top: clamp(8px, 1.5vw, 20px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--border-subtle);
}
.floww__loop-node {
  flex: none;
  width: var(--node); height: var(--node); border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sapphire-50);
  color: var(--sapphire-600);
  border: 1.5px solid var(--sapphire-300);
}
.floww__loop-node .lucide { width: 22px; height: 22px; }
.floww__loop-cap {
  margin: 0; max-width: 52ch;
  font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--text-body);
}
/* the return: a real link back to step 1, so "start the next cycle" works */
.floww__loop-back {
  flex: none;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-sm); letter-spacing: .01em;
  color: var(--sapphire-600); text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}
.floww__loop-back .lucide { width: 18px; height: 18px; transition: transform .18s ease; }
.floww__loop-back:hover { color: var(--sapphire-700, var(--sapphire-600)); }
.floww__loop-back:hover .lucide { transform: translateY(-2px); }
.floww__loop-back:active { transform: translateY(1px); }
@media (prefers-reduced-motion: reduce) {
  .floww__loop-back, .floww__loop-back .lucide { transition: none; }
}

/* alternate the layout: even steps put the media on the left, text on the right,
   so the column zig-zags down the spine. */
.floww__step:nth-child(even) .cyc__text  { order: 2; }
.floww__step:nth-child(even) .cyc__media { order: 1; }

/* stage 2 media: the inspection photo with the pump-health card overlapping its
   lower-left corner (and the AI-assessment chip over the top) — the floating-UI
   composition from the original mockup. The photo is inset on one side so the
   card overhangs into the gap rather than off the page. */
/* photo is pushed to the right of its column so the part centre stays clear;
   the health card is anchored to the column's left edge (lining up with the
   Schedule card and the step numbers) and widened into that space. The -43%
   offset cancels the 30% right-inset of the 70%-wide photo. */
.floww .wearcomp { max-width: 70%; margin-left: auto; }
.floww .wearcard {
  position: absolute;
  left: -43%; bottom: -48px;
  width: min(86%, 300px);
  margin-top: 0; z-index: 2;
}
/* the wear photo and card top-align with the text so the card sits high in the
   row; the small overhang stays inside the standard step spacing, so every step
   keeps the same height. */
.floww__step--wear .floww__card { align-items: start; }

@media (max-width: 900px) {
  .floww__card { grid-template-columns: minmax(0, 1fr); gap: clamp(20px, 5vw, 32px); }
  /* read text-first on every step once stacked */
  .floww__step:nth-child(even) .cyc__text  { order: 0; }
  .floww__step:nth-child(even) .cyc__media { order: 0; }
  /* stacked: the photo goes full width and the health card sits beneath it */
  .floww .wearcomp { max-width: 100%; margin-left: 0; }
  .floww .wearcard {
    position: static; left: auto; bottom: auto;
    width: 100%; margin-top: 16px;
  }
  /* loop closer stacks: node + copy on one row, return link beneath */
  .floww__loop {
    grid-template-columns: var(--node) 1fr;
    gap: 14px 16px;
  }
  .floww__loop-back {
    grid-column: 1 / -1;
    margin-top: 4px;
  }
}

/* stage text column sits beside its media; keep it shrinkable */
.cyc__text { min-width: 0; }
.floww .cyc__media { min-width: 0; }

.cyc__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem); line-height: var(--leading-snug);
  color: var(--text-strong); margin-bottom: 14px;
}
.cyc__lead {
  font-size: var(--text-md); line-height: var(--leading-relaxed);
  color: var(--text-body); margin-bottom: 22px; max-width: 34rem;
}
.cyc__points { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.cyc__points li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: var(--text-sm); line-height: var(--leading-relaxed); color: var(--text-body);
}
.cyc__points li b { color: var(--text-strong); font-weight: 600; }
.cyc__points .lucide { width: 19px; height: 19px; color: var(--sapphire-500); flex: none; margin-top: 1px; }

/* —— data-source rows (the "data in" stage media) —— */
.srclist { display: flex; flex-direction: column; gap: 10px; }
.srcrow {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  background: var(--surface-card);
}
.srcrow__ic {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sapphire-600);
}
.srcrow__ic .lucide { width: 24px; height: 24px; }
.srcrow__main { flex: 1; min-width: 0; }
.srcrow__name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm); color: var(--text-strong); }
.srcrow__sub { font-size: var(--text-xs); color: var(--text-muted); }
.srcrow__status {
  flex: none; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xs);
  text-transform: uppercase; letter-spacing: var(--tracking-caps);
  color: var(--status-healthy-ink);
}
.srcrow__status .lucide { width: 14px; height: 14px; }
.srcrow--new { border-color: var(--gold-300); background: var(--gold-50); }
.srcrow--new .srcrow__ic { color: var(--gold-700); }
.srcrow--new .srcrow__status { color: var(--gold-700); }
/* third source colour — neutral steel, distinct from the sapphire + gold rows */
.srcrow--steel .srcrow__ic { color: var(--ink-700); }

/* —— wear-assessment stage media: a standalone inspection photo with a
      compact UI card floating over one corner. The photo is unframed;
      only the small card carries UI —— */
.wearcomp { position: relative; max-width: 76%; margin-left: auto; }
/* the photo frame clips the circle's dim-surround so it never bleeds
   past the photo onto the rest of the section */
.wearcomp__frame {
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wearcomp__photo {
  display: block; width: 100%; height: auto;
}
/* AI-highlighted wear zone — a circle around the worn area */
.wearcomp__zone {
  position: absolute;
  left: 52%; top: 55%; width: 38%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px dashed var(--gold-300);
  border-radius: 50%;
  box-shadow: 0 0 0 9999px rgba(13, 20, 33, 0.16);
  pointer-events: none;
}
.is-revealed .wearcomp__zone { animation: wearzone-in 600ms var(--ease-soft) both; }
@keyframes wearzone-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(1.08); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.wearcomp__ai {
  position: absolute; top: 14px; right: 14px; left: 14px;
  display: flex; justify-content: flex-end;
}
/* one bubble: AI rating, a divider, then the short comment */
.wearcomp__chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--ink-800) 80%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.wearcomp__chip .lucide { flex: none; width: 15px; height: 15px; color: var(--gold-300); }
.wearcomp__rate {
  flex: none;
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-2xs); letter-spacing: var(--tracking-caps);
  text-transform: uppercase; white-space: nowrap;
}
.wearcomp__rate b { font-weight: 700; font-size: var(--text-sm); letter-spacing: 0.01em; text-transform: none; }
.wearcomp__rate b small { font-weight: 600; opacity: 0.7; }
.wearcomp__cmt {
  max-width: 230px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-body); font-size: var(--text-xs); line-height: var(--leading-snug);
  color: rgba(255, 255, 255, 0.85);
}

/* the floating limits/health card hanging off the photo's bottom-left
   corner — overhangs both edges so it clears the worn area */
.wearcard {
  position: absolute; left: -180px; bottom: -52px;
  width: min(78%, 300px); z-index: 2;
}
.wearcard .appframe__bar { height: 38px; }
.wearcard .appframe__body { padding: 13px; }
.wearcard .limitset { gap: 11px; }

/* ============================================================
   Testimonial / quote — the witness, beside the result numbers
   ============================================================ */
/* the witness quote: a card below the result cards (no left-accent bar) */
.proof__quote {
  margin: clamp(16px, 2.2vw, 24px) auto 0;
  max-width: 64rem;
  padding: clamp(28px, 3vw, 40px);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.quote__mark { width: 32px; height: 32px; color: var(--brand-accent); margin-bottom: 14px; }
.proof__quote blockquote {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: var(--leading-snug);
  letter-spacing: -0.005em; color: var(--text-strong);
}
.quote__by { margin-top: 22px; display: flex; flex-direction: column; gap: 2px; }
.quote__name {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-md);
  color: var(--text-strong); letter-spacing: 0.01em;
}
.quote__org { font-size: var(--text-sm); color: var(--text-muted); }

/* ============================================================
   CTA (dark shell)
   ============================================================ */
.cta { background: var(--shell); color: #fff; position: relative; overflow: hidden; }
/* full-bleed plant photograph behind the CTA, same treatment as the hero so the
   page is book-ended by two photographic dark shells (light content between) */
.cta__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0.5) brightness(0.8) contrast(1.04);
}
.cta__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(20, 36, 42, 0.74);   /* a touch heavier than the hero: more body copy here */
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 2; }
.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .cta__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; } }
.cta__col { max-width: 600px; }
.cta h2 { margin-bottom: 20px; max-width: 18ch; }
.cta p { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: var(--leading-relaxed); color: var(--shell-dim); max-width: 52ch; margin-bottom: 16px; }

/* friction-reducer: what the Study actually is, at the decision point */
.cta__what {
  list-style: none; margin: 26px 0 30px; padding: 0;
  display: flex; flex-direction: column; gap: 13px; max-width: 52ch;
}
.cta__what li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: var(--text-base); line-height: var(--leading-snug); color: var(--shell-dim);
}
.cta__what .lucide { width: 19px; height: 19px; color: var(--brand-accent); flex: none; margin-top: 2px; }

/* quick-message contact form (white card on the dark CTA) */
.cform {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 3vw, 30px);
  display: flex; flex-direction: column; gap: 15px;
}
.cform .cform__title { margin: 0 0 2px; font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--text-strong); }
.cform__row { display: flex; flex-direction: column; gap: 7px; }
.cform__label {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  color: var(--text-strong); letter-spacing: 0.01em;
}
.cform__input {
  font-family: var(--font-body); font-size: var(--text-base); color: var(--text-strong);
  background: var(--surface-page);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 11px 13px; width: 100%;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.cform__input::placeholder { color: var(--text-muted); }
.cform__input:focus { outline: none; border-color: var(--brand-primary); box-shadow: var(--shadow-focus); }
.cform__textarea { resize: vertical; min-height: 100px; line-height: var(--leading-relaxed); }
.cform__submit { margin-top: 2px; width: 100%; }

/* ============================================================
   Footer (dark shell, deeper)
   ============================================================ */
.footer { background: var(--shell-deep); color: var(--shell-muted); padding-block: 56px; }
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px 64px; flex-wrap: wrap; }
.footer__brand { min-width: 220px; }
.footer__snef-wrap { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.footer__logo img { height: 36px; width: auto; margin-bottom: 16px; }
.footer__tag { font-family: var(--font-display); font-weight: 600; color: var(--shell-dim); font-size: var(--text-md); letter-spacing: 0.01em; max-width: 26ch; }
.footer__meta { font-size: var(--text-sm); line-height: var(--leading-relaxed); }
.footer__meta a { color: var(--shell-dim); }
.footer__meta a:hover { color: #fff; }
.footer__snef-label {
  display: block; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--tracking-caps);
  font-size: var(--text-xs); color: var(--shell-muted); margin-bottom: 10px;
}
.footer__snef-link { display: inline-flex; transition: transform var(--t-norm) var(--ease); }
.footer__snef-link:hover { transform: translateY(-1px); }
.footer__snef { height: 46px; width: auto; display: block; }
.footer__bottom {
  max-width: var(--wide-max); margin-inline: auto; padding-inline: var(--gutter);
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--shell-line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px 28px; flex-wrap: wrap;
  font-size: var(--text-xs); color: var(--ink-400);
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 14px 24px; }
.footer__nav a {
  color: var(--shell-muted); font-size: var(--text-xs);
  letter-spacing: 0.01em; transition: color var(--t-norm) var(--ease);
}
.footer__nav a:hover { color: #fff; }

/* ============================================================
   Motion — scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 640ms var(--ease-soft), transform 640ms var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .limitbar__fill { transition: none; transform: scaleX(1); }
  .trend .series, .trend .proj { transition: none; stroke-dashoffset: 0; opacity: 1; }
  .gantt__move { transition: none; transform: translateY(-50%) scaleX(1); }
  .btn, .link-arrow .lucide, .player__play, .recrow { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero { padding-top: 92px; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--surface-card); border-bottom: 1px solid var(--border-subtle);
    padding: 14px var(--gutter) 20px; box-shadow: var(--shadow-lg);
  }
  .nav.is-open .nav__link { color: var(--text-body); padding: 8px 0; font-size: var(--text-lg); }
  .hero__cta { gap: 14px; }
  /* once the footer stacks, the SNEF lockup reads left-aligned like the rest */
  .footer__snef-wrap { align-items: flex-start; text-align: left; }
}

@media (max-width: 420px) {
  .recstrip { flex-direction: column; }
  .recstrip__tag { width: auto; padding: 8px 12px; }
  .gantt__label { width: 70px; font-size: var(--text-xs); }
}
