  :root {
    --bg: #050507;
    --text: #f5f5f7;
    --muted: #a3a3ac;
    --faint: #6e6e78;
    --line: rgba(245, 245, 247, 0.09);
    --line-strong: rgba(245, 245, 247, 0.16);
    --glass: rgba(245, 245, 247, 0.04);
    --violet: #8a7cff;
    --cyan: #4cc9f0;
    --mint: #2dd4a8;
    --grad: linear-gradient(95deg, #8a7cff, #4cc9f0 52%, #2dd4a8);
    --display: "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
    --body: "Inter", system-ui, -apple-system, sans-serif;
    --mono: "IBM Plex Mono", ui-monospace, monospace;
    --pad: clamp(20px, 5vw, 48px);
    --r: 24px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

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

  body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: var(--violet); color: #0b0820; }

  a { color: inherit; text-decoration: none; }
  a:focus-visible, summary:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .wrap { max-width: 1140px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

  /* ================= backdrop: aurora + grain ================= */
  .sky { position: fixed; inset: 0; z-index: -2; pointer-events: none; background: var(--bg); overflow: hidden; }
  .sky i { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
  .sky .a {
    width: 56vw; height: 56vw; min-width: 540px; min-height: 540px;
    left: 50%; top: -32vw; transform: translateX(-72%);
    background: radial-gradient(closest-side, rgba(124, 92, 255, 0.34), transparent 70%);
  }
  .sky .b {
    width: 48vw; height: 48vw; min-width: 480px; min-height: 480px;
    left: 50%; top: -26vw; transform: translateX(-6%);
    background: radial-gradient(closest-side, rgba(76, 201, 240, 0.26), transparent 70%);
  }
  .sky .c {
    width: 38vw; height: 38vw; min-width: 380px; min-height: 380px;
    left: 50%; top: -14vw; transform: translateX(28%);
    background: radial-gradient(closest-side, rgba(45, 212, 168, 0.18), transparent 70%);
  }
  .grain {
    position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  }

  /* ================= nav ================= */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(5, 5, 7, 0.6);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .nav.scrolled { border-bottom-color: var(--line); background: rgba(5, 5, 7, 0.78); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 58px; }
  .logo { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
  .logo .mark {
    width: 24px; height: 24px; border-radius: 7px; flex: none;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(138, 124, 255, 0.22), rgba(45, 212, 168, 0.16));
    border: 1px solid var(--line-strong);
  }
  .nav-links { display: flex; align-items: center; gap: 26px; font-size: 13.5px; color: var(--muted); }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    font-weight: 600; font-size: 13.5px; color: #050507 !important;
    background: var(--text); padding: 8px 16px; border-radius: 980px;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .nav-cta:hover { background: #fff; transform: translateY(-1px); }
  @media (max-width: 920px) { .nav-links a:not(.nav-cta) { display: none; } }

  /* ================= buttons ================= */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 16px; font-weight: 600;
    padding: 14px 28px; border-radius: 980px;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }
  .btn-white { background: var(--text); color: #050507; }
  .btn-white:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 10px 36px rgba(138, 124, 255, 0.25); }
  .btn-ghost { border: 1px solid var(--line-strong); color: var(--text); }
  .btn-ghost:hover { border-color: rgba(245, 245, 247, 0.35); background: var(--glass); }

  /* ================= hero ================= */
  .hero { text-align: center; padding: clamp(100px, 13vw, 150px) 0 clamp(76px, 9vw, 120px); position: relative; }
  h1 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(26px, 8.4vw, 104px);
    line-height: 0.99; letter-spacing: -0.04em;
    margin: 0 auto 36px; max-width: 10.4em;
  }
  .hero-line { display: inline-block; white-space: nowrap; }
  .grad-text {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .hero-sub {
    font-size: clamp(17px, 2vw, 21px); color: var(--muted); line-height: 1.55;
    max-width: 36em; margin: 0 auto 48px; text-wrap: balance;
  }
  .hero-sub strong { color: var(--text); font-weight: 600; }
  .cta-row { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: center; margin-bottom: 30px; }
  .eulen-badge {
    display: inline-flex; align-items: center; gap: clamp(10px, 1.4vw, 18px);
    margin: clamp(76px, 10vw, 130px) auto 0;
    font-size: clamp(15px, 1.8vw, 22px); color: var(--muted); letter-spacing: 0.01em;
  }
  .eulen-badge-logo { height: clamp(58px, 7vw, 92px); width: auto; opacity: 0.95; }

  /* entrance */
  .up { opacity: 0; transform: translateY(22px); animation: rise 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) forwards; }
  .up.d1 { animation-delay: 0.06s; } .up.d2 { animation-delay: 0.16s; }
  .up.d3 { animation-delay: 0.26s; } .up.d4 { animation-delay: 0.36s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { .up { opacity: 1; transform: none; } }

  /* ================= chapters ================= */
  section { padding: clamp(76px, 10vw, 150px) 0; scroll-margin-top: 58px; position: relative; }
  .chap-num {
    position: absolute; top: clamp(18px, 3vw, 40px); left: 50%; transform: translateX(-50%);
    font-family: var(--mono); font-size: clamp(72px, 14vw, 170px); font-weight: 500;
    color: rgba(245, 245, 247, 0.035); line-height: 1; pointer-events: none; user-select: none;
  }
  .chap-head { text-align: center; max-width: 800px; margin: 0 auto clamp(48px, 6vw, 80px); position: relative; }
  h2 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(34px, 5.6vw, 66px);
    line-height: 1.02; letter-spacing: -0.035em;
    margin-bottom: 22px;
  }
  .chap-head p { color: var(--muted); font-size: clamp(16px, 1.9vw, 19.5px); line-height: 1.55; max-width: 36em; margin-left: auto; margin-right: auto; }
  .chap-head p strong { color: var(--text); font-weight: 600; }
  .tg-link {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--cyan); font-weight: 600; text-decoration: none;
  }
  .tg-link:hover { text-decoration: underline; }
  .tg-link-icon { height: 0.9em; width: auto; display: inline-block; }

  /* ================= moments (timeline) ================= */
  .moments { position: relative; max-width: 1020px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(52px, 7vw, 92px); }
  .moments::before {
    content: ""; position: absolute; left: 50%; top: -10px; bottom: -10px; width: 1px; transform: translateX(-0.5px);
    background: linear-gradient(180deg, transparent, rgba(138, 124, 255, 0.4) 14%, rgba(76, 201, 240, 0.4) 52%, rgba(45, 212, 168, 0.4) 86%, transparent);
  }
  .moment {
    display: grid; grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr); align-items: center;
    grid-template-areas: "text node art";
  }
  .moment.flip { grid-template-areas: "art node text"; }
  .m-node { grid-area: node; display: flex; justify-content: center; }
  .m-node span {
    width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--mono); font-size: 13px; color: var(--text);
    background: #0b0b10; border: 1px solid var(--line-strong);
    box-shadow: 0 0 0 7px rgba(5, 5, 7, 0.9), 0 0 28px rgba(138, 124, 255, 0.3);
  }
  .m-text { grid-area: text; }
  .moment:not(.flip) .m-text { text-align: right; padding-right: clamp(4px, 1vw, 12px); }
  .moment.flip .m-text { text-align: left; padding-left: clamp(4px, 1vw, 12px); }
  .m-text h3 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(21px, 2.6vw, 28px); letter-spacing: -0.02em; line-height: 1.15;
    margin-bottom: 10px;
  }
  .m-text p { color: var(--muted); font-size: 15.5px; max-width: 26em; }
  .moment:not(.flip) .m-text p { margin-left: auto; }
  .m-text p strong { color: var(--text); font-weight: 600; }
  .m-art { grid-area: art; display: flex; }
  .moment:not(.flip) .m-art { justify-content: flex-start; padding-left: clamp(4px, 1.4vw, 18px); }
  .moment.flip .m-art { justify-content: flex-end; padding-right: clamp(4px, 1.4vw, 18px); }

  @media (max-width: 880px) {
    .moments::before { left: 22px; }
    .moment, .moment.flip {
      grid-template-columns: 56px minmax(0, 1fr);
      grid-template-areas: "node text" ". art";
      row-gap: 20px; align-items: start;
    }
    .m-node { justify-content: flex-start; padding-left: 0; }
    .m-node span { box-shadow: 0 0 0 7px var(--bg), 0 0 24px rgba(138, 124, 255, 0.3); }
    .moment:not(.flip) .m-text, .moment.flip .m-text { text-align: left; padding: 0; }
    .moment:not(.flip) .m-text p { margin-left: 0; }
    .moment:not(.flip) .m-art, .moment.flip .m-art { justify-content: flex-start; padding: 0; }
  }

  /* artifact cards */
  .artifact {
    width: min(380px, 100%);
    background: linear-gradient(180deg, rgba(245, 245, 247, 0.055), rgba(245, 245, 247, 0.025));
    border: 1px solid var(--line-strong);
    border-radius: var(--r);
    padding: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }
  .moment:not(.flip) .artifact { rotate: 1.2deg; }
  .moment.flip .artifact { rotate: -1.2deg; }
  @media (hover: hover) { .artifact:hover { transform: translateY(-5px); } }
  @media (max-width: 880px) { .moment:not(.flip) .artifact, .moment.flip .artifact { rotate: 0deg; } }

  .art-head {
    display: flex; align-items: center; gap: 9px;
    font-size: 12.5px; color: var(--faint);
    padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px solid var(--line);
  }
  .art-head .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); flex: none; box-shadow: 0 0 8px rgba(45, 212, 168, 0.8); }
  .art-head b { color: var(--muted); font-weight: 500; }

  .bubble { max-width: 88%; padding: 10px 14px; border-radius: 16px; font-size: 14px; line-height: 1.45; }
  .bubble + .bubble { margin-top: 8px; }
  .bubble.me {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(138, 124, 255, 0.34), rgba(76, 201, 240, 0.24));
    border: 1px solid rgba(138, 124, 255, 0.36);
    border-bottom-right-radius: 5px;
  }
  .bubble.bot {
    background: rgba(245, 245, 247, 0.06);
    border: 1px solid var(--line);
    border-bottom-left-radius: 5px;
  }
  .bubble .mono { font-family: var(--mono); font-size: 12px; color: var(--muted); word-break: break-all; }

  .push {
    display: flex; gap: 12px; align-items: flex-start;
    background: rgba(245, 245, 247, 0.06);
    border: 1px solid var(--line);
    border-radius: 16px; padding: 12px 14px;
  }
  .push + .push { margin-top: 8px; }
  .push .appicon {
    width: 36px; height: 36px; border-radius: 9px; flex: none;
    display: grid; place-items: center;
    font-family: var(--display); font-weight: 700; font-size: 15px; color: #04231a;
    background: linear-gradient(135deg, #6ee7c4, #2dd4a8);
  }
  .push .p-body { min-width: 0; flex: 1; }
  .push .p-top { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; color: var(--faint); margin-bottom: 2px; }
  .push .p-top b { color: var(--muted); font-weight: 600; }
  .push .p-text { font-size: 13.5px; line-height: 1.4; }
  .push .p-text strong { color: var(--mint); font-weight: 600; }
  .push .p-sub { font-family: var(--mono); font-size: 11px; color: var(--faint); margin-top: 3px; word-break: break-all; }

  /* ================= formgrid (transparency section) ================= */
  .formgrid {
    display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 16px; max-width: 1020px; margin: 0 auto;
    align-items: stretch;
  }
  @media (max-width: 880px) { .formgrid { grid-template-columns: 1fr; } }

  .formcard {
    border-radius: var(--r); padding: clamp(24px, 3vw, 36px);
    background: linear-gradient(180deg, rgba(245, 245, 247, 0.05), rgba(245, 245, 247, 0.02));
    border: 1px solid var(--line-strong);
  }
  .formcard .f-tag {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--faint); display: block; margin-bottom: 6px;
  }
  .formcard h3 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -0.02em; margin-bottom: 22px;
  }
  .field { padding: 11px 2px; border-bottom: 1px dashed var(--line); display: flex; align-items: center; gap: 12px; }
  .field:last-of-type { border-bottom: none; }
  .field .x {
    flex: none; width: 18px; height: 18px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255, 96, 92, 0.12); color: #ff8a86;
  }
  .field .chk {
    flex: none; width: 18px; height: 18px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(45, 212, 168, 0.12); color: var(--mint);
  }
  .field s {
    color: var(--faint); font-size: 14.5px;
    text-decoration-color: rgba(255, 96, 92, 0.6); text-decoration-thickness: 1.5px;
  }
  .field span { color: var(--text); font-size: 14.5px; }
  .formcard .f-foot { margin-top: 18px; font-size: 12.5px; color: var(--faint); }

  .herecard {
    border-radius: var(--r); padding: clamp(24px, 3vw, 36px);
    background:
      radial-gradient(560px 300px at 80% -20%, rgba(45, 212, 168, 0.14), transparent 70%),
      linear-gradient(180deg, rgba(245, 245, 247, 0.05), rgba(245, 245, 247, 0.02));
    border: 1px solid rgba(45, 212, 168, 0.3);
    display: flex; flex-direction: column;
  }
  .herecard .f-tag { color: var(--mint); }
  .herecard h3 { font-family: var(--display); font-weight: 700; font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -0.02em; margin-bottom: 22px; }
  .herecard .law {
    margin-top: auto; border-top: 1px solid var(--line); padding-top: 18px;
    font-size: 14.5px; color: var(--muted); line-height: 1.6;
  }
  .herecard .law strong { color: var(--text); font-weight: 600; }

  /* ================= custody points ================= */
  .custody-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 58px; max-width: 720px; margin: 0 auto; }
  @media (max-width: 880px) { .custody-points { grid-template-columns: 1fr; } }
  .cpoint {
    border: 1px solid var(--line); border-radius: var(--r);
    padding: 26px 24px; background: var(--glass);
  }
  .cpoint svg { color: var(--mint); margin-bottom: 14px; }
  .cpoint h3 { font-family: var(--display); font-size: 17.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
  .cpoint p { font-size: 14.5px; color: var(--muted); }
  .cpoint p strong { color: var(--text); font-weight: 600; }

  /* ================= phone showcase (a venda acontecendo) ================= */
  .showcase { padding-top: clamp(76px, 10vw, 130px); }
  .stage-label {
    text-align: center; font-weight: 600; letter-spacing: -0.01em;
    font-size: clamp(15px, 1.8vw, 18px); color: var(--text); margin-bottom: 18px;
  }
  .stage { position: relative; display: flex; justify-content: center; padding: clamp(6px, 2vw, 18px) 0 clamp(152px, 20vw, 260px); }
  .stage::before {
    content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: min(560px, 92vw); height: 620px; z-index: -1; pointer-events: none;
    background:
      radial-gradient(closest-side, rgba(138, 124, 255, 0.2), transparent 70%),
      radial-gradient(360px 320px at 62% 72%, rgba(45, 212, 168, 0.12), transparent 70%);
    filter: blur(6px);
  }
  .device {
    width: min(390px, 100%);
    background: linear-gradient(180deg, #17171f, #0c0c12);
    border: 1px solid var(--line-strong); border-radius: 46px;
    padding: 12px; box-shadow: 0 44px 100px rgba(0, 0, 0, 0.6);
  }
  .device-screen { background: #0a0a10; border-radius: 35px; overflow: hidden; border: 1px solid var(--line); }
  .tg-bar {
    display: flex; align-items: center; gap: 11px; padding: 13px 16px;
    background: rgba(245, 245, 247, 0.035); border-bottom: 1px solid var(--line);
  }
  .tg-bar .back { color: var(--faint); flex: none; }
  .tg-avatar {
    width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center;
    font-family: var(--display); font-weight: 700; font-size: 14px; color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
  }
  .tg-id { min-width: 0; margin-right: auto; }
  .tg-id b { display: block; font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
  .tg-id small { font-size: 11.5px; color: var(--mint); }
  .tg-chat { padding: 16px 13px 20px; display: flex; flex-direction: column; }
  .tg-day {
    align-self: center; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em;
    color: var(--faint); background: rgba(245, 245, 247, 0.05); border-radius: 980px;
    padding: 3px 12px; margin-bottom: 14px;
  }

  /* ================= pix row ================= */
  .pix-row { display: flex; gap: 14px; align-items: center; }
  .pix-row svg.qr { flex: none; background: #f5f5f7; border-radius: 10px; padding: 7px; }
  .pix-meta { min-width: 0; }
  .pix-meta .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 4px; }
  .pix-meta .value { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; display: block; margin-bottom: 8px; }
  .pix-meta .code {
    font-family: var(--mono); font-size: 10.5px; color: var(--faint);
    background: rgba(245, 245, 247, 0.05); border: 1px solid var(--line);
    border-radius: 8px; padding: 6px 9px; display: block;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  /* ================= stats band ================= */
  .band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(245, 245, 247, 0.015); }
  .band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
  @media (max-width: 760px) { .band-grid { grid-template-columns: 1fr; gap: 40px; } }
  .stat { text-align: center; }
  .stat b {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(46px, 6.4vw, 76px); letter-spacing: -0.04em; line-height: 1;
    display: block; margin-bottom: 12px;
    background: var(--grad); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .stat h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
  .stat p { font-size: 14px; color: var(--muted); max-width: 24em; margin: 0 auto; }

  /* ================= faq ================= */
  .faq { max-width: 780px; margin: 0 auto; }
  details { border-bottom: 1px solid var(--line); }
  details:first-of-type { border-top: 1px solid var(--line); }
  summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 22px 4px; font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em;
  }
  summary::-webkit-details-marker { display: none; }
  summary .chev { flex: none; color: var(--faint); transition: transform 0.25s ease, color 0.25s ease; }
  details[open] summary .chev { transform: rotate(45deg); color: var(--cyan); }
  details .answer { padding: 0 4px 24px; color: var(--muted); font-size: 15px; max-width: 64ch; }
  details .answer strong { color: var(--text); font-weight: 600; }

  /* ================= final ================= */
  .final { text-align: center; padding: clamp(96px, 13vw, 190px) 0; position: relative; overflow: hidden; }
  .final::before {
    content: ""; position: absolute; left: 50%; bottom: -40%; transform: translateX(-50%);
    width: min(900px, 120vw); height: 560px; pointer-events: none;
    background:
      radial-gradient(closest-side, rgba(138, 124, 255, 0.22), transparent 70%),
      radial-gradient(420px 300px at 64% 70%, rgba(45, 212, 168, 0.14), transparent 70%);
    filter: blur(8px);
  }
  .final .wrap { position: relative; }
  .final h2 { max-width: 11em; margin-left: auto; margin-right: auto; }
  .final p { color: var(--muted); max-width: 33em; margin: 0 auto 38px; font-size: clamp(15.5px, 1.8vw, 18px); }

  /* ================= footer ================= */
  footer { border-top: 1px solid var(--line); padding: 42px 0 50px; font-size: 12.5px; color: var(--faint); }
  .foot-grid { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: space-between; align-items: flex-start; }
  .foot-brand { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--muted); margin-bottom: 6px; }
  .foot-note { max-width: 64ch; line-height: 1.7; }
  .foot-links { display: flex; gap: 22px; }
  .foot-links a:hover { color: var(--text); }

  /* ================= reveal ================= */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.6, 0.2, 1); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
