:root {
  --bg: #080b12;
  --panel: #111722;
  --panel-2: #171f2d;
  --text: #f5f7fb;
  --muted: #a9b2c3;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #7c5cff;
  --accent-2: #20d8a1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font:
    16px/1.6 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
body.shop {
  --bg: #f4f0e8;
  --panel: #fffdf8;
  --panel-2: #e9e1d3;
  --text: #1a211b;
  --muted: #657066;
  --line: rgba(26, 33, 27, 0.13);
  --accent: #e15c35;
  --accent-2: #276a52;
  --shadow: 0 24px 70px rgba(52, 43, 26, 0.12);
}
body.site {
  --bg: #eef5f0;
  --panel: #fff;
  --panel-2: #dcebe2;
  --text: #13241a;
  --muted: #607064;
  --line: rgba(19, 36, 26, 0.12);
  --accent: #146c52;
  --accent-2: #e6a13d;
  --shadow: 0 24px 70px rgba(26, 70, 45, 0.12);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.topbar {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 23px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent) 28%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}
.nav a {
  color: var(--muted);
}
.nav a:hover {
  color: var(--text);
}
.menu {
  display: none;
  color: var(--text);
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 11px;
  cursor: pointer;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  background: var(--accent);
  color: white;
  transition: 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 64px;
}
.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -170px;
  top: -210px;
  background: radial-gradient(circle, var(--accent), transparent 67%);
  opacity: 0.2;
  filter: blur(12px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}
h1 {
  max-width: 800px;
  margin: 18px 0 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-card {
  position: relative;
  min-height: 410px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card:after {
  content: "76";
  position: absolute;
  right: -12px;
  bottom: -67px;
  font-size: 230px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.12em;
  color: color-mix(in srgb, var(--accent) 20%, transparent);
}
.hero-card > * {
  position: relative;
  z-index: 1;
}
.stat {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.stat strong {
  font-size: 28px;
}
.stat span {
  color: var(--muted);
}
.section {
  padding: 76px 0;
}
.section.alt {
  background: color-mix(in srgb, var(--panel) 66%, transparent);
  border-block: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}
.section h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.section-copy {
  max-width: 520px;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: var(--shadow);
}
.card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent) 14%, var(--panel));
  color: var(--accent);
  font-size: 23px;
  margin-bottom: 35px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.tag {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.price {
  display: block;
  margin-top: 18px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.filter {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel);
  cursor: pointer;
}
.filter.active {
  color: white;
  border-color: var(--accent);
  background: var(--accent);
}
.feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
}
.feature-visual {
  min-height: 300px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent) 32%, var(--panel)),
    var(--panel-2)
  );
  font-size: 100px;
}
.feature h3 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 15px;
  letter-spacing: -0.035em;
}
.feature p {
  color: var(--muted);
}
.steps {
  counter-reset: step;
}
.steps .card:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 32px;
  color: var(--accent);
  font-weight: 900;
}
.quote {
  padding: 42px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(
    125deg,
    var(--accent),
    color-mix(in srgb, var(--accent-2) 78%, #111)
  );
}
.quote p {
  max-width: 850px;
  margin: 0 0 20px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}
.cta {
  padding: 54px;
  border-radius: 32px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 {
  margin: 0 0 8px;
}
.cta p {
  margin: 0;
  color: var(--muted);
}
.article-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.article-link .read {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}
.article-page {
  padding: 58px 0 90px;
}
.breadcrumbs {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a {
  color: var(--accent);
  font-weight: 700;
}
.article-intro {
  max-width: 880px;
  margin-bottom: 44px;
}
.article-intro h1 {
  font-size: clamp(40px, 6vw, 68px);
}
.prose {
  max-width: 880px;
}
.prose article {
  margin: 0 0 54px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.prose h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.prose h3 {
  margin: 28px 0 10px;
  font-size: 21px;
}
.prose p {
  color: var(--muted);
}
.prose ul {
  padding-left: 22px;
  color: var(--muted);
}
.prose li {
  margin: 8px 0;
}
.prose .summary {
  padding: 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: var(--panel-2);
  color: var(--text);
}
.footer {
  padding: 46px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer h3 {
  color: var(--text);
  margin: 0 0 14px;
  font-size: 15px;
}
.footer a {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
[hidden] {
  display: none !important;
}
@media (max-width: 900px) {
  .hero-grid,
  .feature {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 62px;
  }
  .hero-card {
    min-height: 320px;
  }
  .grid,
  .grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head,
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .menu {
    display: block;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }
  .topbar .wrap {
    justify-content: center;
  }
  .topbar span:last-child {
    display: none;
  }
  .hero {
    padding: 48px 0;
  }
  h1 {
    font-size: 43px;
  }
  .hero-card {
    padding: 23px;
    min-height: 290px;
  }
  .section {
    padding: 58px 0;
  }
  .grid,
  .grid.four {
    grid-template-columns: 1fr;
  }
  .section-head {
    margin-bottom: 25px;
  }
  .feature,
  .quote,
  .cta {
    padding: 25px;
  }
  .feature-visual {
    min-height: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
