:root {
  --ink: #0a1512;
  --ink-2: #13211d;
  --paper: #f6f7f2;
  --white: #ffffff;
  --muted: #62706a;
  --muted-light: #aebbb5;
  --line: #dfe5df;
  --line-dark: rgba(255, 255, 255, 0.12);
  --lime: #c9f57a;
  --lime-bright: #bdf05e;
  --teal: #5be3ce;
  --blue: #79aaf7;
  --danger: #ff9a8b;
  --shadow: 0 30px 80px rgba(6, 22, 16, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, .brand, .price, .plan-name {
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.04em;
}

h1 { font-size: clamp(3.6rem, 6.7vw, 6.5rem); line-height: .92; font-weight: 700; }
h2 { font-size: clamp(2.65rem, 5vw, 4.8rem); line-height: .98; font-weight: 700; }
h3 { font-size: 1.45rem; line-height: 1.15; }
h1 em, h2 em { color: var(--muted); font-style: normal; font-weight: 400; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 120px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid #17684f; outline-offset: 3px; box-shadow: 0 0 0 6px rgba(201, 245, 122, .92); }

.announcement { color: #d5dfda; background: #06100d; font-size: .76rem; letter-spacing: .01em; }
.announcement__inner { min-height: 34px; display: flex; justify-content: center; align-items: center; gap: 28px; }
.announcement__inner > span { display: inline-flex; align-items: center; gap: 8px; }
.announcement a { color: var(--lime); font-weight: 700; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(91, 227, 206, .11); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 242, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-color: rgba(10, 21, 18, .08); box-shadow: 0 8px 30px rgba(6, 20, 15, .05); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.14rem; letter-spacing: -.05em; font-weight: 800; white-space: nowrap; }
.brand strong { color: #568e28; font-size: .62em; letter-spacing: .03em; vertical-align: super; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: var(--ink); transform: rotate(-3deg); }
.brand-mark span { position: relative; width: 15px; height: 15px; border: 4px solid var(--lime); border-left-width: 6px; border-radius: 4px 8px 8px 4px; }
.brand-mark span::after { content: ""; position: absolute; width: 7px; height: 3px; right: -6px; bottom: -4px; border-radius: 4px; background: var(--teal); transform: rotate(45deg); }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; color: #3f4c47; font-size: .88rem; font-weight: 650; }
.primary-nav a { position: relative; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--ink); transition: right .25s var(--ease); }
.primary-nav a:hover::after { right: 0; }
.nav-toggle { display: none; }

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 0 17px; border-radius: 10px; font-size: .8rem; }
.button--dark { color: var(--white); background: var(--ink); box-shadow: 0 7px 16px rgba(10, 21, 18, .14); }
.button--dark:hover { background: #1a2a25; box-shadow: 0 10px 24px rgba(10, 21, 18, .2); }
.button--primary { color: var(--ink); background: var(--lime); box-shadow: 0 10px 26px rgba(151, 203, 74, .22); }
.button--primary:hover { background: var(--lime-bright); box-shadow: 0 13px 30px rgba(151, 203, 74, .3); }
.button--ghost { color: var(--ink); background: rgba(255, 255, 255, .68); border-color: var(--line); }
.button--ghost:hover, .button--outline:hover { background: var(--white); border-color: #aab7b0; }
.button--outline { border-color: #bfc9c3; background: transparent; }
.button--full { width: 100%; }
.play-icon { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--white); font-size: .55rem; box-shadow: 0 3px 9px rgba(0, 0, 0, .08); }
.text-link { display: inline-flex; gap: 9px; color: var(--ink); font-weight: 800; border-bottom: 1px solid var(--ink); }

.eyebrow { margin-bottom: 20px; color: #607069; font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { margin-right: 10px; padding: 7px 10px; border-radius: 50px; color: var(--ink); background: rgba(201, 245, 122, .75); letter-spacing: .04em; }
.eyebrow--light { color: #aab8b2; }

.hero { position: relative; min-height: 790px; display: flex; align-items: center; padding-top: 92px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(12, 31, 24, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(12, 31, 24, .03) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow--one { width: 560px; height: 560px; right: -180px; top: -180px; background: radial-gradient(circle, rgba(91, 227, 206, .17), transparent 68%); }
.hero-glow--two { width: 500px; height: 500px; left: 15%; bottom: -380px; background: radial-gradient(circle, rgba(201, 245, 122, .22), transparent 65%); }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 42px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 18px; }
.hero-copy h1 { margin: 0 0 28px; max-width: 680px; }
.hero-copy h1 em { display: block; color: #74817b; }
.hero-lead { max-width: 590px; margin-bottom: 31px; color: #53615b; font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-assurances { margin: 25px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; list-style: none; color: #68736e; font-size: .72rem; }
.hero-assurances span { color: #4e9023; font-weight: 900; }

.product-visual { position: relative; min-width: 680px; margin-right: -180px; padding: 42px 0 42px 34px; perspective: 1100px; }
.concept-label { position: absolute; z-index: 5; top: 53px; right: 16px; padding: 7px 10px; border: 1px solid rgba(201, 245, 122, .55); border-radius: 7px; color: #f3f7f4; background: rgba(6, 16, 13, .94); font-size: .65rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; backdrop-filter: blur(8px); }
.app-window { position: relative; z-index: 2; width: 740px; min-height: 506px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 26px; color: #e7f0eb; background: #0c1915; box-shadow: -30px 35px 85px rgba(6, 19, 14, .28), inset 0 1px 0 rgba(255, 255, 255, .08); transform: rotateY(-4deg) rotateX(1deg); }
.app-topbar { height: 58px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, .07); background: #0a1512; }
.app-brand { display: flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 800; }
.mini-mark { width: 18px; height: 18px; border: 5px solid var(--lime); border-radius: 5px 9px 9px 5px; }
.app-top-actions { display: flex; align-items: center; gap: 10px; }
.app-top-actions > span:not(.avatar) { width: 25px; height: 25px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 7px; }
.avatar { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: #0a1512; background: var(--lime); font-size: .48rem; font-weight: 900; }
.app-layout { display: grid; grid-template-columns: 61px 1fr; min-height: 448px; }
.app-sidebar { padding: 19px 0 14px; display: flex; flex-direction: column; align-items: center; gap: 12px; border-right: 1px solid rgba(255, 255, 255, .06); }
.side-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 8px; color: #64746d; font-size: .8rem; }
.side-icon.is-active { color: var(--lime); background: rgba(201, 245, 122, .12); }
.side-icon--bottom { margin-top: auto; }
.app-content { padding: 25px 27px; }
.app-heading { margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.app-heading > div { display: flex; flex-direction: column; }
.app-heading small { color: #75857e; font-size: .55rem; }
.app-heading strong { color: #f0f5f2; font-size: .95rem; }
.last-scan { padding: 6px 9px; display: inline-flex; align-items: center; gap: 6px; border-radius: 6px; color: #98aaa2; background: rgba(255, 255, 255, .04); font-size: .53rem; }
.last-scan i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.app-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 13px; }
.score-card, .resource-card, .recommendations-card { border: 1px solid rgba(255, 255, 255, .07); border-radius: 14px; background: rgba(255, 255, 255, .035); }
.score-card { min-height: 151px; padding: 20px; display: flex; align-items: center; gap: 18px; }
.score-ring { flex: 0 0 auto; width: 91px; height: 91px; padding: 7px; border-radius: 50%; background: conic-gradient(var(--lime) 0 82%, #26352f 82% 100%); }
.score-ring > span { width: 100%; height: 100%; display: grid; place-content: center; text-align: center; border-radius: 50%; background: #12221c; }
.score-ring strong { display: block; font-size: 1.75rem; line-height: 1; }
.score-ring small { color: #82918b; font-size: .42rem; }
.card-label { display: block; margin-bottom: 8px; color: #73837b; font-size: .5rem; text-transform: uppercase; letter-spacing: .08em; }
.score-card > div > strong { display: block; margin-bottom: 5px; font-size: .78rem; }
.score-card p { margin: 0; color: #819189; font-size: .56rem; }
.resource-card { padding: 17px 18px; }
.resource-head { margin-bottom: 15px; display: flex; justify-content: space-between; color: #d3ded9; font-size: .59rem; font-weight: 700; }
.resource-head small { color: var(--teal); font-size: .45rem; }
.bars { display: grid; gap: 12px; }
.bars > div { display: grid; grid-template-columns: 30px 1fr 26px; align-items: center; gap: 8px; color: #83938c; font-size: .47rem; }
.bars i { height: 4px; overflow: hidden; border-radius: 5px; background: #2b3a34; }
.bars b { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--teal), var(--lime)); }
.bars em { font-style: normal; text-align: right; }
.recommendations-card { margin-top: 13px; overflow: hidden; }
.recommendations-head { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.recommendations-head > div { display: flex; align-items: center; gap: 9px; }
.recommendations-head div > span:not(.spark) { display: flex; flex-direction: column; }
.recommendations-head strong { font-size: .61rem; }
.recommendations-head small { color: #708179; font-size: .45rem; }
.spark { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: var(--ink); background: var(--lime); font-size: .72rem; }
.recommendations-head .mock-link { color: var(--lime); font-size: .46rem; }
.recommendation-row { min-height: 62px; padding: 10px 16px; display: grid; grid-template-columns: 32px 1fr 50px 10px; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.recommendation-row:last-child { border-bottom: 0; }
.rec-icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 8px; font-size: .7rem; }
.rec-icon--green { color: var(--lime); background: rgba(201, 245, 122, .09); }
.rec-icon--blue { color: #78b0fa; background: rgba(120, 176, 250, .09); }
.recommendation-row > span:nth-child(2) { display: flex; flex-direction: column; }
.recommendation-row strong { font-size: .55rem; }
.recommendation-row small { color: #708179; font-size: .44rem; }
.impact { display: flex; flex-direction: column; }
.impact b { color: #d4dfda; font-size: .5rem; }
.chevron { color: #6e7e77; }
.floating-note { position: absolute; z-index: 3; padding: 12px 15px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(13, 31, 24, .09); border-radius: 12px; background: rgba(255, 255, 255, .92); box-shadow: 0 17px 40px rgba(5, 21, 15, .13); backdrop-filter: blur(12px); }
.floating-note--left { left: -4px; bottom: 68px; }
.floating-note--right { right: 30px; top: 17px; }
.float-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; color: #4e7c26; background: #ecf8d8; }
.float-icon--teal { color: #1a7d70; background: #dff8f3; }
.floating-note > span:last-child { display: flex; flex-direction: column; }
.floating-note small { color: #59675f; font-size: .48rem; }
.floating-note strong { font-size: .6rem; }
.visual-orbit { position: absolute; border: 1px solid rgba(10, 21, 18, .1); border-radius: 50%; }
.visual-orbit--one { width: 520px; height: 520px; right: 20px; top: 20px; }
.visual-orbit--two { width: 360px; height: 360px; right: 100px; top: 100px; border-style: dashed; }

.trust-bar { position: relative; z-index: 3; padding: 26px 0; color: #c9d3ce; background: var(--ink); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 58px; padding: 0 26px; display: flex; align-items: center; gap: 13px; border-right: 1px solid rgba(255, 255, 255, .09); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--lime); background: rgba(201, 245, 122, .09); }
.trust-grid div > span:last-child { display: flex; flex-direction: column; }
.trust-grid strong { color: #edf3f0; font-size: .78rem; }
.trust-grid small { color: #819189; font-size: .62rem; }

.section-heading { margin-bottom: 62px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading--split { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 80px; }
.section-heading--split p:last-child { margin: 0 0 8px; color: var(--muted); line-height: 1.75; }
.section-heading--center { max-width: 750px; margin-inline: auto; text-align: center; }
.section-heading--center > p:last-child { max-width: 640px; margin: 24px auto 0; color: var(--muted); }

.features { background: #eef1eb; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 390px; padding: 34px; overflow: hidden; border: 1px solid #dce3dc; border-radius: var(--radius); background: rgba(255, 255, 255, .76); }
.feature-card--large { grid-column: 1 / -1; min-height: 390px; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 70px; }
.feature-card--wide { min-height: 330px; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 24px; }
.feature-card--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.feature-card--accent { background: #e2fac0; border-color: #ceeaaa; }
.feature-number { position: absolute; top: 27px; right: 29px; color: #65736c; font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.feature-card--dark .feature-number { color: #8a9992; }
.feature-card h3 { margin-bottom: 13px; font-size: 1.55rem; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }
.feature-card--dark p { color: #95a59e; }
.feature-icon { width: 52px; height: 52px; margin: 68px 0 68px; display: grid; place-items: center; border-radius: 16px; font-size: 1.25rem; }
.feature-icon--lime { color: #304d12; background: #e8fac9; box-shadow: 0 12px 30px rgba(126, 180, 42, .14); }
.feature-icon--teal { color: #14675d; background: #dbf7f1; box-shadow: 0 12px 30px rgba(47, 160, 146, .13); }
.feature-copy { padding-right: 10px; }
.feature-copy .feature-number, .feature-card--wide .feature-number { position: static; display: inline-block; margin-bottom: 68px; }
.feature-copy h3 { font-size: 2.15rem; }
.scan-visual { padding: 28px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 18px; background: rgba(255, 255, 255, .045); box-shadow: 0 24px 40px rgba(0, 0, 0, .15); }
.scan-top { margin-bottom: 14px; display: flex; justify-content: space-between; color: #ccd6d1; font-size: .72rem; }
.scan-top span { display: flex; align-items: center; gap: 9px; }
.scan-top i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(201, 245, 122, .09); }
.scan-top b { color: var(--lime); }
.scan-line { height: 6px; overflow: hidden; border-radius: 10px; background: #25342e; }
.scan-line b { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--teal), var(--lime)); }
.scan-items { margin-top: 23px; display: grid; gap: 9px; }
.scan-items span { padding: 10px 12px; display: flex; align-items: center; gap: 9px; border-radius: 8px; color: #aebdb6; background: rgba(255, 255, 255, .04); font-size: .68rem; }
.scan-items i { color: var(--lime); font-style: normal; }
.scan-items .is-scanning { color: #eef5f1; background: rgba(201, 245, 122, .08); }
.mini-chat { position: absolute; left: 34px; right: 34px; bottom: 30px; padding: 16px; display: flex; gap: 12px; border-radius: 13px; background: #f1f7e8; }
.mini-chat p { color: #4e5c56; font-size: .7rem; line-height: 1.5; }
.mini-ai { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: var(--ink); background: var(--lime); }
.clean-meter { position: absolute; left: 34px; right: 34px; bottom: 38px; }
.clean-meter span { display: block; margin-bottom: 11px; color: #4f5e57; font-size: .75rem; }
.clean-meter span b { color: var(--ink); font-size: 1.55rem; }
.clean-meter > i { height: 7px; display: block; overflow: hidden; border-radius: 6px; background: #e2e7e1; }
.clean-meter > i b { width: 74%; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--teal), #98dce2); }
.clean-meter small { display: block; margin-top: 11px; color: #96a29c; font-size: .58rem; }
.startup-list { display: grid; gap: 8px; }
.startup-list > div { padding: 11px; display: grid; grid-template-columns: 35px 1fr 31px; align-items: center; gap: 10px; border: 1px solid #e4e8e3; border-radius: 10px; background: rgba(255, 255, 255, .7); }
.app-dot { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; color: white; font-size: .65rem; font-weight: 900; }
.app-dot--blue { background: #75a5ee; }.app-dot--purple { background: #9a87db; }.app-dot--orange { background: #e4a36c; }
.startup-list > div > span:nth-child(2) { display: flex; flex-direction: column; }
.startup-list b { font-size: .66rem; }.startup-list small { color: #89958f; font-size: .52rem; }
.toggle { position: relative; width: 28px; height: 17px; border-radius: 20px; background: #d2d9d4; }
.toggle::after { content: ""; position: absolute; width: 11px; height: 11px; top: 3px; left: 3px; border-radius: 50%; background: white; box-shadow: 0 1px 3px rgba(0, 0, 0, .18); }
.toggle.is-on { background: var(--lime); }.toggle.is-on::after { left: 14px; }
.history-visual { position: relative; display: grid; gap: 17px; }
.history-visual > div { position: relative; z-index: 2; padding: 13px; display: grid; grid-template-columns: 29px 1fr auto; align-items: center; gap: 9px; border-radius: 10px; background: rgba(255, 255, 255, .68); }
.history-visual i { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: #547a2f; background: #d8f4ac; font-style: normal; font-size: .65rem; }
.history-visual div > span { display: flex; flex-direction: column; }
.history-visual b { font-size: .65rem; }.history-visual small { color: #86947c; font-size: .5rem; }.history-visual em { color: #5f793e; font-size: .5rem; font-style: normal; font-weight: 800; }

.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: 1fr 32px 1fr 32px 1fr; align-items: center; gap: 18px; }
.process-card { min-height: 360px; padding: 27px; display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, .52); }
.process-step { align-self: flex-end; color: #9aa69f; font-size: .61rem; font-weight: 850; letter-spacing: .1em; }
.process-icon { height: 120px; display: grid; place-items: center; }
.process-card h3 { margin: 15px 0 12px; }
.process-card p { margin-bottom: 0; color: var(--muted); font-size: .83rem; }
.process-arrow { color: #a9b4ae; font-size: 1.6rem; text-align: center; }
.radar { position: relative; width: 82px; height: 82px; border: 1px solid #bfcac3; border-radius: 50%; background: radial-gradient(circle, var(--lime) 0 4px, transparent 5px), repeating-radial-gradient(circle, transparent 0 17px, rgba(10, 21, 18, .11) 18px 19px); }
.radar::before { content: ""; position: absolute; inset: 50% 0 auto 50%; height: 1px; background: #94a199; transform-origin: left; transform: rotate(-35deg); }
.radar i { position: absolute; width: 9px; height: 9px; right: 16px; top: 20px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(91, 227, 206, .14); }
.brain-icon, .check-icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 24px; font-size: 2rem; transform: rotate(-4deg); }
.brain-icon { color: #1c461d; background: var(--lime); box-shadow: 9px 9px 0 #e1e8da; }
.check-icon { color: #16685f; background: #caf5ec; box-shadow: 9px 9px 0 #e1e8da; }

.transparency { padding-top: 10px; }
.transparency-panel { position: relative; padding: 68px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; overflow: hidden; border-radius: var(--radius-lg); color: white; background: var(--ink); }
.transparency-panel::before { content: ""; position: absolute; width: 480px; height: 480px; left: -300px; bottom: -320px; border-radius: 50%; background: rgba(201, 245, 122, .12); filter: blur(4px); }
.transparency-copy { position: relative; z-index: 1; }
.transparency-copy h2 { margin-bottom: 25px; }
.transparency-copy h2 em { color: #83928b; display: block; }
.transparency-copy > p:not(.eyebrow) { color: #9eada6; }
.transparency-copy a { display: inline-flex; gap: 10px; color: var(--lime); font-size: .83rem; font-weight: 800; }
.do-dont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.truth-card { min-height: 310px; padding: 25px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 18px; background: rgba(255, 255, 255, .045); }
.truth-card--yes { background: rgba(201, 245, 122, .07); }
.truth-label { display: flex; align-items: center; gap: 9px; color: #e6efeb; font-size: .76rem; font-weight: 800; }
.truth-label i { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; font-style: normal; }
.truth-card--yes .truth-label i { color: var(--ink); background: var(--lime); }
.truth-card--no .truth-label i { color: #ffc7bd; background: rgba(255, 154, 139, .14); }
.truth-card ul { margin: 28px 0 0; padding: 0; display: grid; gap: 18px; list-style: none; color: #9caaa4; font-size: .73rem; }
.truth-card li { padding-left: 16px; position: relative; }
.truth-card li::before { content: ""; position: absolute; width: 4px; height: 4px; left: 0; top: .7em; border-radius: 50%; background: #6b7b73; }

.pricing { background: #eef1eb; }
.billing-toggle { width: max-content; margin: 31px auto 0; padding: 4px; display: flex; border: 1px solid #d8dfd8; border-radius: 11px; background: #e4e8e2; }
.billing-toggle button { min-width: 108px; min-height: 38px; padding: 0 13px; border: 0; border-radius: 8px; color: #52615a; background: transparent; font-size: .72rem; font-weight: 750; cursor: pointer; }
.billing-toggle button.is-active { color: var(--ink); background: white; box-shadow: 0 4px 12px rgba(10, 21, 18, .08); }
.billing-toggle span { margin-left: 4px; padding: 3px 5px; border-radius: 4px; color: #466c1e; background: #e2f6bd; font-size: .47rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 16px; }
.price-card { position: relative; padding: 33px; border: 1px solid #d8dfd9; border-radius: var(--radius); background: rgba(255, 255, 255, .68); }
.price-card--popular { color: white; background: var(--ink); border-color: var(--ink); box-shadow: 0 26px 55px rgba(8, 24, 18, .16); transform: translateY(-10px); }
.popular-badge { position: absolute; top: 0; right: 25px; padding: 7px 12px; border-radius: 0 0 9px 9px; color: var(--ink); background: var(--lime); font-size: .57rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.price-card__top { min-height: 142px; }
.plan-icon { width: 39px; height: 39px; margin-bottom: 22px; display: grid; place-items: center; border-radius: 11px; color: #4d6c2f; background: #e4f2d3; font-weight: 900; }
.plan-icon--accent { color: var(--ink); background: var(--lime); }
.plan-name { display: block; margin: 0; font-size: 1.42rem; font-weight: 800; }
.price-card__top p { margin: 8px 0 0; color: #4f5e57; font-size: .74rem; }
.price-card--popular .price-card__top p { color: #90a098; }
.price { margin: 26px 0 3px; display: flex; align-items: flex-start; }
.price > span { margin: 6px 4px 0 0; color: #495851; font-size: .65rem; font-weight: 800; }
.price strong { font-size: 3rem; line-height: 1; letter-spacing: -.06em; }
.price small { align-self: flex-end; margin: 0 0 5px 5px; color: #4f5e57; font-family: Inter, "Segoe UI", sans-serif; font-size: .62rem; }
.billing-note { min-height: 37px; margin-bottom: 20px; color: #53615b; font-size: .61rem; }
.price-card--popular .button--primary { box-shadow: none; }
.price-card--popular .price > span, .price-card--popular .price small, .price-card--popular .billing-note { color: #aab7b1; }
.plan-legal { min-height: 45px; margin: 11px 2px 0; color: #586760; font-size: .56rem; line-height: 1.55; }
.plan-legal a { color: #365d48; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.price-card--popular .plan-legal { color: #a9b6b0; }
.price-card--popular .plan-legal a { color: var(--lime); }
.plan-features { margin: 28px 0 0; padding: 25px 0 0; display: grid; gap: 14px; border-top: 1px solid #dce2dd; list-style: none; color: #53605a; font-size: .73rem; }
.price-card--popular .plan-features { color: #aab7b1; border-color: rgba(255, 255, 255, .1); }
.plan-features span { margin-right: 7px; color: #538f2b; font-weight: 900; }
.price-card--popular .plan-features span { color: var(--lime); }
.purchase-disclosure { max-width: 900px; margin: 34px auto 0; padding: 18px 22px; display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 15px; border: 1px solid #d7dfd8; border-radius: 14px; background: rgba(255, 255, 255, .58); }
.shield-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: #467f22; background: #e2f2cf; font-weight: 900; }
.purchase-disclosure p { margin: 0; color: #68756f; font-size: .68rem; line-height: 1.55; }
.purchase-disclosure p strong { color: var(--ink); }
.purchase-disclosure a { color: #48682d; font-size: .65rem; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }

.requirements-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 80px; }
.requirements-copy h2 { margin-bottom: 23px; }
.requirements-copy p:not(.eyebrow) { margin-bottom: 26px; color: var(--muted); }
.spec-card { padding: 40px; display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.windows-mark { width: 110px; height: 110px; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; transform: perspective(300px) rotateY(-8deg); }
.windows-mark i { background: linear-gradient(135deg, var(--teal), #77cde5); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; }
.spec-grid > div { display: flex; flex-direction: column; }
.spec-grid small { margin-bottom: 3px; color: #5b6962; font-size: .56rem; text-transform: uppercase; letter-spacing: .08em; }
.spec-grid strong { font-size: .8rem; }.spec-grid span { color: #56645d; font-size: .62rem; }

.faq { background: white; }
.faq-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 100px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro h2 { margin-bottom: 23px; }
.faq-intro > p:not(.eyebrow) { margin-bottom: 27px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 25px 48px 25px 0; color: #23312c; font-size: .92rem; font-weight: 750; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; width: 14px; height: 1.5px; right: 4px; top: 50%; background: var(--ink); transition: transform .25s; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 690px; margin: -4px 0 25px; color: var(--muted); font-size: .82rem; line-height: 1.75; }

.final-cta { padding: 0 0 34px; background: white; }
.final-cta__inner { position: relative; padding: 90px 30px; overflow: hidden; border-radius: var(--radius-lg); color: white; background: var(--ink); text-align: center; }
.final-cta__inner > * { position: relative; z-index: 2; }
.final-cta h2 { max-width: 720px; margin: 0 auto 22px; }
.final-cta h2 em { color: #87958f; }
.final-cta p:not(.eyebrow) { margin-bottom: 28px; color: #9ca9a3; }
.final-cta small { display: block; margin-top: 18px; color: #788880; font-size: .6rem; }
.cta-glow { position: absolute; z-index: 0; width: 620px; height: 620px; left: 50%; top: -445px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 245, 122, .28), transparent 68%); transform: translateX(-50%); }

.site-footer { padding: 76px 0 20px; color: #9ba9a2; background: #06100d; }
.footer-main { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.brand--light { color: white; }
.footer-brand p { max-width: 300px; margin: 20px 0 9px; color: #abb8b2; font-size: .83rem; }
.footer-platform { color: #84938b; font-size: .62rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 8px; color: #e4ece8; font-size: .72rem; }
.footer-links a { color: #a0aca6; font-size: .67rem; transition: color .2s; }
.footer-links a:hover { color: var(--lime); }
.footer-disclaimer { margin-top: 57px; padding: 18px 0; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255, 255, 255, .07); border-bottom: 1px solid rgba(255, 255, 255, .07); }
.footer-disclaimer p { margin: 0; color: #87958d; font-size: .57rem; }
.footer-bottom { padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; color: #839189; font-size: .58rem; }
.footer-bottom a { color: #85968d; }

.checkout-dialog { width: min(520px, calc(100% - 30px)); padding: 38px; border: 0; border-radius: 24px; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0, 0, 0, .28); }
.checkout-dialog::backdrop { background: rgba(5, 15, 11, .66); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 17px; right: 17px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: white; cursor: pointer; }
.dialog-icon { width: 48px; height: 48px; margin-bottom: 24px; display: grid; place-items: center; border-radius: 14px; color: var(--ink); background: var(--lime); font-weight: 900; }
.checkout-dialog h2 { margin-bottom: 10px; font-size: 2.2rem; }
.dialog-price { color: var(--muted); }.dialog-price strong { color: var(--ink); font-size: 1.4rem; }
.checkout-dialog ul { margin: 23px 0; padding: 20px; display: grid; gap: 11px; border-radius: 13px; background: white; list-style: none; color: #52605a; font-size: .74rem; }
.checkout-dialog li span { margin-right: 8px; color: #528a2f; font-weight: 900; }
.dialog-legal { color: #4f5d56; font-size: .67rem; }
.dialog-legal a { text-decoration: underline; }
.checkout-dialog > small { display: block; margin-top: 13px; color: #58665f; font-size: .56rem; text-align: center; }

.legal-hero { padding: 90px 0 65px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #f6f7f2 55%, #eaf3df); }
.legal-hero__inner { max-width: 820px; }
.legal-hero h1 { margin-bottom: 23px; font-size: clamp(3rem, 6vw, 5.4rem); }
.legal-hero p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 1.02rem; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 15px; color: #59685f; font-size: .65rem; }
.legal-layout { padding: 75px 0 110px; display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: 70px; }
.legal-nav { position: sticky; top: 112px; align-self: start; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, .6); }
.legal-nav strong { display: block; margin-bottom: 10px; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.legal-nav a { display: block; padding: 6px 0; color: #52615a; font-size: .67rem; }
.legal-nav a:hover { color: var(--ink); }
.legal-content h2 { margin: 54px 0 18px; font-size: 1.85rem; line-height: 1.15; letter-spacing: -.035em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 32px 0 12px; font-size: 1.07rem; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #58665f; font-size: .86rem; line-height: 1.82; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li + li { margin-top: 7px; }
.legal-content a { color: #396d4f; text-decoration: underline; text-underline-offset: 3px; }
.legal-callout { margin: 28px 0; padding: 22px; border-left: 4px solid var(--lime); border-radius: 0 12px 12px 0; background: #edf5df; }
.legal-callout p { margin: 0; color: #425047; }
.legal-contact { margin-top: 48px; padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.legal-contact h3 { margin-top: 0; }

.contact-section { padding: 90px 0 120px; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.contact-aside h1 { margin-bottom: 22px; font-size: clamp(3rem, 5.5vw, 5rem); }
.contact-aside > p { color: var(--muted); }
.contact-methods { margin-top: 37px; display: grid; gap: 14px; }
.contact-method { padding: 18px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.contact-method > span:first-child { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #3c702a; background: #e7f4d5; }
.contact-method > span:last-child { display: flex; flex-direction: column; }
.contact-method small { color: #59675f; font-size: .58rem; }
.contact-method strong { font-size: .73rem; }
.contact-form { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.contact-form h2 { margin-bottom: 8px; font-size: 2rem; }
.contact-form > p { margin-bottom: 28px; color: var(--muted); font-size: .8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #38463f; font-size: .66rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #7f8e86; border-radius: 10px; color: var(--ink); background: #f9faf7; outline: none; transition: border-color .2s, box-shadow .2s; }
.field input, .field select { height: 48px; padding: 0 13px; }
.field textarea { min-height: 145px; padding: 13px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #64716b; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #2f6b4f; outline: 2px solid #2f6b4f; outline-offset: 2px; box-shadow: 0 0 0 4px rgba(47, 107, 79, .18); }
.form-consent { margin: 20px 0; display: flex; align-items: flex-start; gap: 10px; color: #68756f; font-size: .62rem; }
.form-consent input { margin-top: 3px; accent-color: #6d9a42; }
.form-consent a { text-decoration: underline; }
.form-note { margin: 13px 0 0; color: #59675f; font-size: .56rem; text-align: center; }
.support-info { padding: 0 0 110px; }
.support-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-card { padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .55); }
.support-card span { width: 38px; height: 38px; margin-bottom: 27px; display: grid; place-items: center; border-radius: 11px; background: #e5f1d4; }
.support-card h3 { font-size: 1rem; }.support-card p { margin: 0; color: var(--muted); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .primary-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 85px; }
  .hero-copy { max-width: 790px; }
  .product-visual { min-width: 0; width: 100%; margin: 0; padding-left: 40px; }
  .app-window { width: min(100%, 820px); margin-inline: auto; }
  .floating-note--right { right: 3%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 15px; margin-top: 15px; }
  .section-heading--split { gap: 35px; }
  .feature-card--wide { grid-template-columns: 1fr; }
  .feature-card--wide .feature-number { margin-bottom: 30px; }
  .transparency-panel { padding: 50px; gap: 45px; }
  .requirements-grid { gap: 45px; }
  .faq-grid { gap: 55px; }
}

@media (max-width: 860px) {
  .announcement__inner { justify-content: space-between; }
  .announcement a { display: none; }
  .nav-wrap { min-height: 67px; }
  .nav-cta { display: none; }
  .nav-toggle { margin-left: auto; width: 42px; height: 42px; padding: 0; display: grid; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 10px; background: white; }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 2px; display: block; background: var(--ink); transition: transform .25s; }
  .nav-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 67px 0 auto; height: calc(100vh - 67px); padding: 45px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 0; color: var(--ink); background: rgba(246, 247, 242, .98); visibility: hidden; pointer-events: none; transform: translateX(100%); transition: transform .35s var(--ease), visibility .35s; }
  .primary-nav.is-open { visibility: visible; pointer-events: auto; transform: translateX(0); }
  .primary-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .section-pad { padding: 90px 0; }
  .feature-card--large { grid-template-columns: 1fr; gap: 40px; }
  .feature-copy .feature-number { margin-bottom: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-arrow { transform: rotate(90deg); }
  .transparency-panel { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .price-card--popular { transform: none; }
  .requirements-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px 18px; }
  .legal-nav strong { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(3.15rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .hero { min-height: auto; padding: 68px 0 86px; }
  .hero-copy .eyebrow span { display: inline-block; margin-bottom: 10px; }
  .hero-lead { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-assurances { display: grid; gap: 8px; }
  .product-visual { margin-top: 25px; padding: 0; }
  .concept-label { top: 8px; left: 8px; right: auto; font-size: .58rem; }
  .app-window { width: 680px; transform: scale(.69); transform-origin: left top; }
  .product-visual { height: 370px; }
  .floating-note { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { padding: 13px 0; border-right: 0; border-top: 1px solid rgba(255, 255, 255, .09); }
  .trust-grid > div:first-child { border-top: 0; }
  .trust-grid > div:nth-child(n+3) { margin-top: 0; }
  .section-heading--split { grid-template-columns: 1fr; align-items: start; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 380px; padding: 27px; }
  .feature-card--large { grid-column: auto; }
  .feature-card--wide { min-height: auto; }
  .mini-chat, .clean-meter { left: 27px; right: 27px; }
  .transparency-panel { padding: 38px 22px; border-radius: 24px; }
  .do-dont-grid { grid-template-columns: 1fr; }
  .truth-card { min-height: auto; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; min-width: 0; }
  .price-card { padding: 27px; }
  .purchase-disclosure { grid-template-columns: 32px 1fr; }
  .purchase-disclosure a { grid-column: 2; }
  .spec-card { padding: 28px; grid-template-columns: 1fr; }
  .windows-mark { width: 78px; height: 78px; }
  .faq { padding-top: 80px; }
  .final-cta__inner { padding: 72px 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer-disclaimer, .footer-bottom { flex-direction: column; }
  .legal-hero { padding-top: 65px; }
  .legal-layout { padding-top: 45px; gap: 38px; }
  .legal-content h2 { font-size: 1.6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .contact-form { padding: 26px 20px; }
  .support-info-grid { grid-template-columns: 1fr; }
  .checkout-dialog { padding: 30px 22px; }
}

@media (max-width: 500px) {
  .app-window { transform: scale(.6); }
  .product-visual { height: 325px; }
}

@media (max-width: 430px) {
  .app-window { transform: scale(.57); }
  .product-visual { height: 305px; }
  .spec-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .app-window { transform: scale(.52); }
  .product-visual { height: 280px; }
}

@media (max-width: 370px) {
  .app-window { transform: scale(.48); }
  .product-visual { height: 255px; }
}

@media (max-width: 330px) {
  .app-window { transform: scale(.42); }
  .product-visual { height: 225px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
