/* InjurySOS — How It Works Styles */
html { scroll-behavior: smooth; }
  body { background: var(--surface-card); color: var(--text-body); overflow-x: hidden; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
  section { padding: 96px 0; position: relative; }
  .band { background: var(--surface-page); }
  .sunken { background: var(--surface-sunken); }
  a { color: inherit; text-decoration: none; }

  /* ---- eyebrow ---- */
  .eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display);
    font-weight: var(--fw-semibold); font-size: var(--text-xs); letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-link); }
  .eyebrow .live { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-500); position: relative; }
  .eyebrow .live::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--cyan-500);
    animation: livepulse 1.8s ease-out infinite; }
  @keyframes livepulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(3); opacity: 0; } }
  .grad-text { background: linear-gradient(90deg, var(--cyan-400), var(--sky-500));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

  /* ---- buttons ---- */
  .btn { position: relative; display: inline-flex; align-items: center; gap: 9px; justify-content: center; overflow: hidden;
    font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-base); padding: 14px 26px;
    border-radius: 999px; cursor: pointer; border: 1px solid transparent; line-height: 1;
    transition: background 0.15s ease, box-shadow 0.25s ease, transform 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
  .btn svg { width: 18px; height: 18px; transition: transform 0.25s ease; }
  .btn:hover svg.arr { transform: translateX(4px); }
  .btn-primary { background: var(--cyan-500); color: #fff; }
  .btn-primary:hover { background: var(--cyan-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,155,223,0.38); }
  .btn-cta { background: var(--lime-500); color: var(--navy-700); }
  .btn-cta:hover { background: #bcc31f; box-shadow: 0 12px 30px rgba(205,211,37,0.45); transform: translateY(-2px); }
  .btn-ghost-dark { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.4); }
  .btn-ghost-dark:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.7); }
  .btn-white { background: #fff; color: var(--navy-700); }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.22); }
  .btn-sm { padding: 10px 20px; font-size: var(--text-sm); }
  .btn::before { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.32), transparent); transform: skewX(-18deg); }
  .btn:hover::before { left: 140%; transition: left 0.7s ease; }

  /* ---- sec-head ---- */
  .sec-head { text-align: center; max-width: 700px; margin: 0 auto; }
  .sec-head h2 { font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.025em; color: var(--navy-700);
    margin: 14px 0 16px; line-height: 1.08; }
  .sec-head p { font-family: var(--font-body); color: var(--text-muted); font-size: var(--text-lg); line-height: 1.6; }

  /* ---- NAV ---- */
  header { position: fixed; top: 0; left: 0; right: 0; z-index: 80; transition: all 0.25s ease; }
  header .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; transition: height 0.25s ease; }
  header.scrolled { background: rgba(255,255,255,0.86); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border-subtle); box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
  header.scrolled .wrap { height: 66px; }
  .brand img { height: 60px; display: block; transition: height 0.25s ease; }
  header.scrolled .brand img { height: 48px; }
  .brand .logo-white { display: block; }
  .brand .logo-color { display: none; }
  header.scrolled .brand .logo-white { display: none; }
  header.scrolled .brand .logo-color { display: block; }
  .navlinks { display: flex; align-items: center; gap: 28px; }
  .navlinks a.link { font-family: var(--font-display); font-weight: 500; font-size: var(--text-sm); color: rgba(255,255,255,0.88); transition: color 0.15s; }
  .navlinks a.link:hover, .navlinks a.link.active { color: #fff; }
  header.scrolled .navlinks a.link { color: var(--text-body); }
  header.scrolled .navlinks a.link:hover { color: var(--cyan-600); }
  header.scrolled .navlinks a.link.active { color: var(--cyan-600); font-weight: 600; }
  .lang-switch { display: inline-flex; gap: 2px; border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; overflow: hidden; }
  .lang-switch button { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: var(--fw-semibold);
    font-size: 11px; letter-spacing: 0.06em; padding: 6px 11px; border: none; background: transparent; color: rgba(255,255,255,0.82); cursor: pointer; transition: background 0.15s, color 0.15s; }
  .lang-switch button svg { width: 18px; height: 12px; border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,0.1); }
  .lang-switch button.on { background: var(--cyan-500); color: #fff; }
  header.scrolled .lang-switch { border-color: var(--border-subtle); }
  header.scrolled .lang-switch button { color: var(--text-muted); }
  header.scrolled .lang-switch button.on { color: #fff; }
  /* nav same as homepage — white links on dark hero */
  .menu-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 4px; }
  header.scrolled .menu-toggle { color: var(--navy-600); }
  @media (max-width: 980px) {
    .menu-toggle { display: flex; }
    .navlinks { display: none; position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: flex-start; padding: 20px 28px 28px; gap: 18px;
      background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,0.1); }
    .navlinks.open { display: flex; }
    header.scrolled .navlinks { background: #fff; border-color: var(--border-subtle); }
    .navlinks a.link { color: rgba(255,255,255,0.9); font-size: var(--text-base); }
    header.scrolled .navlinks a.link { color: var(--text-body); }
    .lang-switch { margin-top: 6px; align-self: flex-start; }
  }

  /* ---- HERO ---- */
  .hero { position: relative; overflow: hidden; padding: 130px 0 90px;
    background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--cyan-700) 72%, var(--sky-300) 100%);
    color: #fff; }
  .hero-bg { display: none; }
  .hero-overlay { display: none; }
  .hero .wrap { position: relative; z-index: 2; text-align: center; }
  .crumbs { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-display); font-size: var(--text-xs);
    color: var(--text-muted); margin-bottom: 18px; }
  .crumbs a { color: rgba(255,255,255,0.6); }
  .crumbs a:hover { color: #fff; }
  .crumbs span { color: rgba(255,255,255,0.3); }
  .hero h1 { font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.03em; line-height: 1.04;
    margin: 14px auto 0; color: #fff; }
  /* video placeholder in hero */
  .hero-video-slot { width: 100%; max-width: 820px; margin: 36px auto 0;
    aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
    background: var(--navy-900); position: relative;
    box-shadow: 0 20px 60px rgba(11,18,40,0.18); }
  .hero-video-slot image-slot { width: 100%; height: 100%; }
  .hero-video-slot .vid-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px; color: rgba(255,255,255,0.55);
    font-family: var(--font-display); font-size: var(--text-sm); letter-spacing: 0.06em; }
  .hero-video-slot .vid-placeholder svg { width: 54px; height: 54px; opacity: 0.5; }
  .btn-ghost-dark { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.4); }
  .btn-ghost-dark:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.7); }
  .hero .lede { font-family: var(--font-body); font-size: var(--text-lg); color: rgba(231,246,253,0.88);
    max-width: 580px; margin: 28px auto 0; line-height: 1.6; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; justify-content: center; }
  .hero-micro { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 36px; justify-content: center; }
  .hero-micro span { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: var(--text-sm); color: rgba(255,255,255,0.82); }
  .hero-micro b { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--lime-500); font-size: 1.15em; }
  .hero-micro svg { color: var(--lime-500); flex-shrink: 0; }

  /* ---- STEPS (catchy gradient cards) ---- */
  .steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
  .step-card { position: relative; border-radius: 18px; overflow: hidden; padding: 36px 28px 32px;
    background: linear-gradient(148deg, var(--navy-800) 0%, var(--cyan-900) 52%, var(--navy-700) 100%);
    border: 2px solid transparent;
    background-clip: padding-box; }
  /* pulse border */
  .step-card::before { content: ""; position: absolute; inset: -2px; border-radius: 20px; z-index: -1;
    background: linear-gradient(148deg, var(--cyan-500), var(--sky-500), var(--navy-500), var(--cyan-600));
    animation: stepborderpulse 3s linear infinite;
    background-size: 300% 300%; }
  @media (prefers-reduced-motion: no-preference) {
    .step-card::before { animation: stepborderpulse 3s linear infinite; }
  }
  @keyframes stepborderpulse {
    0% { background-position: 0% 50%; opacity: 0.7; }
    50% { background-position: 100% 50%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 0.7; }
  }
  .step-card:nth-child(1) { z-index: 4; } .step-card:nth-child(3) { z-index: 2; } .step-card:nth-child(5) { z-index: 0; }
  .step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--lime-500); color: var(--navy-800);
    font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.15rem; display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; box-shadow: 0 0 0 4px rgba(205,211,37,0.2), 0 6px 20px rgba(205,211,37,0.3); position: relative; z-index: 1; }
  .step-num::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid rgba(205,211,37,0.4); animation: limeringanim 2s ease-out infinite; }
  @keyframes limeringanim { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }
  .step-card h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.15rem;
    color: #fff; margin: 0 0 10px; line-height: 1.2; }
  .step-card p { font-family: var(--font-body); font-size: var(--text-sm); color: rgba(231,246,253,0.76); line-height: 1.6; margin: 0; }
  .step-card .step-icon { width: 42px; height: 42px; margin-bottom: 12px; color: var(--sky-300); opacity: 0.85; }
  /* arrow connectors between cards */
  .step-arrow { display: flex; align-items: center; justify-content: center; padding: 0 6px; z-index: 10; position: relative; align-self: center; }
  .step-arrow svg { width: 28px; height: 28px; color: var(--lime-500); filter: drop-shadow(0 0 6px rgba(205,211,37,0.5)); }
  /* hover lift */
  .step-card:hover { transform: translateY(-6px); transition: transform 0.25s ease; box-shadow: 0 24px 50px rgba(0,155,223,0.22); }

  /* steps grid wrapper to interleave arrows */
  .steps-interleave { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    align-items: stretch; gap: 0; margin-top: 56px; }
  .step-card { display: flex; flex-direction: column; }
  @media (max-width: 900px) {
    .steps-interleave { grid-template-columns: 1fr; gap: 24px; }
    .step-arrow { display: none; }
  }

  /* ---- intro lede block ---- */
  .lede-block { max-width: 820px; margin: 0 auto; text-align: center; }
  .lede-block h2 { font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(1.7rem, 2.6vw, 2.4rem); letter-spacing: -0.025em; color: var(--text-strong); margin: 14px 0 18px; line-height: 1.1; }
  .lede-block p { font-family: var(--font-body); font-size: var(--text-lg); color: var(--text-muted); line-height: 1.7; }
  .lede-block p strong { color: var(--navy-700); }

  /* ---- VERTICAL TIMELINE ---- */
  .timeline-wrap { position: relative; max-width: 760px; margin: 56px auto 0; }
  .timeline-line { display: none; }
  .tl-item { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 40px; opacity: 0;
    transform: translateX(-20px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .tl-item.in { opacity: 1; transform: translateX(0); }
  .tl-dot-wrap { position: relative; flex-shrink: 0; width: 56px; display: flex; flex-direction: column; align-items: center; }
  .tl-dot { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 3px solid; position: relative; z-index: 2; }
  .tl-dot svg { width: 24px; height: 24px; }
  .tl-dot.d-cyan { background: rgba(0,155,223,0.12); border-color: var(--cyan-500); color: var(--cyan-500); }
  .tl-dot.d-sky { background: rgba(87,180,220,0.12); border-color: var(--sky-500); color: var(--sky-500); }
  .tl-dot.d-navy { background: rgba(35,42,86,0.12); border-color: var(--navy-400); color: var(--navy-500); }
  .tl-dot.d-lime { background: rgba(205,211,37,0.12); border-color: var(--lime-500); color: var(--lime-700); }
  /* pulse ring on active dot */
  .tl-dot::after { content: ""; position: absolute; inset: -8px; border-radius: 50%;
    border: 2px solid currentColor; opacity: 0; }
  .tl-item.in .tl-dot::after { animation: tlring 2.4s ease-out infinite 0.6s; }
  @keyframes tlring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }
  .tl-body { flex: 1; padding-bottom: 4px; }
  .tl-tag { display: inline-block; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 10px;
    letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
  .tl-tag.t-cyan { background: var(--cyan-50); color: var(--cyan-700); }
  .tl-tag.t-sky { background: var(--sky-100); color: var(--sky-700); }
  .tl-tag.t-navy { background: var(--navy-50); color: var(--navy-600); }
  .tl-tag.t-lime { background: var(--lime-100); color: var(--lime-700); }
  .tl-body h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.15rem;
    color: var(--navy-700); margin: 0 0 8px; line-height: 1.2; }
  .tl-body p { font-family: var(--font-body); font-size: var(--text-base); color: var(--text-muted); line-height: 1.65; margin: 0; }

  /* ---- AUDIENCE cards ---- */
  .audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
  @media (max-width: 780px) { .audience-grid { grid-template-columns: 1fr; } }
  .aud-card { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
  .aud-shot { height: 220px; position: relative; }
  .aud-shot image-slot { width: 100%; height: 100%; }
  .aud-shot .aud-overlay { position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(11,18,40,0.7) 100%); pointer-events: none; }
  .aud-body { padding: 30px 32px 34px; }
  .aud-card.c-cyan .aud-body { background: linear-gradient(160deg, var(--navy-800) 0%, var(--cyan-900) 100%); }
  .aud-card.c-lime .aud-body { background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 60%, rgba(35,42,86,0.98) 100%); }
  .aud-tag { display: inline-flex; padding: 5px 14px; border-radius: 999px; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 12px; letter-spacing: 0.05em; margin-bottom: 14px; }
  .c-cyan .aud-tag { background: rgba(0,155,223,0.22); color: var(--sky-300); }
  .c-lime .aud-tag { background: rgba(205,211,37,0.18); color: var(--lime-300); }
  .aud-body h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.3rem;
    color: #fff; margin: 0 0 12px; line-height: 1.2; }
  .aud-body p { font-family: var(--font-body); font-size: var(--text-sm); color: rgba(231,246,253,0.76); line-height: 1.65; margin: 0 0 18px; }
  .aud-body ul { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
  .aud-body li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-body);
    font-size: var(--text-sm); color: rgba(255,255,255,0.82); line-height: 1.5; }
  .aud-body li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
  .c-cyan li svg { color: var(--cyan-400); }
  .c-lime li svg { color: var(--lime-500); }

  /* ---- CTA band ---- */
  .cta-band { text-align: center; max-width: 640px; margin: 0 auto; }
  .cta-band h2 { font-family: var(--font-display); font-weight: var(--fw-bold);
    font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.025em; color: #fff; margin: 0 0 14px; }
  .cta-band p { font-family: var(--font-body); color: rgba(231,246,253,0.76); font-size: var(--text-lg); line-height: 1.6; margin: 0 0 32px; }
  .cta-band .hero-cta { justify-content: center; }
  .cta-dark { background: radial-gradient(130% 120% at 50% 0%, var(--navy-700) 0%, var(--navy-900) 60%); }

  /* ---- FAQ ---- */
  .faq { max-width: 720px; margin: 44px auto 0; display: grid; gap: 12px; }
  details { border: 1px solid var(--border-subtle); border-radius: 14px; overflow: hidden; }
  details[open] { border-color: var(--cyan-300); }
  summary { display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; cursor: pointer; list-style: none; user-select: none;
    font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-base); color: var(--navy-700); }
  summary::-webkit-details-marker { display: none; }
  details[open] summary { color: var(--cyan-600); }
  .faq-icon { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--neutral-100);
    display: flex; align-items: center; justify-content: center; transition: background 0.15s, transform 0.25s; }
  details[open] .faq-icon { background: var(--cyan-50); transform: rotate(45deg); }
  .faq-icon svg { width: 14px; height: 14px; color: var(--text-muted); }
  details[open] .faq-icon svg { color: var(--cyan-600); }
  .ans { padding: 4px 24px 22px; font-family: var(--font-body); font-size: var(--text-base);
    color: var(--text-muted); line-height: 1.7; }

  /* ---- reveal ---- */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .stagger .step-card:nth-child(1) { transition-delay: 0s; }
  .stagger .step-card:nth-child(2) { transition-delay: 0.09s; }
  .stagger .step-card:nth-child(3) { transition-delay: 0.18s; }
  .stagger .step-card:nth-child(4) { transition-delay: 0.27s; }
  .stagger .tl-item:nth-child(1) { transition-delay: 0.0s; }
  .stagger .tl-item:nth-child(2) { transition-delay: 0.1s; }
  .stagger .tl-item:nth-child(3) { transition-delay: 0.2s; }
  .stagger .tl-item:nth-child(4) { transition-delay: 0.3s; }

  /* ---- FOOTER ---- */
  footer { position: relative; overflow: hidden; padding: 80px 0 36px; }
  footer .fbg { position: absolute; inset: 0; z-index: 0; }
  footer .fbg image-slot { width: 100%; height: 100%; }
  footer .fbg .fscrim { position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(87,180,220,0.72) 0%, rgba(58,140,176,0.8) 26%, rgba(35,42,86,0.93) 62%, rgba(15,18,40,0.97) 100%); }
  footer .wrap { position: relative; z-index: 2; }
  footer { color: rgba(255,255,255,0.84); }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
  @media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
  footer h5 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 0.95rem;
    letter-spacing: 0.04em; color: var(--lime-500); margin: 0 0 18px; }
  footer ul { list-style: none; display: grid; gap: 11px; padding: 0; margin: 0; }
  footer a { font-family: var(--font-body); font-size: var(--text-sm); color: rgba(255,255,255,0.7); }
  footer a:hover { color: #fff; }
  footer img.flogo { height: 72px; display: block; margin: 0 auto 16px; }
  .fabout { font-family: var(--font-body); font-size: var(--text-sm); color: rgba(255,255,255,0.7); line-height: 1.6; text-align: center; }
  .social { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
  .social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
    border-radius: 50%; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); transition: background 0.15s, transform 0.15s; }
  .social a:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
  .social a svg { width: 19px; height: 19px; }
  .fnews { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.14); padding: 28px 0; }
  .fnews h5 { margin-bottom: 6px; }
  .fnews p { font-family: var(--font-body); font-size: var(--text-sm); color: rgba(255,255,255,0.7); max-width: 420px; }
  .fnews form { display: flex; gap: 10px; flex-wrap: wrap; }
  .fnews input { width: 280px; max-width: 100%; padding: 12px 19px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: #fff;
    font-family: var(--font-body); font-size: var(--text-sm); transition: border-color 0.15s; }
  .fnews input::placeholder { color: rgba(255,255,255,0.5); }
  .fnews input:focus { outline: none; border-color: var(--sky-300); }
  .fnews .thanks { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-sm); color: var(--lime-500); }
  .wall-note { margin-top: 30px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 20px 24px; max-width: 820px; }
  .wall-note p { font-family: var(--font-body); font-size: var(--text-sm); color: rgba(255,255,255,0.78); line-height: 1.65; margin: 0; }
  .wall-note strong { color: #fff; }
  .legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 36px; padding-top: 24px;
    font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

  /* ---- chat fab ---- */
  .chat-fab-wrap { position: fixed; bottom: 28px; right: 28px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
  #chatTeaser { background: var(--navy-800); color: #fff; border-radius: 12px; padding: 13px 16px; max-width: 240px; font-family: var(--font-body); font-size: var(--text-sm); line-height: 1.5; box-shadow: 0 8px 28px rgba(0,0,0,0.28); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
  #chatTeaser.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
  #chatTeaser strong { display: block; font-family: var(--font-display); font-weight: var(--fw-semibold); margin-bottom: 4px; }
  #chatTeaserClose { position: absolute; top: 6px; right: 8px; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 15px; padding: 2px; }
  #chatFab { width: 60px; height: 60px; border-radius: 50%; background: var(--cyan-500); color: #fff; border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 26px rgba(0,155,223,0.42); transition: background 0.15s, transform 0.15s; }
  #chatFab:hover { background: var(--cyan-600); transform: scale(1.07); }
  #chatFab svg { width: 26px; height: 26px; }
  .chat-panel { position: fixed; bottom: 96px; right: 28px; width: min(360px, calc(100vw - 40px)); background: #fff;
    border-radius: 18px; box-shadow: 0 24px 64px rgba(0,0,0,0.22); z-index: 199; overflow: hidden;
    opacity: 0; pointer-events: none; transform: translateY(16px) scale(0.96); transition: opacity 0.28s, transform 0.28s; }
  .chat-panel.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .chat-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px;
    background: linear-gradient(110deg, var(--navy-900), var(--navy-700)); color: #fff; }
  .chat-head .ct { display: flex; align-items: center; gap: 10px; }
  .chat-head .av { width: 38px; height: 38px; border-radius: 50%; background: var(--cyan-500);
    display: flex; align-items: center; justify-content: center; }
  .chat-head .av svg { width: 22px; height: 22px; fill: #fff; }
  .chat-head h4 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 14px; margin: 0 0 2px; }
  .chat-head small { font-size: 11px; color: var(--lime-500); }
  #chatClose { background: rgba(255,255,255,0.14); border: none; border-radius: 50%; width: 30px; height: 30px;
    color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; }
  .chat-body { height: 230px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
  .chat-msg { max-width: 82%; padding: 10px 14px; border-radius: 12px; font-family: var(--font-body); font-size: var(--text-sm); line-height: 1.5; }
  .chat-msg.bot { background: var(--neutral-100); color: var(--text-body); align-self: flex-start; border-radius: 4px 12px 12px 12px; }
  .chat-msg.user { background: var(--cyan-500); color: #fff; align-self: flex-end; border-radius: 12px 4px 12px 12px; }
  .chat-chips { padding: 0 16px 12px; display: flex; flex-wrap: wrap; gap: 7px; }
  .chat-chips button { font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 12px;
    padding: 7px 13px; border-radius: 999px; border: 1.5px solid var(--cyan-400); background: transparent; color: var(--cyan-600); cursor: pointer; }
  .chat-chips button:hover { background: var(--cyan-50); }
  .chat-form { display: flex; border-top: 1px solid var(--border-subtle); }
  .chat-form input { flex: 1; padding: 12px 14px; border: none; font-family: var(--font-body); font-size: var(--text-sm); outline: none; }
  .chat-form button { padding: 0 18px; background: var(--cyan-500); color: #fff; border: none; cursor: pointer; font-size: 14px; }

  /* ---- scroll modal ---- */
  .smodal-backdrop { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
    padding: 20px; background: rgba(11,18,40,0.6); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .smodal-backdrop.show { opacity: 1; pointer-events: auto; }
  .smodal { width: min(490px,100%); background: #fff; border-radius: 22px; overflow: hidden;
    box-shadow: 0 40px 100px rgba(15,18,40,0.45);
    transform: translateY(26px) scale(0.96); transition: transform 0.35s ease; }
  .smodal-backdrop.show .smodal { transform: translateY(0) scale(1); }
  .smodal .stop { position: relative; padding: 32px 30px 26px; color: #fff; overflow: hidden;
    background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 100%); }
  .smodal .stop::before { content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 26px 26px; }
  .smodal .sagent { position: relative; width: 88px; height: 88px; margin: 0 auto 16px; }
  .smodal .sagent .av { position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
    display: flex; align-items: flex-end; justify-content: center;
    background: linear-gradient(150deg, var(--cyan-400), var(--cyan-600), var(--navy-600));
    border: 2px solid rgba(255,255,255,0.4); }
  .smodal .sagent svg.fig { width: 62px; height: 62px; display: block; fill: rgba(231,246,253,0.95); }
  .smodal .sagent .ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--cyan-400); opacity: 0; }
  @media (prefers-reduced-motion: no-preference) {
    .smodal .sagent .ring { animation: fabpulse 2.8s ease-out infinite; }
    .smodal .sagent .ring.r2 { animation-delay: 1.4s; }
  }
  @keyframes fabpulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2); opacity: 0; } }
  .smodal .sdot { position: absolute; bottom: 4px; right: 4px; width: 15px; height: 15px; border-radius: 50%;
    background: var(--lime-500); border: 3px solid var(--navy-800); }
  .smodal .skicker { position: relative; z-index: 1; display: block; font-family: var(--font-display); font-weight: var(--fw-semibold);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime-500); margin-bottom: 8px; }
  .smodal .stop h3 { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 300;
    font-size: 1.75rem; letter-spacing: -0.02em; line-height: 1.12; color: var(--sky-300); text-align: center; }
  .smodal .stop h3 em { font-style: normal; font-weight: var(--fw-bold); color: #fff; }
  .smodal .sx { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border: none; border-radius: 50%;
    background: rgba(255,255,255,0.14); color: #fff; cursor: pointer; font-size: 15px;
    display: flex; align-items: center; justify-content: center; }
  .smodal .sx:hover { background: rgba(255,255,255,0.28); }
  .smodal .sbody { padding: 26px 34px 32px; text-align: center; }
  .smodal .sbody p { font-family: var(--font-body); font-size: var(--text-base); color: var(--neutral-700); line-height: 1.7; margin: 0 0 8px; }
  .smodal .sbody p strong { font-family: var(--font-display); font-weight: var(--fw-semibold); color: var(--navy-700); }
  .smodal .salt { font-size: var(--text-sm); color: var(--neutral-600); margin-bottom: 22px !important; }
  .smodal .sbtns { display: flex; flex-direction: column; gap: 11px; }
  .smodal .sbtns .btn { width: 100%; }
  .smodal .btn-signin { background: #fff; color: var(--navy-600); border: 1.5px solid var(--navy-300); }
  .smodal .btn-signin:hover { background: var(--navy-50); }
  .smodal .skeep { font-family: var(--font-display); font-weight: 500; font-size: var(--text-sm);
    color: var(--neutral-600); background: none; border: none; cursor: pointer; margin-top: 14px; text-decoration: underline; }
  .smodal .skeep:hover { color: var(--cyan-600); }
/* --- production image fills (replace design-time <image-slot> web component) --- */
.hero-video-slot .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.aud-shot .slot-img { width: 100%; height: 100%; object-fit: cover; display: block; }
footer .fbg .slot-img { width: 100%; height: 100%; object-fit: cover; display: block; }
