/* Heebo, self-hosted (SIL Open Font License). One variable file per subset holds every weight used. */
@font-face { font-family: "Heebo"; font-style: normal; font-weight: 400 800; font-display: swap; src: url("/assets/fonts/heebo-hebrew.woff2") format("woff2"); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; }
@font-face { font-family: "Heebo"; font-style: normal; font-weight: 400 800; font-display: swap; src: url("/assets/fonts/heebo-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/* A local fallback sized close to Heebo, so text barely moves when the web font swaps in. */
@font-face { font-family: "Heebo Fallback"; src: local("Arial"), local("Helvetica"); size-adjust: 104%; ascent-override: 96%; descent-override: 26%; line-gap-override: 0%; }

:root {
  --ink: #161b22;
  --ink-2: #3f4753;
  --muted: #5f6773;
  --line: #e6e8ec;
  --bg: #ffffff;
  --soft: #f7f8fa;
  --orange: #f9a51a;
  --orange-2: #f58a07;
  --orange-soft: #fff5e3;
  --link: #9a5300;
  --ok: #107a3b;
  --error: #b42318;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(22, 27, 34, .08);
  --font: "Heebo", "Heebo Fallback", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 1.0625rem; line-height: 1.7; }
img, svg { max-width: 100%; display: block; }
a { color: var(--link); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--orange-2); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }

.container { width: min(1160px, 100% - 40px); margin-inline: auto; }
.container.narrow { width: min(820px, 100% - 40px); }
.skip-link { position: absolute; inset-inline-start: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; color: #fff; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 24px; border-radius: 12px; border: 2px solid transparent; font: inherit; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: var(--ink); box-shadow: 0 6px 18px rgba(245, 138, 7, .28); }
.btn-primary:hover { color: var(--ink); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(245, 138, 7, .34); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: .95rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }
.link-button { background: none; border: 0; padding: 0; font: inherit; color: var(--link); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(160%) blur(8px); border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 18px rgba(22, 27, 34, .05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 16px; }
.brand img { width: 83px; height: 76px; }
.site-nav { display: flex; align-items: center; gap: 12px; }
.site-nav a:not(.btn) { color: var(--ink-2); text-decoration: none; font-weight: 500; }
.site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav a:not(.btn) { position: relative; padding: 4px 10px; border-radius: 8px; transition: color .15s ease, background .15s ease; }
.site-nav a:not(.btn)::after { content: ""; position: absolute; inset-inline: 10px; bottom: 0; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-2)); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a.is-active { color: var(--ink); font-weight: 700; background: var(--orange-soft); }
.site-nav a.is-active::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; padding: 10px; cursor: pointer; border-radius: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* sections */
.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
/* the benefits section in the site's orange */
#benefits { background: radial-gradient(900px 480px at 100% 0%, rgba(249, 165, 26, .32), transparent 62%), radial-gradient(760px 460px at 0% 100%, rgba(245, 138, 7, .2), transparent 62%), linear-gradient(180deg, #fff9ef, #ffefd4); }
#benefits .eyebrow { background: #fff; }
/* benefit cards: an orange spotlight and rim follow the pointer, the card tilts toward it (main.js sets the vars) */
#benefits .card { position: relative; isolation: isolate; overflow: hidden; border-color: rgba(245, 138, 7, .12); box-shadow: 0 10px 28px rgba(122, 62, 0, .08); transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0px)); transition: transform .2s ease-out, box-shadow .3s ease; }
#benefits .card::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%), rgba(249, 165, 26, .2), transparent 62%); opacity: 0; transition: opacity .35s ease; }
#benefits .card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none; background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), var(--orange-2), transparent 70%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0); opacity: 0; transition: opacity .35s ease; }
#benefits .card:hover { --lift: -6px; box-shadow: 0 22px 44px rgba(122, 62, 0, .16); }
#benefits .card:hover::before, #benefits .card:hover::after { opacity: 1; }
#benefits .card .icon { transition: transform .45s cubic-bezier(.2, .9, .3, 1.4), background .3s ease, stroke .3s ease; }
#benefits .card:hover .icon { transform: scale(1.12) rotate(-8deg); background: linear-gradient(135deg, var(--orange), var(--orange-2)); stroke: var(--ink); }
.cards > :nth-child(2) { animation-delay: .06s; }
.cards > :nth-child(3) { animation-delay: .12s; }
.cards > :nth-child(4) { animation-delay: .18s; }
.cards > :nth-child(5) { animation-delay: .24s; }
.cards > :nth-child(6) { animation-delay: .3s; }
.cards > :nth-child(7) { animation-delay: .36s; }
.cards > :nth-child(8) { animation-delay: .42s; }

/* who: a dark section with persona cards and a ticker of report types */
.section-dark { position: relative; isolation: isolate; overflow: hidden; background: #141920; color: #fff; }
.section-dark::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px); background-size: 48px 48px; background-position: center; -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 75%); }
.section-dark::after { content: ""; position: absolute; z-index: -1; top: -240px; right: -160px; width: 640px; aspect-ratio: 1; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(249, 165, 26, .22), transparent 65%); }
.section-dark h2 { color: #fff; }
.section-dark .section-head p:last-child { color: #aeb6c2; }
.section-dark .eyebrow { background: rgba(249, 165, 26, .14); color: var(--orange); }
.personas { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .personas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .personas { grid-template-columns: 1fr; } }
.persona { position: relative; overflow: hidden; padding: 24px; border-radius: var(--radius); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.persona::after { content: ""; position: absolute; inset-inline: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-2)); transform: scaleX(0); transition: transform .35s ease; }
.persona:hover { transform: translateY(-4px); border-color: rgba(249, 165, 26, .45); background: rgba(255, 255, 255, .07); }
.persona:hover::after { transform: scaleX(1); }
.persona h3 { color: #fff; margin-bottom: .3em; }
.persona p { color: #aeb6c2; margin: 0; }
.persona .icon { background: rgba(249, 165, 26, .14); stroke: var(--orange); transition: transform .35s ease; }
.persona:hover .icon { transform: rotate(-8deg) scale(1.08); }
.marquee { margin-top: 56px; overflow: hidden; direction: ltr; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.marquee span { direction: rtl; white-space: nowrap; margin-right: 14px; padding: 9px 18px; border-radius: 999px; border: 1px solid rgba(249, 165, 26, .3); background: rgba(249, 165, 26, .06); color: #ffd79c; font-weight: 500; }
.marquee span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-inline-end: 9px; border-radius: 50%; background: var(--orange); vertical-align: middle; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* cards rise in as they scroll into view (main.js adds .reveal only when it can observe them) */
html.reveal [data-reveal]:not(.is-visible) { opacity: 0; }
[data-reveal].is-visible { animation: reveal-up .6s cubic-bezier(.2, .7, .3, 1) backwards; }
.personas > :nth-child(2) { animation-delay: .08s; }
.personas > :nth-child(3) { animation-delay: .16s; }
.personas > :nth-child(4) { animation-delay: .24s; }
.personas > :nth-child(5) { animation-delay: .32s; }
.personas > :nth-child(6) { animation-delay: .4s; }
@keyframes reveal-up { from { opacity: 0; transform: translateY(22px); } }

/* about: soft orange light drifting behind the text and a floating logo */
#about { position: relative; isolation: isolate; overflow: hidden; background-color: var(--soft); background-image: radial-gradient(rgba(22, 27, 34, .09) 1px, transparent 1.3px); background-size: 22px 22px; }
#about::before, #about::after { content: ""; position: absolute; z-index: -1; width: 560px; aspect-ratio: 1; border-radius: 50%; pointer-events: none; }
#about::before { top: -220px; left: -160px; background: radial-gradient(circle, rgba(249, 165, 26, .42), transparent 65%); animation: drift-a 18s ease-in-out infinite alternate; }
#about::after { bottom: -260px; right: 12%; background: radial-gradient(circle, rgba(245, 138, 7, .26), transparent 65%); animation: drift-b 22s ease-in-out infinite alternate; }
@keyframes drift-a { to { transform: translate(260px, 140px) scale(1.2); } }
@keyframes drift-b { to { transform: translate(-300px, -90px) scale(.9); } }
.about-logo { position: relative; }
.about-logo::before { content: ""; position: absolute; left: 50%; top: 50%; width: min(360px, 100%); aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, #fff 35%, transparent 70%); z-index: -1; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p:last-child { color: var(--muted); font-size: 1.1rem; margin: 0; }
.eyebrow { display: inline-block; color: var(--link); background: var(--orange-soft); font-weight: 700; font-size: .9rem; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }

/* hero */
.hero { position: relative; isolation: isolate; overflow: hidden; padding: 64px 0 88px; background: radial-gradient(1200px 500px at 85% -10%, var(--orange-soft), transparent 60%); }
/* a blueprint grid behind the phone, fading out toward the text */
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(22, 27, 34, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 27, 34, .07) 1px, transparent 1px), linear-gradient(rgba(22, 27, 34, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 27, 34, .035) 1px, transparent 1px); background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px; background-position: center; -webkit-mask-image: radial-gradient(ellipse 50% 80% at 26% 50%, #000 25%, transparent 78%); mask-image: radial-gradient(ellipse 50% 80% at 26% 50%, #000 25%, transparent 78%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.accent { background: linear-gradient(135deg, var(--orange), var(--orange-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.2rem; color: var(--ink-2); max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 24px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--ink-2); font-weight: 500; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before { content: ""; width: 20px; height: 20px; border-radius: 50%; background: var(--orange-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m5 10 3.2 3L15 6.5' fill='none' stroke='%23c96b00' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; flex: none; }


/* hero phone: an iPhone running a Telegram chat with the bot */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .iphone { z-index: 1; }
/* an orange glow, and rings that ripple out from the phone like messages being sent */
.hero-glow { position: absolute; left: 50%; top: 50%; width: 560px; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(249, 165, 26, .38), rgba(245, 138, 7, .12) 42%, transparent 68%); }
.hero-ring { position: absolute; left: 50%; top: 50%; width: 400px; aspect-ratio: 1; border-radius: 50%; border: 1.5px solid rgba(245, 138, 7, .45); pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(.55); animation: hero-ring 7.5s cubic-bezier(.2, .6, .35, 1) infinite; }
.hero-ring:nth-of-type(3) { animation-delay: 2.5s; }
.hero-ring:nth-of-type(4) { animation-delay: 5s; }
@keyframes hero-ring { 12% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.9); } }
/* chips that float beside the phone and name what just happened in the chat */
.hero-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 9px 14px 9px 10px; background: rgba(255, 255, 255, .9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 16px 34px rgba(22, 27, 34, .13); font-size: .88rem; line-height: 1.25; white-space: nowrap; animation: hero-float 6s ease-in-out infinite; }
.hero-chip strong { display: block; font-weight: 700; }
.hero-chip small { color: var(--muted); font-size: .76rem; }
.hero-chip svg { width: 34px; height: 34px; padding: 8px; border-radius: 10px; flex: none; background: var(--orange-soft); fill: none; stroke: #c96b00; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chip-voice { top: 20%; left: calc(50% + 128px); }
.chip-photo { top: 47%; right: calc(50% + 118px); animation-delay: -2s; }
.chip-report { bottom: 20%; left: calc(50% + 120px); animation-delay: -4s; }
.chip-report svg { background: var(--orange); stroke: var(--ink); }
@keyframes hero-float { 50% { transform: translateY(-10px); } }
.iphone { position: relative; margin: 0; width: min(330px, 84vw); aspect-ratio: 393 / 852; border-radius: 17% / 7.8%; padding: 11px; background: linear-gradient(150deg, #3a3f47, #121418 45%, #262a30); box-shadow: inset 0 0 0 1.5px #555b64, 0 34px 60px rgba(22, 27, 34, .22), 0 10px 20px rgba(22, 27, 34, .16); }
.iphone-side { position: absolute; width: 4px; background: #2a2e34; }
.iphone-action { left: -3px; top: 17%; height: 4.5%; border-radius: 2px 0 0 2px; }
.iphone-vol-up { left: -3px; top: 24.5%; height: 8.5%; border-radius: 2px 0 0 2px; }
.iphone-vol-down { left: -3px; top: 35%; height: 8.5%; border-radius: 2px 0 0 2px; }
.iphone-power { right: -3px; top: 27%; height: 13%; border-radius: 0 2px 2px 0; }
.iphone-screen { position: relative; height: 100%; border-radius: 15% / 6.9%; overflow: hidden; background: #fff; display: flex; flex-direction: column; direction: ltr; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Heebo", "Heebo Fallback", system-ui, sans-serif; color: #000; }
.ios-status { position: relative; flex: none; height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 10px 24px 0 30px; background: #f7f7f7; font-size: .82rem; font-weight: 600; }
.ios-island { position: absolute; left: 50%; top: 10px; transform: translateX(-50%); width: 33%; height: 27px; background: #000; border-radius: 20px; }
.ios-icons { display: flex; align-items: center; gap: 5px; }
.ios-icons svg { width: 16px; height: 11px; fill: #000; }
.ios-battery { position: relative; width: 23px; height: 11px; border: 1.3px solid rgba(0, 0, 0, .38); border-radius: 3.5px; padding: 1.3px; }
.ios-battery span { display: block; width: 78%; height: 100%; background: #000; border-radius: 1.5px; }
.ios-battery::after { content: ""; position: absolute; right: -3.5px; top: 3px; width: 1.8px; height: 3.5px; background: rgba(0, 0, 0, .38); border-radius: 0 1px 1px 0; }
.tg-header { flex: none; display: flex; align-items: center; gap: 8px; padding: 4px 12px 7px; background: #f7f7f7; border-bottom: .5px solid #d4d4d8; }
.tg-back { color: #3390ec; font-size: 1.9rem; line-height: .8; width: 18px; font-weight: 300; }
.tg-title { flex: 1; display: grid; text-align: center; line-height: 1.2; direction: rtl; }
.tg-title strong { font-size: .86rem; }
.tg-status { font-size: .7rem; color: #5f6368; transition: color .2s ease; }
.tg-status.typing { color: #3390ec; }
.tg-avatar { width: 34px; height: 34px; flex: none; border-radius: 50%; padding: 5px; background: #fff; box-shadow: inset 0 0 0 .5px #d4d4d8; object-fit: contain; }
.tg-chat { position: relative; flex: 1; overflow: hidden; background-color: #d9e5c6; background-image: radial-gradient(rgba(255, 255, 255, .35) 1.2px, transparent 1.3px), radial-gradient(rgba(120, 150, 90, .12) 1.2px, transparent 1.3px); background-size: 22px 22px, 22px 22px; background-position: 0 0, 11px 11px; }
.tg-feed { position: absolute; left: 0; right: 0; top: 0; display: flex; flex-direction: column; gap: 5px; padding: 10px 9px 8px; transition: transform .38s ease, opacity .5s ease; will-change: transform; }
.tg-feed.fade { opacity: 0; }
.tg-msg { position: relative; max-width: 82%; padding: 5px 8px 3px; border-radius: 15px; font-size: .74rem; line-height: 1.38; box-shadow: 0 1px .5px rgba(0, 0, 0, .14); animation: tg-pop .32s cubic-bezier(.2, .9, .3, 1.2) both; }
.tg-msg.out { align-self: flex-end; background: #effedd; border-bottom-right-radius: 5px; }
.tg-msg.in { align-self: flex-start; background: #fff; border-bottom-left-radius: 5px; }
.tg-text { text-align: right; }
.tg-meta { display: block; text-align: right; font-size: .58rem; color: #6b7075; margin-top: 1px; direction: ltr; }
.tg-msg.out .tg-meta { color: #3a7d34; }
.tg-ticks { font-style: normal; margin-inline-start: 3px; letter-spacing: -2px; }
.tg-voice { display: flex; align-items: center; gap: 7px; min-width: 62%; flex-wrap: wrap; padding-top: 6px; }
.tg-voice .tg-meta { flex-basis: 100%; margin-top: -2px; }
.tg-play { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #5ea859; color: #fff; font-size: .6rem; padding-left: 2px; flex: none; }
.tg-wave { display: flex; align-items: center; gap: 2px; height: 20px; flex: 1; }
.tg-wave i { width: 2px; border-radius: 1px; background: #5ea859; opacity: .85; }
.tg-wave i:nth-child(1) { height: 5px; } .tg-wave i:nth-child(2) { height: 9px; } .tg-wave i:nth-child(3) { height: 13px; } .tg-wave i:nth-child(4) { height: 7px; } .tg-wave i:nth-child(5) { height: 15px; } .tg-wave i:nth-child(6) { height: 11px; } .tg-wave i:nth-child(7) { height: 6px; } .tg-wave i:nth-child(8) { height: 14px; } .tg-wave i:nth-child(9) { height: 9px; } .tg-wave i:nth-child(10) { height: 16px; } .tg-wave i:nth-child(11) { height: 7px; } .tg-wave i:nth-child(12) { height: 12px; } .tg-wave i:nth-child(13) { height: 15px; } .tg-wave i:nth-child(14) { height: 8px; } .tg-wave i:nth-child(15) { height: 11px; } .tg-wave i:nth-child(16) { height: 5px; } .tg-wave i:nth-child(17) { height: 13px; } .tg-wave i:nth-child(18) { height: 9px; } .tg-wave i:nth-child(19) { height: 15px; } .tg-wave i:nth-child(20) { height: 6px; } .tg-wave i:nth-child(21) { height: 10px; } .tg-wave i:nth-child(22) { height: 14px; } .tg-wave i:nth-child(23) { height: 8px; } .tg-wave i:nth-child(24) { height: 12px; }
.tg-dur { font-size: .62rem; color: #3a7d34; }
.tg-photo { padding: 3px; }
.tg-img { position: relative; display: block; width: 150px; height: 108px; border-radius: 12px; overflow: hidden; background: #e9e7e2 url("/assets/img/demo-wall.jpg") center / cover no-repeat; background-image: image-set(url("/assets/img/demo-wall.webp") type("image/webp"), url("/assets/img/demo-wall.jpg") type("image/jpeg")); }
.tg-photo .tg-meta { position: absolute; right: 10px; bottom: 7px; background: rgba(0, 0, 0, .6); color: #fff; border-radius: 8px; padding: 0 5px; }
.tg-photo.uploading .tg-img::after { content: ""; position: absolute; left: 50%; top: 50%; width: 30px; height: 30px; margin: -15px 0 0 -15px; border-radius: 50%; border: 2.5px solid rgba(255, 255, 255, .95); border-right-color: transparent; background: rgba(0, 0, 0, .3); animation: tg-spin .8s linear infinite; }
.tg-doc { min-width: 72%; }
.tg-file { display: flex; align-items: center; gap: 7px; margin-top: 5px; }
.tg-file-icon { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; background: #2b579a; color: #fff; font-weight: 800; font-size: .95rem; flex: none; }
.tg-file-icon.pdf { background: #e5252a; font-size: .6rem; letter-spacing: .02em; }
.tg-doc .tg-file:first-child { margin-top: 1px; }
.tg-file-name { display: grid; line-height: 1.25; min-width: 0; }
.tg-file-name b { font-size: .68rem; color: #3390ec; font-weight: 600; overflow-wrap: anywhere; }
.tg-file-name small { font-size: .6rem; color: #6b7075; }
.tg-typing { display: flex; gap: 4px; padding: 10px 12px; }
.tg-typing i { width: 6px; height: 6px; border-radius: 50%; background: #9aa0a6; animation: tg-dot 1.1s infinite ease-in-out; }
.tg-typing i:nth-child(2) { animation-delay: .15s; }
.tg-typing i:nth-child(3) { animation-delay: .3s; }
.tg-keyboard { flex: none; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 6px 6px 5px; background: #d2d5db; }
.tg-keyboard span { background: #fff; border-radius: 7px; padding: 7px 4px; text-align: center; font-size: .68rem; font-weight: 500; box-shadow: 0 1px 0 rgba(0, 0, 0, .28); direction: rtl; transition: background .15s ease, transform .15s ease; }
.tg-keyboard span.pressed { background: #b6bec9; transform: scale(.96); }
.tg-input { flex: none; display: flex; align-items: center; gap: 7px; padding: 6px 10px 22px; background: #f7f7f7; border-top: .5px solid #d4d4d8; }
.tg-attach svg, .tg-mic svg { width: 22px; height: 22px; fill: none; stroke: #8e8e93; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tg-field { position: relative; flex: 1; min-height: 30px; display: flex; align-items: center; justify-content: flex-end; padding: 0 11px; border-radius: 16px; border: .5px solid #d4d4d8; background: #fff; direction: rtl; font-size: .72rem; overflow: hidden; white-space: nowrap; }
.tg-placeholder { color: #6e6e73; }
.tg-typed { color: #000; }
.tg-typed:empty { display: none; }
.tg-rec { display: none; align-items: center; gap: 6px; color: #000; direction: ltr; width: 100%; }
.tg-rec i { width: 8px; height: 8px; border-radius: 50%; background: #e53935; animation: tg-blink 1s infinite; }
.tg-rec b { font-weight: 500; }
.tg-mic { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
.tg-mic .icon-send { display: none; }
.tg-input.typing .tg-placeholder, .tg-input.recording .tg-placeholder, .tg-input.recording .tg-typed { display: none; }
.tg-input.typing .tg-mic { background: #3390ec; }
.tg-input.typing .tg-mic svg { stroke: #fff; }
.tg-input.typing .icon-mic { display: none; }
.tg-input.typing .icon-send { display: block; }
.tg-input.recording .tg-rec { display: flex; }
.tg-input.recording .tg-field { justify-content: flex-start; }
.tg-input.recording .tg-mic { background: #3390ec; transform: scale(1.25); }
.tg-input.recording .tg-mic svg { stroke: #fff; }
.ios-home { position: absolute; left: 50%; bottom: 7px; transform: translateX(-50%); width: 36%; height: 4.5px; border-radius: 3px; background: #111; }
@keyframes tg-pop { from { opacity: 0; transform: translateY(8px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes tg-dot { 0%, 80%, 100% { transform: translateY(0); opacity: .45; } 40% { transform: translateY(-3px); opacity: 1; } }
@keyframes tg-spin { to { transform: rotate(360deg); } }
@keyframes tg-blink { 50% { opacity: .2; } }
@media (max-width: 600px) {
  .iphone { width: min(300px, 82vw); padding: 9px; }
  .tg-msg { font-size: .7rem; }
  .hero-chip { display: none; }
  .hero-glow { width: 420px; }
}

/* steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px 22px; }
.step p { color: var(--muted); margin: 0; }
.step-num { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: var(--ink); margin-bottom: 16px; }

/* cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card p { color: var(--muted); margin: 0; }
.icon { width: 42px; height: 42px; padding: 9px; border-radius: 12px; background: var(--orange-soft); fill: none; stroke: #c96b00; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }

/* report */
#report { overflow-x: clip; }
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; isolation: isolate; }
.checklist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.checklist li::before { content: ""; margin-top: 5px; width: 20px; height: 20px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--orange), var(--orange-2)) ; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3C/svg%3E"); }
/* the sample report follows the real Word template (autoreport app/branding.py): header, subject, recipients,
   project box, findings table with photos, general notes, stamp and footer */
.doc { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow); padding: 1.76em 1.92em .96em; font-size: clamp(.4rem, 2.1vw, .78rem); line-height: 1.5; color: #1f2328; }
.doc::before { content: ""; position: absolute; inset: 0; z-index: -1; background: #fff; border: 1px solid var(--line); border-radius: 4px; transform: rotate(-2.5deg) translate(-8px, 6px); box-shadow: var(--shadow); }
.doc b, .doc strong { font-weight: 700; }
.doc-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .8em; padding-bottom: .8em; border-bottom: 2px solid #1f3a5f; }
.doc-he, .doc-en { display: grid; font-size: .82em; line-height: 1.35; color: #5f6773; }
.doc-he strong, .doc-en strong { font-size: 1.05em; color: #1f3a5f; }
.doc-en { text-align: left; }
.doc-logo { width: 4.5em; height: 4.5em; display: grid; place-items: center; text-align: center; border: 1.5px dashed #c3c9d1; border-radius: .64em; color: var(--muted); font-size: .77em; line-height: 1.2; }
.doc-subject { text-align: center; font-weight: 800; text-decoration: underline; font-size: 1.15em; margin: .95em 0 .5em; }
.doc-to { display: grid; margin-bottom: .32em; }
.doc-part { margin: 0 0 .64em; }
.doc-box { display: grid; grid-template-columns: 1fr 1fr; border-block: 1.5px solid #1f3a5f; margin-bottom: .32em; }
.doc-box > div { display: grid; padding: .4em .16em; }
.doc-caption { text-align: center; font-weight: 700; text-decoration: underline; margin: .8em 0 .5em; }
.doc-table { border: 1px solid #8e97a2; }
.doc-row { display: grid; grid-template-columns: 2.55em 4.5em 1fr 5.9em; border-top: 1px solid #8e97a2; }
.doc-row:first-child { border-top: 0; }
.doc-row > span { padding: .4em .48em; border-inline-start: 1px solid #8e97a2; }
.doc-row > span:first-child { border-inline-start: 0; text-align: center; }
.doc-row-head { background: #dde5ee; font-weight: 700; }
.doc-row-head > span { text-align: center; }
.doc-row > span:last-child { padding: .32em; }
.doc-photo { display: block; height: 3.7em; border-radius: .16em; background-color: #d9cbb6; background-position: center; background-size: cover; }
.doc-photo.a { background-image: url("/assets/img/demo-wall.jpg"); background-image: image-set(url("/assets/img/demo-wall.webp") type("image/webp"), url("/assets/img/demo-wall.jpg") type("image/jpeg")); }
.doc-photo.b { background-image: url("/assets/img/demo-floor.jpg"); }
.doc-photo.c { background-image: url("/assets/img/demo-stairs.jpg"); }
.doc-notes { margin: 0; padding-inline-start: 1.3em; }
.doc-sign { display: flex; justify-content: center; align-items: center; margin-top: .95em; }
.doc-seal { width: 5.3em; height: 5.3em; display: grid; place-items: center; text-align: center; border: 1.5px dashed #c3c9d1; border-radius: 50%; color: var(--muted); font-size: .77em; line-height: 1.2; }
.doc-footer { margin-top: .8em; padding-top: .5em; border-top: 1px solid #d5d9df; text-align: center; font-size: .77em; line-height: 1.45; color: #6b7075; }
/* magnifier: a lens over the sample report, so the photos and the small print can be read (main.js places it) */
.doc { cursor: zoom-in; }
.doc-lens { position: absolute; z-index: 3; left: var(--lx, 0); top: var(--ly, 0); width: 190px; height: 190px; border-radius: 50%; overflow: hidden; pointer-events: none; opacity: 0; background: #fff; transform: translate(-50%, -50%); box-shadow: 0 0 0 3px rgba(255, 255, 255, .95), 0 0 0 4.5px var(--orange-2), 0 14px 30px rgba(22, 27, 34, .28); transition: opacity .2s ease; }
.doc-lens.on { opacity: 1; }
.doc-lens .doc-clone { position: absolute; left: var(--zx, 0); top: var(--zy, 0); width: var(--dw, 100%); transform: scale(2); transform-origin: 0 0; border: 0; border-radius: 0; box-shadow: none; }
.doc-lens .doc-clone::before { display: none; }
/* the report keeps one layout at every width; on a phone it shrinks, and the button shows it at full size */
.doc-frame { position: relative; }
.doc-frame.zoomed { overflow-x: auto; padding-bottom: .5rem; }
.doc-frame.zoomed .doc { width: 560px; max-width: none; font-size: .78rem; }
.doc-zoom { display: none; margin: 16px auto 0; align-items: center; gap: 8px; min-height: 44px; padding: 0 18px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); font: inherit; font-weight: 700; font-size: .95rem; cursor: pointer; }
.doc-zoom:hover { border-color: var(--orange-2); }
@media (max-width: 820px) { .doc-frame { text-align: center; } .doc-zoom { display: inline-flex; } }
@media (max-width: 820px) { .doc-lens { display: none; } .doc { cursor: auto; } }


/* faq */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 20px; }
.faq summary { cursor: pointer; list-style: none; font-weight: 700; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--orange-2); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-2); padding-bottom: 18px; margin: 0; }

/* about */
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: center; }
.about-grid p { color: var(--ink-2); }
.about-logo img { width: min(300px, 100%); height: auto; margin-inline: auto; animation: hero-float 7s ease-in-out infinite; }

/* contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-copy > p { color: var(--ink-2); }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.contact-list li { display: grid; gap: 2px; }
.contact-list span { color: var(--muted); font-size: .9rem; }
.contact-list a { font-weight: 700; }
.form { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.form-row { display: grid; gap: 6px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.two > div { display: grid; gap: 6px; }
.form label { font-weight: 500; }
.form input[type=text], .form input[type=tel], .form input[type=email], .form select, .form textarea { width: 100%; font: inherit; color: var(--ink); background: #fff; border: 1.5px solid #cfd3d9; border-radius: 12px; padding: 10px 14px; min-height: 48px; }
.form textarea { resize: vertical; min-height: 110px; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--orange-2); outline: 3px solid rgba(245, 138, 7, .25); outline-offset: 0; }
.form input[dir=ltr] { text-align: right; }
.form-row.check { grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.form-row.check input { width: 22px; height: 22px; margin-top: 3px; accent-color: var(--orange-2); }
.hp { position: absolute; inset-inline-start: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; min-height: 1.5em; font-weight: 500; }
.form-status.ok { color: var(--ok); }
.form-status.error { color: var(--error); }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0 110px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; align-items: center; }
.footer-brand img { width: 88px; height: 80px; margin-bottom: 12px; }
.footer-brand p { color: var(--muted); margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer-links a, .footer-links .link-button { color: var(--ink-2); }
.copyright { grid-column: 1 / -1; color: var(--muted); font-size: .9rem; margin: 0; }

/* floating buttons */
.fab { position: fixed; bottom: 20px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; border: 0; display: grid; place-items: center; cursor: pointer; box-shadow: 0 8px 22px rgba(0, 0, 0, .18); }
.fab svg { width: 28px; height: 28px; }
.fab-whatsapp { inset-inline-start: 20px; background: #25d366; color: #fff; }
.fab-whatsapp svg { fill: currentColor; }
.fab-a11y { inset-inline-end: 20px; background: var(--ink); color: #fff; }
.fab-a11y svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.fab-a11y svg circle { fill: currentColor; stroke: none; }

.a11y-panel { position: fixed; bottom: 88px; inset-inline-end: 20px; z-index: 70; width: min(300px, calc(100vw - 40px)); background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 14px; display: grid; gap: 8px; }
.a11y-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.a11y-head button { border: 0; background: var(--soft); width: 36px; height: 36px; border-radius: 10px; cursor: pointer; font-size: 1rem; }
.a11y-panel > button, .a11y-text button { font: inherit; text-align: start; border: 1.5px solid var(--line); background: #fff; border-radius: 10px; padding: 9px 12px; cursor: pointer; color: var(--ink); }
.a11y-panel > button[aria-pressed="true"] { border-color: var(--orange-2); background: var(--orange-soft); font-weight: 700; }
.a11y-text { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.a11y-text button { width: 48px; text-align: center; font-weight: 700; }
.a11y-reset { color: var(--error) !important; }
.a11y-panel > a { text-align: center; padding-top: 4px; }

.cookie-banner { position: fixed; bottom: 16px; inset-inline: 16px; z-index: 80; max-width: 760px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 16px 18px; display: flex; align-items: center; gap: 16px; }
.cookie-banner p { margin: 0; font-size: .95rem; color: var(--ink-2); }
.cookie-actions { display: flex; gap: 8px; flex: none; }

.page-404 { text-align: center; }
.page-404-logo { width: 132px; height: 120px; margin: 0 auto 32px; }

/* legal pages */
.legal { padding: 56px 0 80px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2em; }
.legal .updated { color: var(--muted); }
.legal ul { padding-inline-start: 1.3em; }
.legal li { margin-bottom: .4em; }
.legal .note { background: var(--orange-soft); border-radius: 12px; padding: 12px 16px; }
.legal table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: .95rem; }
.legal th, .legal td { text-align: start; border: 1px solid var(--line); padding: 8px 10px; vertical-align: top; }
.legal th { background: var(--soft); }
.table-scroll { overflow-x: auto; }

/* responsive */
@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .report-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 40px; }
  .hero::before { -webkit-mask-image: radial-gradient(ellipse 90% 30% at 50% 78%, #000 25%, transparent 80%); mask-image: radial-gradient(ellipse 90% 30% at 50% 78%, #000 25%, transparent 80%); }
  .about-logo { order: -1; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 92px; inset-inline: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 20px; box-shadow: 0 16px 24px rgba(22, 27, 34, .08); display: none; }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav a.is-active { border-radius: 8px; border-inline-start: 4px solid var(--orange-2); padding-inline-start: 12px; }
  .site-nav .btn { margin-top: 14px; }
}
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .section { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; }
  .form { padding: 20px; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions .btn { flex: 1; }
  .hero-actions .btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* accessibility menu states */
html.a11y-text-1 { font-size: 112.5%; }
html.a11y-text-2 { font-size: 125%; }
html.a11y-text-3 { font-size: 140%; }
html.a11y-grayscale body { filter: grayscale(1); }
html.a11y-links a { text-decoration: underline !important; text-decoration-thickness: 2px !important; background: #fff3c4; color: #000 !important; }
html.a11y-readable body, html.a11y-readable button, html.a11y-readable input, html.a11y-readable select, html.a11y-readable textarea { font-family: Arial, Helvetica, sans-serif !important; letter-spacing: .02em; }
html.a11y-no-motion *, html.a11y-no-motion *::before, html.a11y-no-motion *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
html.a11y-contrast { --ink: #000; --ink-2: #000; --muted: #000; --line: #000; --soft: #fff; --orange-soft: #fff; --link: #0000ee; }
html.a11y-contrast body { background: #fff; color: #000; }
html.a11y-contrast #benefits, html.a11y-contrast #about { background: #fff; }
html.a11y-contrast .section-dark { background: #fff; color: #000; }
html.a11y-contrast .section-dark h2, html.a11y-contrast .section-dark .section-head p:last-child, html.a11y-contrast .persona h3, html.a11y-contrast .persona p, html.a11y-contrast .marquee span { color: #000; }
html.a11y-contrast .persona { border: 2px solid #000; background: #fff; }
html.a11y-contrast .btn-primary { background: #000; color: #fff; box-shadow: none; }
html.a11y-contrast .accent { color: #000; background: none; }
html.a11y-contrast .card, html.a11y-contrast .step, html.a11y-contrast .faq details, html.a11y-contrast .form, html.a11y-contrast .doc { border-width: 2px; }
