    :root {
      --ink: #2A1810;
      --muted: #5C3A1E;
      --paper: #FAF4EC;
      --paper-2: #F3EAD7;
      --pink-wash: #FBEFEA;
      --line: rgba(92, 58, 30, 0.16);
      --red: #C9285D;
      --red-dark: #A01F4A;
      --red-deep: #2A1810;
      --orange: #A01F4A;
      --amber: #BE8A1E;
      --teal: #5C3A1E;
      --green: #BE8A1E;
      --shadow: 0 22px 70px rgba(42, 24, 16, 0.16);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at 12% 5%, rgba(201, 40, 93, .14), transparent 24%),
        radial-gradient(circle at 80% 0%, rgba(190, 138, 30, .16), transparent 20%),
        var(--paper);
      color: var(--ink);
    }

    .page-shell {
      width: min(1480px, calc(100% - 32px));
      margin: 0 auto;
      padding: 28px 0 60px;
    }

    .top-brief {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items: stretch;
      margin-bottom: 18px;
    }

    .brief-card {
      background: rgba(250, 244, 236, .86);
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 14px 40px rgba(42, 23, 11, .08);
      padding: 20px;
    }

    .kicker {
      color: var(--red);
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: 12px;
      margin-bottom: 8px;
    }

    h1 {
      margin: 0 0 10px;
      font-size: clamp(30px, 4vw, 56px);
      line-height: .98;
      letter-spacing: 0;
    }

    .brief-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
      font-size: 16px;
    }

    .test-rules {
      display: grid;
      gap: 10px;
    }

    .rule {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 10px;
      align-items: center;
      border-radius: 14px;
      border: 1px solid rgba(201, 40, 93, .16);
      background: var(--pink-wash);
      padding: 10px;
      font-size: 14px;
      line-height: 1.35;
    }

    .rule-number {
      width: 34px;
      height: 34px;
      border-radius: 11px;
      display: grid;
      place-items: center;
      background: var(--red);
      color: var(--paper);
      font-weight: 950;
    }

    .workbench {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 430px;
      gap: 22px;
      align-items: start;
    }

    .desktop-preview {
      background: var(--paper);
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .browser-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 50px;
      padding: 0 18px;
      background: var(--ink);
      color: rgba(250,244,236,.82);
      font-size: 13px;
      font-weight: 800;
    }

    .dots {
      display: flex;
      gap: 7px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(250,244,236,.28);
    }

    .desktop-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
      gap: 30px;
      padding: 38px;
      color: var(--paper);
      background:
        radial-gradient(circle at 84% 8%, rgba(190, 138, 30, .22), transparent 25%),
        linear-gradient(125deg, rgba(42, 24, 16, .98) 0%, rgba(92, 58, 30, .94) 50%, rgba(42, 24, 16, .98) 100%);
    }

    .urgency-strip {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      border-radius: 999px;
      padding: 9px 12px;
      background: rgba(250,244,236,.12);
      border: 1px solid rgba(250,244,236,.22);
      color: var(--paper-2);
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 14px;
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 0 5px rgba(190, 138, 30, .18);
    }

    .desktop-hero h2 {
      margin: 0 0 14px;
      font-size: clamp(38px, 5vw, 72px);
      line-height: .94;
      letter-spacing: 0;
    }

    .desktop-hero p {
      margin: 0 0 18px;
      color: rgba(250,244,236,.86);
      font-size: 18px;
      line-height: 1.5;
      max-width: 660px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin: 18px 0;
    }

    .hero-point {
      border-radius: 14px;
      padding: 12px;
      background: rgba(250,244,236,.10);
      border: 1px solid rgba(250,244,236,.16);
      font-size: 14px;
      line-height: 1.35;
      font-weight: 800;
    }

    .desktop-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-top: 20px;
    }

    .main-cta {
      border-radius: 15px;
      background: linear-gradient(90deg, var(--red), var(--red-dark));
      color: var(--paper);
      font-weight: 950;
      padding: 16px 20px;
      box-shadow: 0 14px 35px rgba(201, 40, 93, .28);
      white-space: nowrap;
    }

    .secondary-proof {
      color: var(--paper-2);
      font-size: 13px;
      line-height: 1.35;
      font-weight: 800;
    }

    .hero-media {
      display: grid;
      grid-template-rows: 1fr auto;
      gap: 12px;
    }

    .video-frame {
      min-height: 410px;
      border-radius: 24px;
      border: 1px solid rgba(250,244,236,.24);
      background:
        linear-gradient(180deg, rgba(42,24,16,.04), rgba(42,24,16,.38)),
        repeating-linear-gradient(135deg, rgba(250,244,236,.14) 0 1px, transparent 1px 20px),
        rgba(250,244,236,.10);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 26px;
      font-weight: 950;
      color: var(--paper);
      position: relative;
      overflow: hidden;
    }

    .video-frame::before {
      content: "";
      position: absolute;
      inset: auto 18px 18px 18px;
      height: 84px;
      border-radius: 18px;
      background: rgba(42, 24, 16, .78);
      border: 1px solid rgba(250,244,236,.16);
    }

    .play {
      position: relative;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto 12px;
      background: var(--paper);
      color: var(--red);
      font-size: 28px;
      font-weight: 950;
    }

    .media-caption {
      position: relative;
      max-width: 280px;
      margin: 0 auto;
      line-height: 1.35;
    }

    .trust-badges {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }

    .trust-badge {
      border-radius: 14px;
      padding: 12px 8px;
      text-align: center;
      color: var(--ink);
      background: var(--pink-wash);
      font-size: 12px;
      font-weight: 950;
    }

    .section {
      padding: 34px 38px;
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 22px;
    }

    .section-label {
      margin-bottom: 7px;
      color: var(--red);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 950;
    }

    .section h3 {
      margin: 0;
      font-size: clamp(26px, 3.1vw, 42px);
      line-height: 1;
      letter-spacing: 0;
    }

    .section-note {
      display: none;
    }

    .symptom-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .symptom {
      border-radius: 18px;
      padding: 17px;
      border: 1px solid rgba(201, 40, 93, .18);
      background: var(--pink-wash);
      min-height: 154px;
    }

    .symptom-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--red);
      color: var(--paper);
      font-weight: 950;
      margin-bottom: 12px;
    }

    .symptom strong {
      display: block;
      font-size: 17px;
      line-height: 1.18;
      margin-bottom: 6px;
    }

    .symptom span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.4;
    }

    .danger-band {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
      align-items: stretch;
      border-radius: 22px;
      overflow: hidden;
      background: var(--ink);
      color: var(--paper);
    }

    .danger-copy {
      padding: 28px;
    }

    .danger-copy h3 {
      color: var(--paper);
      margin-bottom: 14px;
    }

    .danger-copy p {
      color: rgba(250,244,236,.82);
      font-size: 16px;
      line-height: 1.55;
      margin: 0 0 18px;
    }

    .risk-list {
      display: grid;
      gap: 10px;
    }

    .risk {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 10px;
      align-items: start;
      border-radius: 14px;
      padding: 12px;
      background: rgba(250,244,236,.08);
      border: 1px solid rgba(250,244,236,.12);
      font-size: 14px;
      line-height: 1.38;
    }

    .risk b {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 11px;
      background: var(--amber);
      color: var(--ink);
    }

    .trigger-collage {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 20px;
      background: rgba(250,244,236,.06);
    }

    .food-card {
      min-height: 142px;
      border-radius: 18px;
      padding: 16px;
      display: flex;
      align-items: end;
      color: var(--paper);
      font-weight: 950;
      line-height: 1.15;
      background:
        linear-gradient(180deg, transparent, rgba(42,24,16,.58)),
        repeating-linear-gradient(135deg, rgba(250,244,236,.12) 0 1px, transparent 1px 18px),
        var(--brown);
    }

    .solution-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .product-feature {
      border-radius: 22px;
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 18px;
      box-shadow: 0 14px 32px rgba(42, 24, 16, .07);
    }

    .product-visual {
      height: 250px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--brown);
      font-weight: 950;
      background:
        radial-gradient(circle at 72% 22%, rgba(190, 138, 30, .30), transparent 26%),
        repeating-linear-gradient(135deg, rgba(92,58,30,.14) 0 1px, transparent 1px 18px),
        var(--paper-2);
      margin-bottom: 16px;
    }

    .product-feature h4 {
      font-size: 22px;
      line-height: 1.05;
      margin: 0 0 8px;
    }

    .product-feature p {
      color: var(--muted);
      line-height: 1.5;
      margin: 0;
      font-size: 15px;
    }

    .proof-stack {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 18px;
    }

    .certificate-wall {
      display: grid;
      gap: 12px;
    }

    .cert-card {
      border-radius: 18px;
      border: 1px solid rgba(92, 58, 30, .18);
      background: var(--pink-wash);
      padding: 18px;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 14px;
      align-items: center;
    }

    .cert-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--teal);
      color: var(--paper);
      font-weight: 950;
    }

    .cert-card strong {
      display: block;
      font-size: 17px;
      margin-bottom: 4px;
    }

    .cert-card span {
      color: var(--muted);
      line-height: 1.4;
      font-size: 14px;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .testimonial {
      min-height: 190px;
      border-radius: 18px;
      padding: 16px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 12px 30px rgba(42, 24, 16, .06);
      display: grid;
      align-content: space-between;
      gap: 18px;
    }

    .chat-lines {
      display: grid;
      gap: 8px;
    }

    .chat-line {
      border-radius: 14px;
      padding: 10px;
      background: var(--paper-2);
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .customer-tag {
      color: var(--teal);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .offer-section {
      background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
    }

    .package-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      align-items: stretch;
    }

    .package {
      position: relative;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 18px;
      box-shadow: 0 12px 32px rgba(42, 24, 16, .06);
    }

    .package.best {
      border: 2px solid var(--red);
      transform: translateY(-10px);
      box-shadow: 0 20px 45px rgba(201, 40, 93, .18);
    }

    .best-ribbon {
      position: absolute;
      top: -13px;
      left: 18px;
      right: 18px;
      border-radius: 999px;
      text-align: center;
      background: linear-gradient(90deg, var(--red), var(--red-dark));
      color: var(--paper);
      padding: 7px 10px;
      font-size: 12px;
      font-weight: 950;
    }

    .package h4 {
      margin: 8px 0 8px;
      font-size: 21px;
      line-height: 1.05;
    }

    .package .small {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
      min-height: 35px;
    }

    .package-price {
      margin: 14px 0 10px;
      color: var(--red);
      font-size: 34px;
      font-weight: 950;
      line-height: 1;
    }

    .old-price {
      color: var(--muted);
      text-decoration: line-through;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .package ul {
      margin: 0 0 16px;
      padding-left: 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .package-cta {
      border-radius: 14px;
      padding: 14px 12px;
      background: var(--ink);
      color: var(--paper);
      text-align: center;
      font-weight: 950;
    }

    .package.best .package-cta {
      background: linear-gradient(90deg, var(--red), var(--red-dark));
    }

    .bonus-strip {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .bonus {
      border-radius: 18px;
      padding: 16px;
      background: var(--paper);
      border: 1px dashed rgba(201, 40, 93, .34);
      font-size: 14px;
      line-height: 1.4;
    }

    .bonus strong {
      display: block;
      color: var(--red);
      font-size: 15px;
      margin-bottom: 4px;
    }

    .faq-list {
      display: grid;
      gap: 10px;
    }

    .faq {
      border-radius: 16px;
      padding: 16px 18px;
      background: var(--paper);
      border: 1px solid var(--line);
    }

    .faq strong {
      display: block;
      margin-bottom: 6px;
      font-size: 16px;
    }

    .faq span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .final-cta {
      text-align: center;
      padding: 44px 38px 48px;
      color: var(--paper);
      background:
        radial-gradient(circle at 78% 0%, rgba(190,138,30,.22), transparent 24%),
        linear-gradient(135deg, var(--ink), var(--brown));
    }

    .final-cta h3 {
      margin: 0 auto 12px;
      max-width: 820px;
      color: var(--paper);
      font-size: clamp(30px, 4vw, 54px);
      line-height: 1;
    }

    .final-cta p {
      max-width: 680px;
      margin: 0 auto 20px;
      color: rgba(250,244,236,.82);
      line-height: 1.55;
      font-size: 17px;
    }

    .mobile-panel {
      position: sticky;
      top: 18px;
    }

    .phone {
      border: 12px solid var(--ink);
      border-radius: 38px;
      overflow: hidden;
      background: var(--paper);
      box-shadow: var(--shadow);
      max-height: calc(100vh - 36px);
      overflow-y: auto;
    }

    .phone::-webkit-scrollbar {
      width: 0;
    }

    .m-top-alert {
      background: var(--ink);
      color: var(--paper-2);
      font-size: 11px;
      font-weight: 950;
      text-align: center;
      padding: 8px;
    }

    .m-hero {
      color: var(--paper);
      padding: 18px;
      background:
        radial-gradient(circle at 88% 8%, rgba(190,138,30,.22), transparent 25%),
        linear-gradient(155deg, var(--ink) 0%, var(--brown) 52%, var(--ink) 100%);
    }

    .m-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      font-weight: 950;
      margin-bottom: 16px;
    }

    .m-pill {
      border-radius: 999px;
      padding: 7px 9px;
      background: rgba(250,244,236,.14);
      border: 1px solid rgba(250,244,236,.18);
    }

    .m-eyebrow {
      display: inline-flex;
      gap: 7px;
      align-items: center;
      border-radius: 999px;
      background: rgba(250,244,236,.13);
      color: var(--paper-2);
      padding: 8px 10px;
      font-size: 11px;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .m-hero h2 {
      margin: 0 0 10px;
      font-size: 34px;
      line-height: .96;
      letter-spacing: 0;
    }

    .m-hero p {
      margin: 0 0 14px;
      color: rgba(250,244,236,.86);
      line-height: 1.42;
      font-size: 14px;
    }

    .m-video {
      height: 236px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 18px;
      color: var(--paper);
      font-weight: 950;
      line-height: 1.35;
      background:
        linear-gradient(180deg, rgba(42,24,16,.02), rgba(42,24,16,.34)),
        repeating-linear-gradient(135deg, rgba(250,244,236,.16) 0 1px, transparent 1px 18px),
        rgba(250,244,236,.10);
      border: 1px solid rgba(250,244,236,.2);
    }

    .m-cta {
      display: block;
      margin-top: 14px;
      border-radius: 14px;
      padding: 14px;
      background: linear-gradient(90deg, var(--red), var(--red-dark));
      color: var(--paper);
      text-align: center;
      font-size: 14px;
      font-weight: 950;
    }

    .m-proof {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
      padding: 10px 12px;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
    }

    .m-proof div {
      border-radius: 10px;
      padding: 8px 4px;
      text-align: center;
      background: var(--paper-2);
      font-size: 10px;
      font-weight: 950;
      color: var(--teal);
      border: 1px solid rgba(92,58,30,.15);
    }

    .m-section {
      padding: 18px;
      background: var(--paper-2);
      border-bottom: 1px solid var(--line);
    }

    .m-section:nth-child(even) {
      background: var(--paper);
    }

    .m-label {
      color: var(--red);
      text-transform: uppercase;
      font-size: 10px;
      letter-spacing: .08em;
      font-weight: 950;
      margin-bottom: 7px;
    }

    .m-section h3 {
      margin: 0 0 12px;
      font-size: 23px;
      line-height: 1.04;
      letter-spacing: 0;
    }

    .m-pain-list,
    .m-card-list {
      display: grid;
      gap: 8px;
    }

    .m-pain,
    .m-card {
      border-radius: 14px;
      padding: 12px;
      background: var(--paper);
      border: 1px solid var(--line);
      font-size: 13px;
      line-height: 1.35;
    }

    .m-pain {
      background: var(--pink-wash);
      border-color: rgba(201, 40, 93, .18);
    }

    .m-pain strong,
    .m-card strong {
      display: block;
      margin-bottom: 4px;
      font-size: 14px;
      color: var(--ink);
    }

    .m-dark {
      color: var(--paper);
      background:
        radial-gradient(circle at 80% 0%, rgba(190,138,30,.22), transparent 28%),
        var(--ink);
    }

    .m-dark .m-label {
      color: var(--amber);
    }

    .m-dark h3 {
      color: var(--paper);
    }

    .m-dark .m-card {
      background: rgba(250,244,236,.08);
      border-color: rgba(250,244,236,.14);
      color: rgba(250,244,236,.82);
    }

    .m-dark .m-card strong {
      color: var(--paper);
    }

    .m-product-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .m-product {
      border-radius: 15px;
      padding: 10px;
      background: var(--paper);
      border: 1px solid var(--line);
    }

    .m-product-img {
      height: 105px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      text-align: center;
      font-size: 11px;
      font-weight: 950;
      color: var(--brown);
      background:
        repeating-linear-gradient(135deg, rgba(92,58,30,.12) 0 1px, transparent 1px 16px),
        var(--paper-2);
      margin-bottom: 9px;
    }

    .m-product strong {
      display: block;
      font-size: 13px;
      line-height: 1.15;
      margin-bottom: 4px;
    }

    .m-product span {
      color: var(--muted);
      font-size: 11px;
      line-height: 1.32;
    }

    .m-cert-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .m-cert {
      border-radius: 14px;
      padding: 12px;
      background: var(--pink-wash);
      border: 1px solid rgba(92,58,30,.18);
      color: var(--teal);
      font-weight: 950;
      font-size: 12px;
      min-height: 82px;
    }

    .m-review {
      min-height: 112px;
      border-radius: 14px;
      background: var(--paper);
      border: 1px solid var(--line);
      padding: 12px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .m-package {
      border-radius: 18px;
      padding: 14px;
      background: var(--paper);
      border: 1px solid var(--line);
      margin-bottom: 10px;
    }

    .m-package.best {
      border: 2px solid var(--red);
      box-shadow: 0 12px 26px rgba(201, 40, 93, .14);
    }

    .m-ribbon {
      display: inline-block;
      border-radius: 999px;
      padding: 6px 9px;
      background: linear-gradient(90deg, var(--red), var(--red-dark));
      color: var(--paper);
      font-size: 10px;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .m-package h4 {
      margin: 0 0 4px;
      font-size: 18px;
      line-height: 1.1;
    }

    .m-price {
      color: var(--red);
      font-size: 28px;
      font-weight: 950;
      margin: 8px 0;
    }

    .m-package ul {
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

    .m-faq {
      border-radius: 14px;
      background: var(--paper);
      border: 1px solid var(--line);
      padding: 12px;
      font-size: 12px;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .m-faq strong {
      display: block;
      font-size: 13px;
      margin-bottom: 4px;
    }

    .m-sticky {
      position: sticky;
      bottom: 0;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 10px 12px;
      background: rgba(250, 244, 236, .96);
      border-top: 1px solid var(--line);
      box-shadow: 0 -12px 24px rgba(42,24,16,.08);
    }

    .m-sticky strong {
      display: block;
      font-size: 12px;
      line-height: 1.2;
    }

    .m-sticky span {
      color: var(--muted);
      font-size: 10px;
    }

    .m-sticky-btn {
      border-radius: 12px;
      padding: 11px 12px;
      background: linear-gradient(90deg, var(--red), var(--red-dark));
      color: var(--paper);
      font-size: 12px;
      font-weight: 950;
      white-space: nowrap;
    }

    .asset-map {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .asset {
      background: rgba(250,244,236,.84);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 12px 30px rgba(42,24,16,.06);
    }

    .asset strong {
      display: block;
      margin-bottom: 6px;
      font-size: 15px;
    }

    .asset span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    @media (max-width: 1220px) {
      .workbench,
      .top-brief {
        grid-template-columns: 1fr;
      }

      .mobile-panel {
        position: static;
      }

      .phone {
        max-height: none;
      }
    }

    @media (max-width: 850px) {
      .desktop-hero,
      .danger-band,
      .solution-grid,
      .proof-stack,
      .package-grid,
      .bonus-strip,
      .asset-map {
        grid-template-columns: 1fr;
      }

      .symptom-grid,
      .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-head {
        display: block;
      }

      .section-note {
        margin-top: 10px;
      }

      .package.best {
        transform: none;
      }
    }

    @media (max-width: 560px) {
      .page-shell {
        width: min(100% - 18px, 1480px);
      }

      .desktop-hero,
      .section,
      .final-cta {
        padding: 24px 18px;
      }

      .hero-points,
      .symptom-grid,
      .testimonial-grid,
      .trust-badges {
        grid-template-columns: 1fr;
      }
    }
