@font-face {
  font-family: "Soyuz Grotesk";
  src: url("/Fonts/Soyuz Grotesk Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

:root {
      --graphite: #2e2e2e;
      --dark: #141416;
      --page: #f3f3f3;
      --surface: #fff;
      --violet: #977dd9;
      --violet-deep: #765bb8;
      --lilac: #d7cff4;
      --peach: #fdbebc;
      --mint: #d1dbe0;
      --muted: #6b6872;
      --line: rgba(46, 46, 46, .12);
      --success: #327f68;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --pill: 999px;
      --shadow: 0 18px 54px rgba(36, 26, 58, .12);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--graphite);
      background: var(--page);
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    body.dialog-open { overflow: hidden; }
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 100;
      pointer-events: none;
      opacity: .035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
    }
    a { color: inherit; }
    button, input { font: inherit; }
    :focus-visible { outline: 3px solid rgba(253, 190, 188, .9); outline-offset: 3px; }
    section[id] { scroll-margin-top: 84px; }

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin-inline: auto;
    }

    .site-header {
      position: absolute;
      inset: 0 0 auto;
      z-index: 10;
      height: 76px;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, .18);
    }
    .header-row {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
    }
    .brand img { display: block; width: 138px; height: auto; }
    .brand-divider { width: 1px; height: 26px; background: rgba(255,255,255,.35); }
    .brand .partner-logo { width: 142px; }
    .header-nav { display: flex; align-items: center; gap: 24px; }
    .header-nav > a:not(.button) {
      color: rgba(255,255,255,.82);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }
    .header-nav > a:not(.button):hover { color: #fff; }
    .button {
      min-height: 50px;
      padding: 0 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: var(--pill);
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button-dark { color: #fff; background: var(--dark); box-shadow: 0 12px 30px rgba(20,20,22,.22); }
    .button-dark:hover { background: #2d2d31; }
    .button-light { color: var(--dark); background: #fff; box-shadow: 0 12px 30px rgba(31,19,55,.12); }
    .button-light:hover { box-shadow: 0 16px 34px rgba(31,19,55,.2); }
    .button-outline {
      min-height: 44px;
      padding-inline: 18px;
      color: #fff;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.36);
    }
    .button-card {
      width: 100%;
      min-height: 48px;
      margin-top: 0;
      padding-inline: 16px;
      white-space: nowrap;
    }

    .hero {
      min-height: 780px;
      position: relative;
      overflow: hidden;
      color: #fff;
      background:
        radial-gradient(680px 600px at 86% 22%, rgba(253,190,188,.78), transparent 68%),
        radial-gradient(800px 700px at 10% 90%, rgba(91,55,183,.9), transparent 69%),
        linear-gradient(128deg, #6b4aaf 0%, #9370b4 46%, #d69a9b 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to bottom, transparent 3%, #000 80%);
    }
    .hero-inner {
      min-height: 780px;
      padding: 150px 0 92px;
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
      align-items: center;
      gap: 72px;
    }
    .eyebrow {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 14px;
      border: 1px solid rgba(255,255,255,.3);
      border-radius: var(--pill);
      background: rgba(255,255,255,.1);
      font-size: 13px;
      font-weight: 600;
      backdrop-filter: blur(10px);
    }
    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--peach);
      box-shadow: 0 0 0 5px rgba(253,190,188,.15);
    }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      max-width: 760px;
      margin: 25px 0 22px;
      font-family: "Montserrat", "Inter", sans-serif;
      font-size: clamp(45px, 5.4vw, 74px);
      line-height: .99;
      letter-spacing: -.055em;
    }
    .hero-lead {
      max-width: 650px;
      margin-bottom: 30px;
      color: rgba(255,255,255,.84);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.43;
      letter-spacing: -.02em;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .hero-note {
      width: fit-content;
      margin: 14px 0 0;
      padding: 8px 12px 8px 9px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.82);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--pill);
      background: rgba(255,255,255,.08);
      font-size: 12px;
      font-weight: 500;
      backdrop-filter: blur(10px);
    }
    .hero-note-icon {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      color: var(--dark);
      border-radius: 50%;
      background: var(--peach);
      font-size: 11px;
      font-weight: 800;
    }
    .hero-note strong { color: #fff; font-weight: 700; }
    .hero-note-separator { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.48); }

    .research-invite {
      width: min(470px, 100%);
      padding: 30px;
      position: relative;
      justify-self: end;
      overflow: hidden;
      color: var(--graphite);
      border: 1px solid rgba(255,255,255,.55);
      border-radius: 28px;
      background: rgba(255,255,255,.92);
      box-shadow: 0 30px 70px rgba(50,28,88,.22);
      backdrop-filter: blur(20px);
    }
    .research-invite::before {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      top: -150px;
      right: -100px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--peach), var(--lilac));
      opacity: .75;
    }
    .research-source {
      width: fit-content;
      margin: 0 0 20px;
      padding: 7px 10px;
      position: relative;
      border-radius: var(--pill);
      color: var(--violet-deep);
      background: rgba(215,207,244,.55);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
    }
    .research-invite h2 {
      margin-bottom: 13px;
      position: relative;
      font-size: clamp(28px, 3vw, 39px);
      line-height: 1.04;
    }
    .research-invite > p {
      margin-bottom: 20px;
      position: relative;
      color: var(--muted);
      font-size: 15px;
    }
    .research-reward {
      margin: 0 0 20px;
      padding: 15px;
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 12px;
      align-items: center;
      position: relative;
      border: 1px solid rgba(151,125,217,.22);
      border-radius: 15px;
      background: rgba(215,207,244,.32);
    }
    .research-reward-icon {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: #fff;
      background: var(--violet);
      font-size: 18px;
      font-weight: 800;
    }
    .research-reward strong { display: block; margin-bottom: 2px; font-size: 14px; }
    .research-reward span { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; }
    .research-invite .button { width: 100%; min-height: 52px; position: relative; color: #fff; background: var(--violet-deep); }
    .research-invite .button:hover { background: #6043a4; }
    .research-time { margin: 11px 0 0 !important; text-align: center; font-size: 11px !important; }

    .agent-icon {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 13px;
      font-weight: 800;
    }

    .section { padding: 104px 0; }
    .section-head {
      max-width: 760px;
      margin-bottom: 42px;
    }
    .section-label {
      margin-bottom: 13px;
      color: var(--violet-deep);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    h2 {
      margin-bottom: 16px;
      font-family: "Montserrat", "Inter", sans-serif;
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: -.045em;
    }
    .section-lead { color: var(--muted); font-size: 18px; }

    .agents-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .agent-card {
      min-height: 470px;
      padding: 25px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--surface);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .agent-card:hover { transform: translateY(-5px); border-color: rgba(151,125,217,.45); box-shadow: var(--shadow); }
    .agent-card::before {
      content: "";
      position: absolute;
      width: 190px;
      height: 190px;
      top: -110px;
      right: -90px;
      border-radius: 50%;
      background: var(--lilac);
      opacity: .55;
    }
    .agent-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .agent-icon { width: 50px; height: 50px; color: #fff; background: var(--violet); font-size: 17px; }
    .agent-card-marketer .agent-icon { color: var(--dark); background: var(--peach); }
    .agent-card-analyst .agent-icon { color: var(--dark); background: var(--lilac); }
    .agent-card-custom {
      color: #fff;
      border-color: transparent;
      background:
        radial-gradient(230px 220px at 100% 0%, rgba(253,190,188,.55), transparent 70%),
        linear-gradient(145deg, #6043a4, #8d72cb);
    }
    .agent-card-custom::before { background: var(--peach); opacity: .3; }
    .agent-card-custom .agent-icon { color: var(--dark); background: var(--peach); }
    .agent-card-custom .status { color: #fff; background: rgba(255,255,255,.15); }
    .agent-card-custom > p { color: rgba(255,255,255,.76); }
    .agent-card-custom .agent-list li::before { color: var(--peach); }
    .agent-card-custom .button-light { box-shadow: 0 14px 32px rgba(41,24,76,.2); }
    .status {
      padding: 7px 10px;
      border-radius: var(--pill);
      color: var(--success);
      background: rgba(50,127,104,.1);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .agent-card h3 { margin: 25px 0 9px; font-size: 25px; line-height: 1.1; letter-spacing: -.035em; }
    .agent-card > p { min-height: 72px; color: var(--muted); font-size: 14px; }
    .agent-list { margin: 4px 0 22px; padding: 0; list-style: none; font-size: 14px; }
    .agent-list li { padding: 7px 0 7px 23px; position: relative; }
    .agent-list li::before { content: "✓"; position: absolute; left: 0; color: var(--violet-deep); font-weight: 800; }
    .agent-card-custom > p { color: rgba(255,255,255,.78); }
    .agent-card-custom .agent-list li::before { color: var(--peach); }
    .card-actions {
      margin-top: auto;
      display: grid;
      gap: 9px;
    }
    .card-detail-button {
      width: 100%;
      min-height: 44px;
      padding: 0 16px;
      border: 1px solid rgba(118,91,184,.28);
      border-radius: var(--pill);
      color: var(--violet-deep);
      background: rgba(215,207,244,.22);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }
    .card-detail-button::after { content: ""; }
    .card-detail-button:hover {
      transform: translateY(-1px);
      border-color: rgba(118,91,184,.58);
      background: rgba(215,207,244,.42);
    }
    .agent-card-custom {
      color: var(--graphite);
      border-color: rgba(118,91,184,.22);
      background:
        radial-gradient(230px 220px at 100% 0%, rgba(253,190,188,.42), transparent 70%),
        linear-gradient(145deg, #f2eefb, #e4dcf5);
    }
    .agent-card-custom::before { background: var(--peach); opacity: .34; }
    .agent-card-custom .agent-icon { color: var(--dark); background: var(--peach); }
    .agent-card-custom .status { color: var(--violet-deep); background: rgba(118,91,184,.1); }
    .agent-card-custom > p { color: var(--muted); }
    .agent-card-custom .agent-list li::before { color: var(--violet-deep); }
    .agent-card-custom .button-light {
      color: #fff;
      background: var(--violet-deep);
      box-shadow: 0 12px 28px rgba(96,67,164,.2);
    }
    .agent-card-custom .button-light:hover { background: #6043a4; }
    .agent-dialog {
      width: min(calc(100% - 32px), 920px);
      max-height: calc(100dvh - 24px);
      padding: 0;
      overflow: hidden;
      color: var(--graphite);
      border: 0;
      border-radius: 28px;
      background: #f7f6fa;
      box-shadow: 0 30px 90px rgba(20,20,22,.32);
    }
    .agent-dialog[open] {
      display: flex;
      flex-direction: column;
    }
    .agent-dialog::backdrop { background: rgba(20,20,22,.7); backdrop-filter: blur(7px); }
    .dialog-close {
      width: 44px;
      height: 44px;
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 3;
      margin: 0;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.26);
      border-radius: 50%;
      color: #fff;
      background: rgba(20,20,22,.28);
      font-size: 23px;
      cursor: pointer;
      backdrop-filter: blur(10px);
    }
    .dialog-hero {
      flex: 0 0 auto;
      padding: 38px 56px 30px;
      color: #fff;
      background:
        radial-gradient(420px 340px at 100% 0%, rgba(253,190,188,.58), transparent 70%),
        linear-gradient(135deg, #6043a4, #947bc9);
    }
    .agent-dialog-marketer .dialog-hero {
      background:
        radial-gradient(420px 340px at 100% 0%, rgba(215,207,244,.78), transparent 70%),
        linear-gradient(135deg, #8054a4, #c67f91);
    }
    .agent-dialog-marketer .dialog-check { color: #7b466e; background: rgba(253,190,188,.52); }
    .dialog-hero .section-label { color: var(--peach); }
    .dialog-hero h2 { max-width: 660px; margin-bottom: 11px; font-size: 40px; }
    .dialog-lead { max-width: 720px; margin: 0; color: rgba(255,255,255,.79); font-size: 15px; }
    .dialog-body {
      min-height: 0;
      padding: 24px 56px 0;
      overflow: hidden;
    }
    .dialog-capabilities { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
    .dialog-capability {
      padding: 13px;
      display: grid;
      grid-template-columns: 30px 1fr;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: 15px;
      background: #fff;
    }
    .dialog-check { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--violet-deep); background: rgba(215,207,244,.58); font-weight: 800; }
    .dialog-capability h3 { margin: 0 0 2px; font-size: 14px; }
    .dialog-capability p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
    .dialog-section { margin-top: 18px; }
    .dialog-section h3 { margin-bottom: 8px; font-size: 16px; }
    .audience-chips, .prompt-examples { display: flex; flex-wrap: wrap; gap: 6px; }
    .audience-chips span {
      padding: 6px 9px;
      border-radius: var(--pill);
      color: var(--violet-deep);
      background: rgba(215,207,244,.52);
      font-size: 11px;
      font-weight: 700;
    }
    .prompt-examples span {
      padding: 8px 10px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      font-size: 11px;
    }
    .dialog-footer {
      margin-top: 18px;
      margin-inline: -56px;
      padding: 13px 56px 15px;
      position: static;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid var(--line);
      background: rgba(247,246,250,.96);
      backdrop-filter: blur(14px);
    }
    .dialog-format { margin: 0; color: var(--muted); font-size: 12px; }

    .research-section {
      padding: 104px 0;
      background:
        radial-gradient(600px 500px at 100% 0%, rgba(253,190,188,.28), transparent 72%),
        #efedf6;
    }
    .research-promo {
      padding: 54px;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
      gap: 54px;
      align-items: center;
      border: 1px solid rgba(118,91,184,.14);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(430px 330px at 100% 0%, rgba(253,190,188,.52), transparent 72%),
        #fff;
      box-shadow: var(--shadow);
    }
    .research-promo h2 { max-width: 720px; margin-bottom: 15px; }
    .research-promo-copy > p:last-of-type { max-width: 720px; color: var(--muted); font-size: 17px; }
    .research-promo .button { margin-top: 8px; }
    .research-promo-visual {
      min-height: 260px;
      display: flex;
      align-items: center;
    }
    .research-promo-visual img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 18px 32px rgba(76,50,109,.1));
    }
    .survey-dialog { width: min(calc(100% - 32px), 1040px); }
    .survey-dialog .dialog-close {
      color: var(--dark);
      border-color: rgba(46,46,46,.1);
      background: rgba(255,255,255,.88);
    }
    .survey-dialog-head {
      padding: 28px 56px 22px;
      color: #fff;
      background:
        radial-gradient(420px 300px at 100% 0%, rgba(253,190,188,.62), transparent 72%),
        linear-gradient(135deg, #6043a4, #947bc9);
    }
    .survey-dialog-head .section-label { color: var(--peach); }
    .survey-dialog-head h2 { max-width: 760px; margin-bottom: 7px; font-size: 38px; }
    .survey-dialog-head p:last-child { max-width: 780px; margin: 0; color: rgba(255,255,255,.79); font-size: 14px; }
    .survey-dialog .survey-shell {
      min-height: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }
    .survey-dialog .survey-progress { flex: 0 0 auto; position: relative; z-index: 2; }
    .survey-dialog .survey-content {
      min-height: 0;
      overflow: hidden;
    }
    .survey-shell {
      overflow: hidden;
      border: 1px solid rgba(46,46,46,.09);
      border-radius: 28px;
      background: #fff;
      box-shadow: var(--shadow);
    }
    .survey-progress {
      padding: 11px 28px 12px;
      background: rgba(215,207,244,.62);
    }
    .survey-progress-row {
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      font-size: 12px;
      font-weight: 700;
    }
    .survey-progress-track {
      height: 5px;
      overflow: hidden;
      border-radius: var(--pill);
      background: rgba(255,255,255,.75);
    }
    .survey-progress-bar {
      width: 12.5%;
      height: 100%;
      border-radius: inherit;
      background: var(--violet-deep);
      transition: width .25s ease;
    }
    .survey-content { padding: 20px 34px 0; }
    .survey-question-label {
      margin: 0 0 5px;
      color: var(--violet-deep);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .09em;
      text-transform: uppercase;
    }
    .survey-question-title {
      max-width: 850px;
      margin-bottom: 5px;
      font-family: "Montserrat", "Inter", sans-serif;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.08;
      letter-spacing: -.045em;
    }
    .survey-question-help { margin-bottom: 13px; color: var(--muted); font-size: 13px; }
    .survey-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .survey-option {
      min-height: 58px;
      padding: 10px;
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 8px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
      cursor: pointer;
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }
    .survey-option:hover { transform: translateY(-1px); border-color: rgba(151,125,217,.58); }
    .survey-option:has(input:checked) { border-color: var(--violet-deep); background: rgba(215,207,244,.32); box-shadow: inset 0 0 0 1px var(--violet-deep); }
    .survey-option input { width: 18px; height: 18px; margin: 0; accent-color: var(--violet-deep); }
    .survey-option strong { display: block; margin-bottom: 1px; font-size: 12px; }
    .survey-option small { display: block; color: var(--muted); font-size: 10px; line-height: 1.25; }
    .survey-other-field { margin-top: 8px; padding: 10px; border-radius: 13px; background: rgba(215,207,244,.3); }
    .survey-other-field[hidden] { display: none; }
    .survey-other-field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; }
    .survey-input, .survey-textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 13px;
      color: var(--graphite);
      background: #fff;
    }
    .survey-input { min-height: 48px; padding: 0 14px; }
    .survey-textarea { min-height: 130px; padding: 13px; resize: none; line-height: 1.5; }
    .survey-input:focus, .survey-textarea:focus { border-color: var(--violet-deep); outline: 3px solid rgba(151,125,217,.18); }
    .survey-error { min-height: 16px; margin: 5px 0 0; color: #b33345; font-size: 11px; font-weight: 700; }
    .survey-actions {
      margin: 7px -34px 0;
      padding: 10px 34px 12px;
      position: static;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-top: 1px solid var(--line);
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(14px);
    }
    .survey-actions .button[disabled] { opacity: .38; cursor: not-allowed; transform: none; }
    .survey-privacy { margin: 5px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
    .survey-consent { display: grid; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
    .survey-consent-item { display: flex; align-items: flex-start; gap: 10px; }
    .survey-consent-checkbox { -webkit-appearance: none; appearance: none; margin-top: 3px; width: 18px; height: 18px; border: 1px solid #505050; border-radius: 5px; background: #fff; cursor: pointer; flex-shrink: 0; transition: border-color .2s, background-color .2s, box-shadow .2s; }
    .survey-consent-checkbox:hover { border-color: #7c7c7c; }
    .survey-consent-checkbox:focus-visible { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(107,82,168,.2); }
    .survey-consent-checkbox:checked { border-color: var(--peach); background-color: var(--peach); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.3l3.1 3.1L13 4.6' fill='none' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 12px 12px; }
    .survey-consent-item span { font-size: 12px; line-height: 1.5; color: var(--ink-2); }
    .survey-consent-item a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
    .survey-consent-item a:hover { color: var(--violet); }
    .survey-complete-card { max-width: 680px; margin-inline: auto; text-align: center; }
    .survey-complete-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 18px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: var(--violet-deep);
      font-size: 25px;
      font-weight: 800;
    }
    .survey-complete-card h3 { margin-bottom: 10px; font-family: "Montserrat", "Inter", sans-serif; font-size: 30px; letter-spacing: -.035em; }
    .survey-complete-card > p { color: var(--muted); }

    .how-section { color: #fff; background: var(--dark); }
    .how-section .section-label { color: transparent; }
    .how-section .section-lead { color: rgba(255,255,255,.63); }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .step {
      min-height: 240px;
      padding: 27px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.055);
    }
    .step-number {
      width: 42px;
      height: 42px;
      margin-bottom: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--dark);
      background: var(--peach);
      font-weight: 800;
    }
    .step h3 { margin-bottom: 10px; font-size: 21px; }
    .step p { margin: 0; color: rgba(255,255,255,.64); font-size: 14px; }

    .platform-section { background: #fff; }
    .platform-card {
      padding: 54px;
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 60px;
      align-items: center;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(430px 360px at 100% 0%, rgba(253,190,188,.48), transparent 70%),
        linear-gradient(135deg, #f0ecfb, #f8f7fb);
    }
    .platform-card h2 { margin-bottom: 15px; }
    .platform-card > div > p { color: var(--muted); font-size: 17px; }
    .platform-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
    .platform-actions .button-light { border: 1px solid var(--line); }
    .platform-visual {
      min-width: 0;
      align-self: stretch;
      display: flex;
      align-items: center;
    }
    .platform-visual img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 20px 34px rgba(66,47,114,.08));
    }
    .free-note { margin-top: 10px; display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; }
    .free-note::before { content: "✓"; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--success); font-size: 11px; }

    .trust-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
    .trust-list { display: grid; gap: 12px; }
    .trust-item {
      min-height: 112px;
      padding: 22px;
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 16px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
    }
    .trust-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--lilac); font-weight: 800; }
    .trust-item h3 { margin: 1px 0 5px; font-size: 17px; }
    .trust-item p { margin: 0; color: var(--muted); font-size: 13px; }

    .faq { max-width: 850px; margin-inline: auto; }
    .faq .section-head { text-align: center; margin-inline: auto; }
    .faq-item { border-top: 1px solid var(--line); }
    .faq-item:last-child { border-bottom: 1px solid var(--line); }
    .faq-question {
      width: 100%;
      padding: 23px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border: 0;
      color: var(--graphite);
      background: none;
      text-align: left;
      font-weight: 700;
      cursor: pointer;
    }
    .faq-plus { color: var(--violet-deep); font-size: 25px; transition: transform .2s ease; }
    .faq-answer { display: none; max-width: 720px; padding: 0 0 23px; color: var(--muted); font-size: 14px; }
    .faq-item.open .faq-answer { display: block; }
    .faq-item.open .faq-plus { transform: rotate(45deg); }

    .final-section { padding: 32px 0 100px; }
    .final-card {
      padding: 70px;
      position: relative;
      overflow: hidden;
      color: #fff;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(440px 420px at 92% 100%, rgba(253,190,188,.64), transparent 70%),
        linear-gradient(120deg, #6043a4, #977dd9);
    }
    .final-card::after {
      content: "";
      position: absolute;
      width: 330px;
      height: 330px;
      right: -20px;
      bottom: -115px;
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 50%;
    }
    .final-copy { max-width: 680px; position: relative; z-index: 1; }
    .final-card h2 { margin-bottom: 14px; }
    .final-card p { margin-bottom: 27px; color: rgba(255,255,255,.78); font-size: 18px; }

    .site-footer { padding: 34px 0; color: rgba(255,255,255,.7); background: var(--dark); font-size: 12px; }
    .footer-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
    .footer-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
    .footer-brand img { width: 118px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
    .footer-links a { text-decoration: none; }
    .footer-links a:hover { color: #fff; }
    .footer-legal {
      margin: 18px 0 0;
      max-width: 720px;
      color: rgba(255,255,255,.55);
      font-size: 11px;
      line-height: 1.55;
    }

    .mobile-cta { display: none; }

    @media (max-width: 1100px) {
      .agents-grid { grid-template-columns: repeat(2, 1fr); }
      .header-nav { gap: 16px; }
      .hero, .hero-inner { min-height: auto; }
      .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 134px 0 82px; text-align: center; }
      .hero-copy { display: grid; justify-items: center; }
      .research-invite { justify-self: center; text-align: left; }
    }
    @media (max-width: 960px) {
      .brand-divider, .partner-logo { display: none; }
      .hero-inner { gap: 28px; }
      .steps { grid-template-columns: 1fr; }
      .agent-card { min-height: 0; }
      .platform-card { grid-template-columns: 1fr; }
      .research-promo { grid-template-columns: 1fr; }
      .research-promo-visual { min-height: 220px; }
      .trust-grid { grid-template-columns: 1fr; gap: 32px; }
    }
    @media (max-width: 700px) {
      body { padding-bottom: 0; }
      .container { width: min(calc(100% - 24px), var(--max)); }
      .site-header, .header-row { height: 66px; }
      .brand { gap: 10px; }
      .brand img { width: 112px; }
      .brand-divider { display: block; height: 22px; }
      .brand .partner-logo { display: block; width: 104px; }
      .header-nav { display: none; }
      .hero, .hero-inner { min-height: auto; }
      .hero-inner { padding: 118px 0 70px; }
      h1 { font-size: clamp(38px, 11vw, 46px); }
      .hero-lead { font-size: 17px; }
      .hero-actions { width: 100%; display: grid; }
      .hero-actions .button { width: 100%; }
      .hero-note { justify-self: center; padding-right: 10px; font-size: 11px; }
      .research-invite { padding: 23px; border-radius: 22px; }
      .research-invite h2 { font-size: 30px; }
      .section { padding: 74px 0; }
      .section-head { margin-bottom: 30px; }
      h2 { font-size: 34px; }
      .section-lead { font-size: 16px; }
      .agents-grid { grid-template-columns: 1fr; }
      .agent-card { padding: 22px; }
      .research-section { padding: 74px 0; }
      .research-promo { padding: 32px 22px; gap: 28px; border-radius: 24px; }
      .research-promo-copy > p:last-of-type { font-size: 16px; }
      .research-promo-visual { min-height: 190px; }
      .survey-dialog-head { padding: 20px 54px 14px 16px; }
      .survey-dialog-head .section-label { margin-bottom: 6px; }
      .survey-dialog-head h2 { margin-bottom: 5px; font-size: 22px; }
      .survey-dialog-head p:last-child { font-size: 11px; line-height: 1.35; }
      .survey-progress { padding: 8px 14px 9px; }
      .survey-progress-row { font-size: 10px; }
      .survey-content { padding: 13px 14px 0; }
      .survey-question-label { display: none; }
      .survey-question-title { font-size: 21px; }
      .survey-question-help { margin-bottom: 8px; font-size: 11px; line-height: 1.35; }
      .survey-options { grid-template-columns: 1fr 1fr; gap: 6px; }
      .survey-option { min-height: 46px; padding: 8px; border-radius: 12px; }
      .survey-option strong { font-size: 10px; line-height: 1.2; }
      .survey-option small { display: none; }
      .survey-error { min-height: 13px; margin-top: 3px; }
      .survey-privacy { display: none; }
      .survey-actions { margin: 4px -14px 0; padding: 8px 14px max(9px, env(safe-area-inset-bottom)); }
      .survey-actions .button { min-height: 40px; padding-inline: 14px; font-size: 12px; }
      .platform-card { padding: 34px 22px; gap: 28px; border-radius: 24px; }
      .platform-actions { display: grid; }
      .agent-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 22px; }
      .dialog-close { width: 38px; height: 38px; top: 10px; right: 10px; }
      .dialog-hero { padding: 25px 52px 18px 16px; }
      .dialog-hero .section-label { margin-bottom: 7px; }
      .dialog-hero h2 { margin-bottom: 7px; font-size: 23px; }
      .dialog-lead { font-size: 11px; line-height: 1.4; }
      .dialog-body { padding: 14px 14px 0; }
      .dialog-capabilities { grid-template-columns: 1fr; }
      .dialog-capability { padding: 9px; grid-template-columns: 26px 1fr; gap: 8px; }
      .dialog-check { width: 26px; height: 26px; }
      .dialog-capability h3 { font-size: 12px; }
      .dialog-capability p { font-size: 9px; }
      .agent-dialog:not(.survey-dialog) .dialog-section { display: none; }
      .dialog-footer {
        margin-top: 10px;
        margin-inline: -14px;
        padding: 9px 14px max(10px, env(safe-area-inset-bottom));
        align-items: stretch;
        flex-direction: column;
      }
      .dialog-footer .button { width: 100%; min-height: 44px; }
      .dialog-format { display: none; }
      .step-number { margin-bottom: 30px; }
      .final-section { padding-bottom: 74px; }
      .final-card { padding: 40px 24px; border-radius: 24px; }
      .final-card p { font-size: 16px; }
      .footer-row { align-items: flex-start; flex-direction: column; }
      .mobile-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 50;
        display: flex;
        min-height: 54px;
        color: #fff;
        background: var(--dark);
        box-shadow: 0 12px 35px rgba(20,20,22,.32);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
      }
      .mobile-cta.is-hidden {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 20px));
      }
    }
    @media (max-height: 850px) and (min-width: 701px) {
      .agent-dialog:not(.survey-dialog) .dialog-section { display: none; }
      .dialog-hero { padding-block: 26px 20px; }
      .dialog-hero h2 { font-size: 34px; }
      .dialog-body { padding-top: 18px; }
      .survey-dialog-head { padding-block: 20px 15px; }
      .survey-dialog-head h2 { font-size: 32px; }
      .survey-content { padding-top: 14px; }
      .survey-option { min-height: 50px; }
      .survey-option small { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    }

    /* Ladcraft.ru brand alignment — isolated copy */

    :root {
      --graphite: #282828;
      --dark: #0f0f0f;
      --page: #fff;
      --surface: #fff;
      --violet: #8269bf;
      --violet-deep: #977DD9;
      --lilac: #ece8f7;
      --peach: #fc835c;
      --mint: #d9ecee;
      --muted: #6f6f72;
      --line: #e5e5e8;
      --success: #327f68;
      --radius-sm: 10px;
      --radius-md: 20px;
      --radius-lg: 24px;
      --pill: 999px;
      --shadow: 0 10px 28px rgba(25, 26, 35, .08);
      --max: 1160px;
    }

    body {
      color: var(--graphite);
      background: #fff;
      line-height: 1.5;
    }
    body::after { opacity: 0; }

    .container { width: min(calc(100% - 48px), var(--max)); }

    .site-header {
      height: 60px;
      background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06) 60%, rgba(180,140,230,.08));
      border-bottom: 0;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 1px 0 rgba(255,255,255,.1);
      backdrop-filter: blur(14px);
    }
    .header-row { height: 60px; }
    .brand { gap: 13px; }
    .brand img { width: 126px; }
    .brand .partner-logo { width: 126px; }
    .brand-divider { height: 22px; }
    .header-nav { gap: 22px; }
    .header-nav > a:not(.button) {
      color: rgba(255,255,255,.75);
      font-size: 14px;
      font-weight: 500;
    }

    .button {
      min-height: 46px;
      padding-inline: 20px;
      border-radius: 10px;
      font-weight: 500;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .button:hover { transform: translateY(-1px); }
    .button-dark {
      background: #2b2b2b;
      box-shadow: 0 1px 4px rgba(0,0,0,.08), 0 3px 3px -1px rgba(0,0,0,.2);
    }
    .button-light {
      box-shadow: 0 1px 4px rgba(0,0,0,.08), 0 3px 3px -1px rgba(0,0,0,.12), inset 0 -4px 4px rgba(237,237,237,.4);
    }
    .button-outline {
      min-height: 40px;
      border-radius: 10px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
    }

    .hero {
      min-height: 780px;
      background:
        radial-gradient(720px 620px at 91% 34%, rgba(252,131,92,.58), transparent 68%),
        radial-gradient(760px 680px at 4% 92%, rgba(84,55,170,.85), transparent 70%),
        linear-gradient(102deg, #6b52a8 0%, #9b72c8 55%, #d7959b 100%);
    }
    .hero::before {
      opacity: .35;
      background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 80px 80px;
    }
    .hero-inner {
      min-height: 780px;
      padding: 126px 0 86px;
      grid-template-columns: minmax(0, 1.12fr) minmax(400px, .88fr);
      gap: 68px;
    }
    .hero-copy, .research-invite { position: relative; z-index: 2; }
    h1, h2 { font-family: "Soyuz Grotesk", "Montserrat", "Inter", sans-serif; }
    h1 {
      max-width: 710px;
      margin: 24px 0 20px;
      font-size: clamp(48px, 4.5vw, 64px);
      line-height: 1.01;
      letter-spacing: -.03em;
    }
    h2 {
      font-size: clamp(38px, 4vw, 58px);
      line-height: 1.06;
      letter-spacing: -.025em;
    }
    .hero-lead {
      max-width: 600px;
      margin-bottom: 27px;
      color: rgba(255,255,255,.8);
      font-size: 18px;
      line-height: 1.48;
    }
    .eyebrow {
      padding: 7px 12px;
      border-color: rgba(255,255,255,.25);
      background: rgba(255,255,255,.09);
      font-size: 12px;
      font-weight: 500;
    }
    .eyebrow-dot { width: 6px; height: 6px; background: #6be59a; box-shadow: 0 0 0 3px rgba(107,229,154,.16); }
    .hero-note { border: 0; background: transparent; backdrop-filter: none; padding-left: 0; }
    .hero-note-icon { color: #fff; background: rgba(255,255,255,.2); }

    .hero-floats {
      position: absolute;
      inset: 60px 0 0;
      z-index: 1;
      pointer-events: none;
    }
    .hero-float {
      width: 66px;
      height: 66px;
      position: absolute;
      filter: drop-shadow(0 10px 20px rgba(38,20,76,.14));
    }
    .hero-float img { width: 100%; height: 100%; display: block; }
    .hero-float-1 { left: 3.5%; top: 18%; transform: rotate(-8deg); }
    .hero-float-2 { left: 7%; bottom: 15%; transform: rotate(7deg); }
    .hero-float-3 { right: 3%; top: 20%; transform: rotate(8deg); }
    .hero-float-4 { right: 5%; bottom: 12%; transform: rotate(-7deg); }

    .research-invite {
      width: min(430px, 100%);
      padding: 28px;
      border: 1px solid rgba(255,255,255,.62);
      border-radius: 24px;
      background: rgba(255,255,255,.95);
      box-shadow: 0 20px 48px rgba(42,27,75,.16);
      backdrop-filter: blur(20px);
    }
    .research-invite::before { display: none; }
    .research-source {
      margin-bottom: 18px;
      padding: 6px 9px;
      color: #6b52a8;
      background: #ece8f7;
    }
    .research-invite h2 { font-size: clamp(30px, 3vw, 40px); letter-spacing: -.02em; }
    .research-invite h2,
    .survey-dialog-head h2,
    .agent-card h3 {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .research-reward {
      border-color: #e3dfef;
      border-radius: 14px;
      background: #f6f4fb;
    }
    .research-reward-icon {
      overflow: hidden;
      border-radius: 10px;
      background: #fff;
    }
    .research-reward-icon img { display: none; }
    .research-reward-icon::before {
      content: "✓";
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
      color: #fff;
      background: #6b52a8;
      font-weight: 700;
    }
    .research-invite .button { min-height: 48px; border-radius: 10px; background: #977DD9; }

    .section { padding: 120px 0; }
    #agents { background: #f9f9f8; }
    .section-head { margin-bottom: 48px; }
    .section-label { color: #6b52a8; font-weight: 700; }
    .section-lead { color: var(--muted); font-size: 17px; }

    .agents-grid { gap: 16px; }
    .agent-card {
      min-height: 482px;
      padding: 24px;
      border-color: #e5e5e8;
      border-radius: 20px;
      box-shadow: none;
    }
    .agent-card::before { display: none; }
    .agent-card:hover {
      transform: translateY(-3px);
      border-color: #d8d2e9;
      box-shadow: var(--shadow);
    }
    .agent-card-custom {
      color: var(--graphite);
      border-color: #e5e5e8;
      background: #fff;
    }
    .agent-card-custom > p { color: var(--muted); }
    .agent-card h3 {
      margin: 22px 0 9px;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 27px;
      letter-spacing: -.02em;
    }
    .agent-icon {
      width: 68px;
      height: 68px;
      overflow: visible;
      border-radius: 0;
      background: transparent !important;
    }
    .agent-icon img { width: 100%; height: 100%; display: block; }
    .status { padding: 6px 9px; font-weight: 700; }
    .card-detail-button {
      min-height: 42px;
      border-radius: 10px;
      font-weight: 500;
    }
    .button-card { min-height: 46px; }

    .how-section { background: #0f0f0f; }
    .step {
      min-height: 230px;
      border-radius: 20px;
      background: rgba(255,255,255,.05);
    }
    .step-number { margin-bottom: 36px; }

    .platform-section { background: #fff; }
    .platform-card {
      border: 1px solid #e5e5e8;
      border-radius: 24px;
      background: #f9f9f8;
    }
    #trust { background: #fff; }
    .trust-grid {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
      gap: 56px;
    }
    #trust .section-head h2 { font-size: clamp(40px, 3.5vw, 52px); }
    .trust-item {
      min-height: 118px;
      border-color: #e5e5e8;
      border-radius: 16px;
      box-shadow: none;
    }
    .trust-icon {
      width: 58px;
      height: 58px;
      overflow: hidden;
      border-radius: 12px;
      background: transparent;
    }
    .trust-icon img { width: 100%; height: 100%; display: block; }

    .faq {
      margin-top: 0;
      border-top: 0;
      background: #f9f9f8;
      box-shadow: none;
      clip-path: none;
    }
    .faq-question { font-weight: 600; }
    .faq-plus { color: #6b52a8; }

    .research-section { background: #f9f9f8; }
    .research-promo {
      border: 1px solid rgba(252,131,92,.16);
      border-radius: 24px;
      background: #fbf6f2;
    }

    .final-section { padding: 0; background: #0f0f0f; }
    .final-card {
      padding: 110px 70px;
      border-radius: 0;
      background: #0f0f0f;
    }
    .final-card::before,
    .final-card::after { display: none; }
    .site-footer { border-top: 1px solid rgba(255,255,255,.1); background: #0f0f0f; }

    .agent-dialog {
      border-radius: 20px;
      background: #f9f9f8;
    }
    .dialog-hero {
      background:
        radial-gradient(420px 300px at 90% 0%, rgba(252,131,92,.34), transparent 72%),
        linear-gradient(102deg, #6b52a8, #9b72c8);
    }
    .dialog-capability { border-color: #e5e5e8; border-radius: 14px; background: #fff; }
    .dialog-check { border-radius: 8px; }
    .dialog-hero h2,
    .dialog-capability h3,
    .dialog-section h3,
    .survey-dialog h2,
    .survey-dialog h3 {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    #developerDialog .dialog-footer .button {
      min-width: 260px;
      flex: 0 0 auto;
      white-space: nowrap;
    }

    .survey-dialog {
      overflow: hidden;
      border: 1px solid #e5e5e8;
      border-radius: 20px;
      background: #f9f9f8;
      box-shadow: 0 28px 80px rgba(20,20,22,.2);
    }
    .survey-dialog .dialog-close {
      color: var(--graphite);
      border-color: #e5e5e8;
      background: #fff;
      box-shadow: 0 8px 22px rgba(20,20,22,.08);
    }
    .survey-dialog-head {
      padding: 32px 60px 24px;
      color: var(--graphite);
      border-bottom: 1px solid #e5e5e8;
      background: #fff;
    }
    .survey-dialog-head .section-label { color: #6b52a8; }
    .survey-dialog-head h2 {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -.03em;
    }
    .survey-dialog-head p:last-child { color: var(--muted); }
    .survey-progress {
      border-bottom: 1px solid #e5e5e8;
      background: #f1eef8;
    }
    .survey-progress-track { background: #ded8ec; }
    .survey-progress-bar { background: #6b52a8; }
    .survey-dialog .survey-content { background: #f9f9f8; }
    .survey-question-title {
      font-weight: 700;
      letter-spacing: -.025em;
    }
    .survey-option {
      border-color: #e5e5e8;
      border-radius: 14px;
      background: #fff;
      box-shadow: none;
    }
    .survey-option:hover {
      border-color: #cfc6e3;
      background: #fff;
    }
    .survey-option:has(input:checked) {
      border-color: #6b52a8;
      background: #f1eef8;
      box-shadow: inset 0 0 0 1px #6b52a8;
    }
    .survey-other-field { background: #f1eef8; }
    .survey-input,
    .survey-textarea { border-color: #d9d9dd; }
    .survey-actions {
      border-color: #e5e5e8;
      background: rgba(249,249,248,.96);
    }

    @media (max-width: 1100px) {
      .hero-floats { display: none; }
      .hero-inner {
        padding-top: 118px;
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
      }
      .hero-copy { display: grid; justify-items: center; }
      .research-invite { justify-self: center; text-align: left; }
    }
    @media (max-width: 700px) {
      body { padding-bottom: 78px; }
      .container { width: min(calc(100% - 24px), var(--max)); }
      .site-header, .header-row { height: 60px; }
      .brand img { width: 105px; }
      .brand .partner-logo { width: 96px; }
      .hero-inner { padding: 104px 0 64px; }
      h1 { font-size: 36px; line-height: 1; }
      h2 { font-size: 38px; }
      .section { padding: 82px 0; }
      .agent-icon { width: 62px; height: 62px; }
      .platform-card { padding: 32px 20px; }
      .trust-grid { grid-template-columns: 1fr; gap: 40px; }
      .final-card { padding: 82px 24px; }
      .research-invite { padding: 22px; }
      .survey-dialog { width: calc(100% - 16px); border-radius: 18px; }
      .survey-dialog-head { padding: 22px 52px 16px 16px; }
      .survey-dialog-head h2 { font-size: 24px; }
      .survey-dialog-head p:last-child { font-size: 12px; line-height: 1.4; }
      .survey-dialog .survey-progress { padding: 9px 14px 10px; }
      .survey-dialog .survey-content { padding: 15px 14px 0; }
      .survey-question-title { font-size: 22px; }
    }

    /* User design patches Aug 2026 */
    .eyebrow-dot {
      width: 7px;
      height: 7px;
      background: #FFE4A3;
      box-shadow: 0 0 0 3px rgba(255, 228, 163, .22);
    }
    .research-invite {
      padding: 28px !important;
    }
    .research-source {
      padding: 6px 12px !important;
    }
    .research-reward {
      border: 0 !important;
      border-left: 3px solid #977DD9 !important;
      border-radius: 0 14px 14px 0 !important;
      background: #ECE8F7 !important;
      padding: 15px 12px !important;
      grid-template-columns: 1fr !important;
    }
    .research-reward-icon,
    .research-reward-icon::before {
      display: none !important;
      content: none !important;
    }
    .platform-card {
      border: 1px solid #e5e5e8;
      background: linear-gradient(135deg, #F6F2FF 0%, #D4CCF3 100%) !important;
    }
    .platform-card::before,
    .research-promo::before { display: none; }
    .research-promo {
      border: 1px solid #e5e5e8;
      background: linear-gradient(135deg, #F6F2FF 0%, #D4CCF3 100%) !important;
    }
    .platform-visual,
    .research-promo-visual {
      background: transparent !important;
    }
    .platform-visual img,
    .research-promo-visual img {
      background: transparent !important;
      filter: none;
    }

    /* «Подробнее» — white + gray border */
    .card-detail-button {
      color: #282828 !important;
      background: #fff !important;
      border: 1px solid #E8E8E5 !important;
      border-radius: 10px !important;
      font-weight: 500 !important;
    }
    .card-detail-button::after { content: ""; }
    .card-detail-button:hover {
      background: #f7f7f7 !important;
      border-color: #d9d9d9 !important;
    }

    /* Trust cards: icon ↔ text gap */
    .trust-item {
      grid-template-columns: 58px 1fr !important;
      gap: 16px !important;
      align-items: center;
    }

    /* Research section page bg */
    .research-section {
      background: #F9F9F8 !important;
    }

    /* Final CTA: center + orbit ellipses */
    .final-card {
      position: relative;
      overflow: hidden;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .final-copy {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin-inline: auto;
      text-align: center;
    }
    .final-copy .button {
      margin-inline: auto;
    }
    .final-orbits {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .final-cta__orbit {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 100%;
      height: 100%;
      margin-left: -50%;
      margin-top: -50%;
      pointer-events: none;
      animation: final-cta-orbit-spin 25s linear infinite;
      z-index: 0;
    }
    .final-cta__orbit--2 { animation-duration: 35s; animation-direction: reverse; width: 217%; height: 217%; margin-left: -108.5%; margin-top: -108.5%; }
    .final-cta__orbit--3 { animation-duration: 20s; animation-delay: -5s; width: 140%; height: 140%; margin-left: -70%; margin-top: -70%; }
    .final-cta__orbit--4 { animation-duration: 30s; animation-direction: reverse; animation-delay: -10s; width: 196%; height: 196%; margin-left: -98%; margin-top: -98%; }
    .final-cta__orbit--5 { animation-duration: 22s; animation-delay: -3s; width: 156.8%; height: 156.8%; margin-left: -78.4%; margin-top: -78.4%; }
    .final-cta__orbit--6 { animation-duration: 28s; animation-direction: reverse; animation-delay: -7s; width: 189%; height: 189%; margin-left: -94.5%; margin-top: -94.5%; }
    .final-cta__orbit--1 { width: 168%; height: 168%; margin-left: -84%; margin-top: -84%; }
    @keyframes final-cta-orbit-spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .final-cta__orbit-dot {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 14px;
      height: 50%;
      margin-left: -7px;
      margin-top: -50%;
      transform-origin: center bottom;
    }
    .final-cta__orbit-dot:nth-child(1) { transform: rotate(0deg); }
    .final-cta__orbit-dot:nth-child(2) { transform: rotate(120deg); }
    .final-cta__orbit-dot:nth-child(3) { transform: rotate(240deg); }
    .final-cta__orbit-dot::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      margin-left: -7px;
      margin-top: -7px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .45);
      box-shadow: 0 0 20px rgba(255, 255, 255, .25), 0 0 40px rgba(255, 255, 255, .1);
    }
    .final-cta__orbit--2 .final-cta__orbit-dot::after {
      background: rgba(251, 135, 96, .45);
      box-shadow: 0 0 18px rgba(251, 135, 96, .3), 0 0 36px rgba(251, 135, 96, .12);
    }
    .final-cta__orbit--3 .final-cta__orbit-dot::after {
      background: rgba(146, 116, 220, .45);
      box-shadow: 0 0 18px rgba(146, 116, 220, .28), 0 0 36px rgba(146, 116, 220, .1);
    }
    .final-cta__orbit--4 .final-cta__orbit-dot::after,
    .final-cta__orbit--6 .final-cta__orbit-dot::after {
      width: 12px;
      height: 12px;
      margin-left: -6px;
      margin-top: -6px;
      background: rgba(255, 255, 255, .4);
    }
    .final-cta__orbit--5 .final-cta__orbit-dot::after {
      background: rgba(255, 255, 255, .4);
    }

    /* FAQ accordion — match ladcraft.ru */
    .faq {
      max-width: none !important;
      width: 100%;
      margin-inline: 0 !important;
      margin-top: 0 !important;
      background: #F9F9F8 !important;
      box-shadow: none !important;
      clip-path: none !important;
      border-top: 0 !important;
    }
    .faq > .container {
      max-width: 900px;
      margin-inline: auto;
    }
    .faq .section-head {
      text-align: center !important;
      margin-inline: auto !important;
      margin-bottom: 32px;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      border: 1px solid #E8E8E5;
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
    }
    .faq-item {
      border-top: 0;
      border-bottom: 1px solid #E8E8E5;
    }
    .faq-item:last-child { border-bottom: 0; }
    .faq-question {
      width: 100%;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      border: 0;
      color: #282828;
      background: none;
      text-align: left;
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 500;
      letter-spacing: -.02em;
      cursor: pointer;
      transition: background .15s;
    }
    .faq-question:hover { background: #F9F9F8; }
    .faq-plus {
      width: 32px;
      height: 32px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid #E8E8E5;
      color: #6B6B6B;
      background: transparent;
      font-size: 0;
      line-height: 0;
      transition: background .2s, border-color .2s, transform .3s, color .2s;
    }
    .faq-plus::before {
      content: "";
      width: 14px;
      height: 14px;
      display: block;
      background: currentColor;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.5L7 9.5L11 5.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.5L7 9.5L11 5.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    }
    .faq-answer {
      display: block;
      max-width: none;
      padding: 0;
      color: #6B6B6B;
      font-size: 15px;
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
    }
    .faq-item.open .faq-answer {
      display: block;
      max-height: 480px;
      opacity: 1;
      padding: 0 28px 24px;
    }
    .faq-item.open .faq-plus {
      background: #282828;
      border-color: #282828;
      color: #fff;
      transform: rotate(180deg);
    }

        /* step-number patch Aug3b */

    /* Purple CTA buttons brand violet */
    .agent-card-custom .button-light,
    .research-invite .button,
    .research-invite .button.button-dark,
    a.button.button-light.button-card {
      background: #977DD9 !important;
    }
    .agent-card-custom .button-light:hover,
    .research-invite .button:hover {
      background: #8669c9 !important;
    }
    /* How-steps numbers — gradient text */
    .step-number {
      width: auto !important;
      height: auto !important;
      margin-bottom: 24px !important;
      display: block !important;
      place-items: unset !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      padding: 0 !important;
      background: none !important;
      color: #BEA6F7 !important;
      font-size: 32px !important;
      font-weight: 600 !important;
      line-height: 1 !important;
      letter-spacing: -.03em;
    }
    .step-number span {
      display: inline-block;
      background-image: linear-gradient(105deg, #BEA6F7 0%, #EF8E7B 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }
    .how-section .section-label {
      color: transparent !important;
      background: none !important;
      -webkit-text-fill-color: transparent;
    }
    .how-section .section-label span {
      display: inline-block;
      background-image: linear-gradient(105deg, #BEA6F7 0%, #EF8E7B 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }
    .final-copy .button,
    .final-card .button.button-light {
      color: #fff !important;
      background: #977DD9 !important;
      border-color: transparent !important;
      box-shadow: 0 1px 4px rgba(0,0,0,.08), 0 3px 3px -1px rgba(151,125,217,.35) !important;
    }
    .final-copy .button:hover,
    .final-card .button.button-light:hover {
      background: #8669c9 !important;
    }

    .free-note {
      margin-top: 16px !important;
    }
    .free-note::before {
      color: #fff !important;
      background: rgba(151, 125, 217, .55) !important;
    }

    /* research-source badge + card Подробнее */
    .research-source {
      color: #6b52a8 !important;
      background: transparent !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    .card-detail-button {
      font-size: 16px !important;
    }
    /* free-note color */
    .platform-card .free-note,
    .free-note {
      color: #6f6f72 !important;
      font-weight: 600 !important;
    }
    /* Platform label + title wrap */
    .platform-card .section-label {
      font-size: 12px !important;
      line-height: 1.4;
      color: #6b52a8 !important;
    }
    .platform-card > div > p:not(.section-label) {
      font-size: 17px;
    }
    .platform-card h2 {
      max-width: none;
    }
    .platform-card h2 .line {
      display: block;
      white-space: nowrap;
    }
    /* Aug3e: icons, diagrams, section gaps, status */
    .agent-icon {
      width: 56px !important;
      height: 56px !important;
      overflow: visible !important;
      border-radius: 0 !important;
      background: transparent !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
    }
    .agent-icon img {
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
      object-position: center !important;
      display: block;
    }
    .trust-item {
      grid-template-columns: 56px 1fr !important;
      gap: 16px !important;
      align-items: center !important;
    }
    .trust-icon {
      width: 56px !important;
      height: 56px !important;
      overflow: visible !important;
      border-radius: 0 !important;
      background: transparent !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
    }
    .trust-icon img {
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
      object-position: center !important;
      display: block;
    }

    /* Section rhythm: 120px between blocks (no double padding on same-bg neighbors) */
    .section,
    .how-section,
    .platform-section,
    #trust,
    #faq.section,
    .faq.section,
    .research-section {
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding: 120px 0 !important;
    }
    /* white → white */
    .platform-section {
      padding-bottom: 0 !important;
    }
    /* gray → gray */
    #faq.section,
    .faq.section {
      padding-bottom: 0 !important;
      background: #F9F9F8 !important;
    }
    .research-section {
      background: #F9F9F8 !important;
    }
    .final-section {
      padding: 0 !important;
    }

    /* How-steps card titles */
    .step h3 {
      font-size: 20px !important;
      font-weight: 600 !important;
    }

    /* Trust card titles */
    .trust-item h3 {
      font-size: 18px !important;
    }
/* Agent list: thinner checks */
    .agents-grid .agent-list {
      font-size: 14px !important;
    }
    .agents-grid .agent-list li::before {
      font-weight: 500 !important;
      font-size: 14px !important;
      line-height: 1;
    }
    /* Agent card titles */
    .agents-grid .agent-card h3 {
      font-size: 24px !important;
    }
    /* Agent status tabs — flush to card top, radius only bottom */
    .agents-grid .agent-card {
      position: relative !important;
      overflow: hidden !important;
    }
    .agents-grid .status {
      position: absolute !important;
      top: 0 !important;
      right: 18px !important;
      z-index: 2;
      margin: 0 !important;
      padding: 6px 12px !important;
      border-radius: 0 0 8px 8px !important;
      color: #3F8889 !important;
      background: #E1F4F4 !important;
      font-size: 11px !important;
      font-weight: 600 !important;
      letter-spacing: .04em !important;
      text-transform: uppercase !important;
      line-height: 1.2;
    }
    .agents-grid .agent-card-custom .status {
      color: #6b52a8 !important;
      background: #EDE8F8 !important;
    }

    .platform-visual {
      min-height: 0 !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      background: transparent !important;
      overflow: visible;
    }
    .platform-visual img {
      width: 108% !important;
      max-width: 108% !important;
      min-height: 0 !important;
      height: auto !important;
      object-fit: contain !important;
      object-position: center !important;
      background: transparent !important;
      filter: none !important;
      margin-inline: -4%;
    }

    .research-promo-visual {
      min-height: 0 !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      background: transparent !important;
      overflow: visible;
    }
    .research-promo-visual img {
      width: 112% !important;
      max-width: 112% !important;
      min-height: 0 !important;
      height: auto !important;
      object-fit: contain !important;
      object-position: center !important;
      background: transparent !important;
      filter: none !important;
      margin-inline: -6%;
    }

    @media (max-width: 900px) {
      .platform-visual img,
      .research-promo-visual img {
        width: 100% !important;
        max-width: 100% !important;
        margin-inline: 0;
      }
    }
    @media (max-width: 720px) {
      .agent-icon,
      .trust-icon { width: 52px !important; height: 52px !important; }
      .trust-item { grid-template-columns: 52px 1fr !important; }
      .section,
      .how-section,
      .platform-section,
      #trust,
      #faq.section,
      .faq.section,
      .research-section {
        padding: 80px 0 !important;
      }
      .platform-section,
      #faq.section,
      .faq.section {
        padding-bottom: 0 !important;
      }
    }

    /* SVG symbols — no font glyphs (must be last) */
    .agent-list li::before {
      content: "" !important;
      width: 14px !important;
      height: 14px !important;
      left: 0 !important;
      top: 0.45em !important;
      background-color: transparent !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2L6.4 11.4L12.8 4.6' stroke='%236b52a8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      background-size: 14px 14px !important;
      color: transparent !important;
      font-size: 0 !important;
    }
    .card-detail-button::after {
      content: "" !important;
      display: inline-block !important;
      width: 14px !important;
      height: 14px !important;
      margin-left: 8px !important;
      vertical-align: -2px !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='%23282828' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      background-size: 14px 14px !important;
    }
    .free-note::before {
      content: "" !important;
      background-color: rgba(151, 125, 217, .55) !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2L6.4 11.4L12.8 4.6' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      background-size: 12px 12px !important;
      color: transparent !important;
      font-size: 0 !important;
    }
    .button > span[aria-hidden="true"] {
      display: inline-block !important;
      width: 14px !important;
      height: 14px !important;
      margin-left: 2px !important;
      font-size: 0 !important;
      color: transparent !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      background-size: 14px 14px !important;
      vertical-align: -2px !important;
    }

    .page-crumbs-wrap {
      position: absolute;
      left: 0;
      right: 0;
      top: 60px;
      z-index: 3;
      padding: 16px 0 0;
      pointer-events: none;
    }
    .page-crumbs-wrap .page-crumbs { pointer-events: auto; }
    .page-crumbs {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 6px 8px;
      margin: 0;
      max-width: 100%;
      min-width: 0;
      overflow: hidden;
      color: rgba(255, 255, 255, .52);
      font-size: 13px;
      font-weight: 500;
      line-height: 1.35;
    }
    .page-crumbs a {
      flex: 0 0 auto;
      color: inherit;
      text-decoration: none;
      border-bottom: 0;
    }
    .page-crumbs a:hover { color: rgba(255, 255, 255, .78); }
    .page-crumbs__sep {
      flex: 0 0 auto;
      color: rgba(255, 255, 255, .32);
      font-weight: 400;
    }
    .page-crumbs [aria-current="page"] {
      flex: 1 1 auto;
      min-width: 0;
      overflow: hidden;
      color: rgba(255, 255, 255, .52);
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .hero-inner { padding-top: 132px; }
    @media (max-width: 1100px) {
      .hero-inner { padding-top: 128px; }
    }
    @media (max-width: 700px) {
      .page-crumbs-wrap { top: 60px; padding-top: 16px; }
      .hero-inner { padding-top: 124px; }
    }

    /* Adaptive containment: keep blocks inside the viewport */
    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }
    .site-header,
    .header-row,
    .hero-inner,
    .research-invite,
    .platform-card,
    .research-promo,
    .final-section,
    .final-card {
      min-width: 0;
      max-width: 100%;
    }
    .platform-card,
    .research-promo,
    .final-section,
    .final-card {
      overflow: hidden;
    }

    @media (max-width: 1100px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr) !important;
      }
      .research-invite {
        justify-self: stretch;
        width: 100%;
        max-width: 100%;
      }
    }

    @media (max-width: 960px) {
      .header-row {
        overflow: hidden;
      }
      .header-nav > a:not(.ladcraft-locale-switch) {
        display: none;
      }
      body { padding-bottom: 78px; }
      .mobile-cta {
        position: fixed;
        left: 20px;
        right: 20px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 50;
        display: flex;
        min-height: 54px;
        color: #fff;
        background: var(--dark);
        box-shadow: 0 12px 35px rgba(20,20,22,.32);
      }
      .platform-card h2 .line {
        white-space: normal;
      }
      .platform-visual,
      .research-promo-visual {
        overflow: hidden;
        max-width: 100%;
      }
      .platform-visual img,
      .research-promo-visual img {
        width: 100% !important;
        max-width: 100% !important;
        margin-inline: 0 !important;
      }
    }

    @media (max-width: 700px) {
      .container {
        width: min(calc(100% - 40px), var(--max));
      }
      .page-crumbs-wrap {
        left: 20px;
        right: 20px;
        width: auto;
        margin-inline: 0;
      }
      .research-invite {
        padding: 22px !important;
      }
      .hero-actions,
      .hero-note {
        max-width: 100%;
      }
      .hero-note {
        justify-self: stretch;
        padding-right: 0;
        flex-wrap: wrap;
        justify-content: center;
      }
      .mobile-cta {
        left: 20px;
        right: 20px;
      }
    }

/* === 1c-overrides === */
/* Дополнения к style.css партнёрского лендинга — контент «Агенты 1С» */

section[id] { scroll-margin-top: 92px; }

.brand img {
  display: block;
  height: 22px !important;
  width: auto !important;
  max-width: 96px !important;
}

/* Прямоугольные кнопки со скруглением — без pill */
.button,
.card-detail-button,
.mobile-cta {
  border-radius: 12px !important;
}

.header-nav .button {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 14px;
}

.header-nav .button-light {
  color: var(--dark);
  background: #fff;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-visual img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 28px 50px rgba(48, 24, 86, .28));
}

/* ── Платформа ── */
#platform.section {
  background: #F9F9F8 !important;
}

#platform .section-head {
  max-width: none;
  margin-bottom: 40px;
}

#platform .section-head h2.platform-title {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(36px, 3.4vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
}

.platform-title-line {
  display: block;
}

@media (min-width: 641px) {
  .platform-title-line {
    white-space: nowrap;
  }
}

#platform .cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

#platform .cap-grid .trust-item {
  min-height: 0;
  grid-template-columns: 44px 1fr !important;
  gap: 28px !important;
  align-items: start !important;
  padding: 24px;
}

#platform .cap-grid .trust-icon {
  width: 44px !important;
  height: 44px !important;
  padding: 10px !important;
  border-radius: 12px !important;
  background: #EDE8F8 !important;
  box-sizing: border-box !important;
}

#platform .cap-grid .trust-icon img {
  width: 24px !important;
  height: 24px !important;
  display: block;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(55%) sepia(19%) saturate(1095%) hue-rotate(218deg) brightness(93%) contrast(90%);
}

#platform .cap-grid .trust-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

#platform .cap-grid .trust-item p {
  font-size: 14px;
  line-height: 1.45;
}

/* ── Интеграция с 1С ── */
.integration-section {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
  background: #fff !important;
}

.integration-section .section-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.integration-certs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 16px;
}

.integration-cert-logo,
.integration-cert-note {
  padding: 20px 22px;
  border: 1px solid #E8E8E5;
  border-radius: 14px;
  background: #fff;
}

.integration-cert-logo {
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #fff8db, #fff 55%, #f3efff);
}

.integration-cert-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
  max-height: 140px;
  object-fit: contain;
}

.integration-cert-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.integration-cert-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.integration-cert-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--graphite);
  font-size: 16px;
  font-weight: 700;
}

.integration-tabs {
  border: 1px solid #E8E8E5;
  border-radius: 14px;
  overflow: hidden;
  background: #F7F7F6;
}

.integration-tablist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 6px;
  background: #F3F3F2;
}

.integration-tab {
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #6F6F72;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.integration-tab:not(.is-active):hover {
  color: #1f1f1f;
  background: #fff;
}

.integration-tab.is-active {
  color: #fff;
  background: #1f1f1f;
}

.integration-panels {
  padding: 16px;
  background: #fff;
  display: grid;
}

.integration-panel {
  grid-area: 1 / 1;
  min-width: 0;
}

.integration-panel[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.integration-panel.is-active {
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.integration-stages-row {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  height: 100%;
}

.integration-stages-row li {
  min-width: 0;
  height: 100%;
  padding: 14px;
  border: 1px solid #E8E8E5;
  border-radius: 12px;
  background: #F9F9F8;
}

.integration-stages-row b {
  display: block;
  margin-bottom: 6px;
  color: #6b52a8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.integration-stages-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.integration-cfg-row,
.integration-arch-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  height: 100%;
}

.integration-cfg-row article,
.integration-arch-row article {
  min-width: 0;
  height: 100%;
  padding: 14px;
  border: 1px solid #E8E8E5;
  border-radius: 12px;
  background: #F9F9F8;
}

.integration-cfg-row h3,
.integration-arch-row h3 {
  margin: 0 0 6px;
  color: #6b52a8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.integration-cfg-row p,
.integration-arch-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.integration-journal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: #6F6F72;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.integration-journal:hover {
  color: #6b52a8;
}

/* ── Агенты: как в черновике, 2×2, без иконок ── */
#agents .agents-grid.agents-grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

#agents .agent-card {
  min-height: 0 !important;
  padding: 20px !important;
  overflow: visible !important;
}

#agents .agent-card::before {
  display: none !important;
}

#agents .agent-card:hover {
  transform: none;
}

#agents .agent-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

#agents .agent-kicker {
  margin: 0;
  color: #8A8A8E !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#agents .agent-card h3 {
  margin: 0 0 6px !important;
  font-size: 18px !important;
  letter-spacing: -.02em;
}

#agents .agent-card > p {
  min-height: 0 !important;
  margin: 0 0 8px !important;
}

#agents .agent-list {
  margin: 0 0 12px !important;
}

#agents .agent-list li {
  padding: 4px 0 4px 22px !important;
}

#agents .card-actions {
  margin-top: auto !important;
  gap: 8px !important;
}

#agents .agent-card-custom {
  color: var(--graphite) !important;
  background: linear-gradient(160deg, #f7f4ff, #fff) !important;
  border-color: #d4caf7 !important;
}

#agents .agent-card-custom > p,
#agents .agent-card-custom .agent-list {
  color: var(--muted) !important;
}

#agents .agents-grid .status,
#agents .agents-grid .agent-card-custom .status {
  color: #6b52a8 !important;
  background: #EDE8F8 !important;
}

a.card-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#agents .agent-card-custom .card-detail-button--light {
  color: var(--graphite) !important;
  background: #fff !important;
  border-color: var(--line) !important;
}

#agents .agent-card-custom .card-detail-button--light:hover {
  background: #faf9fc !important;
  border-color: rgba(118, 91, 184, .35) !important;
}

.how-section .steps--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── FAQ: восстановить нижний отступ ── */
#faq.section,
.faq.section {
  padding-bottom: 120px !important;
}

/* ── Финальный блок ── */
.final-eyebrow {
  color: rgba(255, 255, 255, .55) !important;
  margin-bottom: 14px !important;
}

.final-copy .final-title,
.final-card .final-title {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
}

.final-copy .final-subtitle,
.final-card .final-subtitle {
  margin: 0 0 18px !important;
  font-family: Inter, "Segoe UI", sans-serif !important;
  font-size: clamp(20px, 2.2vw, 26px) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  letter-spacing: -.02em !important;
  color: transparent !important;
  background-image: linear-gradient(105deg, #BEA6F7 0%, #EF8E7B 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.final-copy .final-lead,
.final-card .final-lead {
  max-width: 640px;
  margin: 0 auto 28px !important;
  color: rgba(255, 255, 255, .72) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.final-copy .final-actions,
.final-card .final-actions {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 auto !important;
}

.final-copy .final-actions .button,
.final-card .final-actions .button {
  width: auto !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.final-copy .final-actions .button-light,
.final-card .final-actions .button.button-light {
  color: var(--graphite) !important;
  background: #fff !important;
  border: 1px solid rgba(255, 255, 255, .4) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1) !important;
}

.final-copy .final-actions .button-light:hover,
.final-card .final-actions .button.button-light:hover {
  background: #f5f3fa !important;
  color: var(--graphite) !important;
}

.final-copy .final-actions .button-dark,
.final-card .final-actions .button.button-dark {
  color: #fff !important;
  background: #977DD9 !important;
  border-color: transparent !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08), 0 3px 3px -1px rgba(151, 125, 217, .35) !important;
}

.final-copy .final-actions .button-dark:hover,
.final-card .final-actions .button.button-dark:hover {
  background: #8669c9 !important;
}

.footer-brand span {
  display: none !important;
}

/* ── Диалоги ── */
.dialog-calendar {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.dialog-calendar table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
}

.dialog-calendar th,
.dialog-calendar td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.dialog-calendar th { background: #f7f6f9; font-size: 12px; }
.dialog-calendar .was { background: #fff4f2; }
.dialog-calendar .now { background: #f3fbf7; }

.dialog-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.dialog-stat {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.dialog-stat b {
  display: block;
  font-size: 28px;
  letter-spacing: -.04em;
}

.dialog-stat span {
  color: var(--muted);
  font-size: 14px;
}

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

.flow-ribbon span {
  padding: 8px 12px;
  border-radius: 10px;
  background: #eee9ff;
  color: var(--violet-deep);
  font-size: 13px;
  font-weight: 700;
}

.dialog-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--peach);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
}

.survey-dialog.demo-dialog-shell { width: min(calc(100% - 32px), 860px); }

.demo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.demo-form-grid label,
.demo-form-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.demo-form-full { grid-column: 1 / -1; }

.demo-form-grid .survey-input,
.demo-form-grid .survey-textarea,
.demo-form-grid select.survey-input { width: 100%; }

.demo-form-grid select.survey-input { appearance: auto; }

.demo-consent-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.demo-consent-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
}

.demo-consent-item input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--violet-deep);
  flex: 0 0 auto;
}

.demo-form-actions { margin-top: 14px; }

@media (max-width: 1080px) {
  .how-section .steps--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #platform .cap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .integration-stages-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .integration-cfg-row,
  .integration-arch-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero-visual { min-height: 280px; }
  .integration-certs {
    grid-template-columns: 1fr;
  }
  .integration-cert-logo {
    order: 2;
    min-height: 120px;
    width: min(100%, 260px);
  }
  .integration-cert-logo img {
    max-width: 200px;
    max-height: 128px;
  }
  .integration-tablist {
    grid-template-columns: 1fr;
  }
  #agents .agents-grid.agents-grid--2x2 { grid-template-columns: 1fr !important; }
  .demo-form-grid { grid-template-columns: 1fr; }
  .dialog-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .platform-title-line {
    white-space: normal;
  }
  .how-section .steps--four,
  .integration-stages-row,
  .integration-cfg-row,
  .integration-arch-row,
  #platform .cap-grid,
  .dialog-stats { grid-template-columns: 1fr; }
  .final-copy .final-actions,
  .final-card .final-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px !important;
    width: 100% !important;
  }
  .final-copy .final-actions .button,
  .final-card .final-actions .button {
    width: 100% !important;
  }
}
