:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --site-bg: #f3f0e9;
  --site-text: #24221f;
  --site-secondary: #6f6a61;
  --site-accent: #ff6846;
  --site-highlight: #ffc83d;
  --karmashek: #087ff5;
  --karmashek-dark: #0567cc;
  --surface: rgb(255 255 255 / 62%);
  --line: rgb(36 34 31 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--site-bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgb(255 200 61 / 16%), transparent 25rem),
    radial-gradient(circle at 95% 42%, rgb(8 127 245 / 8%), transparent 30rem),
    var(--site-bg);
  color: var(--site-text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgb(8 127 245 / 45%);
  outline-offset: 4px;
}

.site-page {
  display: flex;
  width: min(100% - 3rem, 1120px);
  min-height: 100svh;
  margin: 0 auto;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vh, 4rem) 0 1.5rem;
}

.site-header__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--site-text);
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.breadcrumb__separator {
  color: rgb(111 106 97 / 48%);
  font-size: 1.15rem;
}

.breadcrumb__current {
  min-width: 0;
  overflow: hidden;
  color: var(--site-secondary);
  font-size: 0.92rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__mark {
  flex: 0 0 auto;
  mix-blend-mode: multiply;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-footer__nav a {
  color: var(--site-secondary);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--site-text);
}

.home-main {
  display: flex;
  min-height: 610px;
  padding: clamp(2.5rem, 9vh, 7rem) 0 clamp(3rem, 7vh, 6rem);
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(3rem, 8vh, 6rem);
}

.intro {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: #bc4e36;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--karmashek-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5.5vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.intro__text {
  max-width: 560px;
  margin: 1.25rem 0 0;
  color: var(--site-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.product {
  display: flex;
  min-height: 190px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgb(67 53 31 / 4%);
  color: inherit;
  flex-direction: column;
  text-decoration: none;
}

.product--link {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product--link:hover {
  border-color: rgb(8 127 245 / 22%);
  box-shadow: 0 18px 46px rgb(13 79 145 / 11%);
  transform: translateY(-3px);
}

.product--soon {
  border-style: dashed;
  background: transparent;
  box-shadow: none;
}

.product__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.product h2 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.product > p,
.product > div > p {
  margin: 0.55rem 0 0;
  color: #777168;
  font-size: 0.88rem;
  line-height: 1.45;
}

.status {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #fff0c2;
  color: #785e0b;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.status--launched {
  background: #dcecff;
  color: #075eaf;
}

.status--soon {
  background: #e6e2da;
  color: #6b665d;
}

.product__icon {
  display: flex;
  width: 42px;
  height: 42px;
  margin-bottom: 1.5rem;
  border-radius: 13px;
  color: #fff;
}

.product__icon--app,
.product-hero__icon {
  overflow: hidden;
  background: var(--site-bg);
}

.app-icon--karmashek {
  background: black;
}

.app-icon--smuzy {
  background: white;
}

.app-icon--cifro {
  background: #26332e;
}

.product__icon--app img,
.product-hero__icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product__icon--more {
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgb(36 34 31 / 12%);
  background: transparent;
  color: #8d877d;
}

.product__icon--more span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentcolor;
}

.product-main {
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
}

.product-hero {
  display: grid;
  min-height: 520px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(2.5rem, 8vw, 7rem);
}

.product-hero__copy {
  max-width: 650px;
}

.product-hero h1 {
  font-size: clamp(3.3rem, 8vw, 6.8rem);
}

.product-hero__lead {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: var(--site-secondary);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.product-hero__icon {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24%;
  box-shadow: 0 30px 70px rgb(0 72 145 / 18%);
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.hero-meta .eyebrow {
  margin: 0 0.35rem 0 0;
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.availability span {
  padding: 0.45rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--site-secondary);
  font-size: 0.76rem;
  font-weight: 700;
}

.availability .availability__ready {
  border-color: rgb(8 127 245 / 18%);
  background: #dcecff;
  color: #075eaf;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--karmashek);
  color: #fff;
  box-shadow: 0 12px 24px rgb(8 127 245 / 20%);
}

.button--primary:hover {
  background: var(--karmashek-dark);
}

.button--secondary {
  border-color: var(--line);
  background: rgb(255 255 255 / 48%);
  color: var(--site-text);
}

.feature-section,
.showcase {
  padding-top: clamp(6rem, 12vw, 10rem);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading h2,
.product-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature {
  min-height: 180px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.feature__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.6rem;
  border-radius: 16px;
  background: rgb(10 132 255 / 11%);
  color: #0a84ff;
  place-items: center;
}

.feature__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.feature h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}

.feature p {
  margin: 0.7rem 0 0;
  color: var(--site-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2.5vw, 1.5rem);
}

.screenshot {
  min-width: 0;
  margin: 0;
}

.screenshot__frame {
  padding: 7px;
  border-radius: clamp(24px, 4vw, 38px);
  background: #161616;
  box-shadow: 0 22px 60px rgb(36 34 31 / 15%);
  overflow: hidden;
}

.screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(18px, 3.5vw, 31px);
  background: #000;
}

.screenshot figcaption {
  margin-top: 1rem;
  color: var(--site-secondary);
  font-size: 0.86rem;
  font-weight: 650;
  text-align: center;
}

.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(6rem, 12vw, 10rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 28px;
  background: #101c2a;
  color: #fff;
}

.product-cta div {
  max-width: 680px;
}

.product-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.product-cta p {
  margin: 0.85rem 0 0;
  color: rgb(255 255 255 / 67%);
  line-height: 1.5;
}

.product-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 clamp(2rem, 5vh, 4rem);
  border-top: 1px solid var(--line);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__brand .brand__mark {
  width: 34px;
  height: 34px;
}

.site-footer__brand div {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.site-footer__brand strong {
  font-size: 0.9rem;
}

.site-footer__brand span {
  color: var(--site-secondary);
  font-size: 0.72rem;
}

@media (max-width: 820px) {
  .product-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 32vw);
    gap: 2rem;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-page {
    width: min(100% - 2rem, 540px);
  }

  .site-header {
    padding: 1.5rem 0 1rem;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .home-main {
    min-height: 0;
    padding: 3.5rem 0 4rem;
    gap: 3.5rem;
  }

  .intro__text {
    margin-top: 1rem;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .product {
    display: grid;
    min-height: 0;
    padding: 1rem;
    grid-template-columns: 40px 1fr;
    column-gap: 0.9rem;
  }

  .product__icon {
    width: 40px;
    height: 40px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .product__heading {
    margin: 0;
  }

  .product > p,
  .product > div > p {
    grid-column: 2;
  }

  .product-main {
    padding: 3.5rem 0 4.5rem;
  }

  .product-hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .product-hero__icon {
    width: 132px;
    border-radius: 30px;
  }

  .feature-section,
  .showcase {
    padding-top: 6rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 0;
  }

  .screenshots {
    width: calc(100vw - 1rem);
    margin-left: -0.5rem;
    padding: 0.5rem 1rem 1.5rem 0.5rem;
    grid-template-columns: repeat(3, minmax(245px, 74vw));
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .screenshot {
    scroll-snap-align: start;
  }

  .product-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 1rem;
  }

  .product__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .hero-actions,
  .hero-actions .button,
  .product-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.app-icon--etude { background: #0d0d0d; border-radius: 22%; overflow: hidden; }
.app-icon--etude img { width: 100%; height: 100%; object-fit: cover; }
