/* Furiosa Group v2: the suite.
   Paper and teal for the story, one deep-navy stage for the live map.
   Archivo (expanded) for display, Figtree for reading. */

:root {
  /* Colours and fonts come from suite-tokens.css (loaded first), the one design source for every Furiosa product.
     --surface and --ink-soft have no suite token yet and stay local. */
  --paper:        var(--fs-bg);
  --surface:      #fafbfc;
  --white:        var(--fs-white);
  --ink:          var(--fs-text);
  --ink-soft:     #2a4250;
  --muted:        var(--fs-muted);
  --line:         var(--fs-line);

  --teal:         var(--fs-teal);
  --teal-bright:  var(--fs-teal);
  --teal-deep:    var(--fs-btn);
  --teal-ink:     var(--fs-teal-ink);   /* teal for small text on paper, AA */
  --tint:         var(--fs-teal-light);
  --tint-2:       var(--fs-teal-mid);

  --night:        var(--fs-navy-deep);   /* ink, pushed darker for the map stage */
  --night-2:      var(--fs-navy);
  --night-line:   var(--fs-dark-line);
  --on-night:     var(--fs-on-dark);
  --on-night-soft:var(--fs-on-dark-2);
  --cyan-glow:    var(--fs-glow);

  --display: var(--fs-font-display);
  --body:    var(--fs-font-body);

  --max:    1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --ease:   var(--fs-ease);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
p, h1, h2, h3, figure, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }

:focus-visible { outline: 3px solid var(--teal-ink); outline-offset: 3px; border-radius: 4px; }
.live :focus-visible { outline-color: var(--cyan-glow); }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 50;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 6px; text-decoration: none;
}
.skip:focus { top: 12px; }

/* Shared type */
.h2 {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  max-width: 20ch;
  text-wrap: balance;
}
.kicker { color: var(--teal-ink); font-weight: 600; font-size: 1rem; margin-bottom: .9rem; }

/* ---------- Header: the suite's shared pill nav, the same as furiosa.com ---------- */
.nav { position: sticky; top: 0; z-index: 20; padding: 14px var(--gutter) 0; pointer-events: none; }
.nav-in {
  pointer-events: auto; max-width: 1200px; margin: 0 auto; height: 62px;
  display: flex; align-items: center; gap: 1.5rem; padding: 0 .5rem 0 1.1rem;
  border-radius: 999px; background: rgba(255,255,255,.9); border: 1px solid rgba(0,176,198,.3);
  box-shadow: 0 6px 30px rgba(8,47,60,.08); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.nav-logo { display: inline-flex; align-items: center; gap: .6rem; flex: none; text-decoration: none; font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink); }
.orb { width: 30px; height: 30px; flex: none; }
/* The suite wordmark, copied from the Backstage sign-in screen (artifact.css .auth-mark / .auth-product),
   scaled from 12/13px to 15/16px for the nav: FURIOSA in Figtree, the product name in Archivo. */
.wm { display: inline-flex; align-items: baseline; gap: 10px; }
.wm-f { font-family: Figtree, system-ui, sans-serif; font-weight: 800; font-size: 15px; letter-spacing: .2em; line-height: 1; color: var(--fs-wm-furiosa); }
.wm-b { font-family: Archivo, Figtree, sans-serif; font-weight: 700; font-size: 16.25px; letter-spacing: -.01em; line-height: 1; color: var(--fs-wm-product); }
.nav-links { display: flex; gap: .2rem; margin-left: auto; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: .96rem; color: var(--ink); padding: .5rem .8rem; border-radius: 999px; }
.nav-links a:hover { background: #e6f8fa; }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 600; font-size: .95rem; padding: .62rem 1.15rem; border-radius: 999px; background: var(--fs-btn); color: #fff; }
.nav-cta:hover { background: var(--fs-btn-hover); color: #fff; }
.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 50%; border: 0; background: #e6f8fa; color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }
.mobile-menu {
  pointer-events: auto; max-width: 1200px; margin: 8px auto 0; padding: .8rem; border-radius: 22px;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(8,47,60,.18);
  display: grid; gap: .2rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { text-decoration: none; font-weight: 600; padding: .8rem 1rem; border-radius: 12px; color: var(--ink); }
.mobile-menu a:hover { background: #e6f8fa; }
.mobile-menu .nav-cta { margin-top: .4rem; padding: .8rem 1rem; color: #fff; }
@media (max-width: 860px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
/* Headline left, the suite at work on the right: an ad set, the sign-up page
   it sends fans to, and the live map it all lands on, joined by signal wires. */
.hero { padding-block: clamp(2.5rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
.hero-title {
  font-family: var(--display);
  font-stretch: 118%;
  font-weight: 800;
  font-size: clamp(2.5rem, 4.9vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-lede {
  margin-top: clamp(1.3rem, 2.4vw, 2rem);
  max-width: 29rem;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
}
.hero-actions { margin-top: clamp(1.6rem, 2.6vw, 2.2rem); display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.6rem; }
.hero-link {
  font-weight: 600; color: var(--teal-ink); text-decoration: underline;
  text-decoration-thickness: 2px; text-underline-offset: .3em; text-decoration-color: var(--tint-2);
}
.hero-link:hover { text-decoration-color: var(--teal); }

/* The stage: a square box, everything placed in % so the SVG wires line up. */
.stage { position: relative; width: 100%; max-width: 640px; aspect-ratio: 1; margin: 0 0 0 auto; }
.stage-orb {
  position: absolute; left: 7%; top: 9%; width: 86%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--tint) 0 54%, transparent 54.2%),
              radial-gradient(circle at 50% 50%, transparent 0 63%, var(--tint-2) 63.2% 63.8%, transparent 64%);
}
.stage-orb::after {         /* a teal arc on the ring, from the logo's orb */
  content: ''; position: absolute; inset: 18%; border-radius: 50%;
  border: 3px solid transparent; border-top-color: var(--teal); border-right-color: var(--teal-bright);
  transform: rotate(-20deg);
  animation: orbit 40s linear infinite;
}
@keyframes orbit { to { transform: rotate(340deg); } }

.wires { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.wire, .spark { fill: none; vector-effect: non-scaling-stroke; stroke-linecap: round; }
.wire { stroke: var(--teal); stroke-width: 2; opacity: .55; stroke-dasharray: 100; animation: wire 1.1s var(--ease) .7s both; }
.wire-back { stroke-dasharray: 1.2 1.6; opacity: .7; animation: fade .8s var(--ease) 1.4s both; }
.spark { stroke: var(--teal-bright); stroke-width: 4; stroke-dasharray: 5 95; animation: spark 3.2s linear 1.6s infinite both; opacity: 0; }
.spark.s2 { animation-delay: 2.4s; }
.spark.s3 { stroke-width: 3; animation-duration: 4.4s; animation-delay: 3.4s; }
@keyframes wire { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
@keyframes spark {
  0% { stroke-dashoffset: 5; opacity: 1; }
  90% { opacity: 1; }
  100% { stroke-dashoffset: -95; opacity: 0; }
}

.layer { position: absolute; translate: var(--px, 0) var(--py, 0); transition: translate .6s var(--ease); animation: rise .9s var(--ease) both; }
.layer-ads   { left: 0;      top: 4%;   width: 46%; animation-delay: .05s; }
.layer-phone { left: 34%;    top: 13%;  width: 31%; z-index: 2; animation-delay: .2s; }
.layer-map   { left: 58%;    top: 39%;  width: 42%; z-index: 3; animation-delay: .35s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.card, .device { animation: bob 7s ease-in-out infinite alternate; }
.layer-phone .device { animation-delay: -2s; }
.layer-map .card { animation-delay: -4.5s; }
@keyframes bob { from { transform: translateY(-4px); } to { transform: translateY(5px); } }

.card {
  border-radius: 14px; overflow: hidden; background: var(--white);
  box-shadow: 0 1px 0 rgba(13,31,42,.05), 0 4px 12px rgba(13,31,42,.06), 0 30px 50px -26px rgba(13,31,42,.45);
}
.crop { position: relative; overflow: hidden; }
.crop img { max-width: none; }
/* ad-sets.webp is 1600x862: show the first ad set rows, x 0-560, y 258-580 */
.crop-ads { aspect-ratio: 560 / 322; }
.crop-ads img { width: calc(100% * 1600 / 560); transform: translate(0, calc(-258 / 862 * 100%)); }

.device {
  background: var(--ink); padding: 7px; border-radius: 30px;
  box-shadow: 0 0 0 1px rgba(13,31,42,.2), 0 40px 70px -30px rgba(13,31,42,.6), 0 12px 24px -12px rgba(13,31,42,.35);
}
.device img { border-radius: 23px; width: 100%; }

.card-map { background: var(--night); border: 1px solid var(--night-line); box-shadow: 0 30px 60px -24px rgba(0,120,140,.55), 0 10px 26px -10px rgba(6,19,27,.5); }
.card-map img { width: 100%; }

.tag {
  position: absolute; z-index: 4; white-space: nowrap;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .38rem .8rem; border-radius: 999px;
  font-size: .82rem; font-weight: 600; line-height: 1.2;
  background: var(--white); color: var(--ink);
  box-shadow: 0 0 0 1px var(--tint-2), 0 8px 18px -8px rgba(13,31,42,.35);
  animation: fade .6s var(--ease) both;
}
.tag-ads       { left: 6%;   bottom: -1.1rem; animation-delay: .6s; }
.tag-events    { left: 50%;  top: -1rem; translate: -50% 0; animation-delay: .75s; }
.tag-backstage { right: 8%;  bottom: -1rem; background: var(--night-2); color: var(--on-night); box-shadow: 0 0 0 1px var(--night-line), 0 8px 18px -8px rgba(6,19,27,.6); animation-delay: 1.1s; }
.tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-glow); animation: pulse 2.4s ease-out infinite; }
/* Signal and CRM sit on the wire between the page and the map. */
.tag-signal, .tag-crm { translate: -50% -50%; background: var(--ink); color: #fff; box-shadow: 0 8px 18px -8px rgba(13,31,42,.5); }
.tag-signal { left: 76%; top: 16%; animation-delay: .95s; }
.tag-crm    { left: 86%; top: 29%; animation-delay: 1.05s; }

/* Flow rail: the suite as a path, one icon per step */
.flow-title { margin-top: clamp(2.5rem, 5vw, 4.5rem); font-size: 1rem; font-weight: 600; color: var(--muted); }
.rail { margin-top: 1.6rem; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.4rem; position: relative; }
.rail::before {             /* the forward line, icon centre to icon centre */
  content: ''; position: absolute; left: 26px; right: calc(20% - 1.12rem - 26px); top: 25px; height: 2px;
  background: linear-gradient(90deg, var(--tint-2), var(--teal) 30%, var(--teal-bright));
  transform-origin: left center;
  animation: draw 1.4s var(--ease) .2s both;
}
.rail::after {              /* a signal travelling along it */
  content: ''; position: absolute; top: 22px; left: 26px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-bright); box-shadow: 0 0 0 4px rgba(0,175,202,.18);
  animation: travel 4.5s cubic-bezier(.5,0,.5,1) 1.8s infinite both;
}
@keyframes travel { 0% { left: 26px; opacity: 0; } 8% { opacity: 1; } 88% { opacity: 1; } 100% { left: calc(80% + .28rem + 22px); opacity: 0; } }
.rail-step { position: relative; }
.rail-icon {
  position: relative; z-index: 1;
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--teal-deep);
  box-shadow: 0 0 0 1px var(--tint-2), 0 0 0 6px var(--paper), 0 10px 20px -10px rgba(13,31,42,.3);
  animation: light .5s var(--ease) both;
}
.rail-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.rail-icon-start { background: var(--paper); color: var(--muted); box-shadow: 0 0 0 1.5px var(--line), 0 0 0 6px var(--paper); }
.rail-step:not(:first-child) .rail-icon { background: var(--teal-deep); color: #fff; box-shadow: 0 0 0 6px var(--paper), 0 12px 22px -10px rgba(10,125,138,.6); }
.rail-step:nth-child(1) .rail-icon { animation-delay: .1s; }
.rail-step:nth-child(2) .rail-icon { animation-delay: .45s; }
.rail-step:nth-child(3) .rail-icon { animation-delay: .75s; }
.rail-step:nth-child(4) .rail-icon { animation-delay: 1.05s; }
.rail-step:nth-child(5) .rail-icon { animation-delay: 1.35s; }
.rail-name { margin-top: 1rem; font-weight: 700; font-size: 1.05rem; }
.rail-step:first-child .rail-name { color: var(--muted); }
.rail-text { margin-top: .3rem; font-size: .95rem; line-height: 1.5; color: var(--muted); max-width: 22ch; }

/* The return: from Backstage back round to the ad click */
.rail-loop { position: relative; margin-top: 1.8rem; padding-top: 1.6rem; }
.rail-loop-line {
  position: absolute; top: 0; left: 26px; right: calc(20% - 1.12rem - 26px); height: 1.1rem;
  border: 2px dashed var(--teal); border-top: 0; border-radius: 0 0 16px 16px;
  animation: fade .6s var(--ease) 1.7s both;
}
.rail-loop-line::after {    /* arrow head up into the ad click */
  content: ''; position: absolute; left: -7px; top: -6px;
  border: 6px solid transparent; border-bottom: 8px solid var(--teal); border-top: 0;
}
.rail-loop-text { display: block; max-width: 44rem; font-size: 1rem; font-weight: 500; color: var(--teal-ink); }

@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes light { from { transform: scale(.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { max-width: 14ch; }
  .stage { margin: .5rem auto 0; max-width: 520px; }
}
@media (max-width: 860px) {
  /* Rail turns vertical: a line down the left */
  .rail { grid-template-columns: 1fr; gap: 1.5rem; }
  .rail::before { left: 25px; right: auto; top: 26px; bottom: 26px; width: 2px; height: auto; transform-origin: top center; animation-name: drawY; background: linear-gradient(180deg, var(--tint-2), var(--teal) 30%, var(--teal-bright)); }
  .rail::after { display: none; }
  .rail-step { display: grid; grid-template-columns: 52px 1fr; column-gap: 1.1rem; align-items: center; }
  .rail-icon { grid-row: 1 / span 2; align-self: start; }
  .rail-name { margin-top: .2rem; }
  .rail-text { max-width: none; margin-top: .1rem; }
  .rail-loop { padding-top: 0; padding-left: calc(52px + 1.1rem); margin-top: 1.4rem; }
  .rail-loop-line { display: none; }
  @keyframes drawY { from { transform: scaleY(0); } to { transform: scaleY(1); } }
}
@media (max-width: 520px) {
  .stage { margin-top: 0; }
  .tag { font-size: .72rem; padding: .3rem .6rem; }
  .device { padding: 4px; border-radius: 18px; }
  .device img { border-radius: 14px; }
  .card { border-radius: 10px; }
  .tag-ads { bottom: -.9rem; }
  .tag-signal { left: 80%; top: 15%; }
  .tag-crm { left: 86%; top: 27.5%; }
  .flow-title { margin-top: 2.5rem; }
}

/* ---------- Flagship: event pages ---------- */
.pages {
  background: var(--white);
  padding-block: clamp(4rem, 9vw, 7.5rem);
  border-top: 1px solid var(--line);
}
.pages-head { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.pages-intro { color: var(--ink-soft); max-width: 34rem; }
.ticks { margin-top: 1.2rem; display: grid; gap: .55rem; }
.ticks li { position: relative; padding-left: 1.7rem; font-weight: 500; color: var(--ink); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .42em; width: 12px; height: 7px;
  border-left: 2px solid var(--teal-deep); border-bottom: 2px solid var(--teal-deep); transform: rotate(-45deg);
}

.showcase {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3.5rem, 6vw, 5.5rem) clamp(2rem, 4vw, 3.5rem);
}
.shot figure { position: relative; padding-right: 7%; }
.browser {
  border-radius: 12px; overflow: hidden; background: var(--ink);
  box-shadow: 0 1px 0 rgba(13,31,42,.06), 0 2px 6px rgba(13,31,42,.06), 0 30px 60px -28px rgba(13,31,42,.45);
}
.browser-bar { display: flex; justify-content: center; padding: 8px 12px; background: #16303d; }
.browser-url {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.08); color: #e6f0f3; border-radius: 6px;
  padding: 3px 12px; font-size: .8rem; font-weight: 500; letter-spacing: .01em; max-width: 100%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.browser-url::before {      /* secure dot */
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-glow); flex: none;
}
.browser img { width: 100%; aspect-ratio: 1400 / 875; object-fit: cover; }
.phone {
  position: absolute; right: 0; bottom: -2.2rem; width: 23%;
  border-radius: 16px; border: 4px solid var(--ink); background: var(--ink);
  box-shadow: 0 24px 40px -18px rgba(13,31,42,.55);
}
.shot figcaption { margin-top: 1.2rem; padding-right: 20%; color: var(--muted); font-size: .95rem; line-height: 1.45; }
.shot figcaption strong { display: block; color: var(--ink); font-weight: 700; font-size: 1.05rem; }

/* ---------- The suite: four cards in a loop ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.suite { padding-block: clamp(4.5rem, 9vw, 8rem); }
.suite-head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 1.5rem clamp(2rem, 5vw, 5rem); align-items: end; }
.suite-title { max-width: 20ch; }
.suite-note { color: var(--muted); max-width: 30rem; }

/* Clockwise: Events (top left) > Signal (top right) > CRM (bottom right) > Backstage (bottom left) > back to Events */
.cycle {
  --g: clamp(4.5rem, 7vw, 6rem);
  position: relative;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr;
  gap: var(--g);
}
.ci-events    { grid-area: 1 / 1; }
.ci-signal    { grid-area: 1 / 2; }
.ci-crm       { grid-area: 2 / 2; }
.ci-backstage { grid-area: 2 / 1; }
.cycle-item { display: flex; }

.pcard {
  flex: 1; display: flex; flex-direction: column;
  border-radius: 22px; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
}
.pc-signal    { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; }
.pc-crm       { background: var(--tint-2); border-color: #c3e8ec; }
.pc-backstage { background: var(--night); border-color: var(--night); color: var(--on-night); }

.pvis { position: relative; height: 250px; overflow: hidden; }
.pbody { padding: clamp(1.4rem, 2.6vw, 2.2rem); padding-top: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.pjob {
  font-family: var(--display); font-stretch: 118%; font-weight: 800;
  font-size: clamp(2.2rem, 3.6vw, 3.3rem); line-height: .95; letter-spacing: -.04em;
  color: var(--teal-deep);
}
.pc-signal .pjob    { color: #fff; }
.pc-crm .pjob       { color: var(--ink); }
.pc-backstage .pjob { color: var(--cyan-glow); }
.pcard h3 { margin-top: .9rem; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.ppromise { margin-top: .35rem; font-size: 1.08rem; line-height: 1.5; color: var(--ink-soft); max-width: 34rem; }
.pc-signal .ppromise { color: #eaf8fa; }
.pc-backstage .ppromise { color: var(--on-night); }
.pbullets { margin-top: 1rem; display: grid; gap: .45rem; font-size: .96rem; color: var(--muted); }
.pc-signal .pbullets { color: #d3eef1; }
.pc-backstage .pbullets { color: var(--on-night-soft); }
.pbullets li { position: relative; padding-left: 1.2rem; }
.pbullets li::before { content: ''; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.pc-signal .pbullets li::before { background: var(--cyan-glow); }
.pc-backstage .pbullets li::before { background: var(--cyan-glow); box-shadow: 0 0 8px var(--cyan-glow); }
.plink {
  margin-top: auto; padding-top: 1.4rem; align-self: flex-start;
  font-weight: 700; font-size: 1rem; color: var(--teal-ink);
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; text-decoration-color: var(--teal);
}
.plink:hover { text-decoration-color: currentColor; }
.pc-signal .plink { color: #fff; text-decoration-color: var(--cyan-glow); }
.pc-backstage .plink { color: var(--cyan-glow); text-decoration-color: rgba(127,227,240,.5); }
.pc-signal :focus-visible, .pc-backstage :focus-visible { outline-color: var(--cyan-glow); }
.new { font-size: .78rem; font-weight: 700; color: var(--night); background: var(--cyan-glow); padding: .15rem .55rem; border-radius: 999px; }

/* Events: three shows, three designs */
.pvis-events { background: var(--tint); }
.pvis-events img {
  position: absolute; top: 34px; width: 132px; border-radius: 16px;
  border: 4px solid var(--ink); background: var(--ink);
  box-shadow: 0 18px 30px -16px rgba(13,31,42,.5);
}
.pvis-events img:nth-child(1) { left: calc(50% - 205px); transform: rotate(-7deg); top: 46px; }
.pvis-events img:nth-child(2) { left: calc(50% - 66px); z-index: 1; top: 24px; }
.pvis-events img:nth-child(3) { left: calc(50% + 73px); transform: rotate(7deg); top: 46px; }

/* Signal: one signup fans out */
.pvis-signal { display: flex; align-items: center; justify-content: center; padding: 10px 24px 0; background: linear-gradient(180deg, rgba(0,0,0,.14), transparent); }
.pvis-signal svg { width: 100%; max-width: 480px; height: 100%; }
.sv-node { font: 700 16px var(--body); fill: var(--teal-deep); }
.sv-pill rect { fill: rgba(255,255,255,.14); stroke: rgba(255,255,255,.35); }
.sv-pill text { font: 600 17px var(--body); fill: #fff; }
.sv-crm rect { fill: #7fe3f0; stroke: #7fe3f0; }
.sv-crm text { fill: var(--night); }

/* CRM: an audience at a glance */
.pvis-crm { display: flex; align-items: flex-end; justify-content: center; padding: 30px 28px 0; }
.aud {
  width: 100%; max-width: 400px; background: var(--white); border-radius: 16px 16px 0 0;
  padding: 18px 20px 16px; box-shadow: 0 -1px 0 #c3e8ec, 0 20px 40px -20px rgba(10,125,138,.45);
}
.aud-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.aud-name { font-weight: 700; font-size: .95rem; }
.aud-count { font-size: .85rem; color: var(--muted); white-space: nowrap; }
.aud-count strong { font-family: var(--display); font-stretch: 112%; font-size: 1.25rem; color: var(--ink); }
.aud-rows { margin-top: 12px; display: grid; gap: 9px; }
.aud-rows li { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 10px; }
.av {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-size: .7rem; font-weight: 700; color: #fff; background: hsl(var(--h) 55% 42%);
}
.bar { height: 8px; border-radius: 4px; background: var(--line); width: 78%; }
.bar.b2 { width: 62%; } .bar.b3 { width: 70%; }
.src { font-size: .75rem; font-weight: 600; color: var(--teal-ink); background: var(--tint); border: 1px solid var(--tint-2); padding: 2px 8px; border-radius: 999px; }
.aud-auto { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); font-size: .82rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.aud-auto .dot { width: 8px; height: 8px; border-radius: 50%; background: #1f9d6b; }

/* Backstage: the live map itself */
.pvis-backstage img { width: 100%; height: 100%; object-fit: cover; object-position: 0% 45%; }
.pvis-backstage::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 72%, var(--night)); }

/* Handoffs: the connectors that make the four a loop.
   Each pill sits in the gap between two cards, on a dashed track with an arrow. */
.cycle { --gx: clamp(7.5rem, 10vw, 9rem); --gy: clamp(4.5rem, 6vw, 5.5rem); column-gap: var(--gx); row-gap: var(--gy); }
.handoff {
  position: absolute; transform: translate(-50%, -50%);
  padding: .55rem .75rem; border-radius: 14px;
  background: var(--paper); border: 1.5px solid var(--teal);
  font-size: .84rem; font-weight: 600; line-height: 1.3; color: var(--teal-ink); text-align: center;
}
.handoff::after  { content: ''; position: absolute; border: 6px solid transparent; }
.hand-1, .hand-3 { width: calc(var(--gx) - 1.4rem); }
.hand-2, .hand-4 { width: 13.5rem; }
/* The four dashed tracks, drawn behind the pills in one layer */
.cycle::before {
  --dx: repeating-linear-gradient(90deg, var(--teal) 0 6px, transparent 6px 11px);
  --dy: repeating-linear-gradient(180deg, var(--teal) 0 6px, transparent 6px 11px);
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    var(--dx) 50% calc((100% - var(--gy)) / 4) / var(--gx) 2px no-repeat,
    var(--dx) 50% calc((100% - var(--gy)) * 3 / 4 + var(--gy)) / var(--gx) 2px no-repeat,
    var(--dy) calc((100% - var(--gx)) * 3 / 4 + var(--gx) - 1px) 50% / 2px var(--gy) no-repeat,
    var(--dy) calc((100% - var(--gx)) / 4) 50% / 2px var(--gy) no-repeat;
}

/* Events to Signal: right */
.hand-1 { left: 50%; top: calc((100% - var(--gy)) / 4); }
.hand-1::after { left: calc(50% + var(--gx) / 2 - 9px); top: calc(50% - 5px); border-left: 9px solid var(--teal); border-right: 0; }
/* Signal to CRM: down */
.hand-2 { left: calc(75% + var(--gx) / 4); top: 50%; }
.hand-2::after { top: calc(50% + var(--gy) / 2 - 9px); left: calc(50% - 5px); border-top: 9px solid var(--teal); border-bottom: 0; }
/* CRM to Backstage: left */
.hand-3 { left: 50%; top: calc(75% + var(--gy) / 4); }
.hand-3::after { left: calc(50% - var(--gx) / 2); top: calc(50% - 5px); border-right: 9px solid var(--teal); border-left: 0; }
/* Backstage back to Events: up */
.hand-4 { left: calc(25% - var(--gx) / 4); top: 50%; }
.hand-4::after { top: calc(50% - var(--gy) / 2); left: calc(50% - 5px); border-bottom: 9px solid var(--teal); border-top: 0; }

/* The hub where the four meet */
.cycle::after {
  content: ''; position: absolute; left: 50%; top: 50%; width: 58px; height: 58px; transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--white) url("favicon.svg") center / 34px no-repeat;
  box-shadow: 0 0 0 8px var(--paper), 0 0 0 9px var(--tint-2);
}

@media (max-width: 900px) {
  .suite-head { grid-template-columns: 1fr; }
  .cycle { grid-template-columns: 1fr; grid-auto-rows: auto; row-gap: 0; }
  .cycle::after, .cycle::before { display: none; }
  .ci-events, .ci-signal, .ci-crm, .ci-backstage { grid-area: auto; }
  .cycle-item { flex-direction: column; align-items: center; }
  .pcard { width: 100%; }
  .handoff, .hand-1, .hand-2, .hand-3, .hand-4 {
    position: relative; left: auto; top: auto; transform: none; width: auto; max-width: 17rem;
    margin-block: 2.6rem;
  }
  .handoff::before {
    content: ''; position: absolute; z-index: -1; left: 50%; top: -2.6rem; bottom: -2.6rem;
    border-left: 2px dashed var(--teal);
  }
  .handoff::after, .hand-1::after, .hand-2::after, .hand-3::after {
    left: calc(50% - 5px); top: auto; bottom: -2.6rem;
    border: 6px solid transparent; border-top: 9px solid var(--teal); border-bottom: 0;
  }
  .hand-4 { margin-bottom: 0; }
  .hand-4::before { bottom: 50%; }
  .hand-4::after { display: none; }
}
@media (max-width: 520px) {
  .pvis { height: 220px; }
  .pvis-events img { width: 112px; }
  .pvis-events img:nth-child(1) { left: calc(50% - 170px); }
  .pvis-events img:nth-child(2) { left: calc(50% - 56px); }
  .pvis-events img:nth-child(3) { left: calc(50% + 58px); }
  .pvis-crm { padding-inline: 16px; height: auto; min-height: 220px; }
  .pvis-signal { padding-inline: 10px; }
}

/* ---------- Showpiece: live map ---------- */
.live {
  position: relative; isolation: isolate;
  background: var(--night); color: var(--on-night);
  padding-block: clamp(4.5rem, 9vw, 8rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.live::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 45% at 50% 58%, rgba(0,175,202,.20), transparent 70%),
    radial-gradient(40% 30% at 85% 0%, rgba(0,176,191,.12), transparent 70%);
}
.live-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.live-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 600; font-size: .95rem; color: var(--cyan-glow);
  padding: .4rem .9rem; border: 1px solid var(--night-line); border-radius: 999px;
}
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan-glow); box-shadow: 0 0 0 0 rgba(127,227,240,.6); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(127,227,240,.55); } 80%, 100% { box-shadow: 0 0 0 12px rgba(127,227,240,0); } }
.live-title {
  margin-top: 1.4rem;
  font-family: var(--display); font-stretch: 118%; font-weight: 800;
  font-size: clamp(2.4rem, 6.2vw, 5.6rem); line-height: .98; letter-spacing: -.035em;
  max-width: 16ch; text-wrap: balance;
  background: linear-gradient(180deg, #ffffff 30%, #b7eef5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.live-lede { margin-top: 1.4rem; max-width: 38rem; color: var(--on-night-soft); font-size: clamp(1.05rem, 1.4vw, 1.2rem); }

.map-figure { margin: clamp(2.5rem, 5vw, 4rem) auto 0; width: min(1400px, calc(100% - 2 * var(--gutter))); }
.map-img {
  width: 100%; border-radius: 16px;
  border: 1px solid var(--night-line);
  box-shadow: 0 0 0 1px rgba(0,0,0,.5), 0 40px 120px -30px rgba(0,175,202,.40), 0 10px 30px rgba(0,0,0,.45);
}
.map-caption { margin-top: 1rem; padding: 0; text-align: center; font-size: .88rem; color: var(--on-night-soft); }

.live-points { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem clamp(1.2rem, 3vw, 2.5rem); }
.live-points li { border-top: 2px solid var(--teal-bright); padding-top: 1rem; }
.live-points h3 { font-size: 1.1rem; font-weight: 700; color: #fff; }
.live-points p { margin-top: .4rem; font-size: .96rem; color: var(--on-night-soft); }

/* ---------- Rest of Backstage ---------- */
.command { padding-block: clamp(4.5rem, 9vw, 8rem); background: var(--surface); }
.command-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.command-lede { margin-top: 1rem; color: var(--ink-soft); max-width: 30rem; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem 2rem; }
.facts div { padding-left: 1rem; border-left: 2px solid var(--tint-2); }
.facts dt { font-weight: 700; }
.facts dd { margin-top: .2rem; color: var(--muted); font-size: .98rem; }
.command-shot, .gallery-shot { position: relative; }
.command-shot { margin-top: clamp(3rem, 6vw, 4.5rem); }
.scroller { border-radius: 12px; }
.scroller:focus-visible { outline-offset: 4px; }
.command-shot img, .gallery-shot img {
  border-radius: 12px; border: 1px solid var(--line); background: var(--white);
  box-shadow: 0 2px 6px rgba(13,31,42,.05), 0 30px 60px -34px rgba(13,31,42,.35);
}
.command-shot figcaption, .gallery-shot figcaption { margin-top: .8rem; font-size: .9rem; color: var(--muted); }
.gallery-shot { margin-top: clamp(2.5rem, 5vw, 4rem); }
.scroll-hint { display: none; margin-top: .4rem; font-size: .85rem; color: var(--muted); }
.gallery-shot img { padding: clamp(10px, 1.6vw, 20px); }

/* ---------- Contact ---------- */
.contact { background: var(--tint); border-top: 1px solid var(--tint-2); padding-block: clamp(4rem, 8vw, 6.5rem); }
.contact-in { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.button {
  display: inline-block; text-decoration: none; background: var(--ink); color: #fff;
  font-weight: 600; font-size: 1.05rem; padding: 1rem 1.5rem; border-radius: 999px;
  transition: background .2s var(--ease);
}
.button:hover { background: var(--teal-deep); }
.contact-meta { margin-top: .7rem; color: var(--muted); font-size: .95rem; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: #b9c8cf; font-size: .92rem; }
.foot-in { display: flex; justify-content: space-between; align-items: center; gap: 1rem 2rem; flex-wrap: wrap; padding-block: 1.8rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; }
.foot-links a { text-decoration: none; color: #e3eef1; }
.foot-links a:hover { color: var(--cyan-glow); text-decoration: underline; }
.foot :focus-visible { outline-color: var(--cyan-glow); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pages-head, .command-grid { grid-template-columns: 1fr; align-items: start; }
  .live-points { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .showcase { grid-template-columns: 1fr; }
  .live-points { grid-template-columns: 1fr; }
  .map-figure { width: calc(100% - 2 * var(--gutter)); }
  .map-img { border-radius: 14px; }
  .facts { grid-template-columns: 1fr; }
  .scroller { overflow-x: auto; overscroll-behavior-x: contain; padding-bottom: 6px; }
  .scroller img { width: 760px; max-width: none; box-shadow: none; }
  .scroll-hint { display: block; }
}

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

/* The company tagline (Adam, 19 Sep 2026): above the hero headline and in the footer. */
.hero-tagline { font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem); letter-spacing: .01em; margin-bottom: 1.1rem; }
.foot-tagline { display: inline-block; color: #fff; font-weight: 600; margin-bottom: .35rem; }

/* Furiosa products menu (shared component /var/www/sites/furiosa-suite) placed in the pill nav. */
.nav-in > .fpm { flex: none; }
.nav .fpm-trigger { color: var(--fs-navy); }
.nav-on-dark:not(.nav-scrolled) .fpm-trigger { color: #fff; }
.nav-on-dark:not(.nav-scrolled) .fpm-trigger:hover, .nav-on-dark:not(.nav-scrolled) .fpm-trigger[aria-expanded="true"] { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }
@media (max-width: 860px) {
  .nav-in { position: relative; }
  .nav-in > .fpm { margin-left: auto; position: static; }
  .nav-in > .fpm ~ .nav-toggle { margin-left: 6px; }
  /* Anchor the panel to the whole pill on phones so it never runs off-screen */
  .nav-in > .fpm .fpm-panel { right: 0; left: auto; width: min(360px, 100%); }
}
