@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300;400;500;600&display=swap');

/* latin-ext */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --color-bg: #0f0f10;
  --color-panel: rgba(18, 14, 24, 0.72);
  --color-line: rgba(255, 255, 255, 0.09);
  --color-line-soft: rgba(206, 137, 255, 0.22);
  --color-text: #ffffff;
  --color-text-muted: #9e91c2;
  --color-text-soft: #9e91c2;
  --color-accent: #7437ff;
  --color-accent-strong: #f447ae;
  --color-accent-fade: rgba(185, 65, 202, 0.22);
  --color-accent-fade-strong: rgba(255, 74, 184, 0.16);
  --color-cta-text: #29081b;
  --font-sans: "Host Grotesk", "Outfit", "Segoe UI", sans-serif;
  --shadow-soft: 0 28px 120px rgba(0, 0, 0, 0.34);
  --gradient-brand: linear-gradient(135deg, #7F2EFF 0%, #ba3be5 52%, #F447AE 100%);
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-body {
  position: relative;
  overflow-x: hidden;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 777px 719px at 80% 25%, rgba(244, 71, 174, 0.2) 0%, rgba(244, 71, 174, 0) 100%),
    radial-gradient(ellipse 1094px 959px at 40% 100%, rgba(114, 34, 225, 0.3) 8%, rgba(114, 34, 225, 0) 100%),
    linear-gradient(90deg, #0f0f10 0%, #0f0f10 100%);
}

.site-backdrop__halo {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.85;
}

.site-backdrop__halo--hero {
  width: min(82vw, 980px);
  height: min(56vw, 620px);
  left: 50%;
  top: 9rem;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at center, rgba(113, 41, 255, 0.18) 0, rgba(204, 65, 155, 0.18) 32%, rgba(9, 9, 13, 0) 74%);
  animation: heroPulse 10s ease-in-out infinite;
}

.site-backdrop__halo--corner {
  width: min(46vw, 520px);
  height: min(36vw, 420px);
  left: -10rem;
  bottom: -9rem;
  background:
    radial-gradient(circle at center, rgba(90, 38, 169, 0.34) 0, rgba(90, 38, 169, 0) 70%);
  animation: drift 18s ease-in-out infinite;
}

.site-backdrop__noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 88%);
  opacity: 0.18;
}

.site-header {
  position: relative;
  padding: 1.2rem clamp(1.2rem, 2vw, 2rem) 0;
}

.site-header__logo {
  position: absolute;
  top: 50%;
  left: clamp(1.2rem, 2vw, 2rem);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-header__logo:hover {
  opacity: 0.8;
}

.site-header__mark {
  width: 72px;
  height: 46px;
}

.site-header__logo-img {
  height: 42px;
}

.site-header__logo-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.nav__link:hover {
  color: var(--color-text);
  transform: translateY(-1px);
}

.nav__link[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 14px 28px rgba(0, 0, 0, 0.24);
}

.site-header__rule {
  width: min(100%, 1880px);
  height: 1px;
  margin: 1.3rem auto 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--color-line), rgba(255, 255, 255, 0));
}

.landing {
  min-height: calc(100vh - 6.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1.5rem 1.8rem;
}

.landing__hero {
  width: min(100%, 1100px);
  margin: 0 auto;
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5rem) 0 0.5rem;
  position: relative;
}

.landing__hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(88vw, 1120px);
  height: min(60vw, 660px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 74, 184, 0.08) 0, rgba(154, 61, 255, 0.16) 34%, rgba(9, 9, 13, 0) 73%);
  filter: blur(12px);
  z-index: -1;
}

.landing__hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(54vw, 760px);
  height: min(34vw, 430px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(133, 39, 244, 0.12), rgba(255, 74, 184, 0) 70%);
  filter: blur(30px);
  z-index: -1;
}

.landing__brand,
.landing__tagline,
.landing__copy,
.landing__punch,
.btn-cta,
.site-footer--landing {
  animation: fadeUp 0.9s ease both;
}

.landing__tagline {
  animation-delay: 0.08s;
}

.landing__copy {
  animation-delay: 0.16s;
}

.landing__punch {
  animation-delay: 0.24s;
}

.btn-cta {
  animation-delay: 0.32s;
}

.site-footer--landing {
  animation-delay: 0.44s;
}

.hero-mark {
  width: clamp(104px, 10vw, 132px);
  margin: 0 auto 1.15rem;
  filter: drop-shadow(0 0 22px rgba(255, 74, 184, 0.16));
}

.hero-logo {
  width: clamp(280px, 28vw, 420px);
  margin: 0 auto;
}

.landing__name {
  font-size: 2.44rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  line-height: 1;
}

.landing__tagline {
  max-width: 830px;
  margin: 2.5rem auto 0;
  font-size: clamp(1.6rem, 2.5vw, 2.44rem);
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  line-height: 1;
}

.landing__copy {
  max-width: 780px;
  margin: 2.5rem auto 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.landing__copy span {
  display: block;
}

.landing__copy strong {
  color: var(--color-text);
  font-weight: 500;
}

.landing__punch {
  margin: 2.5rem auto 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, #a78bfa 0%, #ff4ab8 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  height: 48px;
  border-radius: 1rem;
  background: var(--color-accent-strong);
  color: var(--color-cta-text);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  box-shadow:
    0 18px 40px rgba(255, 74, 184, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 52px rgba(255, 74, 184, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn-cta__circle {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  background: #fbb5df;
  color: var(--color-cta-text);
}

.btn-cta__icon {
  width: 1.1rem;
  height: 1.1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.95rem;
  padding: 1.2rem 1.5rem 2.4rem;
  color: var(--color-text);
}

.site-footer--landing {
  padding-top: 0.35rem;
}

.site-footer__icon {
  width: 2.9rem;
  height: 2.9rem;
  flex-shrink: 0;
}

.site-footer__logo {
  width: 288px;
  height: auto;
}

.site-footer__text {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
  text-decoration: none;
  color: inherit;
}

.site-footer__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.site-footer__brand {
  font-size: clamp(1rem, 1.9vw, 1.36rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.site-footer__privacy {
  flex-basis: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.18s;
}

.site-footer__privacy:hover {
  color: var(--color-text-muted);
}

.site-footer__cookie {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: color 0.18s;
}

.site-footer__cookie:hover {
  color: #fff;
}

/* ------------------------------------------------------------------ */
/*  Cookie consent banner                                              */
/* ------------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 0.9rem 1.1rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 12, 22, 0.92);
  border-top: 1px solid var(--color-line-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

body.has-cookie-banner {
  padding-bottom: 7.5rem;
}

@media (max-width: 640px) {
  body.has-cookie-banner {
    padding-bottom: 13rem;
  }
}

.cookie-banner__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
}

.cookie-banner__text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.cookie-banner__link {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-line-soft);
}

.cookie-banner__btn--reject:hover {
  border-color: #fff;
}

.cookie-banner__btn--accept {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-accent-strong);
  border-color: var(--color-accent-strong);
}

.cookie-banner__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

.page {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 1.5rem 4rem;
}

.page__title {
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}

.page__lead {
  max-width: 900px;
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.page__link {
  color: #a855f7;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s;
}

.page__link:hover {
  color: #c084fc;
}

.divider {
  border: 0;
  height: 1px;
  margin: 2.4rem 0 1.8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--color-line-soft), rgba(255, 255, 255, 0));
}

.page__section {
  padding: 1.5rem 1.55rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-line);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    var(--color-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.page__section h2 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 600;
}

.page__section p,
.page__section li {
  color: var(--color-text-muted);
}

.page__section p {
  line-height: 1.8;
}

.page__section ul {
  list-style: none;
}

.page__section li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.75;
}

.page__section li + li {
  margin-top: 0.4rem;
}

.page__section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-strong));
  box-shadow: 0 0 14px rgba(255, 74, 184, 0.35);
}

/* ------------------------------------------------------------------ */
/*  Branded header (logo + nav)                                        */
/* ------------------------------------------------------------------ */
.site-header--branded {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-header--branded .nav {
  justify-content: flex-end;
}

.site-header--branded .site-header__rule {
  flex-basis: 100%;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-header__mark {
  width: 42px;
  height: 26px;
  flex-shrink: 0;
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-header__brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.site-header__brand-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: #a855f7;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------------------ */
/*  Spec grid + data table (table style reused by privacy cookie list) */
/* ------------------------------------------------------------------ */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.method-card {
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--color-line);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    var(--color-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.method-card--hardware {
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
}

.method-card--wide {
  margin-top: 1.5rem;
}

.method-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.method-license {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

.method-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.method-table th {
  text-align: left;
  font-weight: 500;
  color: var(--color-text-soft);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--color-line);
}

.method-table td {
  padding: 0.6rem 1rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.method-table tbody tr:last-child td {
  border-bottom: none;
}

.method-table td:last-child {
  font-weight: 600;
  color: #fff;
}

.method-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.7rem;
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  margin-bottom: 0.9rem;
}

.method-card__title {
  font-size: 1.12rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.method-specs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.method-spec {
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
}

.method-spec__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-text-soft);
  margin-bottom: 0.15rem;
}

.method-spec__value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.method-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.method-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.method-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-text-soft);
}

@media (max-width: 760px) {
  .site-header--branded {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header--branded .nav {
    justify-content: center;
    width: 100%;
  }

  .method-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .method-card--hardware {
    grid-row: auto;
  }
}

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

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateX(-50%) scale(0.98);
  }
  50% {
    opacity: 0.92;
    transform: translateX(-50%) scale(1.03);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(2rem, -1rem, 0);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-header__logo {
    position: static;
    transform: none;
    justify-content: center;
    margin-bottom: 0.5rem;
    order: -1;
  }

  .nav {
    gap: 0.45rem;
  }

  .nav__link {
    min-height: 2.7rem;
    padding: 0.68rem 1rem;
    font-size: 0.92rem;
  }

  .landing {
    padding-inline: 1rem;
  }

  .landing__hero {
    padding-top: 4rem;
  }

  .landing__copy {
    max-width: 35rem;
  }

  .landing__copy span {
    display: inline;
  }

  .btn-cta {
    font-size: 1rem;
  }

  .page {
    padding-inline: 1rem;
    padding-bottom: 3rem;
  }

  .page__section {
    padding: 1.25rem;
  }

  .site-footer {
    padding-inline: 1rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 520px) {
  .site-backdrop__halo--hero {
    width: 130vw;
    height: 76vw;
    top: 8rem;
  }

  .landing__name {
    font-size: 2.45rem;
  }

  .landing__copy {
    font-size: 0.98rem;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    max-width: 18rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Marketing site: shared components (home, blog, article, CTA)
   ========================================================================== */

/* --- Header nav CTA --- */
.nav__cta {
  color: var(--color-cta-text);
  background: var(--color-accent-strong);
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(255, 74, 184, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav__cta:hover {
  color: var(--color-cta-text);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 74, 184, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

/* --- Eyebrow pill --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--color-line-soft);
  border-radius: 999px;
  color: #e6d6f5;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-accent-strong);
  box-shadow: 0 0 0 0.28rem rgba(244, 71, 174, 0.15);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 0.95rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn--primary {
  color: var(--color-cta-text);
  background: var(--gradient-brand);
  box-shadow: 0 18px 40px rgba(127, 46, 255, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(244, 71, 174, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--color-line-soft);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(206, 137, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.btn__icon {
  width: 1.05rem;
  height: 1.05rem;
}

.btn:focus-visible,
.nav__cta:focus-visible,
.post-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* --- Home: hero --- */
.home {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem 4rem;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero > * {
  animation: fadeUp 0.9s ease both;
}

.hero__logo {
  width: clamp(220px, 24vw, 340px);
}

.hero__title {
  max-width: 16ch;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero__lead {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  font-weight: 300;
  line-height: 1.65;
}

.hero__lead strong {
  color: #fff;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 0.5rem;
}

/* --- Section scaffolding --- */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section__title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
}

.section__lead {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-weight: 300;
  line-height: 1.7;
}

/* --- Feature grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--color-line);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    var(--color-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: var(--color-line-soft);
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.1rem;
  border-radius: 0.85rem;
  background: rgba(168, 85, 247, 0.15);
  color: #c79bff;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature__title {
  margin-bottom: 0.45rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: #fff;
}

.feature__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

/* --- CTA panel --- */
.cta-panel {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--color-line-soft);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(127, 46, 255, 0.28), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(244, 71, 174, 0.24), transparent 40%),
    var(--color-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.cta-panel__title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
}

.cta-panel__text {
  max-width: 56ch;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 300;
  line-height: 1.65;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.4rem;
}

.cta-panel__email {
  color: #e6d6f5;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-line-soft);
  transition: text-decoration-color 0.18s, color 0.18s;
}

.cta-panel__email:hover {
  color: #fff;
  text-decoration-color: var(--color-accent-strong);
}

.cta-panel__hint {
  margin-top: 0.2rem;
  color: var(--color-text-soft);
  font-size: 0.82rem;
  font-weight: 400;
}

/* --- Blog index --- */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.post-card {
  display: block;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid var(--color-line);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    var(--color-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-line-soft);
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.post-card__cat {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.16);
  color: #d9c2f5;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.post-card__title {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.18;
  color: #fff;
}

.post-card__excerpt {
  max-width: 70ch;
  margin-top: 0.65rem;
  color: #cabfde;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.post-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  color: #e6d6f5;
  font-size: 0.92rem;
  font-weight: 500;
}

.post-card:hover .post-card__more {
  color: #fff;
}

/* --- Article --- */
.article {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem 3rem;
}

.article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  transition: color 0.18s;
}

.article__back:hover {
  color: #fff;
}

.article__head {
  margin: 1.8rem 0 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.article__title {
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--color-text-soft);
  font-size: 0.88rem;
}

.article__dek {
  padding-left: 1.1rem;
  border-left: 2px solid var(--color-accent-strong);
  color: #d9c8ea;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
}

/* Prose */
.prose {
  color: #ddd5ec;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.85;
}

.prose > * + * {
  margin-top: 1.25rem;
}

.prose h2 {
  margin-top: 2.6rem;
  margin-bottom: -0.2rem;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

.prose em {
  color: #e6d6f5;
}

.prose a {
  color: #c79bff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-left: 0.2rem;
}

.prose li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.7;
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(244, 71, 174, 0.4);
}

.article__cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-line);
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions .btn,
  .cta-panel__actions .btn {
    width: 100%;
    max-width: 22rem;
  }
}
