/* ===========================================================
   OPENING PARTY · Document · Bristol · Fri 25 Sep 2026
   Brutalist-industrial poster aesthetic — pure black ground,
   hot CORAL (#FF4D4D) accent sampled from the artwork, white
   ink. Halftone dot screen + coral glow + film grain echo the
   glitch-chrome artwork. Type: Archivo (heavy grotesque) for
   display + body, Space Mono for technical eyebrows/labels.

   Built on the COCO/fantazia scaffold: class names + the
   #furiosa-page-widget override skeleton are kept verbatim
   (the widget's runtime !important rules only yield to the
   id-scoped block), every VALUE flipped dark/coral.
   Legacy variable names retained for compatibility:
     --cream  = primary ink (now near-white)
     --orange = accent       (now coral)
   =========================================================== */

@import url('https://fonts.bunny.net/css?family=archivo:400,500,600,700,800,900|space-mono:400,700&display=swap');

:root {
  /* Ground — near-black gradient with a faint warmth at the top */
  --bg-top:     #141414;
  --bg-mid:     #0c0c0c;
  --bg-bottom:  #060606;
  --bg-deep:    #050505;

  --panel:      rgba(255, 255, 255, 0.04);
  --panel-line: rgba(255, 255, 255, 0.10);
  --input-bg:   rgba(255, 255, 255, 0.055);
  --line:       rgba(255, 255, 255, 0.18);
  --line-dim:   rgba(255, 255, 255, 0.09);

  --cream:      #f6f6f4;                      /* primary ink (near-white) */
  --cream-soft: #c7c7c4;                      /* secondary text */
  --cream-dim:  #8c8c89;                      /* muted text */

  --orange:        #ff4d4d;                   /* CORAL accent (exact artwork) */
  --orange-bright: #ff6a64;
  --orange-deep:   #e23a37;

  --error:      #ff6a5a;

  --display:    "Archivo", "Helvetica Neue", "Arial", "Liberation Sans", sans-serif;
  --serif:      "Archivo", "Helvetica Neue", "Arial", "Liberation Sans", sans-serif; /* legacy alias used by widget block */
  --sans:       "Archivo", "Helvetica Neue", "Helvetica", "Arial", "Liberation Sans", sans-serif;
  --mono:       "Space Mono", ui-monospace, "SFMono-Regular", "Menlo", monospace;

  --r-card:     8px;
  --r-input:    7px;
}

*,*::before,*::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  min-height: 100%;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { background: var(--bg-deep); }
/* Body itself is transparent — the full-bleed artwork lives on .bgwrap
   behind it, so the photo shows through everywhere. */
body { background: transparent; }

/* ---------- Full-bleed glitch-artwork background ----------
   The supplied Desktop.jpg / Mobile.jpg fill the whole viewport (fixed,
   cover) behind all content, with a coral glow + heavy dark scrim so the
   poster and signup card stay legible on top. */
.bgwrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("/assets/images/bg-mobile.webp?v=20260604-3");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* Knock the photo back so it reads as atmosphere, not a competing image. */
  filter: brightness(0.62) saturate(0.9);
}
@media (min-width: 760px) {
  .bgwrap { background-image: url("/assets/images/bg-desktop.webp?v=20260604-3"); }
}
.bgwrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1150px 640px at 72% -6%, rgba(255,77,77,0.16), transparent 60%),
    linear-gradient(180deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.80) 38%, rgba(4,4,4,0.95) 100%);
}

img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: inherit; }
::selection { background: rgba(255,77,77,0.85); color: #0a0a0a; }

/* Halftone dot screen — a fixed CMYK-ish dot grid echoing the artwork's
   newsprint texture. Very low opacity so it reads as atmosphere, not noise. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 0.9px, transparent 1.3px);
  background-size: 6px 6px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
/* Subtle film grain over everything for analogue texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ---------- Hero: two columns on desktop, stack on mobile ---------- */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 26px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.hero__art {
  margin: 0;
  position: relative;
  text-align: center;
}
.hero__art picture, .hero__art img {
  display: block;
  margin: 0 auto;
  max-width: 460px;
  width: 100%;
}
/* Poster is a full rectangle — frame it with a crisp coral-tinted
   hairline + deep drop shadow + coral glow, rather than feathering. */
.hero__art img {
  border-radius: var(--r-card);
  box-shadow:
    0 36px 80px -34px rgba(0,0,0,0.9),
    0 0 0 1px rgba(255,255,255,0.07),
    0 0 60px -28px rgba(255,77,77,0.45);
}

.hero__col--art { text-align: center; }

/* ---------- Sign-up panel ---------- */
.signup { padding: 0 22px; }

.panel {
  background: transparent;
  border: 0;
  padding: 12px 6px 24px;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}
.panel > * { position: relative; z-index: 1; }

.panel__eyebrow {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.panel__eyebrow::before,
.panel__eyebrow::after {
  content: "";
  flex: 0 0 30px;
  height: 1px;
  background: var(--orange);
}

.panel__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 7.4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 4px 0 18px;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  color: var(--cream);
}
.panel__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  display: inline;
}
@media (max-width: 480px) {
  .panel__title { font-size: clamp(30px, 9vw, 42px); }
}
.panel__lede {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  color: var(--cream-soft);
  text-align: center;
}
.panel__lede strong { color: var(--cream); font-weight: 700; }

/* Form (reserved — page uses the CRM embed; kept for parity/legibility) */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; }

.form__row { position: relative; display: flex; flex-direction: column; gap: 6px; }
.form__label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form__input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  background: var(--input-bg);
  border: 1px solid var(--line);
  border-radius: var(--r-input);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: border-color .18s, box-shadow .18s, background .18s;
  caret-color: var(--orange);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.form__input::placeholder { color: rgba(255,255,255,0.42); font-family: var(--sans); }
.form__input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,77,77,0.24);
  background: rgba(255,77,77,0.07);
}

/* Privacy check */
.form__row--check { margin-top: 4px; }
.form__check {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream-soft);
  cursor: pointer;
}
.form__check input {
  margin-top: 3px;
  width: 17px; height: 17px;
  appearance: none; -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s, background .15s;
}
.form__check input:checked { background: var(--orange); border-color: var(--orange); }
.form__check input:checked::after {
  content: "✓";
  position: absolute; inset: 0;
  color: #0a0a0a; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.form__check a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--orange); }

.form__error { margin: 4px 0 0; font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--error); }
.form__error--global { text-align: center; margin-top: 10px; }

/* Buttons */
.btn {
  appearance: none; -webkit-appearance: none;
  border: 0; cursor: pointer;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 15px;
  padding: 0 26px;
  height: 60px;
  border-radius: var(--r-input);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  transition: transform .12s, background .18s, box-shadow .2s, color .15s;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--orange);
  color: #0a0a0a;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 14px 30px -14px rgba(255,77,77,0.6), inset 0 0 0 1px rgba(0,0,0,0.08);
}
.btn--primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.32) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .6s ease;
}
.btn--primary:hover { background: var(--orange-bright); transform: translateY(-1px); }
.btn--primary:hover::after { transform: translateX(110%); }
.btn--primary:active { transform: translateY(0); }
.btn--link { text-decoration: none; }

.btn--whatsapp {
  background: #25d366;
  color: #052e14;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 14px 30px -14px rgba(37,211,102,0.6);
}
.btn--whatsapp:hover { background: #1ebe5c; transform: translateY(-1px); }
.btn__icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.foot {
  margin: 60px auto 0;
  padding: 36px 26px 14px;
  max-width: 1240px;
  text-align: center;
}
.foot__copy {
  margin: 0;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.foot__copy a { color: var(--cream-soft); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--orange); }
.foot__copy + .foot__copy { margin-top: 8px; }

/* Furiosa pill */
.site-built { text-align: center; padding: 20px 0 30px; }
.site-built a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-soft);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dim);
  border-radius: 999px;
  text-decoration: none;
  transition: color .15s, border-color .15s;
}
.site-built a:hover { color: var(--cream); border-color: var(--line); }
/* Furiosa avatar is LIGHT artwork (luminance ~191) — show it as-is on the
   dark pill. (An earlier invert(1) turned it dark → invisible.) */
.site-built img { vertical-align: middle; filter: none; opacity: 0.92; }

/* ---------- Privacy page typography ---------- */
.legal-wrap {
  background:
    radial-gradient(1000px 560px at 78% -10%, rgba(255,77,77,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 42%, var(--bg-bottom) 92%) fixed;
  min-height: 100dvh;
}
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 26px 80px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.legal a.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  padding: 11px 22px 11px 18px;
  background: var(--orange);
  color: #0a0a0a;
  border-radius: var(--r-input);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 26px -12px rgba(255,77,77,0.6);
  transition: background .18s, transform .12s, box-shadow .2s;
}
.legal a.legal__back svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .2s; color: #0a0a0a; }
.legal a.legal__back .legal__back-text { color: #0a0a0a; font-family: var(--display); }
.legal a.legal__back .legal__back-brand { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; color: #0a0a0a; }
.legal a.legal__back:hover { background: var(--orange-bright); transform: translateY(-1px); box-shadow: 0 14px 30px -12px rgba(255,77,77,0.66); }
.legal a.legal__back:hover svg { transform: translateX(-3px); }
.legal a.legal__back:active { transform: translateY(0); }
.legal h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 6.4vw, 48px);
  line-height: 1.02;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  margin: 40px 0 12px;
  color: var(--cream);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.legal h3 { font-family: var(--display); font-weight: 700; font-size: 17px; margin: 28px 0 8px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.01em; }
.legal h4 { font-family: var(--display); font-weight: 700; font-size: 16px; margin: 18px 0 6px; color: var(--cream); }
.legal p, .legal li { margin: 0 0 12px; color: var(--cream-soft); }
.legal ul { padding-left: 20px; }
.legal ul li { list-style: none; position: relative; }
.legal ul li::before { content: "·"; position: absolute; left: -16px; color: var(--orange); font-weight: 700; font-size: 18px; }
.legal a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.legal__meta {
  margin: 40px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  text-transform: uppercase;
}

/* ---------- Desktop two-column split (≥860) ---------- */
@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.02fr);
    gap: 56px;
    padding: 60px 32px 32px;
    align-items: center;
  }
  .signup { padding: 0; }
  .panel { padding: 24px 12px 32px; max-width: 480px; margin: 0 auto; }
  .hero__art picture, .hero__art img { max-width: 480px; }
  .foot { margin-top: 80px; padding: 40px 32px 14px; }
}
@media (min-width: 1100px) {
  .hero { padding-top: 76px; gap: 78px; }
  .hero__art picture, .hero__art img { max-width: 520px; }
}

/* Hero entrance — subtle one-shot reveal */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__art { animation: fadeUp 1.0s 0.05s cubic-bezier(.22,.61,.36,1) both; }
.panel     { animation: fadeUp 0.9s 0.25s cubic-bezier(.22,.61,.36,1) both; }

@media (prefers-reduced-motion: reduce) {
  .hero__art,.panel { animation: none; }
}

/* ===========================================================
   Embedded CRM widget re-skin (#furiosa-page-widget / .fpw-*)
   Flipped from the widget's default white Figtree card into the
   dark glitch-coral look. Scoped under the #id so these beat the
   widget's runtime-injected `.fpw .fpw-x { ...!important }` rules
   (id 1,1,0 > class 0,2,0) regardless of source order.
   =========================================================== */

/* Shell — note the SPACE: the widget renders `<div class="fpw">` as a
   CHILD of #furiosa-page-widget, so target the descendant too. */
#furiosa-page-widget,
#furiosa-page-widget .fpw {
  background: transparent !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--sans) !important;
  color: var(--cream) !important;
  position: relative;
}
/* Page supplies its own eyebrow + Archivo title + lede; the poster
   carries the brand mark — suppress the widget's heading + logo. */
#furiosa-page-widget h2,
#furiosa-page-widget .fpw-logo { display: none !important; }

#furiosa-page-widget .fpw-group { margin-bottom: 16px !important; }
#furiosa-page-widget label {
  color: var(--cream) !important;
  font-family: var(--mono) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 7px !important;
}
#furiosa-page-widget .fpw-req { color: var(--orange) !important; }

/* Inputs / textareas / multiselect trigger */
#furiosa-page-widget input,
#furiosa-page-widget textarea,
#furiosa-page-widget .fpw-ms-trigger {
  background: var(--input-bg) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-input) !important;
  color: var(--cream) !important;
  font-family: var(--sans) !important;
  font-size: 15px !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#furiosa-page-widget input::placeholder,
#furiosa-page-widget textarea::placeholder,
#furiosa-page-widget .fpw-ms-ph { color: rgba(255,255,255,0.42) !important; }
#furiosa-page-widget input:focus,
#furiosa-page-widget textarea:focus,
#furiosa-page-widget .fpw-ms-trigger:focus {
  outline: none !important;
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(255,77,77,0.24) !important;
  background: rgba(255,77,77,0.07) !important;
}

/* intl-tel-input (the widget ships the newer .iti__selected-country API) */
#furiosa-page-widget .fpw-phone-wrap .iti {
  background: var(--input-bg) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-input) !important;
}
#furiosa-page-widget .fpw-phone-wrap .iti:focus-within { border-color: var(--orange) !important; }
#furiosa-page-widget .iti__selected-country {
  background: transparent !important;
  border-right: 1px solid var(--line) !important;
}
#furiosa-page-widget .iti__selected-dial-code { color: var(--cream) !important; }
#furiosa-page-widget .iti__arrow { border-top-color: var(--cream-soft) !important; }
#furiosa-page-widget .iti__country-list,
#furiosa-page-widget .iti__dropdown-content {
  background: #141414 !important;
  border: 1px solid var(--line) !important;
  color: var(--cream) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.7) !important;
}
#furiosa-page-widget .iti__country { color: var(--cream) !important; }
#furiosa-page-widget .iti__country .iti__dial-code { color: var(--cream-dim) !important; }
#furiosa-page-widget .iti__country:hover { background: rgba(255,77,77,0.14) !important; }
#furiosa-page-widget .iti__country.iti__highlight { background: rgba(255,77,77,0.24) !important; color: var(--cream) !important; }
#furiosa-page-widget .iti__country-list input,
#furiosa-page-widget .iti__search-input {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid var(--line) !important;
  color: var(--cream) !important;
}
#furiosa-page-widget .iti__search-input::placeholder { color: rgba(255,255,255,0.4) !important; }

/* Multiselect dropdown + tags */
#furiosa-page-widget .fpw-ms-dd {
  background: #141414 !important;
  border: 1px solid var(--line) !important;
}
#furiosa-page-widget .fpw-ms-dd label { color: var(--cream) !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 400 !important; font-family: var(--sans) !important; }
#furiosa-page-widget .fpw-ms-dd label:hover { background: rgba(255,77,77,0.12) !important; }
#furiosa-page-widget .fpw-ms-tag { background: rgba(255,77,77,0.18) !important; color: var(--orange-bright) !important; }
#furiosa-page-widget .fpw-radio-group label { color: var(--cream-soft) !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 400 !important; font-family: var(--sans) !important; }

/* Consent line */
#furiosa-page-widget .fpw-consent span { color: var(--cream-soft) !important; font-family: var(--sans) !important; }
#furiosa-page-widget .fpw-consent a { color: var(--cream) !important; text-decoration-color: var(--orange); }

/* Submit + OTP buttons → coral Archivo block, matching .btn--primary */
#furiosa-page-widget #fpw-submit,
#furiosa-page-widget #fpw-otp-btn {
  background: var(--orange) !important;
  color: #0a0a0a !important;
  border: 0 !important;
  border-radius: var(--r-input) !important;
  width: 100% !important;
  height: 60px !important;
  font-family: var(--display) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  cursor: pointer !important;
  box-shadow: 0 14px 30px -14px rgba(255,77,77,0.6) !important;
  transition: background .18s, transform .12s !important;
}
#furiosa-page-widget #fpw-submit:hover,
#furiosa-page-widget #fpw-otp-btn:hover { background: var(--orange-bright) !important; transform: translateY(-1px); }

/* OTP code box — centred, heavy */
#furiosa-page-widget #fpw-otp-code {
  text-align: center !important;
  font-family: var(--display) !important;
  font-weight: 800 !important;
  font-size: 24px !important;
  letter-spacing: 0.4em !important;
}
#furiosa-page-widget .fpw-otp p { color: var(--cream-soft) !important; font-family: var(--sans) !important; }

/* Status messages — translucent on dark */
#furiosa-page-widget .fpw-msg { font-family: var(--sans) !important; border-radius: var(--r-input) !important; }
#furiosa-page-widget .fpw-msg.success { background: rgba(118,221,150,0.12) !important; color: #84e6a6 !important; border: 1px solid rgba(118,221,150,0.4) !important; }
#furiosa-page-widget .fpw-msg.error   { background: rgba(255,77,77,0.14) !important; color: var(--error) !important; border: 1px solid rgba(255,77,77,0.45) !important; }
#furiosa-page-widget .fpw-msg.info    { background: rgba(255,77,77,0.10) !important; color: var(--cream) !important; border: 1px solid rgba(255,77,77,0.32) !important; }

/* asot honeypot-autofill fix, applied to the embed widget.
   widget-page-embed.js renders its honeypot as the FIRST text input
   (.fpw-hp) hidden OFF-SCREEN (left:-9999px). Chrome/Edge autofill fills
   off-screen fields, tripping the widget's submit guard and blocking real
   users. display:none removes it from autofill eligibility while keeping it
   in the DOM, so DOM-filling bots are still caught. (asot.london 2026-05-29.)
   Can't edit the widget's CSS — override here (id beats .fpw .fpw-hp). */
#furiosa-page-widget .fpw-hp { display: none !important; }

/* WhatsApp button injected into the widget's success ("thank you") state by
   the MutationObserver in index.html. Reuses the global .btn/.btn--whatsapp
   look; the id-scoped colour override is needed because the widget's late
   `.fpw *{color:inherit}` would otherwise tint the button text cream. */
#furiosa-page-widget .fpw-wa {
  display: flex !important;
  width: 100% !important;
  margin: 18px 0 0 !important;
  color: #052e14 !important;
  text-decoration: none !important;
  font-family: var(--display) !important;
}
#furiosa-page-widget .fpw-wa:hover { color: #052e14 !important; background: #1ebe5c !important; }
#furiosa-page-widget .fpw-wa .btn__icon { fill: #052e14 !important; }
