:root {
  --ink: #141414;
  --muted: #5d5a55;
  --line: #d7e6e4;
  --paper: #ffffff;
  --cream: #f3f8f7;
  --sand: #e4f1ef;
  --accent: #0f9d96;
  --accent-ink: #0a6f6a;
  --mint: #e7f3ec;
  --dark: #0b1c1b;
  --max: 1120px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.15; }
.muted { color: var(--muted); }

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.top-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand img {
  width: auto;
  height: 44px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2b2b2b;
}
.nav a:hover, .nav a.on { background: var(--sand); }
.nav-item.has-drop { position: relative; }
.nav-drop {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(11, 28, 27, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 60;
}
.nav-item.has-drop:hover .nav-drop,
.nav-item.has-drop:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-drop a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-drop a:hover,
.nav-drop a.on { background: var(--sand); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #0c7f79; }
.btn-ghost { background: transparent; border-color: var(--line); }
.btn-ghost:hover { background: var(--cream); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-brown { background: #6b3f24; color: #fff; border-color: #6b3f24; }
.btn-brown:hover { background: #543018; }
.btn-link { padding: 0; min-height: 0; color: var(--accent-ink); font-weight: 700; }
.menu-btn { display: none; }

.prod-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 35;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.prod-bar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: visible;
  padding: 8px 0;
}
@media (max-width: 720px) {
  .prod-bar-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.prod-bar a {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #2b2b2b;
}
.prod-bar a:hover { background: var(--sand); }
.prod-bar a.on { background: var(--dark); color: #fff; }

.hero { padding: 72px 0 28px; text-align: center; }
.hero h1 { margin: 0 auto; max-width: 920px; font-size: clamp(28px, 4.6vw, 52px); letter-spacing: 0.02em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { margin: 18px auto 0; max-width: 640px; color: var(--muted); font-size: 18px; }
.hero .hero-beats {
  margin-top: 14px;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 36px 0 64px; }
.door {
  border-radius: 22px;
  padding: 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.door h2 { margin: 10px 0 12px; font-size: 32px; }
.door p { margin: 0 0 18px; }
.door-dark { background: var(--dark); color: #f6f1ea; }
.door-dark p { color: #cfc6ba; }
.door-mint { background: var(--mint); }
.proof {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  font-size: 14px;
  font-weight: 600;
}
.door-mint .proof { background: #fff; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px 0 72px;
}
.stat {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}
.stat strong { display: block; font-size: 32px; letter-spacing: -0.04em; }
.stat span { color: var(--muted); font-size: 14px; }

.section { padding: 20px 0 72px; }
.section h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 42px); }
.section > .lead { max-width: 640px; color: var(--muted); margin: 0 0 28px; }

.founder {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  background: var(--cream);
  border-radius: 24px;
  padding: 40px;
}
.quote { font-size: 26px; line-height: 1.35; letter-spacing: -0.03em; margin: 16px 0; }
.who { font-weight: 800; }
.portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  color: var(--ink);
}
.portrait-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  background: #dcecea;
}
.portrait-photo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  transform: translateY(-72px);
}
.portrait-cap {
  position: static;
  width: 100%;
  padding: 14px 0 0;
  text-align: center;
  background: none;
}
.portrait span { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.portrait strong { display: block; font-size: 22px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0 0 16px; color: var(--muted); }
.card .more { margin-top: auto; font-weight: 700; color: var(--accent-ink); }
.cards .card {
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.cards .card:hover,
.cards .card:focus-visible {
  background: #efe7db;
  border-color: #d4c8b6;
}
.cards .card:active,
.cards .card.is-on {
  background: #ddd0bc;
  border-color: #c4b49a;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.home-email-grid { margin-top: 8px; }
.home-email-grid .price { background: var(--cream); }
.home-email-grid .price.hot { background: #f3fbfa; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.price-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.price-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.price {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.price-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.price-jump a {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}
.price-jump a:hover { border-color: var(--accent); color: var(--accent-ink); }
.price.hot { border-color: #9ed4d0; background: #f3fbfa; }
.badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}
.price h3 { margin: 0 0 8px; font-size: 18px; }
.price .amt { font-size: 28px; font-weight: 800; letter-spacing: -0.04em; }
.price .note { color: var(--muted); font-size: 13px; margin: 4px 0 12px; }
.price ul { margin: 0 0 16px; padding-left: 18px; color: var(--muted); font-size: 14px; }
.price .btn { margin-top: auto; width: 100%; }

.blog-index { padding: 48px 0 80px; }
.blog-index .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-index .blog-total {
  display: inline-flex;
  min-width: 22px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  align-items: center;
  justify-content: center;
}
.blog-index h1 { margin: 0 0 10px; font-size: clamp(32px, 4vw, 44px); }
.blog-index .lead { margin: 0 0 28px; max-width: 640px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.blog-card-cover {
  display: block;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  object-fit: fill;
  background: #fff;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 22px 22px;
}
.blog-card:hover { border-color: var(--accent); box-shadow: 0 10px 28px rgba(11, 28, 27, 0.06); }
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.25; }
.blog-card p { margin: 0 0 16px; color: var(--muted); font-size: 14px; flex: 1; }
.blog-card .more { margin-top: auto; color: var(--accent-ink); font-size: 13px; font-weight: 800; }
.blog-reads { display: block; margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--accent-ink); }
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.blog-tags li {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--dark);
}
.blog-card .blog-tags { margin: 0 0 10px; }
.blog-post .blog-tags { margin: 0 0 18px; }
.blog-pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 0;
}
.blog-pager a, .blog-pager span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
}
.blog-pager span.on { background: var(--dark); color: #fff; border-color: var(--dark); }
.blog-post { padding: 48px 0 80px; max-width: 760px; }
.blog-post h1 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 40px); }
.blog-post .date { color: var(--muted); font-size: 13px; margin: 0 0 8px; }
.blog-hero {
  margin: 6px 0 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}
.blog-hero img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-prose { margin-top: 28px; }
.blog-prose h2, .blog-prose h3 { margin: 28px 0 10px; }
.blog-prose p, .blog-prose li { color: #333; }
.blog-prose a { color: var(--accent-ink); text-decoration: underline; }
.blog-prose blockquote {
  margin: 18px 0;
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  background: var(--cream);
  border-radius: 0 12px 12px 0;
}
.blog-prose hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.blog-prose img { display: none; }
.blog-back { margin-top: 36px; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
.panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: var(--cream);
}
.panel dt { color: var(--muted); font-size: 13px; margin-top: 14px; }
.panel dd { margin: 4px 0 0; font-weight: 700; }
label { display: block; font-size: 13px; font-weight: 700; margin: 12px 0 6px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }

.qr-strip {
  margin: 40px auto 8px;
  padding: 28px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qr-strip h2 { margin: 0; font-size: 16px; }
.qr-strip > .muted { margin: 6px 0 18px; font-size: 13px; }
.qr-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}
.qr-card {
  flex: 0 0 170px;
  width: 170px;
  box-sizing: border-box;
  text-align: center;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}
.qr-card a {
  display: block;
  width: 88px;
  margin: 0 auto;
}
.qr-card img {
  display: block;
  margin: 0 auto;
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-map-wrap {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.contact-map-wrap iframe,
.contact-map-wrap .contact-map {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  background: #e8e4dc;
}
.contact-map-open {
  margin: 0;
  padding: 8px 14px 12px;
  font-size: 13px;
  font-weight: 700;
}
.contact-map-pin {
  background: none;
  border: 0;
}
.contact-map-pin i {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.qr-card strong { display: block; margin-top: 10px; font-size: 13px; }
.qr-card .role { color: var(--accent-ink); font-size: 12px; font-weight: 700; margin-top: 4px; }
.qr-card .id { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--muted); margin-top: 4px; }

.foot {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
  margin-top: 40px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 0.75fr 1.5fr; gap: 28px; }
.foot-slogan p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 600;
}
.foot h4 { margin: 0 0 12px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.foot-company { font-weight: 800; font-size: 14px; line-height: 1.35; margin: 0 0 12px; }
.foot p { margin: 0 0 8px; font-size: 14px; line-height: 1.5; }
.foot-nav a { display: block; padding: 4px 0; font-size: 14px; }
.foot a:hover { color: var(--accent-ink); }
.foot-qr {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.foot-qr figure { margin: 0; text-align: center; max-width: 80px; }
.foot-qr img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
.foot-qr figcaption {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 600;
}
.foot-social { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; }
.foot-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.foot-social svg { width: 22px; height: 22px; }
.foot-social a:nth-child(1) { color: #0a66c2; }
.foot-social a:nth-child(2) { color: #e1306c; }
.foot-social a:nth-child(3) { color: #0085ff; }
.foot-social a.soc-wechat { color: #07c160; }
.foot-social a.soc-channels { color: #ff6a00; }
.foot-social a.soc-redbook { color: #ff2442; }
.foot-tg { font-size: 14px; }
.legal { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; text-align: center; }
.legal-links { margin-top: 8px; }
.legal-links a { color: inherit; }
.legal-links span { margin: 0 8px; color: #b7c2bc; }

@media (max-width: 900px) {
  .doors, .founder, .cards, .stats, .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  .price-grid, .price-grid.cols-3, .price-grid.cols-2, .posts, .blog-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }
  .menu-btn { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
  .nav.open .nav-drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 4px 0 4px 10px;
    min-width: 0;
  }
}
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cream);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee-x 32s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-item svg { width: 28px; height: 28px; border-radius: 7px; }
@keyframes marquee-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 28px 0 72px;
}
.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }
.showcase h2 { margin: 0 0 12px; font-size: clamp(26px, 3.4vw, 38px); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
  font-weight: 700;
}
.video-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1c1b;
  box-shadow: 0 18px 40px rgba(11, 28, 27, 0.12);
}
.video-frame video, .video-frame img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.video-square { max-width: 280px; margin-inline: auto; }
.video-square video { aspect-ratio: 1; }

.social-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  grid-template-rows: auto 1fr auto auto;
  column-gap: 28px;
  row-gap: 18px;
  align-items: start;
}
.social-lead {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.social-feats {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}
.social-chips {
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  align-self: center;
}
.social-cta {
  grid-column: 1;
  grid-row: 4;
  justify-self: start;
}
.matrix-frame {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 400px;
  align-self: start;
  overflow: hidden;
  border-radius: 12px;
  background: #e8eeec;
  box-shadow: 0 8px 18px rgba(11, 28, 27, 0.12);
}
.matrix-track {
  display: flex;
  transition: transform 0.45s ease;
}
.matrix-board {
  flex: 0 0 100%;
  width: 100%;
  background: #f4f6f8;
  padding: 8px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 6px;
}
.matrix-board h3 {
  margin: 0;
  font-size: 12px;
  letter-spacing: -0.02em;
}
.matrix-board p {
  margin: 2px 0 0;
  color: #667;
  font-size: 10px;
  font-weight: 600;
}
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.matrix-slot {
  background: #fff;
  border: 1px solid #16a34a;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.18);
  border-radius: 7px;
  padding: 5px 5px 4px;
}
.matrix-slot .row { display: flex; align-items: center; gap: 4px; }
.matrix-slot .name { font-size: 9px; font-weight: 800; line-height: 1.15; }
.matrix-slot .sub { font-size: 8px; color: #778; }
.matrix-slot .ok { color: #15803d; font-size: 8px; font-weight: 800; margin-top: 3px; }
.matrix-slot .acts { display: flex; gap: 3px; margin-top: 4px; }
.matrix-slot .acts b {
  flex: 1;
  height: 14px;
  border-radius: 4px;
  background: #f3f5f4;
  font-size: 7px;
  display: grid;
  place-items: center;
  color: #445;
  font-weight: 700;
}
.matrix-slot .acts b.rm { color: #b42318; }
.matrix-ico {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
}
.matrix-ico svg { width: 16px; height: 16px; display: block; }
.matrix-foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}
.matrix-foot span {
  background: #fff;
  border: 1px solid #d9e0de;
  border-radius: 5px;
  height: 18px;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 800;
}
.icon-rail {
  grid-column: 2;
  grid-row: 3;
  width: 400px;
  margin: 0;
  overflow: hidden;
  align-self: center;
}
.icon-rail-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: icon-rail 26s linear infinite;
}
.matrix-icon {
  width: 39px;
  height: 39px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(11, 28, 27, 0.16);
}
.matrix-icon svg { width: 39px; height: 39px; display: block; }
@keyframes icon-rail {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.orbit-wrap {
  position: relative;
  width: min(280px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  animation: orbit 36s linear infinite;
}
.orbit-slot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--deg)) translate(96px);
}
.orbit-icon {
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  animation: orbit-back 36s linear infinite;
  filter: drop-shadow(0 6px 10px rgba(11, 28, 27, 0.18));
}
.orbit-icon svg {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.orbit-core {
  position: absolute;
  inset: 34%;
  border-radius: 20px;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  padding: 10px;
  z-index: 1;
}
.orbit-core img {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto 4px;
}
.orbit-core span { display: block; }

.page-social .pd-hero .eyebrow {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}
.page-social .pd-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 12px 28px;
  align-items: center;
}
.page-social .sx-hero-copy { min-width: 0; }
.page-social .pd-hero h1,
.page-social .pd-hero p { max-width: none; }
.page-social .sx-orbit {
  width: min(320px, 100%);
  justify-self: end;
  align-self: center;
  margin: 0;
}
.page-social .sx-orbit::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(30, 41, 59, 0.16);
  border-radius: 50%;
}
.page-social .orbit-slot { transform: rotate(var(--deg)) translate(118px); }
.page-social .orbit-icon,
.page-social .orbit-icon svg { width: 44px; height: 44px; }
@media (max-width: 900px) {
  .page-social .pd-hero { grid-template-columns: 1fr; }
  .page-social .sx-orbit {
    justify-self: center;
    margin: 4px auto;
  }
}
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbit-back {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-icon, .icon-rail-track { animation: none; }
}

.hud {
  border-radius: 22px;
  background: linear-gradient(160deg, #111, #1c2a28);
  color: #fff;
  padding: 28px;
  min-height: 280px;
  box-shadow: 0 18px 40px rgba(11, 28, 27, 0.16);
}
.hud-score {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #2ee6c8;
  line-height: 1;
}
.hud-row { display: flex; gap: 18px; margin-top: 22px; color: #c9d8d5; font-size: 13px; }
.hud-row strong { display: block; color: #fff; font-size: 18px; }

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.flow article {
  border-radius: 16px;
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.flow strong { display: block; font-size: 28px; color: var(--accent); }

@media (max-width: 900px) {
  .showcase, .showcase.reverse, .flow { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .price-grid, .price-grid.cols-3, .price-grid.cols-2, .posts, .blog-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .door, .founder { padding: 22px; }
}

.about-hero { text-align: left; padding-top: 56px; }
.about-hero h1 { max-width: 860px; margin-left: 0; }
.about-hero p { max-width: 760px; margin-left: 0; }
.about-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.about-cta {
  text-align: center;
  padding: 40px 28px 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
}
.about-cta h2 { max-width: 720px; margin: 0 auto 12px; }
.about-cta p { max-width: 640px; margin: 0 auto 22px; color: var(--muted); }
.about-cta .btn-link { color: var(--accent-ink); }
@media (max-width: 900px) {
  .about-principles { grid-template-columns: 1fr; }
}

.page-products .hero { padding: 28px 0 10px; text-align: center; }
.page-products .hero h1 { font-size: clamp(26px, 4vw, 38px); }
.page-products .hero .rail {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 8px;
  flex-wrap: nowrap;
}
.page-products .hero .rail a {
  flex: 1 1 0;
  text-align: center;
  white-space: nowrap;
  padding-left: 8px;
  padding-right: 8px;
}
.page-products .hero-sub {
  display: block;
  width: 100%;
  max-width: none;
  margin: 20px 0 0;
  text-align: center;
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--ink);
}
@media (max-width: 900px) {
  .page-products .hero .rail { flex-wrap: wrap; }
  .page-products .hero .rail a { flex: 1 1 calc(33.33% - 8px); white-space: normal; }
}
.page-products .section { padding: 16px 0 20px; }
.page-products .section h2 { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 6px; }
.teach-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.cal-ico {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--accent-ink);
  flex-shrink: 0;
}
.cal-ico svg { width: 26px; height: 26px; display: block; }
.page-products .section > .lead { margin: 0 0 12px; font-size: 14px; }
.page-products .foot { margin-top: 16px; padding-top: 28px; }

.hero-left { text-align: left; padding-bottom: 12px; }
.hero-left h1, .hero-left p { margin-left: 0; }
.rail { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.rail a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}
.rail a:hover { border-color: var(--accent); color: var(--accent-ink); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.feat-grid li {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.email-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 14px;
}
.email-split .feat-grid { margin-bottom: 0; }
.email-win {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11, 28, 27, 0.14);
}
.email-win video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.play-fab {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 64px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 157, 150, 0.94);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(11, 28, 27, 0.28);
}
.email-win:hover .play-fab { background: var(--accent); }

.plug-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.plug-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.plug-copy {
  padding: 12px 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.plug-title { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.plug-title h3 a { color: inherit; }
.plug-copy h3 { margin: 0; font-size: 16px; }
.plug-copy p { margin: 0 0 8px; color: var(--muted); font-size: 13px; }
.plug-copy .chips { margin: 0 0 10px; }
.plug-copy .chip { padding: 3px 8px; font-size: 11px; }
.plug-card .btn { min-height: 32px; width: 100%; margin-top: auto; padding: 0 12px; font-size: 13px; }
.vid-win {
  position: relative;
  width: 100%;
  background: #111;
}
.vid-win video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.vid-zoom {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(11, 28, 27, 0.72);
  display: grid;
  place-items: center;
  padding: 24px;
}
.vid-zoom[hidden] { display: none; }
.vid-zoom video {
  width: var(--zoom-w, 660px);
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.vid-zoom .modal-x { color: #fff; top: 16px; right: 20px; }

.plugin-grid, .teach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.plugin-card, .teach-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.plugin-card.soon { background: #fbfdfc; }
.plugin-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.plugin-head h3, .teach-card h3 { margin: 0; font-size: 16px; }
.app-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.app-icon svg { width: 14px; height: 14px; }
.app-icon.tiktok { background: #111; }
.app-icon.leads { background: var(--accent); }
.app-icon.amazon { background: #232f3e; }
.feat {
  margin: 8px 0 10px;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.feat li { margin: 0 0 4px; }
.plugin-card .btn { width: 100%; margin-top: auto; }

.ext {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  font-size: 12px;
}
.ext-dark { background: #111; color: #e8f4f2; border-color: #222; }
.ext-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #eef3f2;
  color: #667;
  font-weight: 700;
}
.ext-dark .ext-chrome { background: #1a1a1a; color: #8aa; }
.ext-chrome i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d0d0;
}
.ext-chrome i:first-child { background: #ff5f57; }
.ext-chrome i:nth-child(2) { background: #febc2e; }
.ext-chrome i:nth-child(3) { background: #28c840; }
.ext-body { padding: 10px; }
.score-row { display: flex; align-items: center; gap: 10px; }
.score-row strong { font-size: 36px; color: #2ee6c8; letter-spacing: -0.05em; line-height: 1; }
.score-row b, .score-row small { display: block; }
.mini-stats { display: flex; gap: 8px; list-style: none; padding: 10px 0 0; margin: 0; color: #9bb; }
.fake-input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 8px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}
.person {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-top: 1px solid #eef3f2;
}
.person b { font-size: 12px; }
.person span { color: var(--accent-ink); font-size: 11px; }
.amz-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; }
.dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--dark);
  color: #2ee6c8;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
}
.dot.gold { color: #ffd814; }
.soon-note { margin: 8px 0 0; color: var(--muted); font-size: 11px; }

.acq-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 12px;
}
.acq-values span {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.acq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.acq-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(11, 28, 27, 0.05);
}
.acq-card.hot {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #f4fbfa 0%, #fff 42%);
}
.acq-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.acq-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.acq-icon svg { width: 22px; height: 22px; display: block; }
.acq-card.hot .acq-icon { background: var(--accent); color: #fff; }
.acq-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-ink);
  background: var(--mint);
  border-radius: 999px;
  padding: 4px 8px;
}
.acq-card h3 { margin: 0; font-size: 18px; letter-spacing: -0.02em; }
.acq-title { margin: 6px 0 10px; color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.4; }
.acq-note { margin: 0 0 12px; color: var(--muted); font-size: 12px; }
.acq-card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.acq-card li {
  position: relative;
  padding: 0 0 8px 14px;
}
.acq-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.acq-card .btn { width: 100%; margin-top: auto; }

.flyer {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  margin: 8px 0 18px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef7f6 0%, #fff 55%, #e7f3ec 100%);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(11, 28, 27, 0.06);
}
.flyer-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
}
.flyer-copy h3 {
  margin: 10px 0 8px;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.flyer-sub { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.flyer-follow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.li-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(10, 102, 194, 0.28);
}
.li-mark svg { width: 40px; height: 40px; display: block; }
.flyer-follow strong { display: block; font-size: 14px; }
.flyer-follow span { display: block; color: var(--muted); font-size: 12px; }
.flyer-steps {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.flyer-steps p { margin: 0 0 8px; font-size: 12px; font-weight: 800; }
.flyer-steps ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.flyer-steps li { font-size: 13px; color: var(--muted); }
.flyer-steps b { color: var(--ink); margin-right: 6px; }
.btn-in {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  width: fit-content;
  font: inherit;
}
.btn-in:hover .follow-bar,
.btn-in:hover .in-sq { background: #084e96; }
.in-sq {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #0A66C2;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.in-sq svg { width: 18px; height: 18px; display: block; }
.follow-bar {
  display: grid;
  place-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  background: #0A66C2;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.pdf-get {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.flyer-who { margin: 10px 0 0; font-size: 12px; color: var(--muted); font-weight: 600; }
.flyer-pdf {
  position: relative;
  height: 220px;
  display: grid;
  place-items: center;
}
.flyer-page {
  position: relative;
  width: 168px;
  height: 210px;
  background: #fff;
  border: 1px solid #d5e3e1;
  border-radius: 6px 14px 6px 6px;
  padding: 16px 14px;
  box-shadow: 10px 12px 24px rgba(11, 28, 27, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flyer-logo {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.flyer-page-back {
  position: absolute;
  width: 168px;
  height: 210px;
  background: #f3f7f6;
  border: 1px solid #d5e3e1;
  border-radius: 6px 14px 6px 6px;
  transform: translate(10px, 8px);
}
.flyer-page .pdf-tag {
  align-self: flex-start;
  background: #e11d48;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
}
.flyer-page span { font-size: 11px; color: var(--accent-ink); font-weight: 800; }
.flyer-page strong { font-size: 15px; line-height: 1.25; letter-spacing: -0.02em; }
.flyer-page em { margin-top: auto; font-size: 10px; font-style: normal; color: var(--muted); font-weight: 700; }
.teach-points {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}
.teach-points li { padding: 0 0 6px 12px; position: relative; }
.teach-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.course-pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 10px; }
.course-pills span {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 800;
}
.teach-card .acq-icon { margin-bottom: 10px; }

.teach-card {
  font: inherit;
  color: inherit;
  min-height: 220px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.teach-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(11, 28, 27, 0.08);
}
.teach-card p { margin: 8px 0 12px; color: var(--muted); font-size: 14px; }
.teach-card .btn { width: 100%; margin-top: auto; }
.teach-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}
.kind-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.kind-pills button {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.kind-pills button.on { background: var(--dark); color: #fff; border-color: var(--dark); }

.book-panel {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: var(--cream);
}
.book-top { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.book-top h3 { margin: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
.tiny { font-size: 12px; margin: 8px 0 16px; }
.mode-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 8px 0 18px; }
.choice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.cal-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; margin: 8px 0 16px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cal-head .btn { min-height: 34px; padding: 0 10px; }
.cal-week, .cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-week span { text-align: center; font-size: 11px; color: var(--muted); font-weight: 700; }
.cal button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.cal button.mute { color: #bbb; background: transparent; }
.cal button.on { background: var(--accent); color: #fff; font-weight: 800; }
.cal button:disabled { opacity: 0.35; cursor: not-allowed; }
.slots { display: flex; flex-wrap: wrap; gap: 8px; }
.slots button {
  min-height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.slots button.on { background: var(--dark); color: #fff; border-color: var(--dark); }
.slots button:disabled { opacity: 0.4; cursor: not-allowed; }
.form-msg { margin: 10px 0; font-size: 14px; font-weight: 700; }
.form-msg.ok { color: #0a6f6a; }
.form-msg.err { color: #b42318; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(11,28,27,0.45);
  display: grid;
  place-items: center;
  z-index: 60;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  position: relative;
}
.modal-x {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.inbox-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.inbox-table th, .inbox-table td { border-bottom: 1px solid var(--line); padding: 10px 8px; text-align: left; vertical-align: top; }
.inbox-table th { color: var(--muted); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.admin-thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; margin: 8px 8px 0 0; vertical-align: top; }
.tag { display: inline-block; padding: 2px 7px; border-radius: 999px; background: var(--sand); font-size: 11px; font-weight: 800; }

.ask-bar {
  background: var(--dark);
  color: #f6f1ea;
  padding: 36px 0;
}
.ask-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ask-bar h2 { margin: 0 0 8px; font-size: clamp(22px, 3vw, 30px); }
.ask-bar p { margin: 0; color: #cfc6ba; max-width: 640px; }
.ask-gap {
  background: var(--cream);
  padding: 28px 0 8px;
}
.ask-gap-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 64px;
}
.ask-chat-ico {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
.ask-chat-ico svg { width: 56px; height: 56px; display: block; filter: drop-shadow(0 8px 16px rgba(11, 28, 27, 0.18)); }
.ask-chat-ico:hover svg rect { fill: #fff; }
.ai-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
}
body.ai-open .ai-fab { visibility: hidden; pointer-events: none; }
.ai-chips a {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.ai-chips a:hover { border-color: var(--accent); color: var(--accent-ink); }
.ai-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: min(420px, calc(100% - 24px));
  height: min(620px, calc(100vh - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(11, 28, 27, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ai-chat[hidden] { display: none; }
.ai-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--dark);
  color: #fff;
}
.ai-head .modal-x { color: #fff; position: static; }
.ai-log {
  flex: 1;
  overflow: auto;
  padding: 12px;
  background: var(--cream);
}
.ai-msg {
  max-width: 92%;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
}
.ai-msg.bot { background: #fff; border: 1px solid var(--line); }
.ai-msg.user { background: var(--accent); color: #fff; margin-left: auto; }
.ai-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 10px; }
.ai-chips button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.ai-chips button:hover { border-color: var(--accent); color: var(--accent-ink); }
.ai-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 12px;
}
.ai-card {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 10px 12px;
  font: inherit;
  cursor: pointer;
}
.ai-card strong { display: block; font-size: 12px; line-height: 1.3; }
.ai-card span { display: block; margin-top: 4px; font-size: 11px; color: var(--muted); line-height: 1.35; }
.ai-card:hover { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.ai-im-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 12px;
}
.ai-im {
  display: grid;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
}
.ai-im-ico svg { width: 28px; height: 28px; display: block; }
.ai-im label { font-size: 12px; font-weight: 800; }
.ai-im input {
  width: 100%;
  min-height: 36px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 8px;
  font: inherit;
  font-size: 12px;
}
.ai-im .btn { min-height: 34px; width: 100%; font-size: 12px; }
.ai-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.ai-form input { margin: 0; }
.ai-form .btn { min-height: 42px; flex-shrink: 0; }

@media (max-width: 900px) {
  .plugin-grid, .teach-grid, .form-grid, .cal-wrap, .social-split, .feat-grid, .email-split, .acq-grid, .acq-values, .flyer { grid-template-columns: 1fr; }
  .ask-inner { flex-direction: column; align-items: flex-start; }
  .social-split {
    grid-template-rows: none;
  }
  .social-lead, .social-feats, .social-chips, .social-cta, .matrix-frame, .icon-rail {
    grid-column: auto;
    grid-row: auto;
  }
  .social-lead { order: 1; }
  .matrix-frame { order: 2; width: min(400px, 100%); justify-self: center; }
  .social-feats { order: 3; }
  .social-chips { order: 4; }
  .icon-rail { order: 5; width: min(400px, 100%); justify-self: center; }
  .social-cta { order: 6; }
  .email-win { margin: 0 auto; }
  .book-top { display: block; }
  .plug-list { grid-template-columns: 1fr; }
}

.page-product-quote .pd-hero { text-align: left; padding: 48px 0 20px; }
.page-product-quote .pd-hero h1 { margin: 0; max-width: 820px; font-size: clamp(30px, 4.4vw, 48px); }
.page-product-quote .pd-hero p { margin: 16px 0 0; max-width: 680px; }
.page-product-quote .pd-hero .cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.price-jump a.on { background: var(--dark); color: #fff; border-color: var(--dark); }
.pd-demo {
  margin: 8px 0 28px;
  background: #111;
  border-radius: 18px;
  overflow: hidden;
}
.pd-demo video { display: block; width: 100%; max-height: 640px; background: #111; }
.pd-demo figcaption, .pd-shots figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.pd-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 8px;
}
.pd-shots figure { margin: 0; }
.pd-shots img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: right center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #111;
  display: block;
}
.pd-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pd-feats article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
.pd-feats h3 { margin: 0 0 8px; font-size: 17px; }
.pd-feats p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
@media (max-width: 900px) {
  .pd-shots, .pd-feats { grid-template-columns: 1fr; }
  .pd-shots img { height: auto; }
}

.tk-plans-head { margin-bottom: 8px; }
.tk-plugin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
}
.tk-plugin-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  margin: 0;
  box-shadow: 0 6px 18px rgba(11, 28, 27, 0.16);
}
.tk-plugin-brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.tk-plugin-brand span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
}
.price .tk-pack {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 1px dashed #c5d6d3;
  border-radius: 14px;
  background: #f7fbfa;
  text-align: left;
  cursor: not-allowed;
  color: inherit;
}
.price.hot .tk-pack { background: #eef8f6; border-color: #9ed4d0; }
.price .tk-pack.is-ready {
  cursor: pointer;
  border-style: solid;
  border-color: var(--accent);
  background: #fff;
}
.price .tk-pack:disabled,
.price .tk-pack[aria-disabled="true"] { opacity: 0.92; }
.tk-pack img {
  width: 44px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}
.tk-pack-meta { min-width: 0; }
.tk-pack-meta strong { display: block; font-size: 13px; }
.tk-pack-meta em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tk-pack-meta small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #8a6a12;
}
.price .tk-pack.is-ready .tk-pack-meta small { color: var(--accent-ink); }
.tk-note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.tk-renew {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.tk-renew h3 { margin: 0 0 6px; font-size: 18px; }
.tk-renew p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.tk-renew-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.tk-renew-row input {
  flex: 1 1 240px;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
}
.tk-renew-row .btn { width: auto; min-width: 160px; }
@media (max-width: 640px) {
  .tk-renew-row .btn { width: 100%; }
}

.admin-body { background: #f4f6f5; }
.admin-app { display: flex; min-height: 100vh; align-items: stretch; }
.admin-side {
  width: 260px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--line);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-side-head {
  padding: 16px 16px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.admin-side-head .brand img { height: 36px; }
.admin-side-head strong { display: block; margin-top: 8px; font-size: 13px; }
.admin-side-group {
  margin: 12px 16px 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8680;
}
.admin-side a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 1px 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
  color: #1f1f1f;
}
.admin-side a:hover { background: #f3f8f7; }
.admin-side a.on { background: #0b1c1b; color: #fff; }
.admin-side a .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ec4bd;
  flex-shrink: 0;
}
.admin-side a.on .dot { background: #fff; }
.admin-main-col {
  flex: 1;
  min-width: 0;
  padding: 24px 28px 80px;
}
html.admin-in #gate { display: none !important; }
html.admin-in #desk,
html.admin-in #desk[hidden] { display: block !important; }
html.admin-in #admin-side,
html.admin-in #admin-side[hidden] { display: block !important; }
.dwell-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
  align-items: start;
}
.dwell-ip-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  max-height: 72vh;
  overflow-y: auto;
  position: sticky;
  top: 12px;
}
.dwell-ip-list h3 {
  margin: 0;
  padding: 12px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.dwell-ip-list button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-bottom: 1px solid #f0eeea;
  cursor: pointer;
  font: inherit;
}
.dwell-ip-list button:hover { background: #f3f8f7; }
.dwell-ip-list button.on { background: #0b1c1b; color: #fff; }
.dwell-ip-list button.on .muted { color: #c9d4d2; }
.dwell-ip-list code { font-size: 12px; }
.dwell-ip-list .muted { display: block; margin-top: 2px; font-size: 12px; }
@media (max-width: 900px) {
  .dwell-layout { grid-template-columns: 1fr; }
  .dwell-ip-list { position: relative; max-height: 240px; }
}
.admin-main-col .admin-main { padding: 0; width: auto; max-width: none; }
.admin-kpi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 18px;
}
.admin-kpi div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.admin-kpi span { display: block; font-size: 11px; color: var(--muted); }
.admin-kpi strong { display: block; margin-top: 4px; font-size: 22px; letter-spacing: -0.03em; }
.admin-lookup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.admin-lookup input { min-width: 220px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; }
@media (max-width: 900px) {
  .admin-app { display: block; }
  .admin-side { width: auto; height: auto; position: relative; border-right: 0; border-bottom: 1px solid var(--line); }
  .admin-kpi { grid-template-columns: 1fr 1fr; }
}
.admin-menu, .admin-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.admin-menu a, .admin-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  color: inherit;
}
.admin-menu a.on, .admin-tabs button.on { background: var(--dark); color: #fff; border-color: var(--dark); }
.admin-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.admin-filters button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.admin-filters button.on { background: var(--dark); color: #fff; border-color: var(--dark); }
.inq-new { color: #0a6f6a; font-weight: 800; }
.inq-msg { white-space: pre-wrap; max-width: 42ch; }
.admin-days { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.admin-days button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.admin-days button.on { background: var(--dark); color: #fff; border-color: var(--dark); }
#ticket-rows tr { cursor: pointer; }
#ticket-rows tr:hover { background: var(--sand); }
.admin-ticket { width: min(640px, 100%); max-height: calc(100vh - 40px); overflow: auto; }
.ticket-meta { display: grid; gap: 10px; margin: 12px 0 18px; }
.ticket-meta dt { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.ticket-meta dd { margin: 4px 0 0; }
.ticket-thread { background: var(--cream); border-radius: 12px; padding: 10px; max-height: 320px; overflow: auto; }

.page-bestsellers { background: #fffaf0; }
.page-bestsellers .prod-bar { background: rgba(255,250,240,0.96); }
.page-bestsellers .pd-hero { padding-top: 36px; }
.page-bestsellers .pd-hero h1 { max-width: 780px; }
.bs-lang {
  display: inline-flex;
  gap: 6px;
  margin: 14px 0 0;
}
.bs-lang span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #1a1208;
  color: #ffe7b0;
  font-size: 12px;
  font-weight: 800;
}
.bs-lang span em { font-style: normal; color: #f5a623; }
.bs-hud {
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bs-score {
  min-width: 88px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #1a1208;
  color: #fff;
}
.bs-score strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: #f5a623;
}
.bs-score small { font-size: 11px; color: #e8c547; font-weight: 700; }
.bs-plats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.bs-plats span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e8c547;
  background: #fff8dc;
  font-size: 12px;
  font-weight: 800;
}
.page-bestsellers .price.hot { border-color: #e8c547; background: #fff8dc; }
.page-bestsellers .tk-renew { background: #fff8dc; border-color: #e8d48a; }

.page-leads { background: #f4f8f6; }
.page-leads .prod-bar { background: rgba(244,248,246,0.96); }
.page-leads .price.hot { border-color: #9fcfbe; background: #eef6f2; }
.page-leads .tk-renew { background: #eef6f2; border-color: #b7d8cc; }
.page-leads .lf-media {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.page-leads .lf-media figure { margin: 0; }
.page-leads .lf-media .pd-demo {
  max-width: none;
  margin: 0;
  background: transparent;
}
.page-leads .lf-media video,
.page-leads .lf-media img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: top center;
  background: #14352c;
  border-radius: 14px;
  border: 1px solid #b7d8cc;
}
.page-leads .lf-media figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 900px) {
  .page-leads .lf-media { grid-template-columns: 1fr; }
  .page-leads .lf-media video,
  .page-leads .lf-media img { height: 220px; }
}
.lf-who {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.lf-who span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #14352c;
  color: #e8f3ee;
  font-size: 12px;
  font-weight: 800;
}
.lf-saas-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 1px dashed #b7d8cc;
  border-radius: 14px;
  background: #eef6f2;
}
.lf-saas-slot strong { display: block; font-size: 13px; }
.lf-saas-slot em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
}

.page-email { background: #f3f8f7; }
.page-email .prod-bar { background: rgba(243,248,247,0.96); }
.page-email .price.hot { border-color: #9fd4cf; background: #eef8f6; }
.page-email .tk-renew { background: #eef8f6; border-color: #b7d8d3; }
.em-who {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.em-who span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #0b3d3a;
  color: #e8fff8;
  font-size: 12px;
  font-weight: 800;
}
.em-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.page-email .price .em-check {
  margin: 0 0 12px;
  align-items: flex-start;
}
.em-check input[type="checkbox"],
.em-check input[type="radio"] {
  margin: 2px 0 0;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  accent-color: #0b3d3a;
}
.em-check span { min-width: 0; }
.em-check small { display: block; margin-top: 2px; font-weight: 600; color: var(--muted); }
.em-fee {
  display: inline;
  padding: 1px 6px;
  border-radius: 999px;
  font-weight: 800;
}
.em-fee-human { color: #9a3412; background: #ffedd5; }
.em-fee-store { color: #1d4ed8; background: #dbeafe; }
.em-fee-year { color: #854d0e; background: #fef3c7; }
.em-fee-mute { color: #64748b; background: #e2e8f0; }
.em-build {
  margin-top: 28px;
  padding: 22px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.em-build h3 { margin: 0 0 6px; font-size: 20px; }
.em-build > p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.em-build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.em-build label {
  display: block;
  font-size: 13px;
  font-weight: 800;
}
.em-build .em-lab { display: block; margin: 0 0 6px; font-size: 13px; font-weight: 800; }
.em-build select,
.em-build input[type="text"],
.em-build input[type="number"] {
  width: 100%;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
}
.em-build .hint { margin: 4px 0 0; font-size: 12px; font-weight: 600; color: var(--muted); }
.em-build-opts { grid-column: 1 / -1; display: grid; gap: 10px; }
.em-sites { margin-top: 2px; }
.em-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.em-pills button {
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.em-pills button.on { background: #0b3d3a; color: #e8fff8; border-color: #0b3d3a; }
.em-maint {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.em-maint-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbfa;
  cursor: pointer;
}
.em-maint-card input { position: absolute; opacity: 0; pointer-events: none; }
.em-maint-card img { width: 48px; height: 48px; }
.em-maint-card strong { font-size: 13px; }
.em-maint-card:has(input:checked) {
  border-color: #0b3d3a;
  background: #eef8f6;
  box-shadow: 0 0 0 2px rgba(11,61,58,0.12);
}
.em-bill {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #0b3d3a;
  color: #e8fff8;
}
.em-bill h4 { display: none; margin: 0 0 10px; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.em-bill.is-open h4 { display: block; }
.em-bill ul { margin: 0; padding: 0; list-style: none; }
.em-bill li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(232,255,248,0.12);
  font-size: 13px;
  font-weight: 600;
}
.em-bill li span:last-child { font-weight: 800; }
.em-bill-pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
}
.em-bill.is-open .em-bill-pay {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(232,255,248,0.18);
}
.em-bill-pay em { display: block; font-style: normal; font-size: 12px; opacity: 0.75; }
.em-bill-pay strong { font-size: 30px; }
@media (max-width: 900px) {
  .em-build-grid { grid-template-columns: 1fr; }
  .em-maint { grid-template-columns: 1fr; }
}

.page-social { background: #f4f6fb; }
.page-social .prod-bar { background: rgba(244,246,251,0.96); }
.page-social .em-who span { background: #1e293b; color: #eef2ff; }
.page-social .em-build { margin-top: 0; }
.page-social .em-bill { background: #1e293b; color: #eef2ff; }
.page-social .em-bill li { border-bottom-color: rgba(238,242,255,0.12); }
.page-social .em-bill.is-open .em-bill-pay { border-top-color: rgba(238,242,255,0.18); }
.page-social .btn:disabled { opacity: 0.45; cursor: not-allowed; }
.sx-rules {
  display: grid;
  gap: 4px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #eef2ff;
  color: #1e293b;
  font-size: 13px;
  font-weight: 600;
}
.sx-rules p { margin: 0; }
.sx-rules b { font-size: 16px; }
.sx-min {
  margin: 8px 0 16px;
  font-size: 14px;
  font-weight: 800;
  color: #1e293b;
}
.sx-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sx-sublab {
  margin: 18px 0 8px;
  font-size: 13px;
  font-weight: 800;
}
.sx-plat {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.page-social .em-build .sx-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.page-social .em-build .sx-head input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: #1e293b;
}
.sx-ico {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}
.sx-ico svg {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 5px;
}
.sx-name { min-width: 0; flex: 1; }
.sx-qty {
  display: none;
  align-items: center;
  gap: 8px;
  padding-left: 24px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}
.sx-plat.on .sx-qty,
.sx-plat:has(input:checked) .sx-qty {
  display: flex;
}
.sx-qty .sx-range {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}
.sx-seats {
  width: 72px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}
.sx-plat.on,
.sx-plat:has(input:checked) {
  border-color: #1e293b;
  background: #eef2ff;
  box-shadow: 0 0 0 2px rgba(30,41,59,0.12);
}
.sx-custom { margin: 10px 0 0; }
.page-social .em-bill .sx-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 4px;
}
.page-social .em-bill .sx-contact label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #eef2ff;
}
.page-social .em-bill .sx-contact input {
  width: 100%;
  height: 38px;
  margin-top: 4px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  color: #0f172a;
}
.sx-sup {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
}
.sx-sup h3 { margin: 0 0 6px; font-size: 16px; }
.sx-sup > p { margin: 0 0 12px; font-size: 12px; color: var(--muted); line-height: 1.5; }
.sx-sup-add {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}
.sx-sup-add select,
.sx-sup-add input[type="text"],
.sx-sup-add input[type="number"] {
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
}
.sx-sup-add select { min-width: 180px; flex: 1; }
.sx-sup-seats { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; }
.sx-sup-seats input { width: 72px; }
.sx-sup-add input[type="text"] { min-width: 140px; flex: 1; }
#sx-sup-list { margin: 12px 0 0; padding: 0; list-style: none; }
#sx-sup-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}
#sx-sup-list button { margin-left: auto; }
#sx-sup-submit { margin-top: 14px; }
.sx-custom input {
  width: 100%;
  max-width: 320px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}
@media (max-width: 900px) {
  .sx-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.page-greetings .hero { text-align: left; padding-bottom: 28px; }
.pc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.pc-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.pc-card img {
  display: block;
  width: 100%;
  height: auto;
}
.pc-card figcaption {
  padding: 10px 14px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.gv-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gv-card .note { min-height: 44px; }
.gr-order {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 24px;
  align-items: start;
}
.gr-form { max-width: none; background: #fff; }
.gr-form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gr-side {
  display: grid;
  gap: 16px;
}
.gr-side img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.gr-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 700;
}
.gr-check input { width: auto; margin: 3px 0 0; }
.gr-hint { margin: 0 0 12px; font-size: 13px; color: var(--muted); }
.gr-form #postalCode { letter-spacing: 0.04em; font-weight: 700; }
@media (max-width: 900px) {
  .pc-grid, .gv-grid, .gr-form .row2, .gr-order { grid-template-columns: 1fr; }
}

/* City partnership — magazine stagger, not a photo row */
.page-partnership {
  background:
    radial-gradient(1200px 520px at 8% -10%, #dceeea 0%, transparent 58%),
    radial-gradient(900px 480px at 110% 12%, #f3e4d4 0%, transparent 52%),
    #f7f4ef;
}
.page-partnership .top { background: rgba(247, 244, 239, 0.92); }
.pt-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  min-height: calc(100vh - var(--nav-h));
  max-height: 860px;
  overflow: hidden;
  position: relative;
}
.pt-hero-copy {
  padding: 56px 7vw 72px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.pt-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1.5px dashed #0a6f6a;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a6f6a;
  background: rgba(255,255,255,0.7);
}
.pt-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.pt-hero-copy h1 em {
  font-style: normal;
  color: #c45c1a;
}
.pt-sub {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  color: #0a6f6a;
  letter-spacing: 0.04em;
}
.pt-hero-copy p {
  margin: 0 0 22px;
  max-width: 38ch;
  font-size: 17px;
  color: #3a3a38;
}
.pt-hero-photo {
  position: relative;
  min-height: 420px;
}
.pt-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
}
.pt-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7f4ef 0%, rgba(247,244,239,0.18) 28%, transparent 48%);
  pointer-events: none;
}
.pt-polaroid {
  position: absolute;
  width: min(240px, 34vw);
  right: 6%;
  bottom: 7%;
  z-index: 3;
  padding: 10px 10px 32px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 20, 18, 0.22);
  transform: rotate(-8deg);
}
.pt-polaroid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.pt-polaroid span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a6762;
  text-align: center;
}
.pt-overlap {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 1.12fr);
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  margin: -72px auto 0;
  position: relative;
  z-index: 4;
  align-items: start;
}
.pt-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  margin: 48px -48px 0 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 48px rgba(11, 28, 27, 0.08);
}
.pt-card h2 { margin: 0 0 12px; font-size: clamp(26px, 3vw, 36px); }
.pt-card p { margin: 0 0 12px; color: #3f3c38; }
.pt-overlap figure {
  margin: 0;
  position: relative;
}
.pt-overlap figure img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px 40px 8px 28px;
  box-shadow: 0 16px 40px rgba(11, 28, 27, 0.14);
}
.pt-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 28ch;
  padding: 10px 14px;
  background: rgba(11, 28, 27, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  border-radius: 10px;
}
.pt-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 22px;
  gap: 12px;
  width: min(1180px, calc(100% - 40px));
  margin: 56px auto 24px;
}
.pt-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}
.pt-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pt-mosaic .m1 { grid-column: 1 / 8; grid-row: 1 / 16; }
.pt-mosaic .m2 { grid-column: 7 / 13; grid-row: 5 / 20; z-index: 2; box-shadow: 0 18px 40px rgba(11,28,27,.16); }
.pt-mosaic .m3 { grid-column: 2 / 6; grid-row: 14 / 24; z-index: 3; box-shadow: 0 12px 28px rgba(11,28,27,.14); }
.pt-mosaic figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.pt-who {
  width: min(1180px, calc(100% - 40px));
  margin: 8px auto 40px;
}
.pt-who h2 { margin: 0 0 8px; font-size: clamp(26px, 3vw, 34px); }
.pt-who > p { margin: 0 0 28px; max-width: 62ch; color: var(--muted); }
.pt-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.pt-who-grid article {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 20px 20px;
  border-radius: 16px;
}
.pt-who-grid article:nth-child(2) { transform: translateY(28px); }
.pt-who-grid article:nth-child(3) { transform: translateY(12px); }
.pt-who-grid h3 { margin: 0 0 8px; font-size: 18px; }
.pt-who-grid p { margin: 0; color: #4a4743; font-size: 14.5px; }
.pt-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c45c1a;
}
.pt-ground {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  width: min(1100px, calc(100% - 40px));
  margin: 72px auto;
}
.pt-ground-banner {
  margin: 0;
  transform: rotate(-3.5deg);
  filter: drop-shadow(0 22px 36px rgba(11,28,27,.22));
}
.pt-ground-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #fff;
}
.pt-ground-copy h2 { margin: 0 0 12px; font-size: clamp(26px, 3vw, 36px); }
.pt-ground-copy p { margin: 0 0 12px; color: #3f3c38; }
.pt-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.pt-fields span {
  display: block;
  padding: 12px 12px;
  background: #0b1c1b;
  color: #eef6f5;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
}
.pt-map {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 40px auto 20px;
}
.pt-map img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(11,28,27,.12);
}
.pt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: absolute;
  left: 18px;
  bottom: 18px;
}
.pt-chips span {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(11,28,27,.08);
}
.pt-hub {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 56px;
  align-items: center;
}
.pt-hub-copy {
  background: #0b1c1b;
  color: #e8f1ef;
  padding: 36px 32px;
  margin-right: -40px;
  position: relative;
  z-index: 2;
  border-radius: 18px;
}
.pt-hub-copy h2 { margin: 0 0 12px; color: #fff; }
.pt-hub-copy p { margin: 0; color: #c9d9d6; }
.pt-hub figure { margin: 0; }
.pt-hub img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #efe8dc;
  border-radius: 0 20px 20px 0;
}
.pt-join {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  width: min(1100px, calc(100% - 40px));
  margin: 20px auto 80px;
  align-items: stretch;
}
.pt-join-copy {
  display: flex;
  flex-direction: column;
}
.pt-join-copy h2 { margin: 0 0 12px; }
.pt-join-copy p { margin: 0 0 12px; color: #3f3c38; }
.pt-join-banner {
  margin: auto 0 0;
  max-width: 280px;
}
.pt-join-banner img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(11, 28, 27, 0.14);
}
.pt-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 26px 22px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(11,28,27,.07);
}
.pt-form label {
  display: block;
  margin: 12px 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5d5a55;
}
.pt-form input, .pt-form select, .pt-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfcfb;
}
.pt-form textarea { min-height: 110px; resize: vertical; }
.pt-form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pt-form .hp { position: absolute; left: -9999px; }
@media (max-width: 900px) {
  .pt-hero, .pt-overlap, .pt-who-grid, .pt-ground, .pt-hub, .pt-join, .pt-form .row2 {
    grid-template-columns: 1fr;
  }
  .pt-hero { max-height: none; }
  .pt-hero-photo { min-height: 320px; }
  .pt-hero-photo::after { background: linear-gradient(180deg, #f7f4ef 0%, transparent 24%); }
  .pt-polaroid { width: 160px; right: 16px; bottom: 16px; }
  .pt-card { margin: -36px 0 0; }
  .pt-overlap figure img { height: 280px; border-radius: 16px; }
  .pt-mosaic { grid-auto-rows: 16px; }
  .pt-mosaic .m1 { grid-column: 1 / 13; grid-row: 1 / 12; }
  .pt-mosaic .m2 { grid-column: 3 / 13; grid-row: 9 / 20; }
  .pt-mosaic .m3 { grid-column: 1 / 8; grid-row: 17 / 26; }
  .pt-who-grid article:nth-child(2),
  .pt-who-grid article:nth-child(3) { transform: none; }
  .pt-ground { gap: 20px; }
  .pt-ground-banner { max-width: 220px; margin: 0 auto; }
  .pt-fields { grid-template-columns: 1fr; }
  .pt-hub-copy { margin: 0 0 -28px; }
  .pt-hub img { height: auto; border-radius: 0 0 16px 16px; }
  .pt-chips { position: static; margin-top: 12px; }
  .pt-join-banner { max-width: 240px; margin: 16px auto 0 0; }
}

.ia-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.ia-hero h1 { max-width: 16ch; }
.ia-hero .lead { max-width: 640px; color: var(--muted); }
.ia-hero .cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ia-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 8px;
  max-width: 640px;
}
.ia-stats div {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 14px;
  padding: 14px 16px;
}
.ia-stats strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.ia-stats span { color: var(--muted); font-size: 13px; }
.ia-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.ia-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  min-height: 128px;
}
.ia-tile:hover { border-color: var(--accent); background: var(--cream); }
.ia-tile strong { font-size: 13px; letter-spacing: -0.02em; line-height: 1.3; }
.ia-tile span { color: var(--muted); font-size: 12px; }
.ia-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ia, var(--accent));
  display: grid;
  place-items: center;
  flex: none;
}
.ia-ico svg { width: 26px; height: 26px; display: block; }
.ia-ind { padding: 8px 0 48px; scroll-margin-top: 92px; }
.ia-ind-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.ia-ind-head .ia-ico { width: 52px; height: 52px; border-radius: 16px; }
.ia-ind-head .ia-ico svg { width: 32px; height: 32px; }
.ia-ind-head h2 { margin: 0; font-size: clamp(20px, 2.4vw, 28px); max-width: 34ch; }
.ia-ind-head .eyebrow { margin-bottom: 6px; }
.ia-sys-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ia-sys {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  background: #fff;
}
.ia-sys h3 { margin: 0 0 12px; font-size: 17px; }
.ia-sys dl { margin: 0; display: grid; gap: 12px; }
.ia-sys dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 4px;
}
.ia-sys dd { margin: 0; color: var(--muted); font-size: 14px; }
.ia-more { padding-bottom: 40px; }
.page-products .ia-custom { padding-top: 8px; }
.page-products .ia-custom .lead { max-width: 640px; }
.page-products .ia-nav-teaser { margin: 16px 0 18px; }
.page-products .ia-custom .btn + .btn { margin-left: 10px; }
@media (max-width: 980px) {
  .ia-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ia-ind-head { grid-template-columns: auto 1fr; }
  .ia-ind-head .btn { grid-column: 1 / -1; width: max-content; }
}
@media (max-width: 700px) {
  .ia-stats, .ia-sys-grid { grid-template-columns: 1fr; }
  .ia-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ia-hero h1 { max-width: none; }
}

