@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(/assets/fonts/manrope-latin-wght-normal.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;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(/assets/fonts/manrope-latin-ext-wght-normal.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #0f2a3d;
  --ink-2: #29445a;
  --muted: #5b6b78;
  --line: #e2ddd3;
  --bg: #faf8f4;
  --tint: #f2efe8;
  --card: #ffffff;
  --brand: #0e8a7b;
  --brand-2: #2bb3a0;
  --brand-soft: #e3f3f0;
  --amber: #d9772b;
  --danger: #b3261e;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(15, 42, 61, .05), 0 8px 24px rgba(15, 42, 61, .06);
  --wrap: 1160px;
  --font: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; }
a { color: var(--brand); text-underline-offset: 3px; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 750; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.15rem; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -48px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { top: 12px; }
.muted { color: var(--muted); }
.i { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.18em; flex: none; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5em; background: var(--ink); color: #fff; border: 0; border-radius: 999px; padding: .7em 1.25em; font: inherit; font-weight: 650; font-size: .95rem; text-decoration: none; cursor: pointer; transition: transform .15s, background .15s, box-shadow .15s; white-space: nowrap; }
.btn:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn .i { transition: transform .15s; }
.btn:hover .i { transform: translateX(3px); }
.btn-sm { padding: .5em 1em; font-size: .88rem; }
.btn-lg { padding: .9em 1.6em; font-size: 1rem; }
.btn-accent { background: var(--brand); }
.btn-accent:hover { background: #0b7568; box-shadow: 0 6px 18px rgba(14, 138, 123, .28); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { background: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .35); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .08); }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }
.link { font-weight: 650; text-decoration: none; display: inline-flex; align-items: center; gap: .4em; }
.link:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250, 248, 244, .88); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s; }
.site-header.scrolled { border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.brand-light { color: #fff; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.site-nav ul a { color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: .95rem; padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav ul a:hover { color: var(--ink); }
.site-nav ul a[aria-current] { color: var(--ink); border-color: var(--brand-2); }
.lang-switch { font-weight: 700; font-size: .82rem; color: var(--muted); text-decoration: none; border: 1.5px solid var(--line); border-radius: 8px; padding: 3px 8px; letter-spacing: .04em; }
.lang-switch:hover { color: var(--ink); border-color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.bars, .bars::before, .bars::after { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .2s, background .2s; }
.bars::before, .bars::after { content: ''; position: absolute; }
.bars::before { top: -7px; } .bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 16px; background: var(--bg); padding: 16px 24px 28px; border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px rgba(15, 42, 61, .08); transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .2s; }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav ul a[aria-current] { border-color: var(--line); color: var(--brand); }
  .lang-switch { align-self: flex-start; }
  .site-nav .btn { justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { padding: 56px 0 72px; background: radial-gradient(900px 400px at 85% 10%, rgba(43, 179, 160, .12), transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 em { font-style: normal; color: var(--brand); background: linear-gradient(transparent 70%, rgba(43, 179, 160, .22) 70%); }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 750; color: var(--brand); margin-bottom: 14px; }
.eyebrow a { color: inherit; text-decoration: none; }
.lead { font-size: 1.17rem; color: var(--ink-2); max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-chart { margin: 0; background: var(--card); border-radius: 20px; padding: 20px 20px 16px; box-shadow: var(--shadow), 0 30px 60px -30px rgba(15, 42, 61, .25); border: 1px solid var(--line); }
.hero-chart svg { display: block; width: 100%; height: auto; }
.hero-chart .grid line { stroke: #ece8df; stroke-width: 1; }
.hero-chart path { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.hero-chart .pv { stroke: #9aa9b5; stroke-dasharray: 2 7; }
.hero-chart .ev { stroke: var(--brand); stroke-width: 3.5; }
.hero-chart .ac { stroke: var(--amber); }
.hero-chart .fc { stroke: var(--amber); stroke-dasharray: 7 7; opacity: .55; }
.hero-chart .ev-dot { fill: var(--brand); stroke: #fff; stroke-width: 3; }
.hero-chart .ac-dot { fill: var(--amber); stroke: #fff; stroke-width: 3; }
.hero-chart .today { stroke: var(--ink); stroke-width: 1; stroke-dasharray: 3 4; opacity: .4; }
.hero-chart .budget { stroke: var(--ink); stroke-width: 1.5; opacity: .35; }
.hero-chart .budget-l { font-size: 12px; font-weight: 700; fill: var(--muted); font-family: var(--font); }
.hero-chart .today-l { font-size: 12px; font-weight: 700; fill: var(--muted); font-family: var(--font); }
.legend { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .82rem; color: var(--muted); font-weight: 600; padding: 8px 4px 0; }
.legend span::before { content: ''; display: inline-block; width: 18px; height: 3px; border-radius: 2px; margin-right: 7px; vertical-align: middle; }
.k-pv::before { background: repeating-linear-gradient(90deg, #9aa9b5 0 3px, transparent 3px 7px); }
.k-ev::before { background: var(--brand); }
.k-ac::before { background: var(--amber); }
.k-fc::before { background: repeating-linear-gradient(90deg, var(--amber) 0 5px, transparent 5px 9px); opacity: .7; }
@media (prefers-reduced-motion: no-preference) {
  .hero-chart path { stroke-dashoffset: 0; }
  .hero-chart .ev, .hero-chart .ac { stroke-dasharray: 700; stroke-dashoffset: 700; animation: draw 1.6s .2s ease-out forwards; }
  .hero-chart .ac { animation-delay: .45s; }
  .hero-chart circle { opacity: 0; animation: fade .3s 1.7s forwards; }
  .hero-chart .fc { opacity: 0; animation: fade .6s 1.9s forwards; }
  @keyframes draw { to { stroke-dashoffset: 0; } }
  @keyframes fade { to { opacity: 1; } }
  .hero-chart .fc { animation-name: fadeFc; }
  @keyframes fadeFc { to { opacity: .55; } }
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.pt0 { padding-top: 8px; }
.tint { background: var(--tint); }
.section-title { margin-bottom: 32px; }
.section-intro { max-width: 640px; margin-bottom: 36px; }
.section-intro .section-title { margin-bottom: 10px; }
.section-intro p { color: var(--ink-2); font-size: 1.07rem; margin: 0; }
.section-intro.row { max-width: none; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.tint-card { background: var(--brand-soft); border-color: #cde8e3; box-shadow: none; }

.page-head { padding: 64px 0 40px; }
.page-head .lead { margin-top: 8px; }

.pillar { padding: 4px 0; }
.pillar-icon, .service-icon, .product-icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); margin-bottom: 16px; font-size: 1.3rem; }
.product-icon.lg { width: 60px; height: 60px; font-size: 1.6rem; border-radius: 16px; }
.pillar p { color: var(--ink-2); }

.product-card { display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.tagline { font-weight: 700; color: var(--brand); margin-bottom: 12px; }
.product-card > p:not(.tagline) { color: var(--ink-2); }
.card-actions { margin-top: auto; padding-top: 16px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.ticks { list-style: none; padding: 0; margin: 0 0 8px; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; }
.ticks .i { color: var(--brand); margin-top: .3em; }
.ticks.lg li { font-size: 1.1rem; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.steps li { border-top: 2px solid var(--ink); padding-top: 18px; }
.step-n { display: block; font-weight: 800; color: var(--brand); font-size: .9rem; letter-spacing: .06em; margin-bottom: 8px; }
.steps p { color: var(--ink-2); margin: 0; }

.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; position: relative; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h3 a::after { content: ''; position: absolute; inset: 0; }
.post-card > p:not(.meta):not(.tags) { color: var(--ink-2); font-size: .95rem; }
.meta { font-size: .85rem; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.tags { margin: auto 0 0; display: flex; gap: 6px; flex-wrap: wrap; }
.tags span { font-size: .75rem; font-weight: 700; background: var(--tint); color: var(--ink-2); padding: 3px 9px; border-radius: 999px; }

.service-list { display: grid; gap: 20px; }
.service { display: grid; grid-template-columns: auto 1.3fr 1fr; gap: 28px; align-items: start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; scroll-margin-top: 90px; }
.service .service-icon { margin: 0; }
.service h2 { font-size: 1.4rem; }
.service p { color: var(--ink-2); margin: 0; }

.feature h3 { display: flex; gap: 10px; align-items: flex-start; font-size: 1.05rem; }
.feature h3 .i { color: var(--brand); margin-top: .15em; }
.feature p { color: var(--ink-2); font-size: .95rem; }

.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.prose { font-size: 1.08rem; }
.prose h2 { font-size: 1.5rem; margin-top: 1.8em; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose strong { color: var(--ink); }
.post .prose { padding-bottom: 24px; }
.founder .avatar { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-weight: 800; font-size: 1.4rem; margin-bottom: 16px; }
.founder h2 { font-size: 1.3rem; margin-bottom: 0; }

.cta-band { background: var(--ink); color: #fff; padding: 72px 0; background-image: radial-gradient(700px 300px at 90% 0%, rgba(43, 179, 160, .25), transparent 60%); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: #c3d0da; max-width: 36em; margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; }
.form { display: grid; gap: 20px; }
.grid-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field label, .field legend { font-weight: 650; font-size: .92rem; }
.opt { color: var(--muted); font-weight: 500; }
input, select, textarea { font: inherit; font-size: 1rem; color: var(--ink); background: #fff; border: 1.5px solid #d4cec2; border-radius: 10px; padding: .7em .85em; width: 100%; transition: border-color .15s, box-shadow .15s; }
input:hover, select:hover, textarea:hover { border-color: #b8b1a3; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(43, 179, 160, .18); }
textarea { resize: vertical; min-height: 120px; }
input, select, textarea, .chips { scroll-margin-top: 100px; }
.invalid input, .invalid select, .invalid textarea, input.invalid { border-color: var(--danger); }
fieldset { border: 0; padding: 0; margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span { display: inline-block; padding: .5em 1em; border: 1.5px solid #d4cec2; border-radius: 999px; background: #fff; font-weight: 600; font-size: .92rem; cursor: pointer; transition: .15s; }
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--brand-2); outline-offset: 2px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-2); cursor: pointer; }
.check input { width: 18px; height: 18px; margin: .2em 0 0; accent-color: var(--brand); flex: none; padding: 0; }
.check.invalid span { color: var(--danger); }
.check.small { font-size: .8rem; }
.form .btn { justify-self: start; }
.hp { position: absolute; left: -9999px; }
.form-status { margin: 0; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--brand); background: var(--brand-soft); padding: 14px 16px; border-radius: 10px; }
.form-status.err { color: var(--danger); }
.form.done > :not(.form-status) { display: none; }
.form.done .form-status { font-size: 1.1rem; padding: 24px; }
.aside h2 { font-size: 1.2rem; }

.newsletter { display: grid; gap: 10px; position: relative; }
.nl-row { display: flex; gap: 8px; }
.nl-row input { min-width: 0; }
.newsletter.done .nl-row, .newsletter.done .check { display: none; }
.newsletter-card { text-align: left; }
.center .newsletter { max-width: 460px; margin: 20px auto 0; text-align: left; }

/* ---------- Footer ---------- */
.site-footer { background: #0b2030; color: #b9c6d0; padding: 64px 0 28px; font-size: .95rem; }
.site-footer a { color: #dfe7ec; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.6fr; gap: 40px; }
.footer-brand p { margin-top: 14px; }
.footer-h { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer input[type=email] { background: #12304a; border-color: #24465f; color: #fff; }
.site-footer input::placeholder { color: #8ea2b1; }
.site-footer .btn { background: var(--brand); }
.site-footer .check { color: #9fb1bf; }
.site-footer .form-status.ok { background: rgba(43, 179, 160, .15); color: #7fe0d0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid #1c3a50; margin-top: 48px; padding-top: 24px; font-size: .85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-grid, .about-grid, .form-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
  .service { grid-template-columns: 1fr; gap: 16px; }
  .section { padding: 60px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .card, .service { padding: 22px; }
  .grid-4, .steps, .grid-fields, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .nl-row { flex-direction: column; }
  .form .btn { justify-self: stretch; justify-content: center; }
}
