/* VD Accounting — page styles. Depends on css/tokens.css + css/components.css */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; overflow-x: hidden; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: hsl(var(--foreground)); color: hsl(var(--background)); }
:focus-visible { outline: none; box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring)); border-radius: var(--radius-full); }
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 768px) { .container { padding-inline: 1.5rem; } }
.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Section heads ---------- */
.section { padding-block: 3.5rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
.section-head { text-align: center; max-width: 672px; margin: 0 auto 2.5rem; }
.section-head .r-h2 { margin-bottom: 0.75rem; text-wrap: balance; }
.section-head p { font-size: 0.875rem; line-height: 1.625; color: hsl(var(--muted-foreground)); max-width: 576px; margin-inline: auto; }
.pill-label { display: inline-flex; align-items: center; height: 2rem; padding: 0 0.875rem; border-radius: 9999px; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); font-size: 0.8125rem; font-weight: 500; color: hsl(var(--foreground)); margin-bottom: 1.25rem; }

/* ---------- Nav ---------- */
.nav-wrap { position: fixed; left: 0; right: 0; top: 0; z-index: 50; display: flex; justify-content: center; transition: top 500ms var(--ease-in-out), padding 500ms var(--ease-in-out); }
.nav { display: flex; align-items: center; width: 100%; max-width: 1200px; height: 78px; padding-inline: 1rem; transition: height 500ms var(--ease-in-out), max-width 500ms var(--ease-in-out), padding 500ms var(--ease-in-out), background-color 500ms var(--ease-in-out), border-color 500ms var(--ease-in-out), box-shadow 500ms var(--ease-in-out), border-radius 500ms var(--ease-in-out); }
@media (min-width: 768px) { .nav { padding-inline: 1.5rem; } }
.nav__logo { display: flex; align-items: center; gap: 0.625rem; min-height: 2.75rem; text-decoration: none; font-family: var(--font-brand); font-weight: 700; letter-spacing: -0.035em; font-size: 1.125rem; white-space: nowrap; }
@media (max-width: 479px) { .nav__right > .r-btn { display: none; } .nav__logo { font-size: 1rem; } }
.nav__logo svg { width: 28px; height: 28px; }
.nav__links { display: none; flex: 1; justify-content: center; gap: 0.25rem; font-size: 0.8125rem; }
@media (min-width: 1024px) { .nav__links { display: flex; } }
.nav__links a, .nav__links button { display: inline-flex; align-items: center; min-height: 2.75rem; gap: 0.25rem; padding: 0.375rem 0.75rem; border-radius: 9999px; color: hsl(var(--foreground) / 0.7); text-decoration: none; background: none; border: 0; font: inherit; cursor: pointer; transition: all 150ms; }
.nav__links a:hover, .nav__links button:hover { color: hsl(var(--foreground)); background: hsl(var(--foreground) / 0.05); }
.nav__links svg { width: 0.875rem; height: 0.875rem; opacity: 0.7; }
.nav__right { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.nav__phone { display: none; align-items: center; min-height: 2.75rem; font-size: 0.8125rem; color: hsl(var(--foreground)); text-decoration: none; padding: 0.375rem 0.75rem; border-radius: 9999px; }
.nav__phone:hover { background: hsl(var(--foreground) / 0.05); }
@media (min-width: 1024px) { .nav__phone { display: inline-flex; } }
.nav__right > .r-btn { min-height: 2.75rem; }
.nav__burger { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 9999px; border: 0; background: none; cursor: pointer; }
.nav__burger svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 1024px) { .nav__burger { display: none; } }
/* Floating pill state */
.nav-wrap.is-floating { top: 1rem; padding-inline: 1rem; }
.nav-wrap.is-floating .nav { height: 3.5rem; max-width: 1100px; padding-inline: 0.75rem 0.5rem; background: hsl(var(--card) / 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid hsl(var(--border)); border-radius: 9999px; box-shadow: var(--shadow-sm); }
@media (min-width: 768px) { .nav-wrap.is-floating .nav { padding-inline: 1.25rem 0.5rem; } }
/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 49; overflow-y: auto; overscroll-behavior: contain; background: hsl(var(--background)); padding: 6rem 1.5rem max(2rem, env(safe-area-inset-bottom)); display: none; flex-direction: column; gap: 0.25rem; }
.mobile-menu.is-open { display: flex; }
.mobile-menu a { font-size: 1.125rem; font-weight: 500; padding: 0.75rem 0; border-bottom: 1px solid hsl(var(--border)); text-decoration: none; }
.mobile-menu .r-btn { margin-top: 1.5rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(78px + 3.5rem); padding-bottom: 3rem; overflow: hidden; }
@media (min-width: 768px) { .hero { padding-top: calc(78px + 4.5rem); padding-bottom: 4rem; } }
.hero__bg { position: absolute; left: 0; right: 0; top: 560px; height: 900px; z-index: 0; pointer-events: none; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 74%, transparent 100%); mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 74%, transparent 100%); }
@media (min-width: 768px) { .hero__bg { top: 470px; } }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, hsl(var(--background) / 0.35), transparent 28%, transparent 62%, hsl(var(--background) / 0.72)); }
.blob { position: absolute; border-radius: 50% 50% 45% 55% / 60% 40% 60% 40%; opacity: 0.82; will-change: transform; animation: drift 18s ease-in-out infinite alternate; }
.blob--1 { width: 1250px; height: 380px; left: -18%; top: 120px; background: linear-gradient(100deg, #e4f7bd, #9be04a 35%, #5fb51f 60%, #c9f57a 100%); transform: rotate(-9deg); filter: blur(44px); }
.blob--2 { width: 1050px; height: 330px; right: -16%; top: 40px; background: linear-gradient(80deg, #d9f9a0, #7dd333 45%, #3f8c0f 70%, #a8e95a); transform: rotate(7deg); filter: blur(54px); animation-delay: -6s; animation-direction: alternate-reverse; }
.blob--3 { width: 900px; height: 420px; left: 18%; top: 220px; background: linear-gradient(90deg, #f1fbdc, #b8ef5a 50%, #eefbd0); opacity: 0.64; filter: blur(90px); animation-delay: -11s; }
@keyframes drift { from { translate: 0 0; } to { translate: 50px -18px; } }
.hero__inner { position: relative; z-index: 1; }
.hero .r-display { max-width: 720px; font-size: clamp(2.25rem, 8vw, 4rem); text-wrap: balance; margin-bottom: 1rem; }
@media (min-width: 768px) { .hero .r-display { margin-bottom: 1.25rem; } }
.hero__lead { font-size: 0.875rem; line-height: 1.625; color: hsl(var(--foreground) / 0.6); max-width: 576px; margin-bottom: 2rem; }
@media (min-width: 768px) { .hero__lead { font-size: 1.125rem; margin-bottom: 2.5rem; } }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 4rem; }
@media (min-width: 768px) { .hero__actions { margin-bottom: 5.5rem; } }
.hero__frame { position: relative; z-index: 1; }

/* ---------- App frame / mockup shell ---------- */
.frame { border-radius: 1.5rem; border: 1px solid hsl(var(--border)); background: hsl(var(--card)); box-shadow: var(--shadow-xl); overflow: hidden; }
.frame--pad { padding: 0.625rem; }
.app { display: grid; grid-template-columns: 52px 1fr; min-height: 560px; background: hsl(var(--card)); border-radius: 1rem; overflow: hidden; font-size: 12px; position: relative; }
@media (max-width: 767px) {
  .app { grid-template-columns: 1fr; min-height: 0; }
  .app > .app__side { display: none; }
  .app__top { flex-wrap: wrap; }
  .app__tools { flex-wrap: wrap; }
  .ledger .lh, .ledger .lr { grid-template-columns: 52px 1fr 76px 68px; gap: 0.5rem; padding-inline: 0.625rem; font-size: 10px; }
  .doc { padding: 1.5rem 1.25rem 1rem; }
  .doc__meta { grid-template-columns: 1fr 1fr; }
  .doc__meta > div:last-child { grid-column: 1 / -1; }
}
.app__side { background: #1a1a1a; border-radius: 1rem; margin: 0.375rem; display: flex; flex-direction: column; align-items: center; padding: 0.625rem 0; gap: 0.375rem; }
.app__side .logo { width: 30px; height: 30px; border-radius: 9999px; background: #fff; color: #1a1a1a; display: grid; place-items: center; font-weight: 600; font-size: 12px; margin-bottom: 0.25rem; }
.app__side .add { width: 26px; height: 26px; border-radius: 9999px; background: #2e2e2e; color: #fff; display: grid; place-items: center; margin-bottom: 0.5rem; }
.app__side .nav-ic { width: 28px; height: 28px; border-radius: 0.5rem; display: grid; place-items: center; color: rgb(255 255 255 / 0.55); }
.app__side .nav-ic.is-active { background: #fff; color: #1a1a1a; }
.app__side .nav-ic svg, .app__side .add svg { width: 14px; height: 14px; }
.app__side .spacer { flex: 1; }
.app__side .avatar { width: 30px; height: 30px; border-radius: 9999px; background: linear-gradient(135deg, #d9d9d9, #8a8a8a); border: 2px solid #fff; }
.app__main { padding: 1.125rem 1.25rem 1rem; display: flex; flex-direction: column; gap: 0.875rem; min-width: 0; }
.app__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.app__top h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }
.app__top p { font-size: 11px; color: hsl(var(--muted-foreground)); margin-top: 2px; }
.app__tools { display: flex; align-items: center; gap: 0.5rem; }
.app__tools .ic { width: 28px; height: 28px; border-radius: 9999px; border: 1px solid hsl(var(--border)); background: hsl(var(--card)); display: grid; place-items: center; color: hsl(var(--foreground)); position: relative; }
.app__tools .ic svg { width: 13px; height: 13px; }
.app__tools .ic .dot { position: absolute; top: -4px; right: -4px; width: 14px; height: 14px; border-radius: 9999px; background: #1a1a1a; color: #fff; font-size: 8px; display: grid; place-items: center; }
.app__tools .select { height: 28px; padding: 0 0.625rem; border-radius: 9999px; border: 1px solid hsl(var(--border)); display: inline-flex; align-items: center; gap: 0.375rem; font-size: 11px; font-weight: 500; }
.app__tools .select svg { width: 12px; height: 12px; }
.app__tools .avatar { width: 28px; height: 28px; border-radius: 9999px; background: url("img/avatar-3.jpg") center/cover; }
.app__tools .btn-dark { height: 28px; padding: 0 0.75rem; border-radius: 9999px; background: #1a1a1a; color: #fff; font-size: 11px; font-weight: 500; display: inline-flex; align-items: center; }
.app__tools .btn-light { height: 28px; padding: 0 0.75rem; border-radius: 9999px; background: hsl(var(--muted)); font-size: 11px; font-weight: 500; display: inline-flex; align-items: center; gap: 0.375rem; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { border: 1px solid hsl(var(--border) / 0.7); border-radius: 0.875rem; padding: 0.75rem 0.875rem; background: hsl(var(--card)); }
.stat__label { display: flex; justify-content: space-between; align-items: center; font-size: 10.5px; color: hsl(var(--muted-foreground)); }
.stat__value { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin-top: 0.25rem; font-variant-numeric: tabular-nums; }
.stat__sub { font-size: 10px; color: hsl(var(--muted-foreground)); margin-top: 1px; }
.stat__spark { margin-top: 0.5rem; height: 22px; width: 100%; color: hsl(var(--muted-foreground) / 0.6); }
.delta { font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 9999px; }
.delta--up { background: hsl(var(--success) / 0.15); color: hsl(93 64% 30%); }
.delta--down { background: hsl(var(--destructive) / 0.12); color: hsl(var(--destructive)); }
.delta--neutral { background: hsl(var(--muted)); color: hsl(var(--muted-foreground)); }
.app__grid { display: grid; gap: 0.625rem; }
@media (min-width: 768px) { .app__grid { grid-template-columns: 1fr 300px; } }
.panel-card { border: 1px solid hsl(var(--border) / 0.7); border-radius: 0.875rem; padding: 0.875rem; background: hsl(var(--card)); min-width: 0; }
.panel-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.75rem; }
.panel-card__head .big { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.legend { display: flex; gap: 0.75rem; font-size: 10px; color: hsl(var(--muted-foreground)); flex-wrap: wrap; justify-content: flex-end; }
.legend i { display: inline-block; width: 6px; height: 6px; border-radius: 9999px; margin-right: 4px; }
.legend b { color: hsl(var(--foreground)); font-weight: 600; margin-left: 2px; }
.chart { position: relative; height: 210px; margin-top: 0.5rem; }
.chart__line { position: absolute; inset: 0; width: 100%; height: 100%; }
.chart__bars { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 4px 18px; }
.chart__bars span { width: 9px; border-radius: 9999px; background: #1a1a1a; display: block; }
.chart__bars span.g { background: hsl(var(--success)); }
.chart__bars span.r { background: hsl(var(--destructive)); }
.chart__bars span.gr { background: #bdbdbd; }
.chart__axis { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; font-size: 8.5px; color: hsl(var(--muted-foreground)); padding: 0 2px; }
.dark-card { background: #0d0d0d; color: #fff; border-radius: 0.875rem; padding: 0.875rem; position: relative; overflow: hidden; min-height: 150px; }
.dark-card::before { content: ""; position: absolute; right: -60px; top: -40px; width: 220px; height: 220px; border-radius: 9999px; background: radial-gradient(circle, #a8e95a, #4f9d11 45%, transparent 70%); opacity: 0.7; filter: blur(8px); }
.dark-card > * { position: relative; }
.dark-card .t { font-size: 11px; opacity: 0.8; }
.dark-card .v { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-top: 0.75rem; font-variant-numeric: tabular-nums; }
.dark-card .s { font-size: 10px; opacity: 0.6; margin-top: 2px; }
.activity { margin-top: 0.625rem; }
.activity h5 { font-size: 11px; font-weight: 600; margin: 0 0 0.5rem; }
.activity li { display: flex; gap: 0.5rem; padding: 0.4rem 0; border-top: 1px solid hsl(var(--border) / 0.6); font-size: 10.5px; line-height: 1.4; }
.activity li i { width: 22px; height: 22px; border-radius: 9999px; background: hsl(var(--muted)); flex-shrink: 0; display: grid; place-items: center; color: hsl(var(--muted-foreground)); }
.activity li i svg { width: 11px; height: 11px; }
.activity li small { display: block; color: hsl(var(--muted-foreground)); font-size: 9.5px; }
.activity li b { font-weight: 600; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }
@media (min-width: 768px) { .mini-stats { grid-template-columns: repeat(6, 1fr); } }
.mini-stats .stat { padding: 0.625rem 0.75rem; }
.mini-stats .stat__value { font-size: 16px; }
.ring { width: 28px; height: 28px; border-radius: 9999px; border: 3px solid hsl(var(--success)); border-right-color: hsl(var(--border)); }

/* Document-style mockups (tax return / T2 / certificate / payslip) */
.app--doc .app__main { padding: 0.875rem 1rem; }
.doc-stage { position: relative; border-radius: 0.875rem; overflow: hidden; min-height: 520px; background: linear-gradient(160deg, #dfe9d3, #b7cfa0 40%, #e9efe0 100%); }
.doc-stage--sky { background: linear-gradient(160deg, #dbe7f3, #b9cde0 50%, #eef2f5); }
.doc-stage--warm { background: linear-gradient(160deg, #f1e4d3, #d9c3a3 50%, #f6efe6); }
.doc-stage--slate { background: linear-gradient(160deg, #e5e5e5, #cfcfcf 50%, #f2f2f2); }
.doc { position: absolute; left: 50%; top: 32px; transform: translateX(-50%); width: min(640px, 92%); background: #fff; border-radius: 0.75rem 0.75rem 0 0; box-shadow: 0 30px 60px -20px rgb(0 0 0 / 0.35); padding: 2rem 2rem 1.5rem; }
@media (min-width: 768px) { .doc--with-panel { left: 40%; } }
.doc__top { display: flex; justify-content: space-between; align-items: flex-start; font-size: 11px; color: hsl(var(--muted-foreground)); }
.doc__top .hex { width: 26px; height: 26px; border: 1.5px solid #1a1a1a; border-radius: 6px; transform: rotate(45deg) scale(0.8); }
.doc__title { font-size: clamp(40px, 8vw, 72px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; margin: 1.5rem 0 2rem; }
.doc__title small { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: hsl(var(--muted-foreground)); margin-bottom: 0.5rem; }
.doc__meta { display: grid; grid-template-columns: 1fr 1fr 0.8fr; gap: 1.25rem; font-size: 10.5px; }
.doc__meta .k { font-size: 8.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: hsl(var(--muted-foreground)); margin-bottom: 0.4rem; }
.doc__meta .row { padding: 0.45rem 0; border-bottom: 1px solid hsl(var(--border)); }
.doc__meta .row.b { font-weight: 600; }
.doc__meta .date { display: flex; align-items: center; gap: 0.35rem; font-weight: 500; }
.doc__meta .date svg { width: 11px; height: 11px; }
.doc__table { margin-top: 1.5rem; font-size: 10.5px; }
.doc__table .th { display: grid; grid-template-columns: 1fr 70px 90px; gap: 0.5rem; background: hsl(var(--muted)); padding: 0.5rem 0.75rem; font-size: 8.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: hsl(var(--muted-foreground)); border-radius: 4px; }
.doc__table .tr { display: grid; grid-template-columns: 1fr 70px 90px; gap: 0.5rem; padding: 0.55rem 0.75rem; border-bottom: 1px solid hsl(var(--border) / 0.7); }
.doc__table .tr.total { font-weight: 600; border-bottom: 0; }
.doc__table .num { text-align: right; font-variant-numeric: tabular-nums; }
.doc__badge { display: inline-flex; align-items: center; gap: 0.35rem; border: 1px dashed hsl(var(--foreground) / 0.4); border-radius: 9999px; padding: 2px 8px; font-size: 9px; font-weight: 500; margin-top: 0.5rem; }
.doc__stamp { position: absolute; right: 1.5rem; top: 1.75rem; display: inline-flex; align-items: center; gap: 0.35rem; padding: 4px 10px; border-radius: 9999px; font-size: 9px; font-weight: 600; background: hsl(var(--success) / 0.15); color: hsl(93 64% 28%); }
.doc__stamp.p { background: hsl(var(--warning) / 0.2); color: hsl(39 100% 28%); }
.side-panel { position: absolute; right: 12px; top: 12px; bottom: 12px; width: 220px; background: #fff; border-radius: 0.75rem; box-shadow: 0 20px 40px -20px rgb(0 0 0 / 0.3); padding: 0.875rem; display: none; flex-direction: column; gap: 0.5rem; font-size: 10.5px; }
@media (min-width: 900px) { .side-panel { display: flex; } }
.side-panel h6 { font-size: 11.5px; font-weight: 600; margin: 0 0 0.25rem; display: flex; justify-content: space-between; align-items: center; }
.side-panel .opt { border: 1px solid hsl(var(--border)); border-radius: 0.625rem; padding: 0.5rem 0.625rem; display: flex; justify-content: space-between; align-items: center; }
.side-panel .opt small { display: block; font-size: 8.5px; color: hsl(var(--muted-foreground)); }
.side-panel .opt b { font-weight: 500; }
.side-panel .opt svg { width: 11px; height: 11px; color: hsl(var(--muted-foreground)); }
.side-panel .opt.done b::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 9999px; background: hsl(var(--success)); margin-right: 6px; }
.side-panel .swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.side-panel .sw { border-radius: 0.5rem; padding: 0.5rem; font-size: 8.5px; border: 1px solid hsl(var(--border)); }
.side-panel .sw.dark { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.side-panel .toggle { width: 30px; height: 16px; border-radius: 9999px; background: hsl(var(--border)); position: relative; }
.side-panel .toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 12px; height: 12px; border-radius: 9999px; background: #fff; box-shadow: var(--shadow-sm); }
.side-panel .toggle.on { background: #1a1a1a; } .side-panel .toggle.on::after { left: 16px; }
.floating-bar { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; gap: 0.25rem; background: #1a1a1a; border-radius: 9999px; padding: 0.5rem 0.75rem; box-shadow: var(--shadow-lg); }
@media (min-width: 768px) { .doc--with-panel ~ .floating-bar { left: 40%; } }
.floating-bar span { width: 28px; height: 28px; display: grid; place-items: center; color: #fff; border-radius: 9999px; }
.floating-bar span svg { width: 14px; height: 14px; }
.floating-bar span.is-active { background: #333; }

/* Table-style mockup (bookkeeping / payroll) */
.ledger { border: 1px solid hsl(var(--border) / 0.7); border-radius: 0.875rem; overflow: hidden; font-size: 11px; }
.ledger .lh, .ledger .lr { display: grid; grid-template-columns: 90px 1.6fr 1fr 90px 90px 80px; gap: 0.75rem; padding: 0.625rem 0.875rem; align-items: center; }
.ledger .lh { background: hsl(var(--muted)); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: hsl(var(--muted-foreground)); }
.ledger .lr { border-top: 1px solid hsl(var(--border) / 0.7); }
.ledger .num { text-align: right; font-variant-numeric: tabular-nums; }
.ledger .neg { color: hsl(var(--destructive)); }
.ledger .pos { color: hsl(93 64% 30%); }
.ledger .cat { display: inline-flex; padding: 2px 8px; border-radius: 9999px; background: hsl(var(--muted)); font-size: 9.5px; font-weight: 500; }
.ledger .st { display: inline-flex; padding: 2px 8px; border-radius: 9999px; font-size: 9px; font-weight: 600; }
.ledger .st.ok { background: hsl(var(--success) / 0.15); color: hsl(93 64% 28%); }
.ledger .st.wait { background: hsl(var(--warning) / 0.2); color: hsl(39 100% 28%); }
.ledger .st.rev { background: hsl(var(--destructive) / 0.12); color: hsl(var(--destructive)); }
@media (max-width: 767px) { .ledger .lh, .ledger .lr { grid-template-columns: 70px 1.4fr 80px 70px; } .ledger .hide-m { display: none; } }
.filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filters span { height: 26px; padding: 0 0.625rem; border-radius: 9999px; border: 1px solid hsl(var(--border)); display: inline-flex; align-items: center; gap: 0.375rem; font-size: 10.5px; font-weight: 500; background: hsl(var(--card)); }
.filters span.is-active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.filters span svg { width: 11px; height: 11px; }

/* ---------- Benefits ---------- */
.benefits { display: grid; gap: 2rem; padding-block: 3.5rem 2rem; }
@media (min-width: 768px) { .benefits { grid-template-columns: repeat(3, 1fr); gap: 3rem; padding-block: 5rem 3rem; } }
.benefits h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .benefits h3 { font-size: 1.5rem; } }
.benefits p { font-size: 0.875rem; line-height: 1.625; color: hsl(var(--muted-foreground)); }
@media (min-width: 768px) { .benefits p { font-size: 15px; } }

/* ---------- Photo card marquee ---------- */
.marquee { overflow: hidden; padding-block: 1.5rem 3rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 1rem; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.pcard { position: relative; width: 260px; height: 380px; border-radius: 1rem; overflow: hidden; flex-shrink: 0; }
@media (min-width: 768px) { .pcard { width: 300px; height: 420px; } }
.pcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.pcard:hover img { transform: scale(1.04); }
.pcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgb(0 0 0 / 0.8), rgb(0 0 0 / 0.2) 50%, transparent); }
.pcard h3 { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.25rem; color: #fff; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; z-index: 1; text-wrap: balance; }
@media (min-width: 768px) { .pcard h3 { padding: 1.5rem; font-size: 1.5rem; } }

/* ---------- Testimonials ---------- */
.testi { display: grid; gap: 1rem; }
@media (min-width: 640px) { .testi { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } .testi__card:last-child { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .testi { grid-template-columns: repeat(3, minmax(0, 1fr)); } .testi__card:last-child { grid-column: auto; } }
.testi__card { background: hsl(var(--card)); border: 1px solid hsl(var(--border) / 0.6); border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1.5rem; }
.testi__card p { font-size: 15px; line-height: 1.625; flex: 1; white-space: pre-line; }
@media (min-width: 768px) { .testi__card p { font-size: 1rem; } }
.testi__who { display: flex; align-items: center; gap: 0.75rem; }
.testi__who img { width: 44px; height: 44px; border-radius: 9999px; object-fit: cover; }
.testi__who b { display: block; font-size: 0.875rem; font-weight: 600; }
.testi__who span { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.stars { display: inline-flex; gap: 2px; color: hsl(var(--warning)); }
.stars svg { width: 14px; height: 14px; fill: currentColor; }
.google-badge { display: inline-flex; align-items: center; min-height: 2.75rem; gap: 0.5rem; margin-top: 1.75rem; padding: 0.5rem 0.875rem 0.5rem 0.625rem; border-radius: 9999px; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); font-size: 0.8125rem; font-weight: 500; }
.google-badge svg { width: 18px; height: 18px; }

/* ---------- Workflow ---------- */
.workflow__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.workflow__head .r-h2 { margin-bottom: 0.75rem; }
.workflow__head p { font-size: 0.875rem; line-height: 1.625; color: hsl(var(--muted-foreground)); max-width: 640px; }
.workflow__nav { display: none; gap: 0.5rem; flex-shrink: 0; }
@media (min-width: 768px) { .workflow__nav { display: flex; } }
.workflow__nav button { width: 2.75rem; height: 2.75rem; border-radius: 9999px; border: 1px solid hsl(var(--border)); background: hsl(var(--card)); display: grid; place-items: center; cursor: pointer; transition: all 150ms; }
.workflow__nav button:hover { border-color: hsl(var(--foreground) / 0.3); }
.workflow__nav svg { width: 1rem; height: 1rem; }
.steps { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 1rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; margin-inline: -1rem; padding-inline: 1rem; }
.steps::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .steps { margin-inline: 0; padding-inline: 0; } }
.step { position: relative; flex-shrink: 0; scroll-snap-align: start; width: 220px; height: 300px; border-radius: 1rem; border: 1px solid hsl(var(--border) / 0.5); background: #fff; padding: 1.25rem; display: flex; flex-direction: column; transition: all 300ms; }
@media (min-width: 768px) { .step { width: 240px; height: 320px; } }
.step:hover { border-color: hsl(var(--border)); box-shadow: var(--shadow-sm); }
.step .r-tile { margin-bottom: 2rem; }
.step .r-chip { margin-bottom: 0.75rem; }
.step h3 { font-size: 1rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.4; margin-bottom: 0.5rem; }
.step p { font-size: 0.8125rem; line-height: 1.625; color: hsl(var(--muted-foreground)); }

/* ---------- Services ---------- */
.tabs { display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; justify-content: flex-start; padding-bottom: 4px; margin-bottom: 1.25rem; }
@media (min-width: 1024px) { .tabs { justify-content: center; } }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.375rem; height: 2.75rem; padding: 0 0.875rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; text-decoration: none; background: hsl(var(--card)); color: hsl(var(--foreground) / 0.7); border: 1px solid hsl(var(--border)); transition: all 150ms; cursor: pointer; }
.tab svg { width: 0.875rem; height: 0.875rem; }
.tab:hover { color: hsl(var(--foreground)); border-color: hsl(var(--foreground) / 0.3); }
.tab.is-active { background: hsl(var(--foreground)); color: hsl(var(--background)); border-color: hsl(var(--foreground)); }
.service { border-radius: 1rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border) / 0.4); overflow: hidden; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .service { border-radius: 1.5rem; margin-bottom: 2rem; } }
.service__head { padding: 1.25rem 1.25rem 1rem; }
@media (min-width: 768px) { .service__head { padding: 1.75rem 1.75rem 1.25rem; } }
.service__head .pill-label { margin-bottom: 1rem; }
.service__head h3 { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .service__head h3 { font-size: 1.5rem; } }
.service__head > p { font-size: 0.8125rem; line-height: 1.625; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; max-width: 1100px; }
.checks { display: grid; gap: 0.625rem 1.5rem; }
@media (min-width: 640px) { .checks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .checks { grid-template-columns: repeat(3, 1fr); } }
.checks li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8125rem; color: hsl(var(--foreground) / 0.9); line-height: 1.5; }
.checks svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 1px; color: hsl(var(--foreground) / 0.7); }
.service__media { padding: 0 1.25rem 1.25rem; }
@media (min-width: 768px) { .service__media { padding: 0 1.75rem 1.75rem; } }
.service__media .frame { border-radius: 1rem; box-shadow: none; border-color: hsl(var(--border)); }

/* ---------- Why choose us (pricing-card style) ---------- */
.why { display: grid; gap: 1rem; }
@media (min-width: 640px) { .why { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } .why__card:last-child { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .why { grid-template-columns: repeat(3, minmax(0, 1fr)); } .why__card:last-child { grid-column: auto; } }
.why__card { position: relative; background: hsl(var(--card)); border: 1px solid hsl(var(--border) / 0.6); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
@media (min-width: 768px) { .why__card { padding: 1.75rem; } }
.why__card.is-featured { border-color: hsl(var(--foreground)); box-shadow: var(--shadow-lg); }
.why__badge { position: absolute; top: -0.75rem; left: 1.75rem; }
.why__card h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.why__card .sub { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); margin-top: 0.125rem; }
.why__big { display: flex; align-items: baseline; gap: 0.375rem; margin: 1.25rem 0 0.25rem; }
.why__big b { font-size: 2.25rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.why__big span { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.why__note { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.why__meta { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.25rem; }
.why__meta svg { width: 0.875rem; height: 0.875rem; }
.why__card .r-checklist { flex: 1; margin-bottom: 1.75rem; }
.why__card .r-checklist li { font-size: 0.8125rem; }
.why__card .r-checklist svg { color: hsl(var(--foreground) / 0.7); }
.why-foot { text-align: center; font-size: 0.6875rem; color: hsl(var(--muted-foreground)); margin-top: 1.25rem; }
.why-foot + .why-foot { font-size: 0.75rem; margin-top: 0.5rem; }
.why-foot a { font-weight: 600; color: hsl(var(--foreground)); text-decoration: none; }
.why-foot a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- About ---------- */
.about { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .about { grid-template-columns: 1.05fr 1fr; gap: 4rem; } }
.about__media { position: relative; border-radius: 1.5rem; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-xl); }
.about__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; }
.about__card { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; background: hsl(var(--card) / 0.92); backdrop-filter: blur(12px); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 0.875rem 1rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.8125rem; }
@media (min-width: 640px) { .about__card { right: auto; max-width: 340px; } }
.about__card .r-tile { width: 2.5rem; height: 2.5rem; }
.about__card b { display: block; font-weight: 600; }
.about__card span { color: hsl(var(--muted-foreground)); font-size: 0.75rem; }
.about__body .r-h2 { margin-bottom: 1rem; text-wrap: balance; }
.about__body p { font-size: 0.9375rem; line-height: 1.7; color: hsl(var(--foreground) / 0.7); margin-bottom: 1rem; }
.about__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.75rem 0; padding-top: 1.5rem; border-top: 1px solid hsl(var(--border)); }
.about__facts b { display: block; font-size: 1.75rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.about__facts span { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.team { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.team li { display: flex; align-items: center; gap: 0.625rem; padding: 0.5rem 0.875rem 0.5rem 0.5rem; border-radius: 9999px; border: 1px solid hsl(var(--border)); background: hsl(var(--card)); font-size: 0.8125rem; }
.team i { width: 30px; height: 30px; border-radius: 9999px; background: #1a1a1a; color: #fff; display: grid; place-items: center; font-style: normal; font-weight: 600; font-size: 0.6875rem; }
.team b { font-weight: 600; }
.team span { color: hsl(var(--muted-foreground)); }

/* ---------- Industries ---------- */
.industries { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; max-width: 900px; margin: 0 auto; }
.industries li { display: inline-flex; align-items: center; gap: 0.5rem; min-height: 2.75rem; padding: 0 1rem 0 0.75rem; border-radius: 9999px; border: 1px solid hsl(var(--border)); background: hsl(var(--card)); font-size: 0.8125rem; font-weight: 500; transition: all 150ms; }
.industries li:hover { border-color: hsl(var(--foreground) / 0.3); transform: translateY(-2px); }
.industries svg { width: 0.875rem; height: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.875rem; }
.faq details { background: hsl(var(--card)); border: 1px solid hsl(var(--border) / 0.55); border-radius: 1rem; transition: border-color 150ms, box-shadow 150ms; }
.faq details:hover, .faq details[open] { border-color: hsl(var(--border)); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.25rem; font-size: 0.875rem; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 1rem; height: 1rem; color: hsl(var(--muted-foreground)); transition: transform 300ms; flex-shrink: 0; }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq .faq__body { max-width: 680px; padding: 0 1.25rem 1.25rem; font-size: 0.875rem; line-height: 1.7; color: hsl(var(--muted-foreground)); }
.faq__more { display: flex; align-items: center; justify-content: center; min-height: 2.75rem; text-align: center; margin-top: 1rem; font-size: 0.8125rem; font-weight: 600; text-decoration: none; }
.faq__more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Credentials and tools ---------- */
.creds { padding-block: 2rem 5rem; }
.creds__panel { overflow: hidden; border: 1px solid hsl(var(--border)); border-radius: 1.5rem; background: hsl(var(--card)); box-shadow: var(--shadow-sm); }
.creds__intro { display: flex; flex-direction: column; gap: 0.625rem; padding: 1.5rem; border-bottom: 1px solid hsl(var(--border)); }
.creds__intro p { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }
.creds__intro h2 { max-width: 560px; font-size: 1.375rem; line-height: 1.3; letter-spacing: -0.03em; font-weight: 600; }
.creds ul { display: grid; }
.creds li { display: flex; align-items: center; gap: 0.75rem; min-height: 82px; padding: 1rem 1.5rem; border-bottom: 1px solid hsl(var(--border)); }
.creds li:last-child { border-bottom: 0; }
.creds__icon { width: 2.5rem; height: 2.5rem; flex: 0 0 2.5rem; display: grid; place-items: center; border-radius: 0.75rem; background: hsl(var(--muted)); color: hsl(var(--foreground)); }
.creds__icon svg { width: 1.125rem; height: 1.125rem; }
.creds li small { display: block; margin-bottom: 0.25rem; font-size: 0.625rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: hsl(var(--muted-foreground)); line-height: 1; }
.creds li strong { display: block; font-size: 0.8125rem; line-height: 1.25; font-weight: 600; letter-spacing: -0.015em; }
@media (min-width: 640px) {
  .creds__intro { flex-direction: row; align-items: flex-end; justify-content: space-between; padding: 1.75rem 2rem; }
  .creds__intro h2 { text-align: right; }
  .creds ul { grid-template-columns: repeat(2, 1fr); }
  .creds li:nth-child(odd) { border-right: 1px solid hsl(var(--border)); }
  .creds li:last-child { grid-column: 1 / -1; border-right: 0; }
}
@media (min-width: 960px) {
  .creds ul { grid-template-columns: repeat(5, 1fr); }
  .creds li { min-height: 104px; padding: 1.25rem; border-right: 1px solid hsl(var(--border)); border-bottom: 0; }
  .creds li:last-child { grid-column: auto; border-right: 0; }
}
.creds svg { width: 1rem; height: 1rem; }

/* ---------- Contact (dark CTA) ---------- */
.cta { position: relative; background: #000; color: #fff; overflow: hidden; padding-top: 4rem; }
@media (min-width: 768px) { .cta { padding-top: 7rem; } }
.cta__bg { position: absolute; left: 0; right: 0; top: 300px; height: 700px; pointer-events: none; overflow: hidden; }
.cta__bg .blob { opacity: 0.75; top: 120px; }
.cta__bg .blob--1 { filter: blur(30px); }
.cta__bg .blob--2 { filter: blur(40px); top: 60px; }
.cta__bg .blob--1 { background: linear-gradient(90deg, #9bdc3e, #5aa61a 50%, #d6f59a); }
.cta__bg .blob--2 { background: linear-gradient(90deg, #7dd333, #3f7f0e 50%, #b6ef60); }
.cta__bg .blob--3 { display: none; }
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-size: 1.875rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.25rem; max-width: 20ch; text-wrap: balance; }
@media (min-width: 768px) { .cta h2 { font-size: 3rem; } }
.cta__lead { font-size: 0.875rem; line-height: 1.625; color: rgb(255 255 255 / 0.7); max-width: 600px; margin-bottom: 2rem; }
@media (min-width: 768px) { .cta__lead { font-size: 1rem; } }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .cta__actions { margin-bottom: 4rem; } }
.cta__actions small { font-size: 0.6875rem; color: rgb(255 255 255 / 0.6); }
.r-btn--white { background: #fff; color: #1a1a1a; font-weight: 600; box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 0.08), 0 1px 3px rgb(0 0 0 / 0.3); }
.r-btn--white:hover { background: #f2f2f2; }
.r-btn--outline-white { background: transparent; color: #fff; border-color: rgb(255 255 255 / 0.25); font-weight: 600; }
.r-btn--outline-white:hover { background: rgb(255 255 255 / 0.08); }
.contact-frame { position: relative; z-index: 1; border-radius: 1.5rem 1.5rem 0 0; background: hsl(var(--card)); color: hsl(var(--foreground)); border: 1px solid rgb(255 255 255 / 0.12); border-bottom: 0; box-shadow: 0 -20px 60px -20px rgb(0 0 0 / 0.6); overflow: hidden; display: grid; }
@media (min-width: 900px) { .contact-frame { grid-template-columns: 1.1fr 1fr; } }
.contact-form { padding: 1.5rem; }
@media (min-width: 768px) { .contact-form { padding: 2.25rem 2.5rem 2.5rem; } }
.contact-form h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.contact-form > p { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }
.form-grid { display: grid; gap: 0.875rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.form-grid .r-input, .form-grid .r-select, .form-grid .r-textarea { background: hsl(var(--card)); }
.form-grid .r-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.25rem; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.form-foot small { font-size: 0.6875rem; color: hsl(var(--muted-foreground)); line-height: 1.5; max-width: 320px; }
.form-status { font-size: 0.8125rem; font-weight: 500; margin-top: 0.75rem; min-height: 1.25rem; }
.form-status.ok { color: hsl(93 64% 30%); }
.form-status.err { color: hsl(var(--destructive)); }
.contact-side { background: hsl(var(--customer-pane)); display: flex; flex-direction: column; border-left: 1px solid hsl(var(--border)); }
.contact-side iframe { width: 100%; flex: 1; min-height: 280px; border: 0; filter: grayscale(1) contrast(1.05); }
.contact-info { padding: 1.25rem 1.5rem; display: grid; gap: 0.875rem; font-size: 0.8125rem; border-top: 1px solid hsl(var(--border)); background: hsl(var(--card)); }
@media (min-width: 640px) { .contact-info { grid-template-columns: 1fr 1fr; } }
.contact-info li { display: flex; gap: 0.625rem; align-items: flex-start; }
.contact-info .r-tile { width: 2.25rem; height: 2.25rem; border-radius: 0.625rem; flex-shrink: 0; }
.contact-info .r-tile svg { width: 1rem; height: 1rem; }
.contact-info b { display: block; font-weight: 600; margin-bottom: 1px; }
.contact-info a { text-decoration: none; color: hsl(var(--muted-foreground)); }
.contact-info a:hover { color: hsl(var(--foreground)); }
.contact-info span { color: hsl(var(--muted-foreground)); line-height: 1.5; }

/* ---------- Footer ---------- */
.footer { background: #000; color: #fff; padding: 3.5rem 0 2rem; }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem 1.5rem; } .footer__brand { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } .footer__brand { grid-column: auto; } }
.footer__brand .nav__logo { color: #fff; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.8125rem; line-height: 1.625; color: rgb(255 255 255 / 0.5); }
.footer__brand p.strong { color: rgb(255 255 255 / 0.5); font-weight: 500; margin-bottom: 0.25rem; }
.footer__brand p.dim { color: rgb(255 255 255 / 0.4); }
.footer h4 { font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer li { margin-bottom: 0.5rem; }
.footer li a { font-size: 0.8125rem; color: rgb(255 255 255 / 0.5); text-decoration: none; transition: color 150ms; }
.footer li a:hover { color: #fff; }
.footer li span { font-size: 0.8125rem; color: rgb(255 255 255 / 0.5); line-height: 1.5; display: block; }
.footer__social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer__social a { width: 2.75rem; height: 2.75rem; border-radius: 9999px; border: 1px solid rgb(255 255 255 / 0.15); display: grid; place-items: center; color: rgb(255 255 255 / 0.7); transition: all 150ms; }
.footer__social a:hover { color: #fff; border-color: rgb(255 255 255 / 0.5); background: rgb(255 255 255 / 0.06); }
.footer__social svg { width: 1rem; height: 1rem; }
.footer__bottom { border-top: 1px solid rgb(255 255 255 / 0.1); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.75rem; color: rgb(255 255 255 / 0.3); }
.footer__wordmark { width: 100%; margin-top: 3.5rem; overflow: hidden; color: rgb(255 255 255 / 0.075); font-family: var(--font-brand); font-size: clamp(3.5rem, 12vw, 9.5rem); font-weight: 700; line-height: 0.82; letter-spacing: -0.065em; white-space: nowrap; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}
