:root {
      --bg: #f2f6f5;
      --ink: #10231f;
      --mute: #4d6a63;
      --line: #d5e3df;
      --panel: #ffffff;
      --a1: #0f766e;
      --a2: #0d9488;
      --a3: #14b8a6;
      --warm: #c4a35a;
      --danger: #e11d48;
      --ok: #059669;
      --font: system-ui, "Segoe UI", sans-serif;
      --display: system-ui, "Segoe UI", ui-sans-serif, sans-serif;
      --r: 18px;
      --ease: cubic-bezier(.22, 1, .36, 1);
      --glow: rgba(13, 148, 136, .22);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0; min-height: 100%;
      font-family: var(--font);
      color: var(--ink);
      background: var(--bg);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--a1); }
    button, input { font: inherit; }

    
    .nav {
      position: sticky; top: 0; z-index: 40;
      display: flex; align-items: center; gap: .75rem;
      padding: .7rem clamp(1rem, 3vw, 2.5rem);
      background: color-mix(in srgb, var(--panel) 88%, transparent);
      border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
      backdrop-filter: blur(14px);
    }
    .nav-brand {
      display: inline-flex; align-items: center; gap: .5rem;
      text-decoration: none; color: var(--ink);
      font-family: var(--display); font-weight: 800; font-size: 1.15rem;
      letter-spacing: -.02em;
    }
    .nav-brand .mark-img {
  width: 1.85rem; height: 1.85rem; border-radius: 10px;
  object-fit: cover; display: block;
  box-shadow: 0 6px 16px var(--glow);
  background: #0c1f1c;
}
    .nav-spacer { flex: 1; }
    .nav a.dev {
      font-size: .78rem; font-weight: 700; color: var(--mute);
      text-decoration: none; padding: .35rem .55rem; border-radius: 8px;
    }
    .nav a.dev:hover { color: var(--a1); background: color-mix(in srgb, var(--a2) 10%, transparent); }
    .nav-cta {
      appearance: none; cursor: pointer; text-decoration: none; border: 0;
      font-weight: 800; font-size: .86rem;
      padding: .55rem 1rem; border-radius: 999px; color: #fff;
      background: linear-gradient(120deg, var(--a2), var(--a1));
      box-shadow: 0 8px 22px var(--glow);
      transition: transform .18s var(--ease), filter .18s;
      display: inline-flex; align-items: center; gap: .35rem;
    }
    .nav-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
    .nav-auth { position: relative; }
    .nav-lang {
      display: inline-flex; gap: .3rem; align-items: center;
      margin-inline-end: .55rem;
    }
    .nav-lang-btn {
      appearance: none; border: 1px solid var(--line);
      background: var(--panel); color: var(--ink);
      font: inherit; font-weight: 800; font-size: .72rem;
      padding: .35rem .5rem; border-radius: 10px; cursor: pointer;
    }
    .nav-lang-btn[aria-pressed="true"] {
      background: color-mix(in srgb, var(--a2) 16%, transparent);
      border-color: color-mix(in srgb, var(--a1) 40%, var(--line));
      color: var(--a1);
    }
    .nav-auth-menu {
      display: none; position: absolute; right: 0; top: calc(100% + .4rem); z-index: 50;
      min-width: 12.5rem; padding: .4rem;
      border-radius: 14px; border: 1px solid var(--line);
      background: var(--panel); box-shadow: 0 16px 40px rgba(16, 35, 31, .12);
    }
    .nav-auth-menu.on { display: grid; gap: .2rem; }
    .nav-auth-menu button {
      appearance: none; cursor: pointer; border: 0; background: transparent;
      text-align: left; font: inherit; font-weight: 750; font-size: .84rem;
      color: var(--ink); padding: .55rem .7rem; border-radius: 10px;
    }
    .nav-auth-menu button:hover { background: color-mix(in srgb, var(--a2) 12%, transparent); }

    
    .hero {
      position: relative;
      min-height: min(92vh, 52rem);
      display: grid; align-items: end;
      overflow: hidden;
      color: #f4fffb;
      isolation: isolate;
    }
    .hero-stage {
      position: absolute; inset: 0;
      z-index: 0;
    }
    .hero-slide {
      position: absolute; inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 1.35s var(--ease), filter 1.35s var(--ease);
      filter: blur(8px) saturate(.85);
      will-change: opacity, filter;
    }
    .hero-slide.is-on {
      opacity: 1;
      pointer-events: auto;
      filter: blur(0) saturate(1);
      z-index: 1;
    }
    .hero-slide.is-exit {
      opacity: 0;
      filter: blur(10px) saturate(.7);
      z-index: 2;
      transition: opacity .95s var(--ease), filter .95s var(--ease), transform 1.1s var(--ease);
      transform: scale(1.06);
    }
    .hero-slide .hero-media {
      position: absolute; inset: -4%;
      background-color: #0a1a18;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transform: scale(1.05);
    }
    .hero-slide.is-on .hero-media {
      animation: heroZoom 14s linear forwards;
    }
    .hero-slide .hero-media::after {
      content: "";
      position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(8, 28, 26, .2) 0%, rgba(8, 28, 26, .58) 48%, rgba(8, 28, 26, .9) 100%),
        radial-gradient(ellipse 60% 45% at 70% 30%, rgba(20, 184, 166, .26), transparent 60%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(196, 163, 90, .16), transparent 55%);
      pointer-events: none;
    }
    @keyframes heroZoom {
      from { transform: scale(1.05); }
      to { transform: scale(1.14); }
    }
    .hero-veil {
      position: absolute; inset: 0; z-index: 1;
      pointer-events: none;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.04) 50%, transparent 60%);
      background-size: 220% 100%;
      opacity: 0;
    }
    .hero.is-morphing .hero-veil {
      animation: veilSweep 1.1s var(--ease) both;
    }
    @keyframes veilSweep {
      from { opacity: 0; background-position: 120% 0; }
      35% { opacity: .55; }
      to { opacity: 0; background-position: -40% 0; }
    }
    .hero-inner {
      position: relative; z-index: 3;
      width: min(42rem, 100%);
      padding: clamp(4rem, 12vh, 7rem) clamp(1.1rem, 4vw, 2.75rem) clamp(2.5rem, 6vh, 4rem);
    }
    .hero-brand {
      margin: 0 0 .85rem;
      font-family: var(--display);
      font-size: clamp(2.6rem, 8vw, 4.4rem);
      font-weight: 800; letter-spacing: -.04em; line-height: .95;
      transition: opacity .5s var(--ease), transform .65s var(--ease), filter .5s var(--ease);
    }
    .hero-brand em {
      font-style: normal;
      background: linear-gradient(120deg, #5eead4, #f5e6b8);
      -webkit-background-clip: text; background-clip: text;
      color: transparent;
    }
    .hero-copy {
      min-height: 9.5rem;
    }
    .hero h1 {
      margin: 0 0 .75rem;
      font-family: var(--display);
      font-size: clamp(1.35rem, 3.2vw, 1.85rem);
      font-weight: 700; letter-spacing: -.02em; line-height: 1.2;
      max-width: 24ch;
      transition: opacity .5s var(--ease), transform .65s var(--ease), filter .5s var(--ease);
    }
    .hero .lede {
      margin: 0 0 1.35rem;
      font-size: clamp(1rem, 2.2vw, 1.12rem);
      color: rgba(244, 255, 251, .82);
      max-width: 36ch;
      transition: opacity .5s var(--ease), transform .65s var(--ease), filter .5s var(--ease);
    }
    .hero-step {
      margin: 0 0 .55rem;
      font-size: .72rem; font-weight: 800; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(244, 255, 251, .65);
      transition: opacity .45s var(--ease), transform .55s var(--ease), filter .45s var(--ease);
    }
    .hero-cta {
      display: flex; flex-wrap: wrap; gap: .55rem;
      transition: opacity .5s var(--ease), transform .65s var(--ease), filter .5s var(--ease);
    }
    .hero-inner.is-waiting .hero-brand,
    .hero-inner.is-waiting .hero-step,
    .hero-inner.is-waiting h1,
    .hero-inner.is-waiting .lede,
    .hero-inner.is-waiting .hero-cta {
      opacity: 0;
      visibility: hidden;
      transform: translateY(40px);
      filter: blur(14px);
      pointer-events: none;
    }
    .hero.is-morphing .hero-brand,
    .hero.is-morphing .hero-step,
    .hero.is-morphing h1,
    .hero.is-morphing .lede,
    .hero.is-morphing .hero-cta {
      opacity: 0;
      transform: translateY(28px);
      filter: blur(10px);
    }
    .hero.is-forming .hero-brand,
    .hero.is-forming .hero-step,
    .hero.is-forming h1,
    .hero.is-forming .lede,
    .hero.is-forming .hero-cta {
      visibility: visible;
      animation: apexFormIn .95s var(--ease) both;
    }
    .hero.is-forming .hero-step { animation-delay: .06s; }
    .hero.is-forming h1 { animation-delay: .14s; }
    .hero.is-forming .lede { animation-delay: .26s; }
    .hero.is-forming .hero-cta { animation-delay: .4s; }
    @keyframes apexFormIn {
      from {
        opacity: 0;
        visibility: visible;
        transform: translateY(42px) scale(.92);
        filter: blur(16px);
        letter-spacing: .06em;
      }
      60% {
        filter: blur(2px);
      }
      to {
        opacity: 1;
        visibility: visible;
        transform: none;
        filter: blur(0);
        letter-spacing: inherit;
      }
    }
    .hero-dots {
      position: absolute; z-index: 4;
      left: clamp(1.1rem, 4vw, 2.75rem);
      bottom: 1.15rem;
      display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
    }
    .hero-dots button {
      appearance: none; cursor: pointer;
      width: .55rem; height: .55rem; border-radius: 999px;
      border: 0; padding: 0;
      background: rgba(255,255,255,.35);
      transition: width .35s var(--ease), background .25s;
    }
    .hero-dots button.is-on {
      width: 1.45rem;
      background: linear-gradient(120deg, #5eead4, #f5e6b8);
    }
    .btn {
      appearance: none; cursor: pointer; border: 0; text-decoration: none;
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: .92rem;
      padding: .75rem 1.25rem; border-radius: 999px;
      transition: transform .15s, filter .15s, background .15s, border-color .15s;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      color: #052e2a;
      background: linear-gradient(120deg, #5eead4, #f5e6b8);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
    }
    .btn-ghost {
      color: #f4fffb;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .28);
      backdrop-filter: blur(8px);
    }
    .btn-ghost:hover { background: rgba(255, 255, 255, .14); }

    
    .section {
      padding: clamp(3rem, 8vw, 5.5rem) clamp(1.1rem, 4vw, 2.75rem);
    }
    .section-inner { width: min(68rem, 100%); margin: 0 auto; }
    .section h2 {
      margin: 0 0 .55rem;
      font-family: var(--display);
      font-size: clamp(1.55rem, 3.5vw, 2.15rem);
      font-weight: 800; letter-spacing: -.025em; line-height: 1.15;
    }
    .section .sub {
      margin: 0 0 2rem;
      color: var(--mute); font-size: 1.02rem; max-width: 38rem;
    }
    .apex-reveal {
      opacity: 0;
      transform: translateY(36px);
      filter: blur(8px);
      transition: opacity .85s var(--ease), transform .9s var(--ease), filter .85s var(--ease);
    }
    .apex-reveal.is-in {
      opacity: 1;
      transform: none;
      filter: blur(0);
    }
    .apex-reveal-stagger > .apex-reveal-item {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s var(--ease), transform .75s var(--ease);
    }
    .apex-reveal.is-in .apex-reveal-item:nth-child(1) { transition-delay: .06s; }
    .apex-reveal.is-in .apex-reveal-item:nth-child(2) { transition-delay: .14s; }
    .apex-reveal.is-in .apex-reveal-item:nth-child(3) { transition-delay: .22s; }
    .apex-reveal.is-in .apex-reveal-item:nth-child(4) { transition-delay: .3s; }
    .apex-reveal.is-in .apex-reveal-item {
      opacity: 1;
      transform: none;
    }

    
    .pitch {
      background:
        radial-gradient(ellipse 70% 60% at 100% 0%, rgba(20, 184, 166, .12), transparent 55%),
        linear-gradient(180deg, #e8f4f1, var(--bg));
    }
    .pitch-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: clamp(1.5rem, 4vw, 3rem);
      align-items: center;
    }
    @media (max-width: 820px) {
      .pitch-grid { grid-template-columns: 1fr; }
    }
    .pitch-visual {
      position: relative;
      min-height: 18rem;
      border-radius: 24px;
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(15, 118, 110, .55), rgba(8, 28, 26, .85)),
        radial-gradient(ellipse 70% 60% at 70% 30%, rgba(94, 234, 212, .25), transparent 55%);
      box-shadow: 0 24px 60px rgba(16, 35, 31, .12);
      animation: floatY 6s ease-in-out infinite;
    }
    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    .pitch-list {
      margin: 0; padding: 0; list-style: none;
      display: grid; gap: .85rem;
    }
    .pitch-list li {
      display: grid; grid-template-columns: auto 1fr; gap: .75rem;
      align-items: start;
    }
    .pitch-list .n {
      width: 1.85rem; height: 1.85rem; border-radius: 9px;
      display: grid; place-items: center;
      font-size: .75rem; font-weight: 800; color: var(--a1);
      background: color-mix(in srgb, var(--a2) 14%, #fff);
      border: 1px solid color-mix(in srgb, var(--a2) 28%, var(--line));
    }
    .pitch-list b { display: block; font-size: .98rem; margin-bottom: .1rem; }
    .pitch-list span { color: var(--mute); font-size: .9rem; }

    
    .path {
      background: var(--panel);
      border-block: 1px solid var(--line);
    }
    .path-steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem 1.75rem;
      counter-reset: step;
    }
    @media (max-width: 720px) {
      .path-steps { grid-template-columns: 1fr; }
    }
    .path-steps li {
      list-style: none;
      counter-increment: step;
      padding-top: .25rem;
    }
    .path-steps li::before {
      content: "0" counter(step);
      display: block;
      font-family: var(--display);
      font-weight: 800; font-size: 1.35rem;
      color: var(--a2); letter-spacing: -.02em;
      margin-bottom: .4rem;
    }
    .path-steps b { display: block; margin-bottom: .25rem; font-size: 1.02rem; }
    .path-steps span { color: var(--mute); font-size: .9rem; }
    .path-steps { margin: 0; padding: 0; }

    
    .join {
      background:
        radial-gradient(ellipse 55% 50% at 0% 100%, rgba(196, 163, 90, .1), transparent 50%),
        var(--bg);
    }
    .join .section-inner { width: min(52rem, 100%); }
    .join-head { text-align: center; margin: 0 0 1.5rem; }
    .join-head h2 { margin: 0 0 .4rem; }
    .join-head .sub { margin: 0 auto; max-width: 28rem; }
    .auth-shell {
      --auth-slide: .7s cubic-bezier(.4, 0, .2, 1);
      width: 100%; min-height: 26rem; position: relative; overflow: hidden;
      border-radius: 22px; border: 1px solid var(--line); background: var(--panel);
      box-shadow: 0 18px 48px rgba(16, 35, 31, .08);
    }
    .auth-form-pane {
      position: absolute; top: 0; height: 100%; width: 50%;
      display: flex; align-items: center; justify-content: center;
      padding: 1.4rem 1.6rem; transition: transform var(--auth-slide), opacity var(--auth-slide);
    }
    .auth-form-pane form { width: 100%; max-width: 18rem; }
    .auth-form-login { left: 50%; z-index: 2; opacity: 1; }
    .auth-form-reg { left: 0; z-index: 1; opacity: 0; pointer-events: none; }
    .auth-shell.is-reg .auth-form-login { transform: translateX(20%); opacity: 0; pointer-events: none; }
    .auth-shell.is-reg .auth-form-reg { opacity: 1; pointer-events: auto; z-index: 5; }
    .auth-form-pane h3 {
      margin: 0 0 .85rem; font-family: var(--display); font-size: 1.55rem; font-weight: 800; color: var(--a1);
    }
    .auth-form-pane .field { margin: 0 0 .75rem; }
    .auth-form-pane .field label {
      display: block; font-size: .78rem; font-weight: 750; color: var(--mute); margin: 0 0 .3rem;
    }
    .auth-form-pane .field input {
      width: 100%; padding: .7rem .85rem; border-radius: 12px; border: 1px solid var(--line);
      background: #f7fbfa; color: var(--ink); font: inherit;
    }
    .auth-form-pane .field input:focus {
      outline: none; border-color: var(--a2);
      box-shadow: 0 0 0 3px color-mix(in srgb, var(--a2) 22%, transparent); background: #fff;
    }
    .pass-wrap {
      position: relative;
      display: block;
    }
    .pass-wrap input {
      padding-inline-end: 2.75rem !important;
    }
    .pass-toggle {
      position: absolute;
      inset-inline-end: .35rem;
      top: 50%;
      transform: translateY(-50%);
      width: 2.2rem; height: 2.2rem;
      display: grid; place-items: center;
      border: 0; background: transparent;
      color: var(--mute); cursor: pointer;
      border-radius: 8px;
    }
    .pass-toggle:hover { color: var(--a1); background: color-mix(in srgb, var(--a2) 12%, transparent); }
    .pass-toggle[aria-pressed="true"] .eye-on { display: none; }
    .pass-toggle[aria-pressed="true"] .eye-off { display: block; }
    .pass-toggle[aria-pressed="false"] .eye-off { display: none; }
    .pass-toggle[aria-pressed="false"] .eye-on { display: block; }
    .auth-form-pane .btn-auth {
      appearance: none; cursor: pointer; border: 0; width: 100%; margin-top: .35rem;
      font: inherit; font-weight: 800; padding: .75rem 1.1rem; border-radius: 999px;
      color: #fff; background: linear-gradient(120deg, var(--a2), var(--a1));
      box-shadow: 0 10px 28px var(--glow);
    }
    .auth-meta {
      display: flex; justify-content: space-between; align-items: center; gap: .5rem;
      font-size: .78rem; color: var(--mute); margin: .15rem 0 .85rem;
    }
    .auth-overlay-wrap {
      position: absolute; top: 0; left: 0; width: 50%; height: 100%;
      overflow: hidden; z-index: 20;
      transition: transform var(--auth-slide);
      border-radius: 20px 40% 40% 20px / 20px 18% 18% 20px;
    }
    .auth-shell.is-reg .auth-overlay-wrap {
      transform: translateX(100%);
      border-radius: 40% 20px 20px 40% / 18% 20px 20px 18%;
    }
    .auth-overlay {
      position: relative; left: 0; width: 200%; height: 100%;
      display: flex; color: #fff;
      transition: transform var(--auth-slide);
      background: linear-gradient(135deg, var(--a2), #5eead4 45%, var(--a1));
    }
    .auth-shell.is-reg .auth-overlay { transform: translateX(-50%); }
    .auth-overlay-panel {
      width: 50%; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 1.5rem; gap: .65rem;
    }
    .auth-overlay-panel h4 {
      margin: 0; font-family: var(--display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800;
    }
    .auth-overlay-panel p { margin: 0; max-width: 15rem; line-height: 1.4; opacity: .92; font-size: .88rem; }
    .btn-outline {
      appearance: none; cursor: pointer; margin-top: .35rem;
      background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.85);
      font: inherit; font-weight: 800; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
      padding: .6rem 1.2rem; border-radius: 12px;
    }
    .btn-outline:hover { background: rgba(255,255,255,.12); }
    @media (max-width: 720px) {
      .auth-shell { min-height: 34rem; }
      .auth-form-pane { width: 100%; height: 55%; }
      .auth-form-login { left: 0; top: 45%; }
      .auth-form-reg { left: 0; top: 0; }
      .auth-shell.is-reg .auth-form-login { transform: translateY(12%); }
      .auth-overlay-wrap {
        width: 100%; height: 45%;
        border-radius: 20px 20px 40% 40% / 20px 20px 18% 18%;
      }
      .auth-shell.is-reg .auth-overlay-wrap {
        transform: translateY(122%);
        border-radius: 40% 40% 20px 20px / 18% 18% 20px 20px;
      }
    }

    
    .site-footer {
      background: #0c1f1c;
      color: #d7ebe6;
      padding: 1.15rem clamp(1rem, 4vw, 2.5rem) 1rem;
    }
    .footer-grid {
      width: 100%; max-width: none; margin: 0 0 .85rem;
      display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: .85rem clamp(1rem, 3vw, 2rem);
      justify-content: space-between;
    }
    .footer-grid > :last-child {
      justify-self: end;
      text-align: right;
    }
    .footer-grid a.partner {
      color: #5eead4; text-decoration: none; font-weight: 700;
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .84rem;
    }
    .footer-grid a.partner:hover { color: #f5e6b8; text-decoration: underline; }
    .footer-grid a.partner img {
      width: 1.35rem; height: 1.35rem; border-radius: 50%;
      flex: none; background: #fff;
    }
    .trust-strip {
      width: 100%;
      margin: 0 0 .85rem;
      padding: 0 0 .75rem;
      border-bottom: 1px solid rgba(143, 175, 167, .2);
    }
    .trust-row { display: grid; gap: .35rem; }
    .trust-lab {
      margin: 0;
      font-size: .65rem; font-weight: 750; letter-spacing: .08em;
      text-transform: uppercase; color: #8fafa7;
    }
    .trust-logos {
      display: flex; flex-wrap: wrap; align-items: center;
      gap: .35rem .45rem;
    }
    .trust-logos span {
      display: inline-flex; align-items: center; gap: .3rem;
      color: #9bbab2; font-size: .72rem; font-weight: 650;
      padding: .2rem .4rem .2rem .2rem;
      border-radius: 999px;
      border: 1px solid rgba(143, 175, 167, .22);
      background: rgba(255, 255, 255, .03);
    }
    .trust-logos img {
      width: 1.2rem; height: 1.2rem; border-radius: 50%;
      flex: none; background: #fff;
    }
    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-grid > :last-child { justify-self: start; text-align: left; }
    }
    @media (max-width: 520px) {
      .footer-grid { grid-template-columns: 1fr; gap: .85rem; }
    }
    .site-footer h3 {
      margin: 0 0 .35rem;
      font-family: var(--display);
      font-size: .88rem; font-weight: 800; color: #fff;
    }
    .footer-meta { margin: 0 0 .2rem; font-size: .8rem; color: #8fafa7; line-height: 1.35; }
    .footer-credit-label {
      margin: 0 0 .15rem; font-size: .65rem; font-weight: 750;
      letter-spacing: .06em; text-transform: uppercase; color: #8fafa7;
    }
    .footer-credit-host {
      display: inline-block; margin: 0 0 .25rem;
      font-family: var(--display); font-weight: 800; font-size: 1rem;
      color: #5eead4; text-decoration: none;
    }
    .footer-credit-host:hover { color: #f5e6b8; }
    .footer-credit-by { margin: 0; font-size: .8rem; color: #8fafa7; line-height: 1.4; max-width: none; }
    .boost-link { color: #f5e6b8; font-weight: 750; text-decoration: none; }
    .boost-link:hover { text-decoration: underline; }
    .footer-bottom {
      width: 100%; max-width: none; margin: 0;
      padding-top: .7rem; border-top: 1px solid rgba(143, 175, 167, .22);
      display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between;
      font-size: .75rem; color: #8fafa7;
    }
    .footer-bottom a { color: #8fafa7; text-decoration: none; }
    .footer-bottom a:hover { color: #5eead4; }

    .toast {
      position: fixed; left: 50%; bottom: 1.25rem; z-index: 80;
      transform: translateX(-50%) translateY(120%);
      padding: .65rem 1.1rem; border-radius: 999px;
      background: var(--a1); color: #fff; font-weight: 750; font-size: .86rem;
      box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
      transition: transform .28s var(--ease);
      pointer-events: none;
    }
    .toast.on { transform: translateX(-50%) translateY(0); }
