:root {
  --bg: #ffffff;
  --bg-soft: #f7f6f3;
  --bg-tint: #efede8;
  --line: #e8e3da;
  --line-strong: #d8d1c5;
  --text: #111111;
  --text-soft: #4b4741;
  --text-muted: #767068;
  --card: #ffffff;
  --surface-strong: #141414;
  --surface-soft: rgba(255, 255, 255, 0.82);
  --shadow: 0 12px 34px rgba(17, 17, 17, 0.045);
  --shadow-strong: 0 22px 58px rgba(17, 17, 17, 0.1);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --content: 1160px;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(185, 160, 112, 0.12), transparent 26rem),
    linear-gradient(180deg, #fffefb 0%, #ffffff 34%, #fbfaf7 100%);
  line-height: 1.68;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 254, 251, 0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #111111;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__sub {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.site-nav__mobile-action {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.14);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-color: var(--line);
}

.btn--ghost {
  background: #f2ede4;
  color: var(--text);
  border-color: #e9e1d3;
}

.hero {
  padding: 86px 0 58px;
}

.hero__grid {
  display: grid;
  gap: 42px;
  align-items: center;
  justify-items: center;
}

.hero__intro {
  max-width: 900px;
  text-align: center;
}

.hero__eyebrow,
.section__eyebrow,
.article-tag,
.post-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(54px, 8.2vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.07em;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  max-width: 62ch;
  margin: 24px 0 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-soft);
  font-size: 20px;
}

.hero__actions,
.pricing-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
}

.hero__subactions {
  margin: 18px 0 0;
  font-size: 16px;
}

.hero__subactions a {
  color: var(--text-soft);
  font-weight: 600;
}

.cta-card__foot {
  margin: 18px 0 0;
  width: 100%;
  font-size: 16px;
}

.cta-card--contrast .cta-card__foot a {
  color: var(--text-soft);
  font-weight: 600;
}

.cta-card--contrast .cta-card__foot a:hover {
  color: var(--text);
}

.meta-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.hero__illustrations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.mini-illo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.mini-illo svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #111111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-card,
.glass-card,
.feature-card,
.pricing-card,
.post-card,
.faq-card,
.cta-card,
.article-card,
.aside-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-card {
  padding: 30px;
}

.product-preview {
  width: min(100%, 520px);
}

.product-preview::before {
  content: none;
}

.product-preview__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.hero-card--contrast {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #151515 0%, #0f0f0f 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.hero-card--contrast .hero-card__eyebrow,
.hero-card--contrast .hero-card__text,
.hero-card--contrast .hero-card__list span,
.hero-card--contrast .hero-card__footer p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-card--contrast .hero-card__title,
.hero-card--contrast .hero-card__list strong,
.hero-card--contrast .hero-card__footer strong {
  color: #ffffff;
}

.hero-card--contrast .hero-card__list li,
.hero-card--contrast .hero-card__footer {
  border-color: rgba(255, 255, 255, 0.09);
}

.hero-card__eyebrow {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-card__title {
  margin: 10px 0 0;
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-card__text {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 16px;
}

.hero-card__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.hero-card__list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.hero-card__list strong {
  display: block;
  font-size: 16px;
}

.hero-card__list span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-card__footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-card__footer strong {
  display: block;
  font-size: 15px;
}

.hero-card__footer p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.section {
  padding: 64px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(247, 246, 243, 0.82), rgba(247, 246, 243, 0.36));
  border-top: 1px solid rgba(17, 17, 17, 0.04);
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 5.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 15ch;
}

.section__lead {
  max-width: 66ch;
  color: var(--text-soft);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.feature-card,
.pricing-card,
.post-card,
.faq-card,
.article-card,
.aside-card {
  padding: 26px;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card h3,
.pricing-card h3,
.post-card h3,
.faq-card h3,
.article-card h1,
.article-card h2,
.article-card h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

.feature-card p,
.pricing-card p,
.post-card p,
.faq-card p,
.article-card p,
.article-card li,
.kicker {
  color: var(--text-soft);
}

.feature-card,
.faq-card,
.post-card,
.aside-card,
.article-card {
  border-color: rgba(17, 17, 17, 0.075);
}

.feature-card:hover,
.post-card:hover,
.faq-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.offer-grid + .support-grid {
  margin-top: 20px;
}

.feature-card--primary {
  background:
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.055), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f6f3 100%);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.feature-card--primary h3 {
  font-size: 24px;
}

.feature-card--secondary {
  background: rgba(255, 255, 255, 0.64);
}

.check-list,
.stack-list,
.footer-links {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.check-list li,
.stack-list li {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}

.check-list li::before,
.stack-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #111111;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stats-strip .glass-card {
  padding: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.62);
  position: relative;
}

.stat-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-bottom: 18px;
  background: #111111;
}

.stats-strip strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.stats-strip span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pricing-card--accent {
  background:
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f6f3 100%);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.pricing-card--accent,
.pricing-card--accent p,
.pricing-card--accent .pricing-card__note,
.pricing-card--accent .stack-list li,
.pricing-card--accent .section__eyebrow,
.pricing-card--accent .pricing-card__price small {
  color: var(--text-soft);
}

.pricing-card--accent h3,
.pricing-card--accent .pricing-card__price,
.pricing-card--accent .stack-list li::before {
  color: var(--text);
}

.pricing-card--accent .section__eyebrow {
  background: #ffffff;
  border-color: var(--line);
}

.pricing-card--accent .btn--primary {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.14);
}

.pricing-card--plain {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.72));
}

.pricing-card--accent .stack-list li::before {
  background: #111111;
}

.pricing-card__price {
  margin-top: 22px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pricing-card__price small {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-card__note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.post-card__inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 16px;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}

.post-card__inner:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 6px;
  border-radius: 12px;
}

.blog-grid .post-card {
  min-height: 250px;
}

.post-card::before {
  content: "↗";
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text-muted);
  font-weight: 800;
}

.post-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.post-card__link,
.article-cta a,
.footer-links a,
.breadcrumbs a {
  text-decoration: none;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 700;
  color: var(--text);
}

.post-card__link:hover,
.article-cta a:hover,
.footer-links a:hover,
.breadcrumbs a:hover {
  color: #000000;
}

.cta-card {
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-card--contrast {
  background:
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f6f3 100%);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.cta-card--contrast h2,
.cta-card--contrast p,
.cta-card--contrast .section__eyebrow {
  color: var(--text-soft);
}

.cta-card--contrast h2 {
  color: var(--text);
}

.cta-card--contrast .section__eyebrow {
  background: #ffffff;
  border-color: var(--line);
}

.cta-card--contrast .btn--primary {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.14);
}

.cta-card--contrast .btn--secondary {
  background: #ffffff;
  color: var(--text);
  border-color: var(--line);
}

.cta-card--contrast .btn--ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--line);
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 46px);
  letter-spacing: -0.05em;
}

.cta-card p {
  margin: 12px 0 0;
  max-width: 58ch;
  color: var(--text-soft);
}

.site-footer {
  padding: 30px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.95fr 0.75fr;
  gap: 18px;
}

.footer-card {
  padding: 24px;
}

.footer-card h3 {
  margin-top: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: var(--text-soft);
}

.page-hero {
  padding: 72px 0 24px;
}

.page-hero .container {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 242, 235, 0.68));
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--text-soft);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  max-width: 14ch;
}

.page-hero p {
  max-width: 68ch;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.article-card h2 {
  margin-top: 34px;
  font-size: 30px;
}

.article-card h3 {
  margin-top: 22px;
  font-size: 22px;
}

.article-card ul,
.article-card ol {
  padding-left: 20px;
}

.article-card li + li {
  margin-top: 8px;
}

.aside-card {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 242, 235, 0.72));
}

.aside-card h3 {
  margin-top: 0;
}

.article-cta {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(243, 236, 224, 0.92), rgba(255, 255, 255, 0.9));
  border: 1px solid var(--line);
}

.article-cta p {
  margin: 0 0 14px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: #111111;
  color: #ffffff;
}

@media (max-width: 1120px) {
  .hero__grid,
  .pricing,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 860px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__mobile-action {
    display: inline-flex;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .header-actions {
    display: none;
  }

  .grid--3,
  .grid--2,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--content));
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

  .hero p {
    font-size: 18px;
  }

  .page-hero .container {
    padding: 22px;
  }

  .hero-card,
  .feature-card,
  .pricing-card,
  .post-card,
  .faq-card,
  .cta-card,
  .article-card,
  .aside-card,
  .footer-card {
    padding: 20px;
  }

  .hero__actions,
  .pricing-card__actions {
    width: 100%;
  }

  .hero__actions .btn,
  .pricing-card__actions .btn,
  .cta-card .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }
}

/* Landing refresh */
body.landing-page {
  --lp-ink: #111312;
  --lp-soft: #4d5651;
  --lp-muted: #778079;
  --lp-line: rgba(17, 19, 18, 0.12);
  --lp-line-strong: rgba(17, 19, 18, 0.22);
  --lp-green: #22c55e;
  --lp-mint: #dfffea;
  --lp-cyan: #67e8f9;
  --lp-yellow: #f4cf55;
  --lp-paper: #ffffff;
  --lp-ink-panel: #111312;
  --content: 1180px;
  font-family: "Manrope", "Aptos", "Trebuchet MS", sans-serif;
  color: var(--lp-ink);
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8fff9 0%, #ffffff 34%, #f4fbff 100%);
  background-size: 42px 42px, auto;
  line-height: 1.55;
  overflow-x: hidden;
}

.landing-page .container {
  width: calc(100% - 32px);
  max-width: var(--content);
}

.landing-page .site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(17, 19, 18, 0.08);
}

.landing-page .site-header__inner {
  position: relative;
}

.landing-page .brand__mark,
.landing-page .btn,
.landing-page .nav-toggle {
  border-radius: 8px;
}

.landing-page .brand__mark {
  background: linear-gradient(135deg, #111312, #26342b 58%, #22c55e);
}

.landing-page .brand__title {
  letter-spacing: 0;
}

.landing-page .brand__sub,
.landing-page .site-nav a {
  color: var(--lp-soft);
}

.landing-page .btn {
  min-height: 48px;
  padding: 0 18px;
  letter-spacing: 0;
}

.landing-page .btn--primary {
  background: var(--lp-ink);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(17, 19, 18, 0.16);
}

.landing-page .btn--secondary {
  background: #ffffff;
  color: var(--lp-ink);
  border-color: var(--lp-line-strong);
}

.landing-page .btn:hover,
.landing-page .btn:focus-visible {
  transform: translateY(-1px);
}

.landing-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--lp-line);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, transparent 42%),
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.86) 46%, rgba(244, 251, 255, 0.56) 100%);
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, #ffffff);
  pointer-events: none;
  z-index: -1;
}

.landing-hero__media {
  position: absolute;
  inset: 32px max(20px, calc((100vw - var(--content)) / 2)) auto auto;
  width: min(38vw, 420px);
  min-width: 320px;
  transform: rotate(4deg);
  transform-origin: center;
  z-index: 0;
}

.landing-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 38px 90px rgba(17, 19, 18, 0.18);
}

.landing-hero__media::before {
  content: "";
  position: absolute;
  inset: 10% -24% 12%;
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.34), rgba(244, 207, 85, 0.24));
  transform: rotate(-8deg);
  z-index: -1;
}

.landing-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  align-items: center;
  padding: 82px 0 70px;
}

.landing-hero__content {
  max-width: 690px;
}

.landing-kicker {
  margin: 0;
  color: var(--lp-soft);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-hero h1,
.landing-section h2,
.landing-final h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.94;
}

.landing-hero h1 {
  max-width: 10ch;
  margin-top: 18px;
  font-size: 78px;
  font-weight: 950;
}

.landing-hero__lead {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--lp-soft);
  font-size: 21px;
  line-height: 1.5;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.landing-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
}

.landing-hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--lp-soft);
  font-size: 13px;
  font-weight: 800;
}

.landing-section {
  padding: 78px 0;
}

.landing-section--compact {
  padding: 60px 0;
}

.landing-section--dark {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #111312 0%, #18241d 58%, #111312 100%);
  background-size: 40px 40px, auto;
  color: #ffffff;
}

.landing-section__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.landing-section__head--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.landing-section h2 {
  max-width: 15ch;
  margin-top: 12px;
  font-size: 52px;
  font-weight: 930;
}

.landing-steps,
.landing-tools,
.landing-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-step,
.landing-tool,
.landing-article,
.landing-choice__item,
.landing-terminal,
.landing-final__inner,
.landing-faq details {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.landing-step,
.landing-tool,
.landing-article {
  padding: 24px;
}

.landing-step span,
.landing-choice__label,
.landing-article span {
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.landing-step h3,
.landing-tool h3,
.landing-article h3,
.landing-choice h3,
.landing-faq summary {
  margin: 10px 0 0;
  color: var(--lp-ink);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.landing-step p,
.landing-tool p,
.landing-article p,
.landing-choice p,
.landing-faq p,
.landing-command p,
.landing-final p {
  color: var(--lp-soft);
}

.landing-step p,
.landing-tool p,
.landing-article p,
.landing-choice p {
  margin: 14px 0 0;
}

.landing-step:first-child {
  background: linear-gradient(180deg, var(--lp-mint), #ffffff);
  border-color: rgba(34, 197, 94, 0.28);
}

.landing-step:nth-child(2) {
  background: linear-gradient(180deg, #ecfdff, #ffffff);
  border-color: rgba(103, 232, 249, 0.42);
}

.landing-step:nth-child(3) {
  background: linear-gradient(180deg, #fff8dd, #ffffff);
  border-color: rgba(244, 207, 85, 0.48);
}

.landing-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: start;
}

.landing-copy {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.landing-choice {
  display: grid;
  gap: 12px;
}

.landing-choice__item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  padding: 22px;
}

.landing-command {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 36px;
  align-items: center;
}

.landing-section--dark .landing-kicker,
.landing-section--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.landing-command h2 {
  color: #ffffff;
}

.landing-terminal {
  padding: 18px;
  background: #0b0d0c;
  border-color: rgba(255, 255, 255, 0.14);
}

.landing-terminal__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-terminal__row span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.landing-terminal__row strong {
  color: #ffffff;
  text-align: right;
}

.landing-terminal__code {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lp-green), var(--lp-cyan));
  color: #07100b;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 0;
}

.landing-tool {
  background: #ffffff;
}

.landing-tool a,
.landing-text-link,
.landing-article,
.landing-faq a {
  color: var(--lp-ink);
  font-weight: 850;
  text-decoration: none;
}

.landing-tool a {
  display: inline-flex;
  margin-top: 18px;
}

.landing-article {
  display: block;
  min-height: 210px;
  border-color: var(--lp-line);
}

.landing-article:hover,
.landing-tool:hover,
.landing-choice__item:hover,
.landing-step:hover {
  border-color: var(--lp-line-strong);
  transform: translateY(-2px);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.landing-faq {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 32px;
}

.landing-faq__list {
  display: grid;
  gap: 10px;
}

.landing-faq details {
  padding: 20px;
  background: #ffffff;
}

.landing-faq summary {
  cursor: pointer;
  list-style: none;
}

.landing-faq summary::-webkit-details-marker {
  display: none;
}

.landing-faq p {
  margin: 12px 0 0;
}

.landing-final {
  padding-top: 30px;
}

.landing-final__inner {
  min-height: 320px;
  padding: 40px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.18), transparent 42%),
    linear-gradient(180deg, #ffffff, #f4fbff);
}

.landing-final h2 {
  max-width: 12ch;
  margin-top: 12px;
  font-size: 56px;
  font-weight: 950;
}

.landing-final .btn {
  margin-top: 26px;
}

.landing-page .site-footer {
  background: #ffffff;
}

.landing-page .glass-card,
.landing-page .footer-card {
  border-radius: 8px;
  background: #ffffff;
  border-color: var(--lp-line);
}

@media (prefers-reduced-motion: no-preference) {
  .landing-step,
  .landing-choice__item,
  .landing-tool,
  .landing-article,
  .landing-terminal {
    animation: landing-rise 0.62s ease both;
  }

  .landing-step:nth-child(2),
  .landing-choice__item:nth-child(2),
  .landing-tool:nth-child(2),
  .landing-article:nth-child(2) {
    animation-delay: 0.06s;
  }

  .landing-step:nth-child(3),
  .landing-choice__item:nth-child(3),
  .landing-tool:nth-child(3),
  .landing-article:nth-child(3) {
    animation-delay: 0.12s;
  }
}

@keyframes landing-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .landing-hero {
    min-height: auto;
  }

  .landing-hero__inner {
    min-height: 620px;
  }

  .landing-hero__media {
    right: -70px;
    width: 390px;
    opacity: 0.62;
  }

  .landing-split,
  .landing-command,
  .landing-faq {
    grid-template-columns: 1fr;
  }

  .landing-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .landing-page .nav-toggle {
    display: none !important;
  }

  .landing-page .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding: 0 0 4px;
    border: 0;
    border-radius: 8px;
    background: transparent;
  }

  .landing-page .site-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: #ffffff;
    font-size: 13px;
  }

  .landing-page .site-nav__mobile-action {
    display: none;
  }

  .landing-hero__inner {
    min-height: 610px;
    padding: 64px 0 46px;
  }

  .landing-hero__media {
    position: absolute;
    inset: auto -142px -250px auto;
    width: 330px;
    min-width: 0;
    margin: 0;
    opacity: 0.28;
    transform: rotate(2deg);
  }

  .landing-hero__content {
    max-width: none;
  }

  .landing-hero h1 {
    max-width: 11ch;
    font-size: 54px;
  }

  .landing-steps,
  .landing-tools,
  .landing-articles {
    grid-template-columns: 1fr;
  }

  .landing-choice__item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .landing-page .container {
    width: calc(100% - 22px);
  }

  .landing-hero__inner {
    padding-top: 46px;
  }

  .landing-hero h1 {
    font-size: 42px;
  }

  .landing-hero__lead {
    font-size: 18px;
    max-width: 31ch;
    overflow-wrap: break-word;
  }

  .landing-hero__actions .btn,
  .landing-final .btn {
    width: 100%;
  }

  .landing-hero__proof {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .landing-hero__proof span {
    justify-content: center;
    max-width: 100%;
  }

  .landing-section {
    padding: 54px 0;
  }

  .landing-section h2,
  .landing-final h2 {
    font-size: 38px;
  }

  .landing-section__head--row {
    display: block;
  }

  .landing-text-link {
    display: inline-flex;
    margin-top: 16px;
  }

  .landing-step,
  .landing-tool,
  .landing-article,
  .landing-choice__item,
  .landing-faq details,
  .landing-final__inner {
    padding: 20px;
  }

  .landing-terminal__code {
    font-size: 22px;
  }
}

/* Landing visual pass */
body.landing-page {
  --lp-ink: #0d1110;
  --lp-soft: #43504a;
  --lp-muted: #6f7a74;
  --lp-line: rgba(13, 17, 16, 0.12);
  --lp-line-strong: rgba(13, 17, 16, 0.24);
  --lp-green: #8df3ad;
  --lp-green-strong: #35d275;
  --lp-cyan: #93e8ff;
  --lp-yellow: #ffe082;
  --lp-paper: #ffffff;
  --content: 1180px;
  color: var(--lp-ink);
  background:
    linear-gradient(90deg, rgba(13, 17, 16, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8faf7 0%, #ffffff 44%, #f2f8f6 100%);
  background-size: 44px 44px, auto;
  line-height: 1.52;
}

.landing-page .site-header {
  background: rgba(248, 250, 247, 0.9);
  border-bottom: 1px solid rgba(13, 17, 16, 0.08);
}

.landing-page .brand__mark {
  background: #0d1110;
  box-shadow: inset 0 -12px 22px rgba(53, 210, 117, 0.36);
}

.landing-page .brand__title,
.landing-page .site-nav a,
.landing-page .btn {
  letter-spacing: 0;
}

.landing-page .btn--primary {
  background: #0d1110;
  box-shadow: 0 14px 34px rgba(13, 17, 16, 0.18);
}

.landing-page .btn--secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(13, 17, 16, 0.18);
}

.landing-hero {
  width: min(calc(100% - 28px), 1280px);
  min-height: min(690px, calc(100svh - var(--header-h) - 30px));
  margin: 14px auto 0;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0b1113;
  box-shadow: 0 28px 90px rgba(13, 17, 16, 0.2);
}

.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.landing-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 12, 13, 0.96) 0%, rgba(8, 12, 13, 0.88) 42%, rgba(8, 12, 13, 0.22) 78%, rgba(8, 12, 13, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 38%);
}

.landing-hero::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
}

.landing-hero__inner {
  min-height: inherit;
  padding: 66px 0 56px;
  align-items: center;
  z-index: 2;
}

.landing-hero__content {
  max-width: 680px;
}

.landing-hero .landing-kicker {
  color: var(--lp-green);
}

.landing-hero h1 {
  max-width: 720px;
  margin-top: 18px;
  color: #ffffff;
  font-size: 76px;
  line-height: 0.95;
  font-weight: 950;
}

.landing-hero__lead {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
}

.landing-hero .btn--primary {
  background: var(--lp-green);
  color: #07100b;
  box-shadow: 0 18px 40px rgba(53, 210, 117, 0.24);
}

.landing-hero .btn--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.landing-hero__proof {
  margin-top: 30px;
}

.landing-hero__proof span {
  min-height: 38px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.landing-hero__proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--lp-green);
}

.landing-hero__media {
  inset: 0;
  width: 100%;
  min-width: 0;
  transform: none;
  z-index: 0;
}

.landing-hero__media::before {
  display: none;
}

.landing-hero__media img {
  position: absolute;
  top: 34px;
  right: max(22px, calc((100vw - var(--content)) / 2 - 36px));
  width: min(430px, 39vw);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  opacity: 0.96;
  transform: rotate(3deg);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.44);
}

.landing-section {
  position: relative;
}

.landing-section--compact {
  padding-top: 68px;
}

.landing-section__head {
  margin-bottom: 26px;
}

.landing-section h2,
.landing-final h2 {
  max-width: 720px;
  font-size: 50px;
  line-height: 1;
}

.landing-kicker {
  color: var(--lp-soft);
  font-size: 12px;
}

.landing-step,
.landing-tool,
.landing-article,
.landing-choice__item,
.landing-faq details {
  border-color: rgba(13, 17, 16, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(13, 17, 16, 0.055);
}

.landing-step {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-step:first-child {
  color: #ffffff;
  background: #0d1110;
  border-color: rgba(13, 17, 16, 0.9);
  box-shadow: 0 24px 60px rgba(13, 17, 16, 0.16);
}

.landing-step:first-child span,
.landing-step:first-child h3,
.landing-step:first-child p {
  color: #ffffff;
}

.landing-step:nth-child(2),
.landing-step:nth-child(3) {
  background: #ffffff;
  border-color: rgba(13, 17, 16, 0.1);
}

.landing-step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #0d1110;
  background: #eef5ef;
  border-radius: 8px;
}

.landing-step:first-child span {
  color: #07100b;
  background: var(--lp-green);
}

.landing-step h3,
.landing-tool h3,
.landing-article h3,
.landing-choice h3,
.landing-faq summary {
  font-size: 22px;
}

.landing-step p,
.landing-tool p,
.landing-article p,
.landing-choice p,
.landing-faq p,
.landing-command p,
.landing-final p {
  color: var(--lp-soft);
}

.landing-split {
  align-items: stretch;
}

.landing-choice__item {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
}

.landing-choice__label {
  color: var(--lp-green-strong);
}

.landing-section--dark {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, #0d1110 0%, #121c18 100%);
  background-size: 42px 42px, auto;
}

.landing-command {
  min-height: 420px;
}

.landing-section--dark .landing-kicker {
  color: var(--lp-green);
}

.landing-terminal {
  padding: 20px;
  background: #080c0d;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.landing-terminal__row {
  min-height: 52px;
}

.landing-terminal__code {
  color: #07100b;
  background: var(--lp-green);
}

.landing-tool a,
.landing-text-link,
.landing-article,
.landing-faq a {
  color: #0d1110;
}

.landing-tool a::after,
.landing-text-link::after {
  content: " ->";
}

.landing-article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.landing-article p {
  margin-top: auto;
  padding-top: 18px;
}

.landing-faq {
  align-items: start;
}

.landing-faq details[open] {
  border-color: rgba(53, 210, 117, 0.42);
}

.landing-final__inner {
  min-height: 340px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(135deg, #0d1110 0%, #16241d 100%);
  background-size: 42px 42px, auto;
  border-color: rgba(13, 17, 16, 0.92);
  box-shadow: 0 28px 80px rgba(13, 17, 16, 0.18);
}

.landing-final .landing-kicker {
  color: var(--lp-green);
}

.landing-final p {
  color: rgba(255, 255, 255, 0.7);
}

.landing-final .btn--primary {
  background: var(--lp-green);
  color: #07100b;
}

.landing-page .site-footer {
  background: transparent;
}

.landing-page .glass-card,
.landing-page .footer-card {
  box-shadow: none;
}

@media (max-width: 1120px) {
  .landing-hero {
    min-height: 650px;
  }

  .landing-hero__media img {
    right: -64px;
    width: 390px;
    opacity: 0.74;
  }

  .landing-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 12, 13, 0.96) 0%, rgba(8, 12, 13, 0.9) 58%, rgba(8, 12, 13, 0.42) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 38%);
  }
}

@media (max-width: 860px) {
  .landing-hero {
    width: min(calc(100% - 20px), 1280px);
    min-height: 640px;
    margin-top: 10px;
  }

  .landing-hero__inner {
    padding: 48px 0 40px;
    align-items: start;
  }

  .landing-hero h1 {
    max-width: 560px;
    font-size: 50px;
  }

  .landing-hero__lead {
    max-width: 390px;
    font-size: 18px;
  }

  .landing-hero__media {
    inset: auto 0 0 0;
    height: 320px;
    opacity: 1;
  }

  .landing-hero__media img {
    top: auto;
    right: -34px;
    bottom: -250px;
    width: 330px;
    opacity: 0.22;
    transform: rotate(2deg);
  }

  .landing-hero::before {
    background:
      linear-gradient(180deg, rgba(8, 12, 13, 0.98) 0%, rgba(8, 12, 13, 0.92) 66%, rgba(8, 12, 13, 0.78) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
  }

  .landing-choice__item {
    grid-template-columns: 1fr;
  }

  .landing-section h2,
  .landing-final h2 {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .landing-page .site-header__inner {
    gap: 12px;
  }

  .landing-hero {
    min-height: 620px;
  }

  .landing-hero__content {
    max-width: 100%;
  }

  .landing-hero h1 {
    max-width: 320px;
    font-size: 38px;
    overflow-wrap: normal;
  }

  .landing-hero__lead {
    max-width: 330px;
  }

  .landing-hero__actions {
    width: 100%;
    max-width: 366px;
  }

  .landing-hero__actions .btn {
    width: 100%;
  }

  .landing-hero__proof {
    grid-template-columns: 1fr;
  }

  .landing-hero__proof span {
    justify-content: flex-start;
  }

  .landing-section {
    padding: 52px 0;
  }

  .landing-section h2,
  .landing-final h2 {
    font-size: 34px;
  }
}

/* Hush brandbook alignment */
body.landing-page {
  --lp-ink: #0b0f1c;
  --lp-soft: #434b5e;
  --lp-muted: #707789;
  --lp-line: rgba(11, 15, 28, 0.12);
  --lp-line-strong: rgba(11, 15, 28, 0.24);
  --lp-green: #00d7ff;
  --lp-green-strong: #7c3cff;
  --lp-cyan: #0ea5ff;
  --lp-yellow: #fbfafc;
  color: var(--lp-ink);
  background:
    linear-gradient(90deg, rgba(11, 15, 28, 0.038) 1px, transparent 1px),
    linear-gradient(180deg, #fbfafc 0%, #ffffff 42%, #f4f8ff 100%);
  background-size: 44px 44px, auto;
}

.landing-page .site-header {
  background: rgba(251, 250, 252, 0.9);
  border-bottom-color: rgba(11, 15, 28, 0.08);
}

.landing-page .brand {
  gap: 13px;
}

.landing-page .brand__mark {
  width: 42px;
  height: 42px;
  padding: 4px;
  overflow: hidden;
  background: #0b0f1c;
  border: 1px solid rgba(124, 60, 255, 0.32);
  box-shadow:
    inset 0 -16px 26px rgba(14, 165, 255, 0.16),
    0 14px 34px rgba(11, 15, 28, 0.14);
}

.landing-page .brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing-page .brand__sub {
  color: #5a32e0;
}

.landing-page .site-nav a:hover,
.landing-page .site-nav a:focus-visible {
  color: #7c3cff;
}

.landing-page .btn--primary {
  background: #0b0f1c;
  box-shadow: 0 14px 34px rgba(11, 15, 28, 0.18);
}

.landing-hero {
  background: #0b0f1c;
  border-color: rgba(14, 165, 255, 0.24);
  box-shadow:
    0 30px 90px rgba(11, 15, 28, 0.22),
    inset 0 1px 0 rgba(251, 250, 252, 0.08);
}

.landing-hero::before {
  background:
    linear-gradient(90deg, rgba(11, 15, 28, 0.98) 0%, rgba(11, 15, 28, 0.9) 39%, rgba(11, 15, 28, 0.24) 76%, rgba(11, 15, 28, 0.68) 100%),
    linear-gradient(135deg, rgba(124, 60, 255, 0.28) 0%, rgba(14, 165, 255, 0.16) 35%, rgba(0, 215, 255, 0.12) 68%, transparent 100%);
}

.landing-hero::after,
.landing-section--dark,
.landing-final__inner {
  background-size: 42px 42px, auto;
}

.landing-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(124, 60, 255, 0.05) 1px, transparent 1px);
}

.landing-hero .landing-kicker,
.landing-section--dark .landing-kicker,
.landing-final .landing-kicker {
  color: #00d7ff;
}

.landing-hero .btn--primary,
.landing-final .btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #7c3cff 0%, #0ea5ff 58%, #00d7ff 100%);
  box-shadow: 0 20px 46px rgba(14, 165, 255, 0.26);
}

.landing-hero .btn--secondary {
  background: rgba(251, 250, 252, 0.08);
  border-color: rgba(251, 250, 252, 0.22);
}

.landing-hero__proof span {
  border-color: rgba(251, 250, 252, 0.16);
  background: rgba(251, 250, 252, 0.08);
}

.landing-hero__proof span::before {
  background: linear-gradient(135deg, #7c3cff, #00d7ff);
}

.landing-hero__media img {
  border-color: rgba(14, 165, 255, 0.22);
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.5),
    -22px 0 80px rgba(124, 60, 255, 0.16),
    22px 0 80px rgba(0, 215, 255, 0.14);
}

.landing-step,
.landing-tool,
.landing-article,
.landing-choice__item,
.landing-faq details {
  border-color: rgba(11, 15, 28, 0.1);
  box-shadow: 0 18px 48px rgba(11, 15, 28, 0.055);
}

.landing-step:first-child {
  background:
    linear-gradient(135deg, rgba(124, 60, 255, 0.2), rgba(0, 215, 255, 0.09)),
    #0b0f1c;
  border-color: rgba(124, 60, 255, 0.34);
}

.landing-step:first-child span {
  color: #ffffff;
  background: linear-gradient(135deg, #7c3cff, #0ea5ff);
}

.landing-step span {
  color: #0b0f1c;
  background: #eef4ff;
}

.landing-choice__label {
  color: #5a32e0;
}

.landing-section--dark,
.landing-final__inner {
  background:
    linear-gradient(90deg, rgba(0, 215, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #0b0f1c 0%, #11172a 58%, #0b0f1c 100%);
}

.landing-terminal {
  background: #080b16;
  border-color: rgba(14, 165, 255, 0.18);
}

.landing-terminal__code {
  color: #ffffff;
  background: linear-gradient(135deg, #7c3cff, #0ea5ff 58%, #00d7ff);
}

.landing-faq details[open] {
  border-color: rgba(14, 165, 255, 0.42);
}

.landing-article:hover,
.landing-tool:hover,
.landing-choice__item:hover,
.landing-step:hover {
  border-color: rgba(14, 165, 255, 0.34);
}

@media (max-width: 1120px) {
  .landing-hero::before {
    background:
      linear-gradient(90deg, rgba(11, 15, 28, 0.98) 0%, rgba(11, 15, 28, 0.92) 58%, rgba(11, 15, 28, 0.46) 100%),
      linear-gradient(135deg, rgba(124, 60, 255, 0.24), rgba(14, 165, 255, 0.14));
  }
}

@media (max-width: 860px) {
  .landing-hero::before {
    background:
      linear-gradient(180deg, rgba(11, 15, 28, 0.99) 0%, rgba(11, 15, 28, 0.94) 66%, rgba(11, 15, 28, 0.82) 100%),
      linear-gradient(135deg, rgba(124, 60, 255, 0.24), rgba(14, 165, 255, 0.14));
  }
}

/* Premium brand pass */
body.landing-page {
  background:
    linear-gradient(180deg, #0b0f1c 0 720px, #fbfafc 720px 100%),
    #fbfafc;
}

.landing-page .site-header {
  background: rgba(11, 15, 28, 0.92);
  border-bottom-color: rgba(251, 250, 252, 0.08);
}

.landing-page .site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 60, 255, 0.44), rgba(0, 215, 255, 0.36), transparent);
  pointer-events: none;
}

.landing-page .brand {
  gap: 12px;
}

.landing-page .brand__mark {
  width: 32px;
  height: 43px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.landing-page .brand__mark img {
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(14, 165, 255, 0.18));
}

.landing-page .brand__title {
  color: #fbfafc;
  font-size: 17px;
  font-weight: 800;
}

.landing-page .brand__sub {
  display: none;
}

.landing-page .site-nav a {
  color: rgba(251, 250, 252, 0.72);
  font-size: 14px;
}

.landing-page .site-nav a:hover,
.landing-page .site-nav a:focus-visible {
  color: #ffffff;
}

.landing-page .header-actions .btn--primary {
  min-height: 44px;
  color: #fbfafc;
  background: rgba(251, 250, 252, 0.08);
  border: 1px solid rgba(251, 250, 252, 0.16);
  box-shadow: none;
}

.landing-page .header-actions .btn--primary:hover,
.landing-page .header-actions .btn--primary:focus-visible {
  background: rgba(251, 250, 252, 0.14);
}

.landing-hero {
  width: 100%;
  min-height: min(720px, calc(100svh - var(--header-h)));
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #0b0f1c;
  box-shadow: none;
}

.landing-hero::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(11, 15, 28, 0.98) 0%, rgba(11, 15, 28, 0.93) 42%, rgba(11, 15, 28, 0.42) 70%, rgba(11, 15, 28, 0.3) 100%),
    linear-gradient(135deg, rgba(124, 60, 255, 0.22) 0%, rgba(14, 165, 255, 0.1) 42%, transparent 70%);
}

.landing-hero::after {
  z-index: 0;
  opacity: 0.55;
  background:
    linear-gradient(90deg, rgba(251, 250, 252, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(251, 250, 252, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}

.landing-hero__media {
  z-index: 1;
  pointer-events: none;
}

.landing-hero__inner {
  min-height: min(720px, calc(100svh - var(--header-h)));
  padding: 78px 0 96px;
}

.landing-hero__content {
  max-width: 730px;
}

.landing-hero .landing-kicker {
  color: #00d7ff;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.landing-hero h1 {
  max-width: 780px;
  font-size: 82px;
  line-height: 0.91;
  text-wrap: balance;
}

.landing-hero__lead {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(251, 250, 252, 0.72);
  font-size: 22px;
}

.landing-hero__actions {
  margin-top: 34px;
}

.landing-hero .btn {
  min-height: 52px;
  padding-inline: 22px;
}

.landing-hero .btn--primary {
  background: #fbfafc;
  color: #0b0f1c;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.landing-hero .btn--secondary {
  color: rgba(251, 250, 252, 0.92);
  background: transparent;
  border-color: rgba(251, 250, 252, 0.22);
}

.landing-hero__proof {
  margin-top: 34px;
}

.landing-hero__proof span {
  min-height: 36px;
  padding-inline: 13px;
  color: rgba(251, 250, 252, 0.82);
  background: transparent;
  border-color: rgba(251, 250, 252, 0.16);
}

.landing-hero__proof span::before {
  width: 6px;
  height: 6px;
  background: #00d7ff;
  box-shadow: 0 0 18px rgba(0, 215, 255, 0.72);
}

.landing-hero__media img {
  top: 58px;
  right: max(48px, calc((100vw - var(--content)) / 2 - 18px));
  width: min(390px, 34vw);
  opacity: 0.88;
  transform: rotate(2deg);
  filter: saturate(1.08) brightness(1.14);
  border: 1px solid rgba(251, 250, 252, 0.1);
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.56),
    -28px 0 90px rgba(124, 60, 255, 0.12),
    28px 0 90px rgba(0, 215, 255, 0.1);
}

.landing-section--compact {
  padding-top: 74px;
}

.landing-section__head {
  margin-bottom: 30px;
}

.landing-section h2,
.landing-final h2 {
  font-size: 52px;
  letter-spacing: -0.01em;
}

.landing-step,
.landing-tool,
.landing-article,
.landing-choice__item,
.landing-faq details {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(11, 15, 28, 0.09);
  box-shadow: none;
}

.landing-tools {
  align-items: stretch;
}

.landing-tool {
  position: relative;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 251, 0.9));
}

.landing-tool::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #7c3cff, #0ea5ff, #00d7ff);
  opacity: 0.92;
}

.landing-tool::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 255, 0.12), transparent 66%);
  pointer-events: none;
  z-index: -1;
}

.landing-tool__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.landing-tool__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: #0b0f1c;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(11, 15, 28, 0.16);
}

.landing-tool h3 {
  max-width: 12ch;
}

.landing-tool p:not(.landing-kicker) {
  margin-bottom: 0;
}

.landing-tool a {
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 8px;
  color: #ffffff;
  background: #0b0f1c;
}

.landing-tool a::after {
  content: none;
}

.landing-tool--api {
  color: #ffffff;
  border-color: rgba(14, 165, 255, 0.2);
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 215, 255, 0.16), transparent 11rem),
    linear-gradient(135deg, #0b0f1c 0%, #11172a 100%);
}

.landing-tool--api .landing-kicker,
.landing-tool--api p {
  color: rgba(251, 250, 252, 0.76);
}

.landing-tool--api h3 {
  color: #ffffff;
}

.landing-tool--api .landing-tool__mark,
.landing-tool--api a {
  color: #0b0f1c;
  background: #ffffff;
}

.landing-tool--rent .landing-tool__mark {
  background: linear-gradient(135deg, #7c3cff, #0ea5ff);
}

.landing-tool--mail .landing-tool__mark {
  background: linear-gradient(135deg, #0ea5ff, #00d7ff);
}

.landing-step:hover,
.landing-tool:hover,
.landing-article:hover,
.landing-choice__item:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(11, 15, 28, 0.06);
}

.landing-step:first-child {
  background:
    linear-gradient(135deg, rgba(124, 60, 255, 0.14), rgba(14, 165, 255, 0.1)),
    #11172a;
  box-shadow: none;
}

.landing-step span {
  background: rgba(14, 165, 255, 0.08);
}

.landing-step:first-child span,
.landing-terminal__code {
  background: linear-gradient(135deg, #7c3cff 0%, #0ea5ff 68%, #00d7ff 100%);
}

.landing-section--dark,
.landing-final__inner {
  background:
    linear-gradient(90deg, rgba(251, 250, 252, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #0b0f1c 0%, #11172a 100%);
  background-size: 72px 72px, auto;
}

.landing-final__inner {
  box-shadow: none;
}

@media (max-width: 1120px) {
  .landing-hero h1 {
    font-size: 66px;
  }

  .landing-hero__media img {
    right: -56px;
    width: 380px;
    opacity: 0.36;
  }
}

@media (max-width: 860px) {
  body.landing-page {
    background:
      linear-gradient(180deg, #0b0f1c 0 700px, #fbfafc 700px 100%),
      #fbfafc;
  }

  .landing-page .site-header__inner {
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .landing-page .site-nav {
    margin-top: 2px;
  }

  .landing-page .site-nav a {
    background: rgba(251, 250, 252, 0.07);
    border-color: rgba(251, 250, 252, 0.12);
    color: rgba(251, 250, 252, 0.82);
  }

  .landing-hero {
    width: 100%;
    min-height: 650px;
  }

  .landing-hero::before {
    background:
      linear-gradient(180deg, rgba(11, 15, 28, 0.99) 0%, rgba(11, 15, 28, 0.94) 65%, rgba(11, 15, 28, 0.82) 100%),
      linear-gradient(135deg, rgba(124, 60, 255, 0.2), rgba(14, 165, 255, 0.1));
  }

  .landing-hero__inner {
    min-height: 650px;
    padding: 52px 0 54px;
  }

  .landing-hero h1 {
    max-width: 560px;
    font-size: 48px;
  }

  .landing-hero__media img {
    right: -36px;
    bottom: -260px;
    width: 330px;
    opacity: 0.15;
  }
}

@media (max-width: 640px) {
  .landing-page .brand__mark {
    width: 30px;
    height: 40px;
  }

  .landing-page .brand__title {
    font-size: 16px;
  }

  .landing-hero h1 {
    max-width: 335px;
    font-size: 38px;
  }

  .landing-section h2,
  .landing-final h2 {
    font-size: 34px;
  }
}

/* Blog brand refresh */
body.blog-page {
  --blog-ink: #0b0f1c;
  --blog-soft: #42495b;
  --blog-muted: #71788a;
  --blog-line: rgba(11, 15, 28, 0.1);
  --blog-line-strong: rgba(11, 15, 28, 0.2);
  --blog-cyan: #00d7ff;
  --blog-blue: #0ea5ff;
  --blog-purple: #7c3cff;
  --content: 1180px;
  color: var(--blog-ink);
  background:
    linear-gradient(90deg, rgba(11, 15, 28, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, #0b0f1c 0 520px, #fbfafc 520px 100%);
  background-size: 72px 72px, auto;
  line-height: 1.58;
  overflow-x: hidden;
}

.blog-page .site-header {
  background: rgba(11, 15, 28, 0.92);
  border-bottom-color: rgba(251, 250, 252, 0.08);
}

.blog-page .site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 60, 255, 0.44), rgba(0, 215, 255, 0.36), transparent);
  pointer-events: none;
}

.blog-page .brand {
  gap: 12px;
}

.blog-page .brand__mark {
  width: 32px;
  height: 43px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-page .brand__mark img {
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(14, 165, 255, 0.18));
}

.blog-page .brand__title {
  color: #fbfafc;
  font-size: 17px;
  letter-spacing: 0;
}

.blog-page .brand__sub {
  display: none;
}

.blog-page .site-nav a {
  color: rgba(251, 250, 252, 0.72);
  letter-spacing: 0;
}

.blog-page .site-nav a:hover,
.blog-page .site-nav a:focus-visible {
  color: #ffffff;
}

.blog-page .header-actions .btn {
  min-height: 44px;
  border-radius: 8px;
}

.blog-page .header-actions .btn--secondary {
  color: rgba(251, 250, 252, 0.86);
  background: transparent;
  border-color: rgba(251, 250, 252, 0.16);
}

.blog-page .header-actions .btn--primary {
  color: #0b0f1c;
  background: #fbfafc;
  box-shadow: none;
}

.blog-page .page-hero {
  padding: 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(251, 250, 252, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #0b0f1c 0%, #11172a 100%);
  background-size: 72px 72px, auto;
}

.blog-page .page-hero .container {
  position: relative;
  padding: 82px 0 72px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-page .page-hero .container::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: 0;
  top: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 215, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.blog-page .breadcrumbs {
  color: rgba(251, 250, 252, 0.52);
}

.blog-page .breadcrumbs a {
  color: rgba(251, 250, 252, 0.72);
}

.blog-page .breadcrumbs a:hover {
  color: #ffffff;
}

.blog-page .section__eyebrow,
.blog-page .article-tag,
.blog-page .post-card__tag {
  border-radius: 8px;
  border-color: rgba(0, 215, 255, 0.2);
  background: rgba(0, 215, 255, 0.08);
  color: #00d7ff;
  letter-spacing: 0;
}

.blog-page .page-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
}

.blog-page.article-page .page-hero h1 {
  max-width: 940px;
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 1;
}

.blog-page .page-hero p,
.blog-page .article-meta {
  color: rgba(251, 250, 252, 0.72);
}

.blog-page .section {
  padding: 72px 0;
}

.blog-index-page .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-page .post-card,
.blog-page .article-card,
.blog-page .aside-card,
.blog-page .faq-card,
.blog-page .cta-card,
.blog-page .footer-card {
  border-radius: 8px;
  border-color: var(--blog-line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.blog-page .post-card {
  position: relative;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
}

.blog-page .post-card::before {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  z-index: 1;
  border-radius: 8px;
  border-color: rgba(11, 15, 28, 0.1);
  color: var(--blog-muted);
  background: #ffffff;
}

.blog-page .post-card__inner {
  min-height: 280px;
  padding: 24px;
  gap: 14px;
}

.blog-index-page .blog-grid .post-card:nth-child(1) {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(124, 60, 255, 0.16), rgba(14, 165, 255, 0.1)),
    #11172a;
  border-color: rgba(124, 60, 255, 0.28);
}

.blog-index-page .blog-grid .post-card:nth-child(1) .post-card__meta,
.blog-index-page .blog-grid .post-card:nth-child(1) p,
.blog-index-page .blog-grid .post-card:nth-child(1) .post-card__link {
  color: rgba(251, 250, 252, 0.78);
}

.blog-index-page .blog-grid .post-card:nth-child(1) h3 {
  color: #ffffff;
}

.blog-page .post-card:hover,
.blog-page .faq-card:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 165, 255, 0.28);
  box-shadow: 0 18px 48px rgba(11, 15, 28, 0.06);
}

.blog-page .post-card h3 {
  padding-right: 34px;
  color: var(--blog-ink);
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.blog-page .post-card p,
.blog-page .feature-card p,
.blog-page .pricing-card p,
.blog-page .faq-card p,
.blog-page .article-card p,
.blog-page .article-card li,
.blog-page .kicker {
  color: var(--blog-soft);
}

.blog-page .post-card__meta,
.blog-page .article-meta {
  font-size: 13px;
}

.blog-page .post-card__link {
  color: var(--blog-ink);
}

.blog-page .post-card__link::after {
  content: " ->";
}

.blog-page .cta-card--contrast {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(251, 250, 252, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #0b0f1c 0%, #11172a 100%);
  background-size: 72px 72px, auto;
  border-color: rgba(14, 165, 255, 0.18);
}

.blog-page .cta-card--contrast h2 {
  color: #ffffff;
}

.blog-page .cta-card--contrast p,
.blog-page .cta-card--contrast .cta-card__foot a {
  color: rgba(251, 250, 252, 0.72);
}

.blog-page .cta-card--contrast .btn--primary {
  color: #0b0f1c;
  background: #ffffff;
  box-shadow: none;
}

.blog-page .cta-card--contrast .btn--secondary,
.blog-page .cta-card--contrast .btn--ghost {
  color: rgba(251, 250, 252, 0.9);
  background: transparent;
  border-color: rgba(251, 250, 252, 0.2);
}

.blog-page .article-card {
  padding: 34px;
  font-size: 18px;
  line-height: 1.72;
}

.blog-page .article-card h2,
.blog-page .article-card h3 {
  color: var(--blog-ink);
  letter-spacing: 0;
}

.blog-page .article-card a {
  color: #5a32e0;
  font-weight: 700;
}

.blog-page .aside-card {
  top: calc(var(--header-h) + 18px);
  background:
    linear-gradient(135deg, rgba(124, 60, 255, 0.08), rgba(14, 165, 255, 0.05)),
    #ffffff;
}

.blog-page .article-cta {
  border-radius: 8px;
  border-color: rgba(14, 165, 255, 0.18);
  background: #f4f8ff;
}

.blog-page .site-footer {
  background: #fbfafc;
}

.blog-page.article-page {
  background:
    radial-gradient(circle at 82% 140px, rgba(0, 215, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 110px, rgba(124, 60, 255, 0.18), transparent 22rem),
    linear-gradient(180deg, #050713 0 560px, #f7f8fb 560px 100%);
}

.blog-page.article-page .page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 250, 252, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #050713 0%, #0b0f1c 100%);
  background-size: 72px 72px, auto;
}

.blog-page.article-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 56%, rgba(124, 60, 255, 0.08) 56% 57%, transparent 57%),
    radial-gradient(circle at 70% 22%, rgba(14, 165, 255, 0.18), transparent 22rem);
  pointer-events: none;
}

.blog-page.article-page .page-hero .container {
  min-height: 440px;
  display: grid;
  align-content: end;
  padding: 76px 0 112px;
}

.blog-page.article-page .page-hero .container::after {
  right: -92px;
  top: 56px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(251, 250, 252, 0.08);
  background:
    radial-gradient(circle, rgba(0, 215, 255, 0.18), transparent 62%),
    linear-gradient(135deg, rgba(124, 60, 255, 0.1), rgba(14, 165, 255, 0.04));
  opacity: 0.92;
}

.blog-page.article-page .breadcrumbs {
  margin-bottom: 20px;
}

.blog-page.article-page .article-tag {
  width: fit-content;
  margin-bottom: 18px;
  background: rgba(251, 250, 252, 0.08);
  border-color: rgba(251, 250, 252, 0.12);
}

.blog-page.article-page .article-meta {
  margin-top: 24px;
}

.blog-page.article-page .article-meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(251, 250, 252, 0.1);
  border-radius: 8px;
  background: rgba(251, 250, 252, 0.06);
}

.blog-page.article-page .section {
  margin-top: -62px;
  padding: 0 0 84px;
  background: transparent;
}

.blog-page.article-page .article-layout {
  grid-template-columns: minmax(0, 780px) minmax(260px, 320px);
  gap: 22px;
  min-width: 0;
}

.blog-page.article-page .article-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  padding: 48px;
  border-color: rgba(11, 15, 28, 0.08);
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(11, 15, 28, 0.12);
}

.blog-page.article-page .article-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #7c3cff, #0ea5ff, #00d7ff);
}

.blog-page.article-page .article-cover {
  position: relative;
  margin: -16px -16px 34px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(11, 15, 28, 0.08);
  background: #0b0f1c;
  box-shadow: 0 18px 48px rgba(11, 15, 28, 0.12);
}

.blog-page.article-page .article-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.blog-page.article-page .article-card > p:first-child {
  margin-top: 0;
  color: #1c2435;
  font-size: 20px;
  line-height: 1.62;
}

.blog-page.article-page .article-card h2 {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(11, 15, 28, 0.08);
  font-size: 32px;
  line-height: 1.12;
}

.blog-page.article-page .article-card h2:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.blog-page.article-page .article-card h3 {
  font-size: 23px;
  line-height: 1.18;
}

.blog-page.article-page .article-card h2,
.blog-page.article-page .article-card h3,
.blog-page.article-page .article-card p,
.blog-page.article-page .article-card li {
  overflow-wrap: anywhere;
}

.blog-page.article-page .article-card p,
.blog-page.article-page .article-card li {
  color: #42495b;
}

.blog-page.article-page .article-card ul,
.blog-page.article-page .article-card ol {
  padding-left: 0;
  list-style: none;
}

.blog-page.article-page .article-card li {
  position: relative;
  margin-top: 12px;
}

.blog-page.article-page .article-card ul > li {
  padding-left: 28px;
}

.blog-page.article-page .article-card ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3cff, #0ea5ff);
}

.blog-page.article-page .article-card ol {
  counter-reset: article-step;
}

.blog-page.article-page .article-card ol > li {
  min-height: 34px;
  padding-left: 44px;
  counter-increment: article-step;
}

.blog-page.article-page .article-card ol > li::before {
  content: counter(article-step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0b0f1c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.blog-page.article-page .article-card a {
  color: #4d2fe8;
  text-decoration: none;
  border-bottom: 1px solid rgba(77, 47, 232, 0.22);
}

.blog-page.article-page .article-card a:hover {
  color: #0b0f1c;
  border-bottom-color: rgba(11, 15, 28, 0.28);
}

.blog-page.article-page .article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding: 24px;
  color: #ffffff;
  border-color: rgba(14, 165, 255, 0.16);
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 215, 255, 0.14), transparent 12rem),
    #0b0f1c;
}

.blog-page.article-page .article-cta p {
  margin: 0;
  color: rgba(251, 250, 252, 0.78);
}

.blog-page.article-page .article-cta a {
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: #0b0f1c;
  background: #ffffff;
  font-weight: 800;
}

.blog-page.article-page .aside-card {
  color: #ffffff;
  border-color: rgba(251, 250, 252, 0.1);
  background:
    radial-gradient(circle at top right, rgba(0, 215, 255, 0.12), transparent 12rem),
    #0b0f1c;
  box-shadow: 0 20px 60px rgba(11, 15, 28, 0.18);
}

.blog-page.article-page .aside-card h3 {
  color: #ffffff;
}

.blog-page.article-page .aside-card .footer-links li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(251, 250, 252, 0.1);
}

.blog-page.article-page .aside-card .footer-links a {
  color: rgba(251, 250, 252, 0.78);
}

.blog-page.article-page .aside-card .footer-links a:hover {
  color: #ffffff;
}

.blog-page.article-page .site-footer {
  background: #f7f8fb;
}

@media (max-width: 1120px) {
  .blog-index-page .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .blog-page .site-header__inner {
    align-items: flex-start;
  }

  .blog-page .nav-toggle {
    color: #ffffff;
    background: rgba(251, 250, 252, 0.08);
    border-color: rgba(251, 250, 252, 0.14);
    border-radius: 8px;
  }

  .blog-page .site-nav {
    background: #0f1424;
    border-color: rgba(251, 250, 252, 0.12);
    border-radius: 8px;
  }

  .blog-page .site-nav__mobile-action {
    border-top-color: rgba(251, 250, 252, 0.12);
  }

  .blog-index-page .blog-grid,
  .blog-page .article-layout,
  .blog-page .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-page .page-hero .container {
    padding: 54px 0 46px;
  }

  .blog-page.article-page .page-hero .container {
    min-height: 390px;
    padding: 54px 0 92px;
  }

  .blog-page.article-page .section {
    margin-top: -48px;
  }

  .blog-page.article-page .article-layout {
    grid-template-columns: 1fr;
  }

  .blog-page.article-page .aside-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .blog-page .brand__mark {
    width: 30px;
    height: 40px;
  }

  .blog-page .page-hero h1,
  .blog-page.article-page .page-hero h1 {
    font-size: 38px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-page .page-hero p,
  .blog-page .post-card p,
  .blog-page .article-card p,
  .blog-page .article-card li {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-page .post-card__inner {
    min-height: 250px;
    padding: 20px;
  }

  .blog-page .post-card h3 {
    font-size: 22px;
    padding-right: 28px;
  }

  .blog-page .article-card {
    padding: 22px;
    font-size: 16px;
  }

  .blog-page.article-page .page-hero .container {
    min-height: 360px;
  }

  .blog-page.article-page .page-hero h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .blog-page.article-page .page-hero .container::after {
    width: 240px;
    height: 240px;
    right: -124px;
    top: 42px;
  }

  .blog-page.article-page .article-meta span {
    min-height: 30px;
  }

  .blog-page.article-page .article-card {
    padding: 28px 20px;
    font-size: 16px;
  }

  .blog-page.article-page .article-cover {
    margin: -8px -8px 26px;
    border-radius: 14px;
  }

  .blog-page.article-page .article-card > p:first-child {
    font-size: 17px;
  }

  .blog-page.article-page .article-card h2 {
    margin-top: 36px;
    padding-top: 24px;
    font-size: 26px;
  }

  .blog-page.article-page .article-cta {
    display: grid;
    padding: 20px;
  }

  .blog-page.article-page .article-cta a {
    width: 100%;
  }
}
