/* ============================================================
   Koduote - FLAT ILLUSTRATION landing. Warm, friendly, animated.
   ============================================================ */

/* Lietuviškas „ū"/„Ū" Baloo 2 šrifte atrodo neaiškiai - priverčiame šias raides imti
   iš švaraus sistemos šrifto, o visa kita lieka Baloo 2. */
@font-face {
  font-family: "LtMacron";
  src: local("Segoe UI"), local("Helvetica Neue"), local("Arial"), local("Noto Sans");
  unicode-range: U+016A-016B;
}

:root {
  --cream: #fff7ee;
  --cream2: #fdeede;
  --paper: #fffdf9;
  --ink: #241e44;
  --ink2: #3c3563;
  --mut: #746e92;
  --coral: #ff6f5e;
  --coral-d: #ef5340;
  --teal: #25c4a0;
  --teal-d: #16a98a;
  --yellow: #ffc24b;
  --lav: #9b8cff;
  --blue: #4f8cff;
  --pink: #ff8fb1;
  --line: rgba(36, 30, 68, 0.10);
  --line2: rgba(36, 30, 68, 0.16);
  --shadow: 0 24px 50px rgba(36, 30, 68, 0.12);
  --shadow-sm: 0 10px 26px rgba(36, 30, 68, 0.10);
  --wrap: 1180px;
  --font: "LtMacron", "Baloo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: 24px; position: relative; z-index: 2; }
.mut { color: var(--mut); }

/* ---------------- Animations ---------------- */
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-16px) } }
@keyframes floatX { 0%,100% { transform: translate(0,0) rotate(0) } 50% { transform: translate(8px,-14px) rotate(4deg) } }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-3deg) } 50% { transform: translateY(-12px) rotate(3deg) } }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1) } 33% { transform: translate(40px,-30px) scale(1.08) } 66% { transform: translate(-30px,20px) scale(0.95) } }
@keyframes morph { 0%,100% { border-radius: 42% 58% 60% 40% / 45% 45% 55% 55% } 50% { border-radius: 60% 40% 40% 60% / 55% 60% 40% 45% } }
@keyframes spinSlow { to { transform: rotate(360deg) } }
@keyframes wiggle { 0%,100% { transform: rotate(-6deg) } 50% { transform: rotate(6deg) } }
@keyframes dash { to { stroke-dashoffset: 0 } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* small floating shapes */
.shape { position: absolute; z-index: 1; }
.s-ring { width: 34px; height: 34px; border-radius: 50%; border: 7px solid var(--yellow); }
.s-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--teal); }
.s-plus { width: 26px; height: 26px; background:
  linear-gradient(var(--coral),var(--coral)) center/100% 8px no-repeat,
  linear-gradient(var(--coral),var(--coral)) center/8px 100% no-repeat; border-radius: 3px; }
.s-tri { width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent; border-bottom: 24px solid var(--lav); }

/* ---------------- Nav ---------------- */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(255,247,238,0.9); border-bottom: 1px solid var(--line); }
.nav__row { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { font-weight: 800; font-size: 22px; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 10px; }
.logo__mark { width: 32px; height: 32px; border-radius: 10px; background: var(--coral); color: #fff; display: grid; place-items: center; font-size: 16px; transform: rotate(-6deg); box-shadow: 3px 4px 0 var(--ink); }
.nav__menu { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: 15px; color: var(--ink2); font-weight: 600; transition: .15s; }
.nav__links a:hover { color: var(--coral); }
.nav__burger { display: none; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0; background: #fff; border: 2px solid var(--ink); border-radius: 11px; box-shadow: 2px 3px 0 var(--ink); cursor: pointer; }
.nav__burger span { display: block; width: 18px; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------------- Buttons ---------------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15.5px; padding: 13px 26px; border-radius: 999px; transition: transform .15s, box-shadow .15s; border: 0; cursor: pointer; white-space: nowrap; font-family: inherit; }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 4px 5px 0 var(--ink); }
.btn--primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 7px 0 var(--ink); }
.btn--ghost { background: #fff; color: var(--ink); box-shadow: 4px 5px 0 var(--ink); border: 2px solid var(--ink); }
.btn--ghost:hover { transform: translate(-2px,-2px); box-shadow: 6px 7px 0 var(--ink); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 4px 5px 0 var(--ink); }
.btn--teal:hover { transform: translate(-2px,-2px); box-shadow: 6px 7px 0 var(--ink); }
.btn--sm { padding: 10px 20px; font-size: 14.5px; box-shadow: 3px 4px 0 var(--ink); }

/* ---------------- Headings ---------------- */
.h1 { font-size: clamp(42px, 6.6vw, 76px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.02; }
.h2 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.06; }
.h3 { font-size: clamp(27px, 3.6vw, 40px); font-weight: 800; letter-spacing: -0.015em; line-height: 1.1; }
.squiggle { display: inline-block; position: relative; }
.squiggle svg { position: absolute; left: 0; right: 0; bottom: -10px; width: 100%; height: 14px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--coral-d); background: #fff; padding: 8px 16px; border-radius: 999px; box-shadow: 3px 3px 0 var(--ink); border: 2px solid var(--ink); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.lead { color: var(--ink2); font-size: clamp(16.5px, 1.7vw, 20px); line-height: 1.6; }

/* ---------------- Hero ---------------- */
.hero { padding: 58px 0 88px; position: relative; background: linear-gradient(180deg, var(--cream2) 0%, var(--cream) 72%); }
.hero__center { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.hero__center .eyebrow { margin-bottom: 22px; }
.hero__center .h1 { margin-bottom: 20px; }
.hero__center .lead { max-width: 54ch; margin: 0 auto; }
.hero__cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }

.hero__scribble { display: inline-flex; align-items: flex-end; gap: 8px; margin-top: 14px; transform: rotate(-2deg); }
.hero__scribble span { font-family: "Caveat", cursive; font-size: 23px; font-weight: 600; color: var(--ink2); }
.hero__arrow { width: 56px; height: auto; flex-shrink: 0; margin-bottom: 2px; }

.hero__pills { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 34px auto 0; }
.hpill { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--ink2); background: #fff; border: 2px solid var(--ink); border-radius: 999px; padding: 8px 16px; box-shadow: 2px 3px 0 var(--ink); }
.hpill svg { width: 16px; height: 16px; stroke: var(--coral); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__bg .s-ring { top: 70px; left: 7%; }
.hero__bg .s-plus { top: 92px; right: 8%; }
.hero__bg .s-dot { bottom: 210px; left: 9%; }
@media (max-width: 620px) { .hero__bg .shape { display: none; } }

/* hero illustration (didelis būsenos langas) */
.hero__shot { position: relative; z-index: 2; max-width: 720px; margin: 46px auto 0; display: flex; justify-content: center; }
.illo__blob { position: absolute; z-index: 0; width: 84%; aspect-ratio: 1.5; left: 50%; top: 52%; transform: translate(-50%,-50%); background: var(--teal); opacity: .13; border-radius: 46% 54% 58% 42% / 48% 42% 58% 52%; }
.appwin { position: relative; z-index: 2; width: 100%; max-width: 432px; margin: 0; background: #1d1834; border: 2.5px solid var(--ink); border-radius: 20px; overflow: hidden; box-shadow: 10px 13px 0 rgba(36,30,68,.18); }
.appwin--lg { max-width: 720px; }
.appwin--lg .appwin__body { padding: 20px 24px 18px; }
.appwin__title { margin-left: 10px; font-family: var(--mono); font-size: 12.5px; color: rgba(255,255,255,.45); }
.appwin__bar { display: flex; align-items: center; gap: 7px; padding: 14px 16px; background: #262040; border-bottom: 1px solid rgba(255,255,255,.07); }
.appwin__bar i { width: 11px; height: 11px; border-radius: 50%; }
.appwin__body { padding: 18px 20px 16px; }
.appwin__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 4px; }
.appwin__head b { color: #fff; font-size: 15.5px; font-weight: 700; }
.aw-ok { font-size: 12px; font-weight: 700; color: #34d399; background: rgba(52,211,153,.14); padding: 5px 12px; border-radius: 999px; }
.aw-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 13.5px; }
.aw-row:last-child { border: 0; }
.aw-row__l { color: #bdb9d6; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.aw-row__l svg { width: 17px; height: 17px; stroke: #807aa0; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.aw-badge { font-size: 11.5px; font-weight: 700; padding: 4px 11px; border-radius: 7px; }
.aw-badge--g { background: rgba(52,211,153,.16); color: #34d399; }
.aw-badge--w { background: rgba(255,194,75,.18); color: var(--yellow); }
.aw-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
@media (max-width: 680px) { .aw-cols { grid-template-columns: 1fr; gap: 0; } }
.aw-row--parent { border-bottom: 0; padding-bottom: 4px; }
.aw-sub { margin: 0 0 6px 8px; padding: 2px 0 2px 26px; border-left: 2px solid rgba(255,255,255,.09); }
.aw-subrow { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; font-size: 12.5px; font-weight: 500; color: #9c97ba; }
.aw-subrow .aw-badge { font-size: 11px; padding: 3px 9px; }
.toast { position: absolute; z-index: 3; top: -20px; right: -8px; display: flex; align-items: center; gap: 11px; background: var(--paper); border: 2.5px solid var(--ink); border-radius: 15px; padding: 10px 15px 10px 11px; box-shadow: 4px 6px 0 rgba(36,30,68,.16); animation: floatSoft 5s ease-in-out infinite; }
.toast__ic { flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px; background: var(--teal); display: grid; place-items: center; }
.toast__ic svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.toast__t b { display: block; font-size: 13.5px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.toast__t span { font-size: 12.5px; color: var(--mut); font-weight: 600; }
@keyframes floatSoft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 460px) { .toast { display: none; } }

/* ---------------- Sections ---------------- */
.section { padding: 90px 0; position: relative; }
.section--alt { background: var(--cream2); }
.wave { display: block; width: 100%; height: 60px; }
.section__head { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section__head .eyebrow { margin-bottom: 20px; }
.section__head .lead { margin-top: 18px; }

/* ---------------- Feature rows ---------------- */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 112px; }
.feat:last-child { margin-bottom: 0; }
.feat--flip .feat__illo { order: 2; }
.feat__illo { position: relative; }
.feat__illo svg { width: 100%; max-width: 420px; margin: 0 auto; display: block; }
.feat__card { background: var(--paper); border: 2px solid var(--ink); border-radius: 28px; padding: 30px; box-shadow: 8px 10px 0 rgba(36,30,68,.1); }
.feat__text .h3 { margin-bottom: 16px; }
.feat__text .lead { max-width: 44ch; }
.iflist { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.if { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.if__ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; }
.if__ic svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.if h4 { font-size: 18px; font-weight: 800; }
.if p { color: var(--mut); font-size: 15px; margin-top: 3px; line-height: 1.5; font-weight: 500; }
.c-coral { background: var(--coral); } .c-teal { background: var(--teal); } .c-yellow { background: var(--yellow); } .c-lav { background: var(--lav); } .c-blue { background: var(--blue); } .c-pink { background: var(--pink); }
@media (max-width: 920px) { .feat { grid-template-columns: 1fr; gap: 36px; margin-bottom: 76px; } .feat--flip .feat__illo { order: 0; } }

/* ---------------- Feature grid ---------------- */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 880px) { .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .fgrid { grid-template-columns: 1fr; } }
.fcard { background: var(--paper); border: 2px solid var(--ink); border-radius: 22px; padding: 28px; box-shadow: 5px 6px 0 rgba(36,30,68,.1); }
.fcard__ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.fcard__ic svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.fcard h4 { font-size: 18.5px; font-weight: 800; }
.fcard p { color: var(--mut); font-size: 15px; margin-top: 8px; line-height: 1.5; font-weight: 500; }

/* ---------------- Frontend / code ---------------- */
.fe__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .fe__grid { grid-template-columns: 1fr; gap: 36px; } }
.fe__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.fe__chip { font-size: 14px; font-weight: 700; color: var(--ink); background: #fff; border: 2px solid var(--ink); padding: 7px 16px; border-radius: 999px; box-shadow: 2px 3px 0 var(--ink); }
.callout { margin-top: 22px; background: #fff; border: 2px solid var(--ink); border-radius: 16px; padding: 17px 20px; box-shadow: 5px 6px 0 var(--coral); font-size: 15px; line-height: 1.55; color: var(--ink2); font-weight: 500; }
.callout strong { display: block; color: var(--ink); margin-bottom: 4px; font-weight: 800; }
.code { background: #2a2350; border: 2px solid var(--ink); border-radius: 20px; overflow: hidden; box-shadow: 8px 10px 0 rgba(36,30,68,.18); }
.code__head { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.code__head i { width: 12px; height: 12px; border-radius: 50%; }
.code__head .fn { margin-left: 8px; font-family: var(--mono); font-size: 12.5px; color: rgba(255,255,255,.45); }
.code pre { padding: 22px; font-family: var(--mono); font-size: 13px; line-height: 1.8; overflow-x: auto; color: #d8d2f5; }
.code .k { color: #ff9d8f; } .code .s { color: #8fe9c8; } .code .c { color: #7a73a8; } .code .f { color: #9ec3ff; }

/* ---------------- Deploy ---------------- */
.deploy__row { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.deploy__c { flex: 1; min-width: 220px; background: var(--paper); border: 2px solid var(--ink); border-radius: 22px; padding: 28px; text-align: center; box-shadow: 5px 6px 0 rgba(36,30,68,.1); }
.deploy__c .fcard__ic { margin: 0 auto 14px; }
.deploy__c h4 { font-size: 17px; font-weight: 800; }
.deploy__c p { color: var(--mut); font-size: 14px; margin-top: 6px; font-weight: 500; }

/* ---------------- CTA / kaina ---------------- */
.cta { padding: 100px 0; }
.pricing { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; max-width: 1000px; margin: 0 auto; }
@media (max-width: 880px) { .pricing { grid-template-columns: 1fr; gap: 34px; max-width: 520px; } }

.pricing__pitch .eyebrow { margin-bottom: 18px; }
.pricing__pitch .h2 { margin-bottom: 16px; }
.pricing__sub { color: var(--ink2); font-size: 17px; font-weight: 500; line-height: 1.55; margin-bottom: 26px; max-width: 42ch; }
.pricing .why-list { gap: 14px; }
.pricing__note { margin-top: 22px; font-size: 14px; font-weight: 600; color: var(--mut); }

.offer { position: relative; background: var(--paper); border: 2.5px solid var(--ink); border-radius: 26px; padding: 36px 30px 26px; box-shadow: 10px 12px 0 var(--coral); }
.offer__flag { position: absolute; top: -16px; left: 28px; display: inline-flex; align-items: center; gap: 7px; background: var(--yellow); color: var(--ink); font-weight: 800; font-size: 13px; padding: 6px 15px; border-radius: 999px; border: 2px solid var(--ink); box-shadow: 2px 3px 0 var(--ink); }
.offer__label { display: block; font-size: 14px; font-weight: 700; color: var(--mut); margin-top: 8px; }
.offer__amounts { display: flex; align-items: baseline; gap: 14px; margin-top: 4px; }
.offer__old { position: relative; font-size: 26px; font-weight: 700; color: var(--mut); }
.offer__old::after { content: ""; position: absolute; left: -3px; right: -3px; top: 52%; height: 3px; border-radius: 2px; background: var(--coral); transform: scaleX(1); transform-origin: left center; transition: transform 1s cubic-bezier(.55,0,.2,1); }
.offer.anim-ready .offer__old::after { transform: scaleX(0); }
.offer.anim-ready.is-priced .offer__old::after { transform: scaleX(1); }
.offer__new { font-size: 56px; font-weight: 800; color: var(--ink); line-height: 1; transform-origin: left center; transition: opacity .9s ease, transform 1s cubic-bezier(.2,1.6,.4,1); }
.offer.anim-ready .offer__new { opacity: 0; transform: scale(.5); }
.offer.anim-ready.is-priced .offer__new { opacity: 1; transform: scale(1); transition-delay: 1s; }
.offer__vat { display: block; font-size: 13.5px; color: var(--mut); font-weight: 600; margin-top: 7px; }
.offer__bonus { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0; padding: 15px 16px; border: 2px dashed var(--line2); border-radius: 16px; background: #f1faf6; }
.offer__bonus-ic { font-size: 22px; line-height: 1.1; flex-shrink: 0; }
.offer__bonus b { display: block; font-size: 15px; font-weight: 800; color: var(--ink); }
.offer__bonus span { font-size: 13.5px; color: var(--ink2); font-weight: 500; line-height: 1.45; }
.offer__cta { width: 100%; justify-content: center; font-size: 16.5px; padding: 15px 26px; }
.offer__consent { margin-top: 18px; text-align: center; font-size: 12.5px; line-height: 1.5; font-weight: 500; color: var(--mut); }
.offer__consent a { color: var(--ink2); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.offer__consent a:hover { color: var(--coral-d); }

/* ---------------- Legal pages (taisyklės, privatumas) ---------------- */
.legal { padding: 56px 0 90px; }
.legal__head { max-width: 760px; margin: 0 auto 40px; }
.legal__head h1 { font-size: clamp(32px, 5vw, 46px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.06; margin-top: 16px; }
.legal__updated { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--mut); }
.legal__body { max-width: 760px; margin: 0 auto; }
.legal__body h2 { font-size: 21px; font-weight: 800; color: var(--ink); margin: 36px 0 12px; letter-spacing: -0.01em; }
.legal__body p { color: var(--ink2); font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.legal__body ul { margin: 8px 0 16px; padding-left: 22px; }
.legal__body li { color: var(--ink2); font-size: 16px; line-height: 1.65; margin-bottom: 8px; }
.legal__body strong { color: var(--ink); font-weight: 700; }
.legal__body a { color: var(--coral-d); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.legal__body a:hover { color: var(--coral); }

/* changelog (pakeitimai) */
.cl { max-width: 720px; margin: 0 auto; }
.cl-entry { position: relative; padding-left: 34px; padding-bottom: 44px; border-left: 2px solid var(--line2); margin-left: 7px; }
.cl-entry:last-child { padding-bottom: 0; border-left-color: transparent; }
.cl-entry__dot { position: absolute; left: -10px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--coral); border: 2.5px solid var(--ink); }
.cl-entry--soon .cl-entry__dot { background: var(--yellow); }
.cl-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cl-ver { font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.cl-tag { font-size: 12px; font-weight: 800; padding: 4px 11px; border-radius: 999px; border: 2px solid var(--ink); background: var(--yellow); color: var(--ink); }
.cl-tag--soon { background: #fff; color: var(--mut); }
.cl-date { font-size: 13.5px; font-weight: 600; color: var(--mut); }
.cl-entry h2 { font-size: 19px; font-weight: 800; margin: 14px 0 8px; }
.cl-entry > p { color: var(--ink2); font-size: 15.5px; line-height: 1.6; margin-bottom: 4px; }
.cl-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.cl-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink2); font-weight: 500; line-height: 1.5; }
.cl-badge { flex-shrink: 0; font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 7px; margin-top: 1px; }
.cl-badge--add { background: rgba(37,196,160,.16); color: var(--teal-d); }
.cl-badge--soon { background: rgba(255,194,75,.22); color: #a9741a; }

/* ekranų galerija (admin) */
.gallery { max-width: 820px; margin: 0 auto; }
.gallery__main { position: relative; margin: 0; cursor: zoom-in; }
.gallery__frame { border: 2.5px solid var(--ink); border-radius: 16px; overflow: hidden; box-shadow: 10px 12px 0 rgba(36,30,68,.16); background: #14121f; }
.gallery__bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: #1d1834; }
.gallery__bar i { width: 11px; height: 11px; border-radius: 50%; }
.gallery__frame img { display: block; width: 100%; height: auto; }
.gallery__zoom { position: absolute; right: 14px; bottom: 14px; background: rgba(36,30,68,.85); color: #fff; font-size: 12.5px; font-weight: 700; padding: 6px 13px; border-radius: 999px; pointer-events: none; opacity: 0; transition: opacity .2s; }
.gallery__main:hover .gallery__zoom { opacity: 1; }
.gallery__thumbs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.gallery__thumb { width: 92px; height: 64px; padding: 0; border: 2px solid var(--ink); border-radius: 9px; overflow: hidden; cursor: pointer; background: #14121f; box-shadow: 2px 3px 0 rgba(36,30,68,.12); transition: transform .15s, box-shadow .15s; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.gallery__thumb:hover { transform: translateY(-2px); }
.gallery__thumb.is-active { border-color: var(--coral); box-shadow: 2px 3px 0 var(--coral); }
@media (max-width: 540px) { .gallery__thumb { width: 72px; height: 52px; } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(20,16,30,.92); cursor: zoom-out; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: 10px; border: 2px solid rgba(255,255,255,.16); box-shadow: 0 24px 70px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.lightbox__close:hover { background: rgba(255,255,255,.24); }

/* ---------------- Footer ---------------- */
.footer { padding: 46px 0; border-top: 1px solid var(--line); }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--mut); font-size: 14px; font-weight: 600; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a:hover { color: var(--coral); }

/* ---------------- Stack strip ---------------- */
.stack { padding: 28px 0; }
.stack__lbl { text-align: center; color: var(--mut); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.stack__row { display: flex; align-items: center; justify-content: center; gap: 14px 38px; flex-wrap: wrap; }
.stack__row span { color: var(--ink2); font-size: 16px; font-weight: 700; opacity: .8; }

@media (max-width: 760px) {
  .nav__burger { display: flex; margin-left: auto; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 8px 24px 18px;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 2px solid var(--ink);
    box-shadow: 0 16px 24px rgba(36,30,68,.10);
    display: none;
  }
  .nav.is-open .nav__menu { display: flex; }
  .nav__links { flex-direction: column; gap: 0; }
  .nav__links a { padding: 13px 4px; font-size: 16.5px; border-bottom: 1px solid var(--line); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__menu > .btn { margin-top: 12px; width: 100%; justify-content: center; }
}

/* ---------------- Šablonai (3 dizainai) ---------------- */
.tpls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 880px) { .tpls { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }
.tpl__win { border: 2.5px solid var(--ink); border-radius: 16px; overflow: hidden; box-shadow: 6px 7px 0 rgba(36,30,68,.12); transition: transform .15s, box-shadow .15s; }
.tpl:hover .tpl__win { transform: translate(-4px,-4px); box-shadow: 10px 11px 0 rgba(36,30,68,.14); }
.tpl__meta { margin-top: 16px; }
.tpl__meta h4 { font-size: 18px; font-weight: 800; }
.tpl__meta span { display: block; color: var(--mut); font-size: 14px; font-weight: 500; margin-top: 2px; }
.tpls__note { text-align: center; margin-top: 34px; color: var(--mut); font-size: 15.5px; font-weight: 500; }
.tpls__note strong { color: var(--ink); font-weight: 800; }
.tpl-one { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; max-width: 920px; margin: 0 auto; }
@media (max-width: 760px) { .tpl-one { grid-template-columns: 1fr; gap: 28px; max-width: 440px; } }
.tpl-one__info h3 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; letter-spacing: -0.01em; }
.tpl-one__info > p { color: var(--mut); font-size: 15.5px; font-weight: 500; line-height: 1.55; margin-top: 10px; }
.tpl-one__info .why-list { margin-top: 20px; gap: 12px; }

/* mini storefront preview */
.mini { aspect-ratio: 4 / 3.3; display: flex; flex-direction: column; }
.mini__bar { height: 22px; display: flex; align-items: center; gap: 4px; padding: 0 11px; flex-shrink: 0; }
.mini__bar i { width: 5px; height: 5px; border-radius: 50%; background: rgba(0,0,0,.16); }
.mini__page { flex: 1; display: flex; flex-direction: column; }
.mini__nav { display: flex; align-items: center; justify-content: space-between; padding: 9px 13px; }
.mini__logo { width: 30px; height: 7px; border-radius: 3px; }
.mini__links { display: flex; gap: 5px; }
.mini__links b { width: 14px; height: 4px; border-radius: 2px; display: block; }
.mini__hero { padding: 4px 13px 10px; display: flex; flex-direction: column; gap: 5px; }
.mini__h { width: 72%; height: 9px; border-radius: 3px; }
.mini__h2 { width: 48%; height: 9px; border-radius: 3px; }
.mini__btn { width: 46px; height: 12px; border-radius: 6px; margin-top: 4px; }
.mini__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 4px 13px 14px; margin-top: auto; }
.mini__grid span { aspect-ratio: 1 / 1.15; border-radius: 5px; display: block; }
.mini--minimal { background: #fff; }
.mini--minimal .mini__bar { background: #f0f0f3; }
.mini--minimal .mini__logo { background: #1b1b1f; }
.mini--minimal .mini__links b { background: #cdcdd4; }
.mini--minimal .mini__h, .mini--minimal .mini__h2 { background: #1b1b1f; }
.mini--minimal .mini__btn { background: var(--coral); }
.mini--minimal .mini__grid span { background: #ececed; }
.mini--bold { background: #16131f; }
.mini--bold .mini__bar { background: #221d33; }
.mini--bold .mini__logo { background: #c9ff3d; }
.mini--bold .mini__links b { background: #4a4560; }
.mini--bold .mini__h, .mini--bold .mini__h2 { background: #fff; }
.mini--bold .mini__btn { background: #c9ff3d; }
.mini--bold .mini__grid span { background: #2a2540; }
.mini--boutique { background: #fff7ee; }
.mini--boutique .mini__bar { background: #f2e5d4; }
.mini--boutique .mini__logo { background: #b5532f; }
.mini--boutique .mini__links b { background: #e0c9b3; }
.mini--boutique .mini__h, .mini--boutique .mini__h2 { background: #3a2a20; }
.mini--boutique .mini__btn { background: var(--teal); }
.mini--boutique .mini__grid span { background: #f6e7d6; }

/* docs label (instruktažas kortelėse) */
.docs { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 700; color: var(--mut); font-family: var(--mono); letter-spacing: 0.02em; }

/* ---------------- Du būdai paleisti (interaktyvus pasirinkimas) ---------------- */
.modes { max-width: 1000px; margin: 0 auto; }
.modes__pick { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .modes__pick { grid-template-columns: 1fr; } }

.mode-card {
  position: relative; display: flex; gap: 16px; align-items: flex-start;
  text-align: left; cursor: pointer; background: var(--paper);
  border: 2.5px solid var(--ink); border-radius: 22px; padding: 22px 22px 20px;
  box-shadow: 5px 6px 0 rgba(36,30,68,.12);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s, background .25s, border-color .25s;
  -webkit-tap-highlight-color: transparent;
}
.mode-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 10px 0 rgba(36,30,68,.14); }
.mode-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.mode-card.is-active { transform: translate(-3px,-3px); box-shadow: 9px 10px 0 var(--ink); }
.mode-card.m-tpl.is-active { background: #e9faf4; border-color: var(--teal-d); }
.mode-card.m-ai.is-active { background: #fff0ec; border-color: var(--coral-d); }

.mode-card__ic { flex-shrink: 0; width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; color: #fff; box-shadow: 2px 3px 0 rgba(36,30,68,.18); }
.mode-card__ic svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mode-card.m-tpl .mode-card__ic { background: var(--teal); }
.mode-card.m-ai .mode-card__ic { background: var(--coral); }

.mode-card__t { flex: 1; min-width: 0; padding-right: 18px; }
.mode-card__t h4 { font-size: 19px; font-weight: 800; }
.mode-card__t p { color: var(--mut); font-size: 14.5px; font-weight: 500; margin-top: 6px; line-height: 1.5; }
.mode-card__badge { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 800; padding: 4px 11px; border-radius: 999px; border: 2px solid var(--ink); }
.mode-card.m-tpl .mode-card__badge { background: var(--teal); color: #fff; }
.mode-card.m-ai .mode-card__badge { background: var(--yellow); color: var(--ink); }

.mode-card__r { position: absolute; top: 16px; right: 16px; width: 26px; height: 26px; border-radius: 50%; border: 2.5px solid var(--line2); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.mode-card__r svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transform: scale(.3); transition: opacity .2s, transform .3s cubic-bezier(.2,1.5,.4,1); }
.mode-card.is-active .mode-card__r { border-color: transparent; }
.mode-card.m-tpl.is-active .mode-card__r { background: var(--teal-d); }
.mode-card.m-ai.is-active .mode-card__r { background: var(--coral-d); }
.mode-card.is-active .mode-card__r svg { opacity: 1; transform: scale(1); }

.modes__stage { margin-top: 28px; }
.mode-panel { display: none; }
.mode-panel.is-active { display: block; }
.mode-panel:focus { outline: none; }

/* "iškrentantis" tekstas - pakopinė drop-in animacija */
@keyframes dropIn {
  0%   { opacity: 0; transform: translateY(-32px) rotate(-1.5deg) scale(.97); }
  60%  { opacity: 1; transform: translateY(6px) rotate(.5deg) scale(1); }
  80%  { transform: translateY(-3px); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
@media (prefers-reduced-motion: no-preference) {
  .modes.js .mode-panel .drop { opacity: 0; }
  .modes.js .mode-panel.play .drop { animation: dropIn .62s cubic-bezier(.22,1,.36,1) both; animation-delay: calc(var(--i, 0) * 70ms); }
}

/* AI kelias */
.ai-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .ai-row { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }
.ai-step { background: var(--paper); border: 2px solid var(--ink); border-radius: 18px; padding: 22px; box-shadow: 5px 6px 0 rgba(36,30,68,.1); }
.ai-step__n { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--ink); color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 14px; }
.ai-step h4 { font-size: 17px; font-weight: 800; }
.ai-step p { color: var(--mut); font-size: 14.5px; font-weight: 500; margin-top: 6px; line-height: 1.5; }
.ai-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }

/* ---------------- Kodėl verta (palyginimas) ---------------- */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; max-width: 760px; margin: 0 auto; }
@media (max-width: 960px) { .why { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

.why-card { position: relative; background: var(--paper); border: 2px solid var(--ink); border-radius: 22px; padding: 26px 24px; box-shadow: 5px 6px 0 rgba(36,30,68,.1); }
.why-card--win { border-width: 2.5px; background: #fff; box-shadow: 7px 9px 0 var(--teal); }

.why-card__flag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); white-space: nowrap; background: var(--coral); color: #fff; font-size: 12.5px; font-weight: 800; padding: 5px 15px; border-radius: 999px; border: 2px solid var(--ink); box-shadow: 2px 3px 0 var(--ink); }

.why-card__top { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 2px dashed var(--line2); }
.why-card__ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; }
.why-card__ic svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.why-card__ic.c-mut { background: #a59fbb; }
.why-card__top h3 { font-size: 17.5px; font-weight: 800; line-height: 1.15; }
.why-card__top span { display: block; color: var(--mut); font-size: 13.5px; font-weight: 600; margin-top: 3px; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.pt { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; font-weight: 500; line-height: 1.45; color: var(--ink2); }
.pt__m { flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; margin-top: 1px; }
.pt__m svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pt--ok .pt__m { background: var(--teal); }
.pt--no { color: var(--mut); }
.pt--no .pt__m { background: #e0897e; }

.why-card__cta { width: 100%; justify-content: center; margin-top: 22px; }

.why__kicker { text-align: center; margin-top: 42px; font-size: clamp(18px, 2.4vw, 22px); font-weight: 700; color: var(--ink); }
.why__kicker strong { color: var(--coral-d); }

/* ---------------- 404 ---------------- */
.notfound { padding: 90px 0 110px; position: relative; overflow: hidden; }
.notfound__inner { max-width: 620px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.notfound__code { display: inline-block; font-size: clamp(96px, 19vw, 180px); font-weight: 800; line-height: .9; letter-spacing: -0.04em; color: var(--coral); -webkit-text-stroke: 3px var(--ink); }
.notfound__inner .h1 { margin: 10px 0 16px; }
.notfound__inner .lead { max-width: 46ch; margin: 0 auto; }
.notfound__cta { margin-top: 32px; display: flex; justify-content: center; }
.notfound__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.notfound__bg .s-ring { top: 90px; left: 12%; }
.notfound__bg .s-plus { top: 150px; right: 16%; }
.notfound__bg .s-dot { bottom: 120px; left: 16%; }
@media (max-width: 620px) { .notfound__bg .shape { display: none; } }
