/* Pocket ecosystem — release-safe public landing */

:root {
  --accent: #1fcecb;
  --smeta: #1fcecb;
  --draw: #6d92ff;
  --client: #efb95d;
  --ink-blueprint: #14222f;
  --accent-dim: rgba(31, 206, 203, 0.14);
  --accent-glow: rgba(31, 206, 203, 0.35);
  --bg: #080b0f;
  --bg-elevated: #10151c;
  --bg-card: rgba(16, 21, 28, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(31, 206, 203, 0.35);
  --text: #eef2f6;
  --text-muted: #8b97a8;
  --text-dim: #5f6b7a;
  --max: 1120px;
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Onest', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #000;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(31, 206, 203, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(31, 140, 206, 0.08), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(31, 206, 203, 0.06), transparent 40%);
}

.page-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 11, 15, 0.86);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s, background 0.2s;
}

.site-header.is-open {
  background: rgba(8, 11, 15, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: auto;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-products {
  margin-top: 0.25rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  border-radius: 10px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(31, 206, 203, 0.45);
  outline-offset: 3px;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--accent) !important;
  color: #041211 !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: #041211 !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-header.is-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1.25rem 2rem;
    background: rgba(8, 11, 15, 0.97);
    backdrop-filter: blur(20px);
  }

  .site-header.is-open .nav a {
    padding: 0.85rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
  }

  .site-header.is-open .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
    padding: 0.85rem;
  }
}

main {
  position: relative;
  z-index: 1;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 0 2.5rem;
  line-height: 1.65;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (min-width: 768px) {
  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}

.hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pill {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.pill-accent {
  border-color: var(--border-strong);
  background: var(--accent-dim);
  color: var(--accent);
}

.pill-sm {
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 32rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin: 0;
  max-width: 28rem;
}

.hero-note strong {
  color: var(--text-muted);
}

.pocket-map {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(109, 146, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 146, 255, 0.045) 1px, transparent 1px),
    linear-gradient(155deg, rgba(20, 34, 47, 0.98), rgba(8, 11, 15, 0.96));
  background-size: 22px 22px, 22px 22px, auto;
  box-shadow: var(--shadow);
}

.pocket-map::after {
  content: '';
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 36px;
  height: 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pocket-map-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.pocket-map-head span,
.map-caption,
.map-dimension {
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pocket-map-head strong {
  font-size: 0.86rem;
}

.pocket-map-identity {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 0 0.75rem;
}

.map-key {
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(31, 206, 203, 0.4);
  border-radius: 7px;
  background: rgba(31, 206, 203, 0.12);
  color: var(--smeta);
  font-size: 0.72rem;
  font-weight: 800;
}

.map-rule {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(31, 206, 203, 0.65) 0 8px,
    transparent 8px 13px
  );
}

.pocket-map-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.map-node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(8, 11, 15, 0.8);
}

.map-node-code,
.product-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
}

.map-node strong,
.download-product strong {
  display: block;
  font-size: 0.86rem;
}

.map-node div > span,
.download-product div > span {
  display: block;
  margin-top: 0.12rem;
  color: var(--text-dim);
  font-size: 0.67rem;
  line-height: 1.35;
}

.map-node-smeta {
  border-color: rgba(31, 206, 203, 0.32);
}

.map-node-smeta .map-node-code,
.product-smeta .product-monogram {
  background: rgba(31, 206, 203, 0.14);
  color: var(--smeta);
}

.map-node-draw {
  border-color: rgba(109, 146, 255, 0.35);
}

.map-node-draw .map-node-code,
.product-draw .product-monogram {
  background: rgba(109, 146, 255, 0.15);
  color: var(--draw);
}

.pocket-map-code {
  position: relative;
  height: 3rem;
  margin-left: 50%;
  border-left: 1px dashed rgba(239, 185, 93, 0.55);
}

.pocket-map-code::before,
.pocket-map-code::after {
  content: '';
  position: absolute;
  left: -4px;
  width: 7px;
  height: 1px;
  background: rgba(239, 185, 93, 0.7);
}

.pocket-map-code::before { top: 0; }
.pocket-map-code::after { bottom: 0; }

.map-dimension {
  position: absolute;
  top: 50%;
  left: 0.6rem;
  width: max-content;
  transform: translateY(-50%);
  color: rgba(239, 185, 93, 0.78);
}

.map-node-client {
  max-width: 18rem;
  margin: 0 auto;
  border-color: rgba(239, 185, 93, 0.38);
}

.map-node-client .map-node-code,
.product-client .product-monogram {
  background: rgba(239, 185, 93, 0.14);
  color: var(--client);
}

@media (max-width: 460px) {
  .pocket-map-tools {
    grid-template-columns: 1fr;
  }

  .pocket-map-identity {
    grid-template-columns: auto 1fr;
  }

  .map-caption {
    display: none;
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: auto;
}

.product-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 820px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 2px;
  background: var(--accent);
}

.product-card.product-draw::before { background: var(--draw); }
.product-card.product-client::before { background: var(--client); }

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-role {
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.product-card > p {
  min-height: 4.5rem;
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.product-card li {
  padding: 0.38rem 0;
  border-top: 1px solid var(--border);
}

.system-strip {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(16, 21, 28, 0.56);
}

@media (min-width: 820px) {
  .system-strip {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
}

.system-strip-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-strip strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.system-strip p {
  margin: 0.3rem 0 0;
  color: var(--text-dim);
  font-size: 0.76rem;
  line-height: 1.5;
}

.system-strip-arrow {
  color: var(--text-dim);
  font-size: 1.2rem;
}

@media (max-width: 819px) {
  .system-strip-arrow {
    display: none;
  }
}

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-card-main {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.hero-card-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-card-profit {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hero-card-profit span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.hero-card-profit strong {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 800;
}

.hero-card-side {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
}

.hero-card-side strong {
  display: block;
  font-size: 0.9rem;
}

.hero-card-side span {
  color: var(--text-dim);
  font-size: 0.78rem;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .hero-card-main {
    grid-column: 1 / -1;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
}

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

.btn-primary {
  background: var(--accent);
  color: #041211;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  filter: brightness(1.06);
  color: #041211;
}

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

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

.access-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .access-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.access-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

.access-card.is-highlight {
  border-color: var(--border-strong);
  background: linear-gradient(160deg, rgba(31, 206, 203, 0.12), var(--bg-card));
  box-shadow: 0 0 0 1px rgba(31, 206, 203, 0.1), var(--shadow);
}

.access-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.access-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.access-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.access-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.access-card li {
  padding: 0.35rem 0;
  border-top: 1px solid var(--border);
}

.access-card li.muted {
  color: var(--text-dim);
}

.access-foot {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-align: center;
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}

.bento-card:hover {
  border-color: rgba(31, 206, 203, 0.25);
  transform: translateY(-2px);
}

.bento-wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .bento-wide:not(.bento-client) {
    grid-column: span 2;
  }
}

.bento-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.65rem;
  color: var(--accent);
}

.bento-icon svg {
  width: 100%;
  height: 100%;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.bento-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.bento-client {
  background: linear-gradient(135deg, rgba(31, 206, 203, 0.1), var(--bg-card));
  border-color: var(--border-strong);
}

.bento-client-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.bento-client-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: var(--accent-dim);
}

.flow-steps {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.flow-step {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.flow-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.flow-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

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

.price-card.is-featured {
  border-color: var(--border-strong);
  background: linear-gradient(160deg, rgba(31, 206, 203, 0.1), var(--bg-card));
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: var(--accent);
  color: #041211;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.price-amount small {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--text-muted);
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-card li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
}

.pricing-foot {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.faq-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 760px) {
  .faq-item {
    padding: 1.35rem;
  }

  .faq-item:nth-child(odd) {
    padding-left: 0;
    padding-right: 2rem;
    border-right: 1px solid var(--border);
  }

  .faq-item:nth-child(even) {
    padding-left: 2rem;
    padding-right: 0;
  }
}

.faq-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.download {
  text-align: center;
}

.download .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.download-products {
  display: grid;
  gap: 1rem;
  margin: 2rem auto 1.5rem;
  max-width: 62rem;
  text-align: left;
}

@media (min-width: 760px) {
  .download-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

.download-product {
  --product-color: var(--smeta);
  position: relative;
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--product-color) 9%, transparent), transparent 48%),
    var(--bg-card);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.download-product::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: var(--product-color);
}

.download-product.product-draw {
  --product-color: var(--draw);
}

.download-product.product-client {
  --product-color: var(--client);
}

.download-product:hover {
  border-color: color-mix(in srgb, var(--product-color) 52%, transparent);
  color: var(--text);
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.download-product:focus-visible {
  border-color: var(--product-color);
}

.download-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.download-product .product-monogram {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid color-mix(in srgb, var(--product-color) 34%, transparent);
  background: color-mix(in srgb, var(--product-color) 14%, transparent);
  color: var(--product-color);
}

.download-audience {
  color: var(--product-color);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-product-copy {
  display: block;
  flex: 1;
}

.download-product .download-product-copy strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
}

.download-product .download-product-copy > span {
  display: block;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.download-store-action {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(4, 7, 10, 0.78);
}

.download-store-action svg {
  width: 1.55rem;
  height: 1.55rem;
}

.download-store-action small,
.download-store-action b {
  display: block;
}

.download-store-action small {
  margin-bottom: 0.05rem;
  color: var(--text-dim);
  font-size: 0.61rem;
  line-height: 1;
}

.download-store-action b {
  font-family: var(--font-display);
  font-size: 0.93rem;
  line-height: 1.15;
}

.download-arrow {
  color: var(--product-color);
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.download-product:hover .download-arrow {
  transform: translate(2px, -2px);
}

.download-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.download-links a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.download-links a:hover {
  text-decoration: underline;
}

.download-links span[aria-hidden='true'] {
  color: var(--text-dim);
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

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

.footer-legal,
.footer-copy {
  width: 100%;
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

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

.footer-legal a {
  color: var(--text-muted);
}
