:root {
  --ink: #080808;
  --ink-soft: #101010;
  --surface: #161616;
  --surface-raised: #1c1c1c;
  --paper: #fafaf7;
  --muted: #a7a7a2;
  --muted-dark: #70706b;
  --line: #2a2a28;
  --line-light: #3b3b37;
  --green: #1a6b3c;
  --green-bright: #46b76e;
  --green-pale: rgba(70, 183, 110, 0.12);
  --gold: #c9a84c;
  --radius: 18px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--ink); color: var(--paper); font-family: "DM Sans", Arial, sans-serif; font-weight: 300; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 4px; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; transform: translateY(-200%); background: var(--paper); color: var(--ink); padding: 10px 14px; border-radius: 10px; font-size: 14px; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 92px 0; position: relative; }
.section.dark-surface { background: var(--ink-soft); border-block: 1px solid var(--line); }
.section-label { margin: 0 0 18px; color: var(--green-bright); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.section-title { max-width: 800px; margin: 0; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 400; letter-spacing: -0.04em; line-height: 1.02; }
.section-title em, .display em { color: var(--green-bright); font-style: italic; }
.section-intro { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.18rem); line-height: 1.75; }
.section-head { display: grid; gap: 10px; margin-bottom: 54px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; width: fit-content; margin: 0 0 26px; padding: 7px 13px; border: 1px solid rgba(70, 183, 110, 0.34); border-radius: 999px; color: var(--green-bright); font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 5px rgba(70, 183, 110, 0.08); }

/* Navigation */
.site-nav { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(8,8,8,0.88); backdrop-filter: blur(18px); }
.nav-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { color: var(--paper); font-family: "DM Serif Display", Georgia, serif; font-size: 1.25rem; text-decoration: none; white-space: nowrap; }
.brand em { color: var(--green-bright); font-style: italic; }
.brand small { display: block; margin-top: -2px; color: var(--muted-dark); font-family: "DM Sans", Arial, sans-serif; font-size: 0.53rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); font-size: 0.78rem; text-decoration: none; transition: color 160ms var(--ease-out); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); }
.nav-links .nav-cta { padding: 9px 15px; border: 1px solid rgba(70,183,110,0.38); border-radius: 999px; color: var(--green-bright); font-weight: 500; }
.nav-links .nav-cta:hover { background: var(--green-pale); color: var(--paper); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line-light); border-radius: 10px; background: var(--surface); color: var(--paper); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 18px; height: 1.5px; margin: 4px auto; border-radius: 2px; background: currentColor; transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-panel { display: none; }

/* Buttons */
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 0.92rem; font-weight: 500; line-height: 1.2; text-align: center; text-decoration: none; transition: transform 160ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms var(--ease-out); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(0.97); }
.button.primary { background: var(--green); color: var(--paper); }
.button.primary:hover { background: #25824b; }
.button.secondary { border-color: var(--line-light); color: var(--paper); background: transparent; }
.button.secondary:hover { border-color: var(--green-bright); color: var(--green-bright); }
.text-link { color: var(--green-bright); font-size: 0.9rem; font-weight: 500; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Hero */
.hero { min-height: min(560px, calc(100svh - 70px)); display: grid; align-items: center; padding: clamp(36px, 5vh, 58px) 0 clamp(30px, 4vh, 46px); overflow: visible; position: relative; }
.hero + .section { padding-top: 48px; padding-bottom: 78px; }
.hero::before { content: ""; position: absolute; inset: -20% -10% auto; height: 90%; background: radial-gradient(ellipse at 50% 0%, rgba(31,128,71,0.19), transparent 58%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.46fr) minmax(250px, 0.54fr); gap: clamp(32px, 4vw, 56px); align-items: center; position: relative; }
.display { max-width: 920px; margin: 0; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(54px, 4.65vw, 68px); font-weight: 400; letter-spacing: -0.055em; line-height: 0.96; }
.hero-copy { max-width: 690px; margin: clamp(18px, 2.4vh, 24px) 0 clamp(20px, 2.8vh, 28px); color: #c2c2bd; font-size: clamp(1rem, 1.5vw, 1.13rem); line-height: 1.62; }
.proofline { margin-top: clamp(20px, 2.4vh, 28px); color: var(--muted-dark); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; }
.hero-mark { min-height: 272px; display: grid; align-content: end; gap: 12px; padding: 24px; border: 1px solid rgba(70,183,110,0.22); border-radius: 24px; background: linear-gradient(145deg, rgba(24,24,24,0.72), rgba(14,48,28,0.52)); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-mark::before { content: "LEONIS\A BRAIN"; white-space: pre; position: absolute; top: 30px; right: 28px; color: rgba(70,183,110,0.23); font-size: clamp(3.4rem, 8vw, 6rem); font-weight: 500; letter-spacing: -0.1em; line-height: 0.72; text-align: right; }
.hero-mark::after { content: ""; position: absolute; inset: auto -14% -41% auto; width: 310px; height: 310px; border: 1px solid rgba(70,183,110,0.3); border-radius: 50%; box-shadow: 0 0 0 38px rgba(70,183,110,0.05), 0 0 0 76px rgba(70,183,110,0.03); }
.hero-mark > * { position: relative; z-index: 1; }
.mark-overline { color: var(--green-bright); font-size: 0.67rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.mark-copy { max-width: 240px; margin: 0; color: #d7d7d1; font-family: "DM Serif Display", Georgia, serif; font-size: 1.32rem; line-height: 1.15; }

/* Leonis Brain: presença contínua, deliberadamente discreta e sem layout shift. */
.hero-mark { transform-origin: 50% 55%; animation: leonis-brain-breathe 5.2s cubic-bezier(.4, 0, .2, 1) infinite; will-change: transform, box-shadow; }
.hero-mark::before { animation: leonis-brain-signal 5.2s cubic-bezier(.4, 0, .2, 1) infinite; will-change: opacity, filter; }
.hero-mark::after { transform-origin: 50% 50%; animation: leonis-brain-orbit 16s linear infinite; will-change: transform, opacity; }
@keyframes leonis-brain-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 24px 64px rgba(0,0,0,.22), 0 0 0 rgba(70,183,110,0); }
  48% { transform: scale(1.008); box-shadow: 0 28px 72px rgba(0,0,0,.28), 0 0 34px rgba(70,183,110,.13); }
  56% { transform: scale(1.004); box-shadow: 0 26px 68px rgba(0,0,0,.25), 0 0 18px rgba(70,183,110,.08); }
}
@keyframes leonis-brain-signal {
  0%, 38%, 100% { opacity: .48; filter: brightness(.92); }
  48% { opacity: .68; filter: brightness(1.16); }
  56% { opacity: .56; filter: brightness(1.02); }
}
@keyframes leonis-brain-orbit {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .76; }
  50% { transform: translate3d(-6px,-4px,0) scale(1.03); opacity: .94; }
}

/* Cards & grids */
.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card, .product-card, .capability-card, .process-step { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.feature-card { min-height: 280px; display: flex; flex-direction: column; align-items: flex-start; }
.card-index { color: var(--green-bright); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.feature-card h3, .product-card h3, .capability-card h3, .process-step h3 { margin: 36px 0 12px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.72rem; font-weight: 400; line-height: 1.06; }
.feature-card p, .product-card p, .capability-card p, .process-step p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.feature-card .text-link { margin-top: auto; padding-top: 25px; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr); gap: 74px; align-items: center; }
.body-copy { color: #c4c4bf; font-size: 1.05rem; line-height: 1.78; }
.body-copy p { margin: 0 0 18px; }
.quote-block { padding: 36px; border-left: 2px solid var(--green-bright); background: linear-gradient(90deg, rgba(70,183,110,0.09), transparent); }
.quote-block p { margin: 0; color: var(--paper); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.12; }

.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.model-card { min-height: 270px; padding: 31px; background: var(--ink-soft); }
.model-card strong { display: block; margin-bottom: 22px; color: var(--green-bright); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }
.model-card h3 { margin: 0 0 14px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.75rem; font-weight: 400; }
.model-card p { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.model-result { grid-column: 1 / -1; padding: 24px 31px; background: rgba(26,107,60,0.16); color: #d5e4d9; font-size: 1.05rem; }

.portfolio-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-card { display: flex; flex-direction: column; min-height: 255px; transition: border-color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.product-card:hover { border-color: rgba(70,183,110,0.56); transform: translateY(-3px); }
.product-card .cluster { color: var(--green-bright); font-size: 0.67rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.product-card .signature { margin-top: auto; padding-top: 20px; color: var(--muted-dark); font-size: 0.72rem; line-height: 1.45; }
.product-card .text-link { margin-top: 17px; }
.product-card .product-secondary-link { margin-top: 8px; }

.brain-panel { position: relative; overflow: hidden; padding: 50px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(135deg, #151915, #0d2114); }
.brain-panel::before { content: ""; position: absolute; inset: -180px -50px auto auto; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(70,183,110,0.18), transparent 68%); }
.brain-panel > * { position: relative; }
.cycle { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 38px; }
.cycle span { min-height: 88px; display: grid; place-items: center; padding: 10px; border: 1px solid rgba(255,255,255,0.11); border-radius: 12px; color: #d1d8d0; font-size: 0.82rem; line-height: 1.35; text-align: center; }
.cycle span:not(:last-child)::after { content: "→"; position: absolute; transform: translateX(115px); color: var(--green-bright); }
.brain-note { margin: 28px 0 0; color: var(--muted); font-size: 0.85rem; }

.capability-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.capability-card { min-height: 165px; padding: 20px; }
.capability-card h3 { margin: 30px 0 0; font-size: 1.22rem; }
.method-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.process-step { min-height: 230px; position: relative; padding: 22px; }
.process-step .step-no { color: var(--green-bright); font-family: "DM Serif Display", Georgia, serif; font-size: 2.2rem; line-height: 1; }
.process-step h3 { margin: 31px 0 10px; font-size: 1.28rem; }

.cta-band { padding: 88px 0; background: linear-gradient(135deg, #102916, #0b120d); border-top: 1px solid rgba(70,183,110,0.22); }
.cta-band .section-title { max-width: 760px; }
.cta-band .section-intro { margin-bottom: 32px; }
.cta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }
.cta-card { padding: 27px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); background: rgba(0,0,0,0.17); text-decoration: none; transition: border-color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.cta-card:hover { transform: translateY(-3px); border-color: var(--green-bright); }
.cta-card small { color: var(--green-bright); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.cta-card h3 { margin: 11px 0 7px; color: var(--paper); font-family: "DM Serif Display", Georgia, serif; font-size: 1.6rem; font-weight: 400; }
.cta-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Inner page hero */
.page-hero { padding: 130px 0 70px; border-bottom: 1px solid var(--line); background: radial-gradient(ellipse at 50% -10%, rgba(26,107,60,0.18), transparent 58%); }
.page-hero .display { max-width: 900px; font-size: clamp(3rem, 6.5vw, 6rem); }
.page-hero .hero-copy { margin-left: 0; }
.product-list { display: grid; gap: 45px; }
.cluster-section { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 34px; align-items: start; }
.cluster-title { position: sticky; top: 96px; }
.cluster-title h2 { margin: 0; font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1.08; }
.cluster-title p { margin: 12px 0 0; color: var(--muted); font-size: 0.88rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.portfolio-grid .product-card { min-height: 280px; }
.callout { padding: 28px; border: 1px solid rgba(70,183,110,0.34); border-radius: var(--radius); background: rgba(70,183,110,0.08); color: #d8e4da; }
.callout p { margin: 0; line-height: 1.75; }

.journey { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 74px; align-items: start; }
.journey-sidebar { position: sticky; top: 100px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.journey-sidebar p { color: var(--muted); font-size: 0.9rem; }
.journey-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.journey-item { display: grid; grid-template-columns: 76px 1fr; gap: 22px; padding: 28px; background: var(--ink-soft); }
.journey-item span { color: var(--green-bright); font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; }
.journey-item h3 { margin: 0 0 7px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.52rem; font-weight: 400; }
.journey-item p { margin: 0; color: var(--muted); }
.check-list { display: grid; gap: 10px; padding: 0; margin: 28px 0; list-style: none; }
.check-list li { padding-left: 24px; position: relative; color: #d1d1cc; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-bright); }

/* Footer */
.site-footer { padding: 46px 0 30px; border-top: 1px solid var(--line); background: #060606; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer-brand p, .footer-column a, .footer-copy { color: var(--muted-dark); font-size: 0.82rem; }
.footer-brand p { max-width: 310px; margin: 14px 0 0; line-height: 1.65; }
.footer-column { display: grid; align-content: start; gap: 9px; }
.footer-column strong { margin-bottom: 4px; color: var(--paper); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-column a { text-decoration: none; }
.footer-column a:hover { color: var(--green-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 45px; padding-top: 20px; border-top: 1px solid var(--line); }
.footer-bottom a { color: var(--muted-dark); font-size: 0.76rem; text-decoration: none; }
.footer-cookie-manage { appearance: none; border: 0; background: none; padding: 0; color: var(--muted-dark); font: inherit; font-size: 0.76rem; cursor: pointer; text-decoration: underline; text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 3px; }
.footer-cookie-manage:hover { color: var(--green-bright); }

/* Privacy */
.privacy-layout { display: grid; grid-template-columns: 220px minmax(0,760px); gap: clamp(40px,7vw,100px); align-items: start; }
.privacy-nav { position: sticky; top: 104px; display: grid; gap: 9px; font-size: 0.82rem; }
.privacy-nav strong { color: var(--paper); font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 5px; }
.privacy-nav a { color: var(--muted-dark); text-decoration: none; }
.privacy-nav a:hover { color: var(--green-bright); }
.privacy-copy { max-width: 760px; }
.privacy-copy h2 { font: 600 clamp(1.75rem,3vw,2.4rem)/1.1 "Playfair Display",Georgia,serif; color: var(--paper); margin: 52px 0 15px; }
.privacy-copy h2:first-of-type { margin-top: 0; }
.privacy-copy p, .privacy-copy li { color: var(--muted-dark); font-size: 1rem; line-height: 1.75; }
.privacy-copy p + p { margin-top: 14px; }
.privacy-copy ul { padding-left: 22px; margin: 16px 0; }
.privacy-copy a, .privacy-copy .text-link { color: var(--green-bright); text-underline-offset: 3px; }
.privacy-copy .text-link { border: 0; background: none; font: inherit; cursor: pointer; padding: 0; text-decoration: underline; }
.privacy-copy strong { color: var(--paper); }

@media (max-width: 980px) {
  .hero-grid, .split, .journey { grid-template-columns: 1fr; gap: 42px; }
  .hero-mark { min-height: 250px; }
  .three-grid, .portfolio-preview { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: 1fr; }
  .model-result { grid-column: auto; }
  .capability-grid { grid-template-columns: repeat(3, 1fr); }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
  .cluster-section { grid-template-columns: 1fr; gap: 22px; }
  .cluster-title { position: static; }
  .journey-sidebar { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1160px); }
  .section { padding: 68px 0; }
  .site-nav { position: sticky; }
  .nav-inner { min-height: 62px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .mobile-panel { display: block; max-height: 0; overflow: hidden; border-top: 0 solid var(--line); background: var(--ink-soft); transition: max-height 280ms var(--ease-out), border-width 280ms var(--ease-out); }
  .mobile-panel.open { max-height: 380px; border-top-width: 1px; }
  .mobile-panel .container { display: grid; gap: 2px; padding: 12px 0 18px; }
  .mobile-panel a { padding: 11px 0; color: var(--muted); font-size: 0.93rem; text-decoration: none; }
  .mobile-panel a:last-child { color: var(--green-bright); font-weight: 500; }
  .hero { min-height: auto; padding: 46px 0 34px; }
  .hero + .section { padding-top: 52px; padding-bottom: 64px; }
  .hero-grid { gap: 24px; }
  .display { font-size: clamp(44px, 12.2vw, 52px); line-height: 0.98; }
  .hero-copy { margin: 18px 0 22px; font-size: 1rem; }
  .proofline { margin-top: 20px; font-size: 0.63rem; line-height: 1.5; }
  .hero-mark { min-height: 150px; padding: 20px; }
  .hero-mark { animation-name: leonis-brain-breathe-mobile; }
  .hero-mark::before { top: 22px; right: 20px; font-size: 3rem; }
  .mark-copy { max-width: 255px; font-size: 1.15rem; }
  .actions, .actions .button { width: 100%; }
  .three-grid, .portfolio-preview, .portfolio-grid, .cta-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; }
  .brain-panel { padding: 28px 22px; }
  .cycle { grid-template-columns: 1fr; }
  .cycle span { min-height: 56px; }
  .cycle span:not(:last-child)::after { display: none; }
  .capability-grid, .method-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-item { grid-template-columns: 48px 1fr; gap: 12px; padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-bottom { flex-direction: column; }
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-nav { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); padding: 18px; border: 1px solid var(--line); border-radius: 14px; }
  .privacy-nav strong { grid-column: 1 / -1; }
}

@keyframes leonis-brain-breathe-mobile {
  0%, 100% { transform: scale(1); box-shadow: 0 24px 64px rgba(0,0,0,.22), 0 0 0 rgba(70,183,110,0); }
  48% { transform: scale(1.008); box-shadow: 0 26px 68px rgba(0,0,0,.27), 0 0 18px rgba(70,183,110,.10); }
  56% { transform: scale(1.004); box-shadow: 0 25px 66px rgba(0,0,0,.24), 0 0 10px rgba(70,183,110,.06); }
}

@media (max-width: 380px) { .capability-grid, .method-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .hero-mark, .hero-mark::before, .hero-mark::after { animation: none !important; transform: none !important; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 1ms !important; } }
