:root {
  --black: #0b0a08;
  --surface: #14120f;
  --surface-2: #1d1811;
  --cream: #fff8ea;
  --muted: #b8aa93;
  --yellow: #ffc642;
  --orange: #ef7c32;
  --line: rgba(255, 231, 191, .16);
  --shell: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(.32, .72, 0, 1);
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; overflow-x: hidden; color: var(--cream); background: var(--black); font-family: "DM Sans", Arial, sans-serif; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p, dl, dd, figure { margin-top: 0; }
h1, h2, h3 { font-family: "Space Grotesk", Arial, sans-serif; text-wrap: balance; }
p { text-wrap: pretty; }
.shell { width: var(--shell); margin-inline: auto; }
.hero-copy, .project-intro, .project-facts, .experience-content { min-width: 0; }

/* grain de filme sobre a pagina inteira */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: .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' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.97 0 0 0 0 0.9 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip { position: fixed; top: -60px; left: 16px; z-index: 100; padding: 12px 16px; background: var(--yellow); color: #18120a; font-weight: 700; transition: top .2s ease; }
.skip:focus-visible { top: 12px; }

/* ---------- reveals ---------- */
html.js [data-reveal] {
  opacity: 0; transform: translateY(20px); filter: blur(7px);
  transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease);
  transition-delay: calc(var(--d, 0) * 95ms);
}
html.js [data-reveal].is-in { opacity: 1; transform: none; filter: none; }

.reveal-words span { opacity: .22; transition: opacity .55s var(--ease); transition-delay: calc(var(--w, 0) * 110ms + .2s); }
.reveal-words.is-in span { opacity: 1; }

/* ---------- nav ---------- */
.nav { position: relative; z-index: 10; min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 32px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand span { display: grid; gap: 2px; }
.brand strong { font: 700 13px/1 "Space Grotesk", sans-serif; letter-spacing: -.01em; }
.brand small { color: var(--muted); font: 500 11px/1 "DM Sans", sans-serif; }
.nav nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav nav > a { color: var(--muted); font-size: 14px; transition: color .25s ease; }
.nav nav > a:hover { color: var(--cream); }
.nav nav .nav-contact { margin-left: 12px; padding: 11px 14px; color: #18120a; background: var(--yellow); font-weight: 700; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.nav nav .nav-contact:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--orange); }
.nav nav .nav-contact:active { transform: none; box-shadow: none; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 1px; margin: 6px auto; background: var(--cream); transition: transform .2s ease; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; column-gap: 24px; align-items: end; }

.hero-figure { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 620px; padding-top: 40px; }
.hero-figure::before { content: ""; position: absolute; left: 50%; bottom: -14%; width: 140%; aspect-ratio: 1; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(239, 124, 50, .3), transparent 72%); pointer-events: none; }
.hero-shapes { position: absolute; inset: 0 -6% 0 -6%; width: 112%; height: 100%; }
.hero-avatar { position: relative; z-index: 1; width: auto; height: min(580px, 92%); filter: drop-shadow(0 22px 44px rgba(0, 0, 0, .5)); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 22px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 22px), transparent 100%); }

.hero-copy { position: relative; z-index: 2; padding-block: 96px 88px; }
.hero-role { margin-bottom: 22px; color: var(--orange); font: 500 13px/1.5 "DM Mono", monospace; letter-spacing: .18em; text-transform: uppercase; }
.hero-name { margin-bottom: 26px; font-size: clamp(64px, 9.6vw, 136px); line-height: .92; letter-spacing: -.045em; text-transform: uppercase; }
.hero-name span { color: var(--yellow); }
.hero-text { max-width: 560px; margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 38px; }

.button { min-height: 55px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; padding: 0 22px; font-size: 13px; font-weight: 700; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease; }
.button.primary { color: #18120a; background: var(--yellow); box-shadow: 4px 4px 0 var(--orange); }
.button.dark { color: var(--cream); background: var(--black); box-shadow: 4px 4px 0 var(--orange); }
.button.primary:hover, .button.dark:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--orange); }
.button.ghost { color: var(--cream); border: 1px solid var(--line); }
.button.ghost:hover { border-color: var(--yellow); transform: translate(-2px, -2px); }
.button:active { transform: translate(0, 0) scale(.98); }
.button span { font-size: 18px; }
.button.ghost span { color: var(--yellow); }

.hero-badge { position: absolute; z-index: 3; top: 92px; right: 0; width: 118px; height: 118px; display: grid; place-items: center; }
.hero-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: badge-spin 22s linear infinite; }
.badge-text { fill: var(--muted); font: 500 10px "DM Mono", monospace; letter-spacing: .18em; text-transform: uppercase; }
.badge-arrow { position: relative; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; color: var(--yellow); font-size: 20px; background: rgba(11, 10, 8, .5); transition: transform .3s var(--ease), border-color .3s ease; }
.hero-badge:hover .badge-arrow { transform: translate(2px, -2px); border-color: var(--yellow); }
@keyframes badge-spin { to { transform: rotate(360deg); } }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.hero-stats > a { display: grid; gap: 9px; padding: 26px 24px; border-right: 1px solid var(--line); transition: background .3s ease; }
.hero-stats > a:first-child { border-left: 1px solid var(--line); }
.hero-stats > a:hover { background: var(--surface); }
.hero-stats svg { width: 25px; height: 25px; margin-bottom: 4px; fill: none; stroke: var(--yellow); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hero-stats strong { font-size: 15px; font-family: "Space Grotesk", sans-serif; letter-spacing: -.01em; }
.hero-stats span { color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* entrada do hero no load */
html.js .hero-copy > * { animation: rise .95s var(--ease) backwards; }
html.js .hero-copy > :nth-child(1) { animation-delay: .08s; }
html.js .hero-copy > :nth-child(2) { animation-delay: .18s; }
html.js .hero-copy > :nth-child(3) { animation-delay: .3s; }
html.js .hero-copy > :nth-child(4) { animation-delay: .42s; }
html.js .hero-avatar { animation: rise-big 1.05s var(--ease) .15s backwards; }
html.js .hero-shapes { animation: shapes-in 1.2s var(--ease) backwards; transform-origin: 50% 100%; }
html.js .hero-badge { animation: fade .8s ease .85s backwards; }
html.js .hero-stats > a { animation: rise .8s var(--ease) backwards; }
html.js .hero-stats > a:nth-child(1) { animation-delay: .5s; }
html.js .hero-stats > a:nth-child(2) { animation-delay: .58s; }
html.js .hero-stats > a:nth-child(3) { animation-delay: .66s; }
html.js .hero-stats > a:nth-child(4) { animation-delay: .74s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); filter: blur(8px); } }
@keyframes rise-big { from { opacity: 0; transform: translateY(46px); } }
@keyframes shapes-in { from { opacity: 0; transform: scaleY(.86); } }
@keyframes fade { from { opacity: 0; } }

/* ---------- secoes ---------- */
.section-label { margin-bottom: 20px; color: var(--orange); font: 500 12.5px/1.5 "DM Mono", monospace; letter-spacing: .16em; text-transform: uppercase; }
.project-status { margin-bottom: 20px; color: var(--orange); font: 500 12.5px/1.5 "DM Mono", monospace; letter-spacing: .16em; text-transform: uppercase; }

.projects { padding-block: 130px; }
.section-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: end; margin-bottom: 70px; }
.section-heading .section-label { grid-column: 1 / -1; margin-bottom: -30px; }
.section-heading h2, .method h2, .experience h2, .cta h2 { margin-bottom: 0; font-size: clamp(38px, 4.8vw, 66px); line-height: 1.02; letter-spacing: -.05em; }
.section-heading > p:last-child { max-width: 480px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.project { padding-block: 72px; border-top: 1px solid var(--line); }
.project:last-child { border-bottom: 1px solid var(--line); }
.project-intro { display: grid; grid-template-columns: .75fr 1.25fr; column-gap: 58px; margin-bottom: 44px; }
.project-intro .project-status { grid-column: 1 / -1; }
.project-intro h3 { max-width: 620px; margin-bottom: 0; font-size: clamp(31px, 3.7vw, 50px); line-height: 1.04; letter-spacing: -.045em; }
.project-intro > p:last-child { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.75; }

.ucrm-panel { display: grid; place-items: center; gap: 20px; margin-bottom: 44px; padding: 60px 30px 46px; border: 1px solid var(--line); background: radial-gradient(ellipse 70% 90% at 50% 0%, rgba(16, 185, 129, .13), transparent 68%), var(--surface); transition: border-color .3s ease, transform .3s var(--ease); }
.ucrm-panel:hover { border-color: rgba(255, 198, 66, .5); transform: translateY(-3px); }
.ucrm-panel img { width: min(380px, 74%); height: auto; }
.ucrm-meta { margin: 0; color: var(--muted); font: 400 12px/1.6 "DM Mono", monospace; letter-spacing: .14em; text-transform: uppercase; text-align: center; }
.ucrm-link { color: var(--muted); font: 500 12.5px "DM Mono", monospace; letter-spacing: .1em; transition: color .3s ease; }
.ucrm-link span { color: var(--yellow); }
.ucrm-panel:hover .ucrm-link { color: var(--cream); }

.project-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 40px; border-block: 1px solid var(--line); }
.project-facts dl { margin: 0; padding: 23px 25px; border-right: 1px solid var(--line); }
.project-facts dl:first-child { padding-left: 0; }
.project-facts dl:last-child { border-right: 0; }
.project-facts dt { margin-bottom: 8px; color: var(--cream); font-size: 13px; font-weight: 700; }
.project-facts dd { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.project-capabilities { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.project-capabilities article { min-height: 145px; display: flex; flex-direction: column; justify-content: space-between; gap: 22px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); transition: background .3s ease, box-shadow .3s ease, transform .3s var(--ease); }
.project-capabilities article:hover { background: var(--surface-2); box-shadow: inset 0 0 0 1px rgba(255, 198, 66, .35); transform: translateY(-3px); }
.project-capabilities strong { font-size: 16px; font-family: "Space Grotesk", sans-serif; }
.project-capabilities span { color: var(--muted); font-size: 14px; line-height: 1.55; }

.project-automation { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px 60px; }
.project-automation .project-intro { display: block; margin: 0; }
.project-automation .project-intro h3 { margin-bottom: 20px; }
.automation-facts { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; margin: 0; }

.workflow-visual { align-self: center; }
.workflow-svg { width: 100%; height: auto; }
.wf-lines path { fill: none; stroke: var(--line); stroke-width: 1.5; }
.wf-pulses path { fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 12 188; stroke-dashoffset: 12; animation: wf-run 3.8s linear infinite; animation-delay: var(--wf-delay, 0s); }
@keyframes wf-run { 0% { stroke-dashoffset: 12; } 30% { stroke-dashoffset: -100; } 100% { stroke-dashoffset: -100; } }
.wf-nodes rect { fill: var(--surface); stroke: var(--line); }
.wf-nodes text { fill: var(--cream); font: 500 17px "DM Mono", monospace; letter-spacing: .08em; text-anchor: middle; }
.workflow-stack { display: none; }

/* ---------- metodo ---------- */
.method-section { background: var(--surface); border-block: 1px solid var(--line); }
.method { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-block: 120px; }
.method-copy > p:last-child { max-width: 560px; margin: 26px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.method-list { border-top: 1px solid var(--line); }
.method-list article { display: grid; grid-template-columns: 50px 132px 1fr; gap: 24px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.method-num { color: var(--orange); font: 500 12.5px "DM Mono", monospace; letter-spacing: .1em; }
.method-list h3 { margin: 0; font-size: 18px; transition: color .3s ease; }
.method-list article:hover h3 { color: var(--yellow); }
.method-list p { margin: 0; color: var(--muted); line-height: 1.6; }

/* ---------- experiencia ---------- */
.experience { display: grid; grid-template-columns: .72fr 1.28fr; gap: 85px; align-items: stretch; padding-block: 130px; }
.profile-figure { position: relative; min-height: 650px; overflow: hidden; display: flex; align-items: flex-end; isolation: isolate; background: var(--surface); border: 1px solid var(--line); }
.profile-figure::before { content: ""; position: absolute; z-index: 2; inset: 18px 18px 82px; border: 1px solid rgba(255, 198, 66, .4); pointer-events: none; }
.profile-figure::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(7, 7, 6, .16) 68%, rgba(7, 7, 6, .94) 100%); pointer-events: none; }
.profile-figure > img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: saturate(.86) contrast(1.04) brightness(.94); transform: scale(1.015); }
@supports (animation-timeline: view()) {
  .profile-figure > img { height: 114%; top: -7%; animation: photo-par linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
  @keyframes photo-par { from { transform: translateY(-3%) scale(1.02); } to { transform: translateY(3%) scale(1.02); } }
}
.profile-figure > div { position: relative; z-index: 3; width: 100%; display: grid; gap: 4px; padding: 21px 22px; background: rgba(7, 7, 6, .9); backdrop-filter: blur(8px); }
.profile-figure strong { font-size: 16px; }
.profile-figure span { color: var(--muted); font-size: 13px; }
.experience-content h2 { max-width: 720px; margin-bottom: 42px; }
.role { border-top: 1px solid var(--line); }
.role ul { margin: 28px 0 42px; padding-left: 20px; color: var(--muted); }
.role li { margin-bottom: 11px; line-height: 1.6; }
.tool-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.tool-list div { min-height: 108px; display: flex; flex-direction: column; justify-content: space-between; padding: 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease; }
.tool-list div:hover { background: var(--surface); }
.tool-list img { width: 29px; height: 29px; object-fit: contain; transition: transform .3s var(--ease); }
.tool-list div:hover img { transform: translateY(-2px); }
.tool-list span { font-size: 13px; font-weight: 700; }

/* ---------- cta ---------- */
.cta { position: relative; overflow: hidden; margin-bottom: 70px; padding: 82px clamp(30px, 8vw, 105px); color: #18120a; background: var(--yellow); }
.cta::after { content: ""; position: absolute; right: -25px; bottom: -80px; width: 350px; height: 350px; opacity: .14; background: #18120a; -webkit-mask: url("assets/alan-victor-logo.png") center / contain no-repeat; mask: url("assets/alan-victor-logo.png") center / contain no-repeat; transform: scaleX(-1); animation: breathe 9s ease-in-out infinite alternate; }
@keyframes breathe { from { transform: scaleX(-1) scale(1); opacity: .13; } to { transform: scaleX(-1) scale(1.07); opacity: .19; } }
.cta > div { position: relative; z-index: 1; max-width: 850px; }
.cta .section-label { color: #7a330d; }
.cta h2 { margin-bottom: 25px; }
.cta p:not(.section-label) { max-width: 600px; color: #5a3a18; font-size: 16px; line-height: 1.7; }
.cta .button { margin-top: 16px; }

.footer { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer > a:last-child { color: var(--cream); font-weight: 700; }

a:focus-visible, button:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }

/* ---------- responsivo ---------- */
@media (max-width: 900px) {
  :root { --shell: min(100% - 38px, 700px); }
  .nav { min-height: 74px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav.is-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav.is-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav nav { position: absolute; top: 74px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; border: 1px solid var(--line); background: var(--surface); box-shadow: 0 22px 45px rgba(0, 0, 0, .42); }
  .nav.is-open nav { display: flex; }
  .nav nav > a { padding: 15px 8px; border-bottom: 1px solid var(--line); color: var(--cream); }
  .nav nav .nav-contact { margin: 16px 0 0; border: 0; text-align: center; }

  .hero-grid { grid-template-columns: 1fr; column-gap: 0; }
  .hero-copy { order: 1; padding-block: 66px 12px; }
  .hero-figure { order: 2; min-height: 0; height: 470px; margin-top: 26px; }
  .hero-avatar { height: 94%; }
  .hero-badge { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > a { border-bottom: 1px solid var(--line); }
  .hero-stats > a:nth-child(2n) { border-right: 0; }
  .hero-stats > a:nth-child(n+3) { border-bottom: 0; }
  .hero-stats > a:first-child { border-left: 0; }

  .section-heading, .project-intro, .project-automation, .method, .experience { grid-template-columns: 1fr; }
  .projects { padding-block: 95px; }
  .section-heading { gap: 24px; margin-bottom: 45px; }
  .section-heading .section-label { grid-column: auto; margin-bottom: 0; }
  .project-intro { gap: 22px; }
  .project-intro h3 { margin-bottom: 0; }
  .project-capabilities { grid-template-columns: 1fr 1fr; }
  .automation-facts { grid-column: auto; }
  .method { gap: 55px; padding-block: 90px; }
  .experience { gap: 58px; padding-block: 95px; }
  .profile-figure { min-height: 620px; max-width: 520px; width: 100%; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .brand img { width: 36px; height: 36px; }
  .brand strong { font-size: 12px; }
  .hero-copy { padding-top: 48px; }
  .hero-role { font-size: 11.5px; letter-spacing: .14em; overflow-wrap: anywhere; }
  .hero-name { font-size: clamp(56px, 17vw, 74px); }
  .hero-text { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-figure { height: 400px; margin-top: 18px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats > a { grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 14px; row-gap: 2px; padding: 18px 4px; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .hero-stats > a:last-child { border-bottom: 0 !important; }
  .hero-stats svg { grid-row: 1 / 3; align-self: center; margin: 0; }
  .hero-stats strong, .hero-stats span { grid-column: 2; }

  .projects { padding-block: 76px; }
  .project { padding-block: 55px; }
  .project-facts, .automation-facts { grid-template-columns: 1fr; }
  .project-facts dl, .project-facts dl:first-child { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .project-facts dl:last-child { border-bottom: 0; }
  .project-capabilities { grid-template-columns: 1fr; }
  .ucrm-panel { padding: 44px 22px 38px; }
  .ucrm-panel img { width: min(300px, 86%); }

  .workflow-svg { display: none; }
  .workflow-stack { display: grid; gap: 8px; }
  .workflow-stack span { min-height: 52px; display: flex; align-items: center; justify-content: center; padding: 10px; border: 1px solid var(--line); color: var(--cream); background: var(--surface); font: 500 13px "DM Mono", monospace; letter-spacing: .1em; }
  .workflow-stack i { width: 1px; height: 16px; margin-inline: auto; background: linear-gradient(var(--orange), rgba(239, 124, 50, .15)); }

  .method-list article { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; gap: 6px 14px; }
  .method-list h3 { grid-column: 2; }
  .method-list p { grid-column: 2; }
  .method-num { grid-row: 1; }
  .profile-figure { min-height: 570px; }
  .profile-figure::before { inset: 14px 14px 78px; }
  .profile-figure > img { object-position: 50% 28%; }
  .tool-list { grid-template-columns: repeat(2, 1fr); }
  .cta { margin-bottom: 45px; padding: 58px 25px; }
  .cta::after { width: 240px; height: 240px; }
  .footer { min-height: 155px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  html.js [data-reveal] { opacity: 1; transform: none; filter: none; }
  .reveal-words span { opacity: 1; }
  .wf-pulses { display: none; }
}
