:root {
      --bg: #0b0d12;
      --panel: #141820;
      --panel-2: #19151d;
      --line: rgba(255,255,255,0.10);
      --text: #f6f2ee;
      --muted: #b7adbd;
      --accent: #e35aa3;
      --accent-2: #f2b857;
      --ok: #78d99a;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      min-height: 100vh;
      background:
        radial-gradient(circle at 80% 0%, rgba(227,90,163,0.18), transparent 34%),
        radial-gradient(circle at 10% 10%, rgba(242,184,87,0.10), transparent 30%),
        var(--bg);
      color: var(--text);
      font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      min-height: 66px;
      padding: 14px clamp(16px, 4vw, 34px);
      display: flex;
      align-items: center;
      gap: 16px;
      border-bottom: 1px solid var(--line);
      background: rgba(11,13,18,0.86);
      backdrop-filter: blur(16px);
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
      min-width: 0;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(227,90,163,0.34);
      background: rgba(227,90,163,0.13);
      color: var(--accent);
      font-weight: 900;
    }

    .brand h1 { font-size: 16px; line-height: 1.2; }
    .brand p { margin-top: 2px; color: var(--muted); font-size: 12px; }

    main {
      max-width: 1120px;
      margin: 0 auto;
      padding: clamp(36px, 6vw, 76px) 20px 86px;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
      gap: clamp(24px, 5vw, 58px);
      align-items: center;
      margin-bottom: 34px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
    }

    h2 {
      max-width: 11ch;
      margin-bottom: 18px;
      font-size: clamp(42px, 7vw, 74px);
      line-height: 0.95;
      letter-spacing: -0.055em;
    }

    .lead {
      max-width: 64ch;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--text);
      font-size: 14px;
      font-weight: 850;
    }

    .btn.primary {
      border-color: var(--accent);
      background: var(--accent);
      color: #170812;
    }

    .showcase {
      display: grid;
      gap: 14px;
    }

    .phone {
      width: min(100%, 390px);
      margin: 0 auto;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 34px;
      padding: 12px;
      background: #1b1720;
      box-shadow: 0 34px 90px rgba(0,0,0,0.38);
    }

    .screen {
      min-height: 470px;
      border-radius: 24px;
      overflow: hidden;
      background: #f6f2ee;
      color: #1d1820;
    }

    .ig-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(29,24,32,0.12);
      font-size: 13px;
      font-weight: 900;
    }

    .post {
      padding: 16px;
      border-bottom: 1px solid rgba(29,24,32,0.10);
    }

    .post-media {
      display: grid;
      place-items: center;
      min-height: 180px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, rgba(227,90,163,0.22), rgba(242,184,87,0.24)),
        #efe6ec;
      color: #513044;
      font-size: 42px;
      font-weight: 900;
    }

    .caption {
      margin-top: 12px;
      font-size: 13px;
      line-height: 1.55;
    }

    .comment {
      margin-top: 10px;
      padding: 9px 11px;
      border-radius: 999px;
      background: rgba(227,90,163,0.10);
      color: #7f2454;
      font-size: 12px;
      font-weight: 800;
    }

    .dm {
      padding: 16px;
      background: #fbf8f4;
    }

    .dm-title {
      margin-bottom: 10px;
      color: #6b5d69;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .bubble {
      max-width: 86%;
      padding: 10px 12px;
      border-radius: 14px;
      background: #e9dff1;
      color: #2b2330;
      font-size: 12px;
      line-height: 1.5;
    }

    .bubble.user {
      margin-left: auto;
      background: #2b2330;
      color: #f6f2ee;
    }

    .summary-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .summary-card,
    .rules {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--panel);
      padding: 22px;
    }

    .summary-card span {
      display: block;
      margin-bottom: 12px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .summary-card h3 { margin-bottom: 8px; font-size: 18px; }

    .summary-card p,
    .rules p,
    .rules li {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .rules {
      display: grid;
      grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
      gap: 26px;
      margin-top: 14px;
      background: var(--panel-2);
      scroll-margin-top: 96px;
    }

    .rules h3 {
      margin-bottom: 12px;
      font-size: 24px;
      letter-spacing: -0.02em;
    }

    .rules ul {
      display: grid;
      gap: 10px;
      padding-left: 18px;
    }

    .keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .keyword {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(227,90,163,0.12);
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
    }

    .flow-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .flow-strip span,
    .flow-strip strong {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      justify-content: center;
      padding: 0 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
    }

    .flow-strip span {
      border: 1px solid rgba(139,115,76,0.24);
      color: #5f6674;
      background: rgba(255,253,247,0.58);
    }

    .flow-strip strong {
      color: #fffdf7;
      background: var(--accent);
    }

    @media (max-width: 860px) {
      .hero,
      .summary-grid,
      .rules {
        grid-template-columns: 1fr;
      }

      h2 { max-width: 13ch; }
    }

body {
      background:
        radial-gradient(circle at 84% 6%, rgba(211,82,144,0.13), transparent 32%),
        #f7f4ec;
      color: #1f2530;
    }
    header {
      background: rgba(247,244,236,0.92);
      border-bottom: 1px solid rgba(139,115,76,0.22);
      color: #1f2530;
    }
    .back-btn {
      color: #5f6674;
      border-color: rgba(139,115,76,0.26);
      background: rgba(255,253,247,0.7);
    }
    .brand p,
    .lead,
    .summary-card p,
    .rules p,
    .rules li { color: #69707d; }
    .phone { box-shadow: 0 26px 70px rgba(55,43,25,0.16); }
    .summary-card,
    .rules {
      background: rgba(255,253,247,0.78);
      border-color: rgba(139,115,76,0.22);
    }
    .rules { background: rgba(255,253,247,0.66); }
    .btn { color: #1f2530; border-color: rgba(139,115,76,0.3); background: rgba(255,253,247,0.72); }
    .btn.primary { color: #fffdf7; background: var(--accent); border-color: var(--accent); }
