:root {
  --bg: #0a0a0b;
  --bg-elevated: #141416;
  --bg-card: #111113;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent: #95bf47;
  --accent-dim: rgba(149, 191, 71, 0.15);
  --accent-glow: rgba(149, 191, 71, 0.35);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.header.is-scrolled {
  border-bottom-color: var(--border);
}

.logo {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

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

.nav a:not(.btn) {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav a:not(.btn):hover {
  color: var(--text);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #0a0a0b;
}

.btn--primary:hover {
  background: #a8d455;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  max-width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding-block: 3rem 2rem;
}

.hero__title {
  font-family: var(--sans);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero__text {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}

.hero__stats-bar {
  width: 100%;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.hero__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 100%;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
}

.hero__stats li:last-child {
  border-right: none;
}

.hero__stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius);
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.hero__stat-icon svg {
  width: 22px;
  height: 22px;
}

.hero__stats strong {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.hero__stats span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 14rem;
}

/* Section head */
.section-head {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-head--left {
  text-align: left;
  margin-inline: 0;
  max-width: none;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-head__desc,
.section-head p {
  color: var(--text-muted);
}

.section-head--left p + p {
  margin-top: 1rem;
}

/* Apps development */
.apps {
  padding: 5rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.apps-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.apps-type {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}

.apps-type:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.apps-type__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.apps-type__icon--public {
  background: rgba(110, 181, 255, 0.15);
  color: #6eb5ff;
}

.apps-type__icon svg {
  width: 24px;
  height: 24px;
}

.apps-type h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.apps-type > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.apps-type ul {
  list-style: none;
}

.apps-type ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.apps-type ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.app-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(110, 181, 255, 0.5) 50%, var(--accent) 100%);
  overflow: hidden;
}

.app-showcase__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(149, 191, 71, 0.35);
}

.app-showcase__inner {
  background: linear-gradient(145deg, #121214 0%, #0d0d0f 60%, rgba(149, 191, 71, 0.06) 100%);
  border-radius: calc(var(--radius-lg) - 1px);
  padding: 2.5rem;
}

.app-showcase__brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.app-showcase__logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 16px;
  border: 1px solid rgba(149, 191, 71, 0.3);
}

.app-showcase__logo svg {
  width: 32px;
  height: 32px;
}

.app-showcase__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6eb5ff;
  margin-bottom: 0.25rem;
}

.app-showcase h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.app-showcase__by {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.app-showcase__desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.app-showcase__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.app-showcase__features li {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.app-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 640px) {
  .app-showcase__badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .app-showcase__inner {
    padding: 1.75rem;
  }
}

/* Launch — homepage teaser */
.launch {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(149, 191, 71, 0.08) 0%, var(--bg) 50%);
  border-block: 1px solid var(--border);
}

.launch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.launch__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.launch__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.launch__lead strong {
  color: var(--text);
}

.launch__perks {
  list-style: none;
  margin-bottom: 1.5rem;
}

.launch__perks li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.launch__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.launch__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent-dim);
}

.launch__more {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

.launch__more:hover {
  text-decoration: underline;
}

.launch__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.launch__form-wrap h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.launch__form-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.nav__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0a0a0b !important;
  background: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
}

.nav__cta:hover {
  background: #a8d455;
  color: #0a0a0b !important;
  transform: translateY(-1px);
}

.nav__cta--active,
.nav__cta.nav__cta--active {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--accent);
}

@media (max-width: 768px) {
  .nav__cta {
    white-space: normal;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Dedicated start page */
.page-start {
  padding-top: var(--header-h);
}

.page-hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50vw;
  max-width: 500px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.page-hero__text {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.page-hero__text strong {
  color: var(--text);
}

.page-hero__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.page-hero__badges li {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(149, 191, 71, 0.3);
}

.page-block {
  padding: 4rem 0;
}

.page-block--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.page-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.page-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 42rem;
}

.page-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.info-cards {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.info-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.info-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.offer-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--offer-accent, var(--accent));
}

.offer-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.offer-card--signup {
  --offer-accent: #95bf47;
  --offer-icon-bg: rgba(149, 191, 71, 0.18);
  --offer-icon-color: #95bf47;
}

.offer-card--store {
  --offer-accent: #6eb5ff;
  --offer-icon-bg: rgba(110, 181, 255, 0.15);
  --offer-icon-color: #6eb5ff;
}

.offer-card--payments {
  --offer-accent: #c9a227;
  --offer-icon-bg: rgba(201, 162, 39, 0.15);
  --offer-icon-color: #e4c04a;
}

.offer-card--support {
  --offer-accent: #95bf47;
  --offer-icon-bg: rgba(149, 191, 71, 0.22);
  --offer-icon-color: #b8e86a;
  border-color: rgba(149, 191, 71, 0.35);
  background: linear-gradient(165deg, rgba(149, 191, 71, 0.12) 0%, var(--bg) 55%);
  box-shadow: 0 0 0 1px rgba(149, 191, 71, 0.1), 0 16px 48px rgba(149, 191, 71, 0.08);
}

.offer-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.offer-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offer-icon-bg);
  color: var(--offer-icon-color);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-card__icon svg {
  width: 26px;
  height: 26px;
}

.offer-card__num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.06);
  user-select: none;
}

.offer-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.offer-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  padding-right: 0.5rem;
}

.offer-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.65;
}

.page-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 52rem;
  opacity: 0.85;
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.steps li {
  counter-increment: step;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.steps strong {
  display: block;
  margin-bottom: 0.35rem;
}

.steps p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.fit-grid p {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.apply {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.apply__intro p {
  color: var(--text-muted);
}

.apply__contact-alt {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.apply__contact-alt a {
  color: var(--accent);
}

.apply__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* Services */
.services {
  padding: 3.5rem 0 6rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.service-card--accent {
  border-color: rgba(149, 191, 71, 0.25);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(149, 191, 71, 0.06) 100%);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--radius);
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.service-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.service-card__link:hover {
  text-decoration: underline;
}

/* Support */
.support {
  padding: 6rem 0 8rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
}

.support__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.support__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.support__benefits li {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.support__benefit-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.support__benefits strong {
  display: block;
  margin-bottom: 0.35rem;
}

.support__benefits p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.support__vision {
  margin-bottom: 4rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.support__vision h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.support__vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.support__vision-grid p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid var(--accent-dim);
}

/* Pricing */
.pricing__title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing__subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-dim);
}

.price-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.price-card__hours {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-card__period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.price-card__features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.price-card__features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.price-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.support__cta {
  text-align: center;
}

.support__cta p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  width: min(440px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition);
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  padding-right: 2rem;
}

.modal__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form [type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.field span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.25rem;
}

.form-status.is-success {
  color: var(--accent);
}

.form-status.is-error {
  color: #f87171;
}

body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__stats li {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero__stats li:last-child {
    border-bottom: none;
  }

  .services__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .support__intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .apps-types,
  .launch__grid,
  .page-block__grid,
  .apply,
  .offer-grid,
  .steps,
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a:not(.btn) {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav .btn {
    margin-top: 0.75rem;
  }

  .burger {
    display: flex;
  }

  .header.menu-open .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.menu-open .burger span:nth-child(2) {
    opacity: 0;
  }

  .header.menu-open .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Blog */
.blog-page {
  padding-top: var(--header-h);
}

.blog-hero {
  padding: 2.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.blog-page .blog-hero,
.blog-page .blog-list {
  padding-top: 2rem;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.blog-hero p {
  color: var(--text-muted);
  max-width: 36rem;
}

.blog-list {
  padding: 3rem 0 5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

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

.blog-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-elevated);
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.blog-card__body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.blog-card__body h2 a:hover {
  color: var(--accent);
}

.blog-card__body > p:not(.blog-card__tag) {
  font-size: 0.9375rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.article-page {
  padding-top: var(--header-h);
}

.article-hero {
  position: relative;
  width: 100%;
  min-height: 280px;
  max-height: min(52vh, 480px);
  overflow: hidden;
  background: var(--bg-card);
}

.article-hero__img {
  width: 100%;
  height: min(52vh, 480px);
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 0 2.5rem;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.15) 0%,
    rgba(10, 10, 11, 0.55) 45%,
    rgba(10, 10, 11, 0.92) 100%
  );
}

.article-hero__overlay .breadcrumb {
  margin-bottom: 0.75rem;
}

.article-hero__overlay .breadcrumb a,
.article-hero__overlay .breadcrumb {
  color: rgba(255, 255, 255, 0.75);
}

.article-hero__overlay h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 48rem;
  margin-bottom: 0.5rem;
}

.article-hero__overlay .article__meta {
  margin-bottom: 0;
  color: var(--text-muted);
}

.article {
  padding: 2.5rem 0 5rem;
}

.article__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.article__content {
  max-width: 42rem;
}

.article__meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.article__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.article__content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.article__content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
}

.article__content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.article__content ul,
.article__content ol {
  color: var(--text-muted);
  margin: 0 0 1.25rem 1.25rem;
  line-height: 1.75;
}

.article__content li {
  margin-bottom: 0.5rem;
}

.article__content a:not(.btn) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-cta__actions .btn--primary {
  color: #0a0a0b;
  text-decoration: none;
}

.article-cta__actions .btn--primary:hover {
  color: #0a0a0b;
}

.article-cta__actions .btn--ghost {
  color: var(--text);
  background: rgba(10, 10, 11, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.article-cta__actions .btn--ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

.article-cta {
  background: linear-gradient(135deg, rgba(149, 191, 71, 0.12) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(149, 191, 71, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
}

.article-cta h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem !important;
}

.article-cta p {
  margin-bottom: 1.25rem !important;
}

.article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.sidebar-box h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.sidebar-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-box li {
  margin-bottom: 0.5rem;
}

.sidebar-box a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sidebar-box a:hover {
  color: var(--accent);
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--accent);
}

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

  .article-sidebar {
    position: static;
  }
}
