:root {
    --bg: #0D0D0F;
    --surface: #161618;
    --surface2: #1E1E22;
    --border: #2A2A30;
    --accent: #C8F55A;
    --accent2: #9B6BFF;
    --accent3: #FF6B6B;
    --accent4: #FFD166;
    --text: #F0F0F4;
    --muted: #C4C4D6;
    --font-sans: "Segoe UI", system-ui, sans-serif;
    --font-serif: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
    --red: #FF4D4D;
    --green: #4DFF91;
    box-sizing: border-box;
  }
  *, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-size: 16px;
  }

  .skip-link {
    position: absolute;
    left: 16px;
    top: 8px;
    transform: translateY(-120%);
    background: var(--accent);
    color: #111;
    font-weight: 700;
    padding: 12px 16px;
    z-index: 200;
    border-radius: 8px;
  }
  .skip-link:focus {
    transform: none;
  }

  a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }

  /* NAV */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13,13,15,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 8px 16px;
    gap: 8px 20px;
  }
  .topbar-brand {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    color: var(--accent);
    text-transform: uppercase;
  }
  .topbar-nav {
    display: flex;
    gap: 24px;
    list-style: none;
  }
  .topbar-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 2px;
  }
  .topbar-nav a:hover { color: var(--accent); }

  /* HERO */
  .hero {
    padding: 40px 16px 36px;
    max-width: 900px;
    margin: 0 auto;
  }
  .hero-tag {
    display: inline-block;
    background: rgba(200, 245, 90, .12);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(200, 245, 90, .25);
    margin-bottom: 28px;
  }
  .hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--text);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
  }
  .hero-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-bottom: 28px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
  }
  .hero-cta:hover { filter: brightness(1.05); }
  .meta-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }
  .meta-item { font-size: 12px; color: var(--muted); }
  .meta-item strong { color: var(--text); font-weight: 600; }

  /* SECTIONS */
  .section {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 16px 0;
  }

  .region-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .region-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
  }
  .region-badge.co { background: rgba(255,209,102,.12); }
  .region-badge.latam { background: rgba(155,107,255,.12); }
  .region-badge.global { background: rgba(200,245,90,.12); }
  .region-header h2 {
    font-family: var(--font-serif);
    font-size: 28px;
  }
  .region-header p { color: var(--muted); font-size: 13px; margin-top: 2px; }

  /* PLAYER MAP TABLE */
  .players-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
    font-size: 13px;
  }
  .players-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--surface2);
    color: var(--muted);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
  }
  .players-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    color: var(--text);
  }
  .players-table tr:hover td { background: var(--surface); }
  .tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .tag-market { background: rgba(200,245,90,.12); color: var(--accent); }
  .tag-saas { background: rgba(155,107,255,.12); color: var(--accent2); }
  .tag-hybrid { background: rgba(255,209,102,.12); color: var(--accent4); }
  .tag-cupon { background: rgba(255,107,107,.12); color: var(--accent3); }

  a.url-link {
    color: var(--accent2);
    text-decoration: none;
    font-size: 12px;
    word-break: break-all;
  }
  a.url-link:hover { text-decoration: underline; }

  /* PLAYER CARDS */
  .player-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
  }
  .player-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    border-radius: 14px 0 0 14px;
  }
  .player-card.strong::before { background: var(--green); }
  .player-card.mid::before { background: var(--accent4); }
  .player-card.weak::before { background: var(--red); }

  .player-name {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 4px;
  }
  .player-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .player-url { font-size: 11px; color: var(--accent2); }

  .analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }
  .analysis-col { background: var(--surface2); border-radius: 10px; padding: 16px; }
  .analysis-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .analysis-col.fort h4 { color: var(--green); }
  .analysis-col.deb h4 { color: var(--red); }
  .analysis-col.opp h4 { color: var(--accent4); }
  .analysis-col ul { list-style: none; }
  .analysis-col ul li {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
    padding: 3px 0;
    border-bottom: 1px solid var(--border);
  }
  .analysis-col ul li:last-child { border-bottom: none; }
  .analysis-col ul li::before {
    margin-right: 6px;
    font-size: 10px;
  }
  .analysis-col.fort ul li::before { content: '✓'; color: var(--green); }
  .analysis-col.deb ul li::before { content: '✗'; color: var(--red); }
  .analysis-col.opp ul li::before { content: '→'; color: var(--accent4); }

  /* DIVIDER */
  .section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 16px 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  /* BLUEPRINT */
  .blueprint {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 16px 64px;
  }
  .blueprint-header {
    margin-bottom: 48px;
  }
  .blueprint-header .eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .blueprint-header h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .blueprint-header p { color: var(--muted); font-size: 15px; max-width: 600px; }

  .conclusion-box {
    background: linear-gradient(135deg, rgba(200,245,90,.07), rgba(155,107,255,.07));
    border: 1px solid rgba(200,245,90,.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
  }
  .conclusion-box h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--accent);
  }
  .conclusion-box p, .conclusion-box li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }
  .conclusion-box ul { list-style: none; margin-top: 12px; }
  .conclusion-box ul li { padding: 4px 0; }
  .conclusion-box ul li::before { content: '⚡ '; color: var(--accent); }

  .module-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .module-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
  }
  .module-card .mod-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .mod-b2c .mod-icon { background: rgba(200,245,90,.12); }
  .mod-b2b .mod-icon { background: rgba(155,107,255,.12); }
  .mod-unisex .mod-icon { background: rgba(255,209,102,.12); }
  .mod-monetiza .mod-icon { background: rgba(255,107,107,.12); }
  .module-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .module-card p {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.6;
  }
  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .feature-list li {
    background: var(--surface2);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12.5px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .feature-list li .fi { flex-shrink: 0; font-size: 13px; margin-top: 1px; }
  .feature-list li .label { font-weight: 600; color: var(--text); }
  .feature-list li .desc { color: var(--muted); font-size: 11.5px; }

  .diff-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 32px;
  }
  .diff-table th {
    background: var(--surface2);
    padding: 10px 14px;
    text-align: left;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
  }
  .diff-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  .diff-table .ellos { color: var(--red); }
  .diff-table .nosotros { color: var(--green); }
  .diff-table td:first-child { color: var(--text); font-weight: 600; }

  .footer-note {
    text-align: center;
    padding: 32px 16px 48px;
    color: var(--muted);
    font-size: 13px;
    border-top: 1px solid var(--border);
    max-width: 960px;
    margin: 32px auto 0;
  }
  .footer-note span { color: var(--accent); font-weight: 600; }

  .section-kicker {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .section-kicker--roomy { margin-bottom: 24px; }
  .section-kicker--after { margin-top: 48px; }

  .player-lead {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 4px;
  }
  .player-lead strong,
  .closing__text strong { color: var(--text); }

  .closing {
    margin-top: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
  }
  .closing__title {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 14px;
  }
  .closing__text {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 700px;
  }
  .closing__text + .closing__text { margin-top: 14px; }

  .players-table,
  .diff-table,
  .money-table {
    display: block;
    overflow-x: auto;
  }

  .money-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 12px 0 28px;
  }
  .money-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--surface2);
    color: var(--muted);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
  }
  .money-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  .topbar-nav a.lang-link {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0 12px;
  }

  .ads {
    background: linear-gradient(135deg, rgba(200,245,90,.08), rgba(155,107,255,.1));
    border: 1px solid rgba(200,245,90,.3);
    border-radius: 16px;
    padding: 24px 18px;
    margin: 12px 0 36px;
  }
  .ads__title {
    font-family: var(--font-serif);
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .ads .plan-card { background: var(--surface); }

  .money-table .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
  .money-list {
    margin-top: 6px;
    padding-left: 18px;
    color: var(--muted);
  }
  .money-table caption {
    caption-side: bottom;
    text-align: left;
    padding-top: 8px;
    color: var(--muted);
    font-size: 13px;
  }

  .lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 20px;
  }

  .callout {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 18px 18px 18px 16px;
    margin: 8px 0 28px;
  }
  .callout h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .callout p { color: var(--muted); font-size: 15px; line-height: 1.7; }

  .map-grid,
  .plan-grid,
  .step-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
  .map-card,
  .plan-card,
  .step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
  }
  .map-card h3,
  .plan-card h3,
  .step-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .map-card p,
  .plan-card p,
  .step-card p,
  .map-card li,
  .plan-card li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
  }
  .map-card ul,
  .plan-card ul {
    margin-top: 8px;
    padding-left: 18px;
  }
  .step-card { display: grid; gap: 6px; }
  .step-num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .flow {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
  }
  .flow li {
    background: var(--surface2);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text);
    font-size: 15px;
  }
  .note {
    font-size: 13px;
    color: var(--muted);
    margin: -8px 0 28px;
  }

  @media (min-width: 768px) {
    .topbar { padding: 14px 40px; }
    .hero { padding: 80px 40px 60px; }
    .section { padding: 60px 40px 0; }
    .section-divider { margin: 64px auto 0; }
    .blueprint { padding: 60px 40px 80px; }
    .footer-note { padding: 40px 40px 60px; }
    .module-grid,
    .map-grid,
    .plan-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (min-width: 1024px) {
    .analysis-grid { grid-template-columns: 1fr 1fr 1fr; }
    .plan-grid--three { grid-template-columns: 1fr 1fr 1fr; }
  }

  /* APP MOCKUPS */
  :root {
    --app-bg: #F6F2EC;
    --app-surface: #FFFFFF;
    --app-ink: #1F2A2B;
    --app-muted: #5B6667;
    --app-line: #E6E0D7;
    --app-primary: #1F5F5B;
    --app-primary-soft: #DDEBE8;
    --app-accent: #BF4E2B;
    --app-accent-soft: #F7E1D8;
    --app-accent-ink: #9A3B1E;
    --app-gold: #E7C766;
    --app-gold-ink: #5A4510;
  }

  .plan-card__title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .palette {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }
  .palette__item {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
  }
  .palette__swatch {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.15);
  }
  .palette__swatch--primary { background: var(--app-primary); }
  .palette__swatch--sand { background: var(--app-bg); }
  .palette__swatch--accent { background: var(--app-accent); }
  .palette__swatch--gold { background: var(--app-gold); }
  .palette__swatch--ink { background: var(--app-ink); }
  .palette__name { font-weight: 700; font-size: 15px; }
  .palette__role { color: var(--muted); font-size: 14px; line-height: 1.5; }

  .phones {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 4px 20px;
    margin-bottom: 20px;
  }
  .phones::-webkit-scrollbar { display: none; }
  .phones:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 12px;
  }
  .phones__item {
    flex: 0 0 272px;
    scroll-snap-align: center;
  }
  .phones__caption {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
  }
  .phones__caption strong { color: var(--text); }

  .phone {
    width: 272px;
    height: 560px;
    border-radius: 40px;
    padding: 10px;
    background: #2A2A2F;
    box-shadow: 0 20px 50px rgba(0,0,0,.45), inset 0 0 0 1px #3A3A40;
  }
  .phone__screen {
    position: relative;
    height: 100%;
    border-radius: 31px;
    overflow: hidden;
    background: var(--app-bg);
    color: var(--app-ink);
    font-size: 12px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
  }

  .app-status {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 4px;
    font-size: 11px;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  .app-body {
    flex: 1;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
  }
  .app-body--tight { gap: 8px; padding-top: 0; overflow: visible; }
  .app-hello { color: var(--app-muted); font-size: 12px; }
  .app-title { font-size: 18px; font-weight: 700; line-height: 1.2; }
  .app-label { font-size: 11px; font-weight: 700; color: var(--app-muted); text-transform: uppercase; letter-spacing: .06em; }
  .app-search {
    background: var(--app-surface);
    border: 1px solid var(--app-line);
    border-radius: 14px;
    padding: 10px 12px;
    color: var(--app-muted);
  }
  .app-chips { display: flex; gap: 6px; flex-wrap: wrap; }
  .app-chips--floating {
    position: absolute;
    top: 34px;
    left: 12px;
    right: 12px;
    z-index: 2;
    flex-wrap: nowrap;
  }
  .app-chip {
    background: var(--app-surface);
    border: 1px solid var(--app-line);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
  }
  .app-chip--on { background: var(--app-primary); border-color: var(--app-primary); color: #fff; }

  .app-img { display: block; border-radius: 12px; }
  .app-img--1 { background: linear-gradient(135deg, #2F7A74, #9CC7BE 60%, #F0D9B5); }
  .app-img--2 { background: linear-gradient(135deg, #C98A6B, #EBCDB6 55%, #7FA9A2); }
  .app-img--3 { background: linear-gradient(135deg, #3E4A4B, #8E9C9A 60%, #E7C766); }

  .app-featured {
    position: relative;
    background: var(--app-surface);
    border-radius: 18px;
    padding: 8px 8px 12px;
    box-shadow: 0 6px 18px rgba(31,42,43,.08);
  }
  .app-featured__img { height: 110px; margin-bottom: 8px; }
  .app-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 700;
  }
  .app-badge--gold { background: var(--app-gold); color: var(--app-gold-ink); }
  .app-card__name { font-weight: 700; font-size: 14px; }
  .app-card__meta { color: var(--app-muted); font-size: 11px; }
  .app-card__meta--ok { color: var(--app-primary); font-weight: 600; }

  .app-promo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    background: var(--app-accent-soft);
    border-radius: 16px;
    padding: 10px 12px;
  }
  .app-promo__title { font-weight: 700; color: var(--app-accent-ink); font-size: 14px; }
  .app-promo__meta { font-size: 11px; color: var(--app-ink); }
  .app-promo__time {
    background: var(--app-surface);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
  }

  .app-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--app-surface);
    border-top: 1px solid var(--app-line);
    padding: 10px 6px 16px;
  }
  .app-nav__item {
    text-align: center;
    font-size: 11px;
    color: var(--app-muted);
    font-weight: 600;
  }
  .app-nav__item::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto 4px;
    border-radius: 6px;
    background: var(--app-line);
  }
  .app-nav__item--on { color: var(--app-primary); }
  .app-nav__item--on::before { background: var(--app-primary); }

  .app-cta {
    display: block;
    text-align: center;
    background: var(--app-accent);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 14px;
    padding: 12px;
  }
  .app-cta--small {
    display: inline-block;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 10px;
  }
  .app-footer-cta {
    padding: 10px 16px 18px;
    background: var(--app-surface);
    border-top: 1px solid var(--app-line);
  }

  .app-map {
    position: relative;
    flex: 1;
    margin-top: -26px;
    background-color: #E4ECE6;
    background-image:
      linear-gradient(90deg, transparent 46%, #fff 46%, #fff 50%, transparent 50%),
      linear-gradient(0deg, transparent 46%, #fff 46%, #fff 50%, transparent 50%),
      linear-gradient(30deg, transparent 48%, #F4F1EA 48%, #F4F1EA 52%, transparent 52%);
    background-size: 90px 90px, 90px 90px, 180px 180px;
  }
  .app-map__park {
    position: absolute;
    top: 150px;
    left: 20px;
    width: 90px;
    height: 70px;
    border-radius: 24px;
    background: #C9DEC9;
  }
  .app-map__river {
    position: absolute;
    top: 60px;
    right: -30px;
    width: 90px;
    height: 360px;
    border-radius: 50%;
    background: #CFE1E6;
    transform: rotate(18deg);
  }
  .map-pin {
    position: absolute;
    z-index: 1;
    background: var(--app-surface);
    color: var(--app-ink);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(31,42,43,.18);
  }
  .map-pin::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 8px;
    height: 8px;
    background: inherit;
    transform: translateX(-50%) rotate(45deg);
  }
  .map-pin--promo { background: var(--app-accent); color: #fff; }
  .map-pin--featured {
    background: var(--app-gold);
    color: var(--app-gold-ink);
    font-size: 12px;
    padding: 6px 10px;
    z-index: 2;
  }
  .map-pin--a { top: 90px; left: 24px; }
  .map-pin--b { top: 120px; left: 160px; }
  .map-pin--c { top: 200px; left: 140px; }
  .map-pin--d { top: 250px; left: 30px; }
  .map-pin--e { top: 150px; left: 70px; }
  .map-pin--f { top: 300px; left: 170px; }
  .map-me {
    position: absolute;
    top: 225px;
    left: 110px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--app-primary);
    box-shadow: 0 0 0 8px rgba(31,95,91,.2);
  }
  .app-sheet {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    background: var(--app-surface);
    border-radius: 18px;
    padding: 12px;
    display: grid;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(31,42,43,.18);
  }
  .app-sheet__row { display: flex; gap: 10px; align-items: center; }
  .app-sheet__thumb { width: 48px; height: 48px; flex-shrink: 0; }

  .app-cover { height: 110px; border-radius: 0; margin-top: -26px; }
  .app-shop {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    margin-top: -22px;
  }
  .app-shop__logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--app-primary);
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
    border: 3px solid var(--app-bg);
    flex-shrink: 0;
  }
  .app-tabs {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid var(--app-line);
  }
  .app-tabs__item {
    font-size: 11px;
    font-weight: 600;
    color: var(--app-muted);
    padding-bottom: 6px;
  }
  .app-tabs__item--on {
    color: var(--app-primary);
    border-bottom: 2px solid var(--app-primary);
  }
  .app-list { list-style: none; display: grid; gap: 6px; }
  .app-list__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--app-surface);
    border-radius: 12px;
    padding: 8px 10px;
  }
  .app-list__row small,
  .app-client__info small {
    display: block;
    color: var(--app-muted);
    font-size: 11px;
  }
  .app-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .app-gallery .app-img { height: 64px; }

  .app-step { font-size: 11px; font-weight: 700; color: var(--app-primary); }
  .app-progress {
    height: 6px;
    border-radius: 999px;
    background: var(--app-line);
  }
  .app-progress span {
    display: block;
    width: 66%;
    height: 100%;
    border-radius: inherit;
    background: var(--app-primary);
  }
  .app-pros { display: flex; gap: 6px; }
  .app-pro {
    background: var(--app-surface);
    border: 1px solid var(--app-line);
    border-radius: 12px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
  }
  .app-pro--on { border-color: var(--app-primary); background: var(--app-primary-soft); color: var(--app-primary); }
  .app-days { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .app-day {
    background: var(--app-surface);
    border-radius: 12px;
    padding: 6px 0;
    text-align: center;
    font-size: 11px;
    color: var(--app-muted);
  }
  .app-day b { display: block; font-size: 15px; color: var(--app-ink); }
  .app-day--on { background: var(--app-primary); color: #fff; }
  .app-day--on b { color: #fff; }
  .app-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .app-slot {
    background: var(--app-surface);
    border: 1px solid var(--app-line);
    border-radius: 12px;
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
  }
  .app-slot--promo { background: var(--app-accent-soft); border-color: var(--app-accent-soft); color: var(--app-accent-ink); }
  .app-slot--on { background: var(--app-primary-soft); border-color: var(--app-primary); color: var(--app-primary); }
  .app-summary {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
    border-top: 1px dashed var(--app-line);
    padding-top: 8px;
  }
  .app-summary b { font-size: 14px; }
  .app-points {
    align-self: flex-start;
    background: var(--app-gold);
    color: var(--app-gold-ink);
    font-weight: 700;
    font-size: 11px;
    border-radius: 999px;
    padding: 3px 10px;
  }

  .app-suggest {
    background: var(--app-primary);
    color: #fff;
    border-radius: 16px;
    padding: 12px;
    display: grid;
    gap: 6px;
    justify-items: start;
  }
  .app-suggest__title { font-weight: 700; font-size: 13px; }
  .app-suggest__text { font-size: 11px; }
  .app-clients { list-style: none; display: grid; gap: 6px; }
  .app-client {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--app-surface);
    border-radius: 12px;
    padding: 8px;
  }
  .app-client__info { flex: 1; font-weight: 600; }
  .app-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--app-primary-soft);
    color: var(--app-primary);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .app-tag {
    font-size: 11px;
    font-weight: 600;
    background: var(--app-bg);
    border-radius: 999px;
    padding: 2px 8px;
    white-space: nowrap;
  }
  .app-tag--new { background: var(--app-gold); color: var(--app-gold-ink); }

  .app-toggle {
    display: inline-flex;
    align-self: flex-start;
    background: var(--app-surface);
    border-radius: 999px;
    padding: 3px;
  }
  .app-toggle__item {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    color: var(--app-muted);
  }
  .app-toggle__item--on { background: var(--app-primary); color: #fff; }
  .app-kpi { font-size: 22px; font-weight: 700; line-height: 1.1; }
  .app-kpi__up { font-size: 12px; color: var(--app-primary); }
  .app-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 90px;
    padding-bottom: 16px;
  }
  .app-bars__bar {
    position: relative;
    flex: 1;
    border-radius: 6px 6px 2px 2px;
    background: var(--app-primary-soft);
  }
  .app-bars__bar i {
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    text-align: center;
    font-style: normal;
    font-size: 11px;
    color: var(--app-muted);
  }
  .app-bars__bar--1 { height: 35%; }
  .app-bars__bar--2 { height: 22%; }
  .app-bars__bar--3 { height: 45%; }
  .app-bars__bar--4 { height: 60%; }
  .app-bars__bar--5 { height: 85%; background: var(--app-primary); }
  .app-bars__bar--6 { height: 100%; background: var(--app-primary); }
  .app-bars__bar--7 { height: 30%; }
  .app-heat {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
  }
  .app-heat span { height: 12px; border-radius: 3px; }
  .app-heat .h1 { background: #EDF4F2; }
  .app-heat .h2 { background: #BFD9D4; }
  .app-heat .h3 { background: #6FA69F; }
  .app-heat .h4 { background: var(--app-primary); }
  .app-insight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: var(--app-accent-soft);
    border-radius: 14px;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
  }

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

  @media (min-width: 1024px) {
    .palette { grid-template-columns: repeat(5, 1fr); }
    .palette__item { grid-template-columns: 1fr; row-gap: 8px; align-items: start; }
    .palette__swatch { grid-row: auto; width: 100%; height: 56px; }
    .phones {
      display: grid;
      grid-template-columns: repeat(3, 272px);
      justify-content: space-between;
      overflow: visible;
      row-gap: 48px;
    }
  }
