:root {
      /* goadsindia.co.in brand palette */
      --site-black: #000000;
      --site-white: #ffffff;
      --site-yellow: #FFC107;
      --site-purple: #6754E9;
      --site-nav-hover: #E8A33D;
      --site-red: #FF0000;
      --site-border: #E8E8E8;
      --site-muted: #5B647A;

      --bg: var(--site-white);
      --bg-2: #FAFAFA;
      --ink: var(--site-black);
      --ink-2: #1B1B1B;
      --muted: var(--site-muted);
      --line: #EEEEEE;
      --line-strong: var(--site-border);
      --amber: var(--site-yellow);
      --amber-deep: #E8A33D;
      --paper: var(--site-white);
      --navy: var(--site-black);
      --bad: #CF2E2E;
      --bad-bg: #FBF2F0;
      --good: #1F7A4D;
      --good-bg: #F0F7F2;
      --page-x: clamp(16px, 4vw, 36px);
      --col: 1200px;
      --nav-h: 80px;
      --header-max: 1280px;
    }

    * {
      box-sizing: border-box
    }

    html,
    body {
      margin: 0;
      padding: 0
    }

    html {
      overflow-x: hidden;
    }

    body {
      font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--ink);
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    .serif {
      font-family: "Instrument Serif", "Times New Roman", serif;
      font-weight: 400;
    }

    .mono {
      font-family: "JetBrains Mono", ui-monospace, monospace;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    ::selection {
      background: var(--site-yellow);
      color: var(--site-black);
    }

    .wrap {
      width: 100%;
      max-width: calc(var(--col) + var(--page-x) * 2);
      margin: 0 auto;
      padding: 0 var(--page-x);
    }

    .wide {
      width: 100%;
      max-width: calc(1200px + var(--page-x) * 2);
      margin: 0 auto;
      padding: 0 var(--page-x);
    }

    /* MAIN SITE NAV (goadsindia.co.in) */
    .nav {
      border-bottom: 1px solid var(--site-border);
      position: sticky;
      top: 0;
      z-index: 35;
      background: var(--site-white);
      overflow: visible;
    }

    .nav-shell {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: clamp(16px, 3vw, 40px);
      min-height: var(--nav-h);
      max-width: var(--header-max);
      margin: 0 auto;
      padding: 0 clamp(20px, 3vw, 40px);
    }

    .brand {
      display: flex;
      align-items: center;
      text-decoration: none;
      line-height: 0;
      flex-shrink: 0;
    }

    .brand-logo {
      display: block;
      height: 48px;
      width: auto;
      max-width: min(196px, 40vw);
      object-fit: contain;
      object-position: left center;
    }

    .nav-links {
      grid-column: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(18px, 2.5vw, 36px);
      flex-wrap: nowrap;
      overflow: visible;
    }

    #site-nav .nav-links>a,
    #site-nav .nav-item>.nav-parent {
      color: #000000;
      text-decoration: none;
      font-family: "Inter Tight", system-ui, sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: transparent;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 0;
      white-space: nowrap;
      position: relative;
      transition: color .2s ease;
      box-shadow: inset 0 -2px 0 transparent;
      -webkit-appearance: none;
      appearance: none;
    }

    #site-nav .nav-links>a:link,
    #site-nav .nav-links>a:visited,
    #site-nav .nav-item>.nav-parent {
      color: #000000;
    }

    #site-nav .nav-links>a:hover,
    #site-nav .nav-links>a:focus-visible,
    #site-nav .nav-item:hover>.nav-parent,
    #site-nav .nav-item:focus-within>.nav-parent,
    #site-nav .nav-item>.nav-parent:hover {
      color: #E8A33D !important;
      -webkit-text-fill-color: #E8A33D;
      box-shadow: inset 0 -2px 0 transparent;
    }

    #site-nav .nav-links>a.is-active,
    #site-nav .nav-item>.nav-parent.is-active {
      color: #000000;
      -webkit-text-fill-color: #000000;
      box-shadow: inset 0 -2px 0 var(--site-red);
    }

    #site-nav .nav-links>a.is-active:hover,
    #site-nav .nav-links>a.is-active:focus-visible {
      color: #E8A33D !important;
      -webkit-text-fill-color: #E8A33D;
      box-shadow: inset 0 -2px 0 transparent;
    }

    @media (min-width:901px) {
      .nav-item .caret {
        display: none;
      }
    }

    @media (min-width:901px) and (max-width:1140px) {
      .nav-links {
        gap: 14px;
      }

      .nav-links>a,
      .nav-item>.nav-parent {
        font-size: 10.5px;
        letter-spacing: 0.1em;
      }

      .nav-main-btn {
        font-size: 10px;
        padding: 10px 18px;
      }
    }

    .nav-item {
      position: relative;
    }

    .nav-item .caret {
      font-size: 10px;
      opacity: 0.65;
      transition: transform .2s;
    }

    .nav-item.is-open .caret {
      transform: rotate(180deg);
    }

    /* invisible bridge so mouse can reach dropdown without closing */
    @media (min-width:901px) {
      .nav-item.has-dropdown::after {
        content: "";
        position: absolute;
        left: -24px;
        right: -24px;
        top: 100%;
        height: 18px;
      }
    }

    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      min-width: 260px;
      padding: 14px 10px 10px;
      background: var(--site-white);
      border: 1px solid var(--site-border);
      border-radius: 14px;
      box-shadow: 0 20px 48px -24px rgba(11, 27, 51, 0.22);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .18s ease, visibility .18s ease;
      z-index: 100;
    }

    .nav-dropdown::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 8px;
      width: 12px;
      height: 12px;
      background: var(--site-white);
      border-left: 1px solid var(--site-border);
      border-top: 1px solid var(--site-border);
      transform: translateX(-50%) rotate(45deg);
      pointer-events: none;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown,
    .nav-item.is-dropdown-open .nav-dropdown,
    .nav-item.is-open .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%);
    }

    .nav-dropdown a {
      position: relative;
      z-index: 1;
      display: block;
      padding: 10px 12px;
      border-radius: 10px;
      color: var(--site-black);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.35;
      text-transform: none;
      letter-spacing: 0;
      cursor: pointer;
      transition: color .2s ease, background .2s ease;
    }

    #site-nav .nav-dropdown a:hover,
    #site-nav .nav-dropdown a:focus-visible {
      background: var(--bg-2);
      color: #E8A33D !important;
      -webkit-text-fill-color: #E8A33D;
    }

    .nav-main-btn {
      grid-column: 3;
      background: var(--site-black);
      color: var(--site-white) !important;
      padding: 11px 24px;
      border-radius: 50px;
      font-family: "Inter Tight", system-ui, sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      flex-shrink: 0;
      justify-self: end;
      transition: background .25s ease, color .25s ease;
    }

    .nav-main-btn .arr {
      font-size: 14px;
      line-height: 1;
      letter-spacing: 0;
      color: var(--site-white);
    }

    .nav-main-btn:hover {
      background: #E8A33D;
      color: var(--site-white) !important
    }

    .nav-main-btn--menu {
      display: none;
    }

    .nav-toggle {
      display: none;
      grid-column: 3;
      justify-self: end;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid var(--line-strong);
      border-radius: 10px;
      background: var(--paper);
      color: var(--ink);
      cursor: pointer;
      flex-shrink: 0;
    }

    .nav-toggle svg {
      display: block;
      width: 20px;
      height: 20px;
    }

    .nav-toggle .icon-close {
      display: none;
    }

    .nav.is-open .nav-toggle .icon-menu {
      display: none;
    }

    .nav.is-open .nav-toggle .icon-close {
      display: block;
    }

    body.nav-menu-open {
      overflow: hidden;
    }

    html.nav-menu-open {
      overflow: hidden;
    }

    @media (max-width:900px) {

      html.nav-menu-open,
      body.nav-menu-open {
        overflow: hidden;
        height: 100%;
        overscroll-behavior: none;
        touch-action: none;
      }
    }

    .progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: var(--site-yellow);
      width: 0;
      z-index: 40;
      transition: width .1s linear;
    }

    /* ARTICLE HEADER */
    .art-head {
      padding: 68px 0 44px;
      border-bottom: 1px solid var(--line);
    }

    .art-head .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: "JetBrains Mono", monospace;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--site-black);
      border: 1px solid var(--site-border);
      border-radius: 999px;
      padding: 6px 14px;
      background: var(--bg-2);
    }

    .art-head .kicker .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--site-yellow);
    }

    .art-head h1 {
      font-family: "Instrument Serif", serif;
      font-weight: 400;
      font-size: clamp(34px, 5.4vw, 64px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      margin: 24px 0 0;
      text-wrap: balance;
    }

    .art-head h1 .ital {
      font-style: italic;
      color: var(--amber-deep);
    }

    /* editorial gold */
    .art-head .byline {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 28px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      font-size: 14px;
      color: var(--muted);
    }

    .art-head .byline .who {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      font-weight: 500;
    }

    .art-head .byline .av {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      display: grid;
      place-items: center;
      font-family: "Instrument Serif", serif;
      font-size: 15px;
    }

    .art-head .deck {
      font-size: 16px;
      line-height: 1.65;
      color: var(--muted);
      margin: 18px 0 0;
      max-width: 62ch;
    }

    main {
      padding: 48px 0 20px;
    }

    .art p {
      margin: 0 0 22px;
      color: var(--ink-2);
    }

    .art p strong {
      color: var(--ink);
      font-weight: 600;
    }

    .art .lede {
      font-family: "Instrument Serif", serif;
      font-size: clamp(22px, 2.9vw, 28px);
      line-height: 1.34;
      color: var(--ink);
      margin: 0 0 30px;
      letter-spacing: -0.01em;
    }

    .art .lede .amber {
      color: var(--amber-deep);
      font-style: italic;
    }

    .art h2 {
      font-family: "Instrument Serif", serif;
      font-weight: 400;
      font-size: clamp(26px, 3.6vw, 40px);
      line-height: 1.08;
      letter-spacing: -0.015em;
      margin: 50px 0 18px;
      text-wrap: balance;
    }

    .art h2 .ital {
      font-style: italic;
      color: var(--amber-deep);
    }

    .art p.first::first-letter {
      font-family: "Instrument Serif", serif;
      float: left;
      font-size: 62px;
      line-height: 0.7;
      padding: 8px 12px 0 0;
      color: var(--amber-deep);
    }

    /* experience callout */
    .from-us {
      position: relative;
      margin: 36px 0 44px;
      padding: 28px 28px 30px 32px;
      background: linear-gradient(145deg, #FFFCF3 0%, #F7F7F4 55%, #FFFFFF 100%);
      border: 1px solid #EDE8DA;
      border-left: 5px solid var(--site-yellow);
      border-radius: 18px;
      box-shadow: 0 10px 36px -22px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .from-us::after {
      content: "";
      position: absolute;
      top: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 193, 7, 0.22) 0%, transparent 70%);
      pointer-events: none;
    }

    .from-us .lbl {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      padding: 6px 14px 6px 10px;
      border-radius: 999px;
      background: rgba(255, 193, 7, 0.18);
      border: 1px solid rgba(232, 163, 61, 0.35);
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #7A5A12;
    }

    .from-us .lbl::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--site-yellow);
      box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.35);
    }

    .from-us p {
      position: relative;
      z-index: 1;
      margin: 0;
      font-family: "Instrument Serif", serif;
      font-size: clamp(18px, 2.2vw, 21px);
      line-height: 1.45;
      letter-spacing: -0.01em;
      color: var(--ink-2);
    }

    .from-us p em {
      font-style: italic;
      color: var(--amber-deep);
    }

    /* platforms section */
    .platforms-section {
      margin-top: 12px;
    }

    .platforms-section>h2 {
      margin-bottom: 10px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--site-border);
    }

    .platforms-intro {
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink-2);
      margin: 0 0 26px;
      max-width: 62ch;
    }

    .platform-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin: 0 0 10px;
    }

    .platform-card {
      padding: 22px 24px 24px;
      background: var(--site-white);
      border: 1px solid var(--site-border);
      border-radius: 16px;
      box-shadow: 0 6px 22px -16px rgba(0, 0, 0, 0.09);
      transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
    }

    .platform-card:hover {
      border-color: #fcda67;
      box-shadow: 0 12px 30px -14px rgb(255 197 1 / 21%);
      transform: translateY(-2px);
    }

    .platform-card .plat-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--site-black);
    }

    .platform-card .plat-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #eb3535;
      flex-shrink: 0;
    }

    .platform-card h3 {
      font-family: "Inter Tight", sans-serif;
      font-size: 17px;
      font-weight: 600;
      line-height: 1.35;
      margin: 0 0 10px;
      color: var(--site-black);
    }

    .platform-card p {
      margin: 0;
      font-size: 15px;
      line-height: 1.65;
      color: var(--site-muted);
    }

    .platform-card p strong {
      color: var(--site-black);
      font-weight: 600;
    }

    @media (min-width:720px) {
      .platform-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        align-items: stretch;
      }

      .platform-card {
        padding: 24px 22px 26px;
      }
    }

    /* rewrite pairs */
    .rewrites {
      margin: 40px 0 10px;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .rw {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      background: var(--site-white);
      border: 1px solid var(--site-border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 32px -20px rgba(0, 0, 0, 0.12);
      transition: box-shadow .25s ease, transform .25s ease;
    }

    .rw:hover {
      box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.14);
      transform: translateY(-2px);
    }

    .rw .rw-bad,
    .rw .rw-good {
      padding: 22px 24px 24px;
      position: relative;
    }

    .rw .rw-bad {
      background: linear-gradient(135deg, #FFF6F5 0%, #FFEFED 100%);
      border-bottom: 1px solid #F0D8D4;
      border-left: 4px solid #C0392B;
    }

    .rw .rw-good {
      background: linear-gradient(135deg, #F6FBF8 0%, #EDF7F1 100%);
      border-left: 4px solid #1F7A4D;
    }

    .rw .rw-mid {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 0;
      background: var(--site-white);
      border-top: 1px solid var(--site-border);
      border-bottom: 1px solid var(--site-border);
    }

    .rw .rw-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--site-black);
      color: var(--site-white);
      font-size: 16px;
      font-weight: 600;
      line-height: 1;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .rw .tag {
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      padding: 5px 10px 5px 6px;
      border-radius: 999px;
      font-weight: 500;
    }

    .rw .rw-bad .tag {
      color: #9B2C24;
      background: rgba(192, 57, 43, 0.1);
    }

    .rw .rw-good .tag {
      color: #166534;
      background: rgba(31, 122, 77, 0.1);
    }

    .rw .tag .ic {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 9px;
      color: #fff;
      flex-shrink: 0;
      font-weight: 700;
    }

    .rw .rw-bad .tag .ic {
      background: #C0392B;
    }

    .rw .rw-good .tag .ic {
      background: #1F7A4D;
    }

    .rw .copy {
      font-family: "Inter Tight", sans-serif;
      font-size: clamp(14px, 1.6vw, 16px);
      line-height: 1.5;
      letter-spacing: 0;
      margin: 0;
    }

    .rw .rw-bad .copy {
      color: #5C221C;
    }

    .rw .rw-good .copy {
      color: #0F2E1E;
    }

    @media (min-width:760px) {
      .rewrites {
        gap: 18px;
      }

      .rw {
        grid-template-columns: 1fr 40px 1fr;
        align-items: stretch;
      }

      .rw .rw-bad {
        border-bottom: none;
        border-right: 1px solid #F0D8D4;
        border-left: 3px solid #C0392B;
        padding: 18px 20px;
      }

      .rw .rw-good {
        border-left: 3px solid #1F7A4D;
        padding: 18px 20px;
      }

      .rw .rw-mid {
        padding: 0;
        border-top: none;
        border-bottom: none;
        border-left: 1px solid var(--site-border);
        border-right: 1px solid var(--site-border);
        background: linear-gradient(180deg, #FFF6F5 0%, #EDF7F1 100%);
      }

      .rw .rw-arrow {
        width: 32px;
        height: 32px;
        font-size: 15px;
      }
    }

    /* checklist */
    .checklist-section {
      margin-top: 8px;
    }

    .checklist-section>h2 {
      margin-bottom: 12px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--site-border);
    }

    .checklist-intro {
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink-2);
      margin: 0 0 28px;
      max-width: 58ch;
    }

    .checklist {
      margin: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .ck {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 18px;
      align-items: start;
      padding: 22px 22px 24px;
      background: var(--site-white);
      border: 1px solid var(--site-border);
      border-radius: 16px;
      box-shadow: 0 6px 24px -16px rgba(0, 0, 0, 0.1);
      transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
    }

    .ck:hover {
      border-color: #E8D4A8;
      box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.12);
      transform: translateY(-2px);
    }

    .ck .box {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--site-black);
      color: var(--site-yellow);
      display: grid;
      place-items: center;
      font-family: "JetBrains Mono", monospace;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .ck-body {
      min-width: 0;
    }

    .ck h3 {
      font-family: "Inter Tight", sans-serif;
      font-size: 17px;
      font-weight: 600;
      line-height: 1.35;
      margin: 0 0 8px;
      color: var(--site-black);
    }

    .ck p {
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
      color: var(--site-muted);
    }

    @media (min-width:720px) {
      .checklist {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .ck {
        padding: 24px 26px 26px;
      }

      .ck h3 {
        font-size: 18px;
      }
    }

    /* closing CTA */
    .final {
      background: var(--bg-2);
      border-top: 1px solid var(--line);
    }

    .final .wrap {
      padding-top: 52px;
      padding-bottom: 56px;
    }

    .final blockquote {
      margin: 0 0 18px;
      font-family: "Instrument Serif", serif;
      font-weight: 400;
      font-size: clamp(24px, 3.2vw, 34px);
      line-height: 1.28;
      letter-spacing: -0.01em;
      color: var(--ink);
    }

    .final blockquote .amber {
      color: var(--amber-deep);
      font-style: italic;
    }

    .final p {
      color: var(--ink-2);
      margin: 0;
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 36px 0 0;
      padding-top: 28px;
      border-top: 1px solid var(--line);
    }

    .tag {
      font-family: "JetBrains Mono", monospace;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      background: var(--bg-2);
      border: 1px solid var(--site-border);
      padding: 5px 10px;
      border-radius: 999px;
    }

    .art-foot {
      font-size: 13px;
      font-style: italic;
      line-height: 1.7;
      color: var(--muted);
      margin: 28px 0 0;
    }

    .cta-band .btn-ghost {
      display: inline-flex;
      align-items: center;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color .2s ease;
    }

    .cta-band .btn-ghost:hover {
      color: var(--site-yellow);
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }

    .cta-band {
      background: var(--site-black);
      color: var(--site-white);
    }

    .cta-band .wide {
      padding: 54px var(--page-x);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
      margin: 0 auto;
    }

    .cta-band h3 {
      font-family: "Instrument Serif", serif;
      font-weight: 400;
      font-size: clamp(26px, 3.4vw, 38px);
      line-height: 1.08;
      margin: 0;
      max-width: none;
    }

    .cta-band .cta-desc {
      font-size: 15px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.55);
      margin: 10px 0 0;
      max-width: 42ch;
    }

    .cta-band .cta-copy {
      flex: 1;
      min-width: min(100%, 320px);
    }

    .cta-band h3 .ital {
      font-style: italic;
      color: var(--site-yellow);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: #ffc501;
      color: var(--site-black);
      border: 2px solid #ffc501;
      transition: background .25s, color .25s, border-color .25s, transform .2s;
    }

    .btn:hover {
      background: #ffc501;
      border-color: #ffc501;
      color: var(--site-white);
      transform: translateY(-2px);
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--site-black);
      color: var(--site-white);
      border: 2px solid var(--site-black);
      transition: background .25s, color .25s, border-color .25s;
    }

    .hero-btn:hover {
      background: #E8A33D;
      border-color: #E8A33D;
      color: var(--site-white);
    }

    .footer-sitemap-section {
      background: var(--site-black);
      color: #ffffff;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: clamp(28px, 3.5vw, 36px) 0 clamp(18px, 3vw, 18px);
    }

    .footer-sitemap-section .wide {
      max-width: var(--header-max);
      margin: 0 auto;
      padding-left: clamp(20px, 3vw, 40px);
      padding-right: clamp(20px, 3vw, 40px);
    }

    .footer-sitemap-title {
      margin: 0 0 16px;
      font-family: "JetBrains Mono", monospace;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.2;
    }

    .footer-sitemap-row {
      margin: 0 0 20px;
    }

    .footer-sitemap-cols {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px clamp(20px, 2.5vw, 32px);
      align-items: start;
    }

    .footer-sol-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 0;
    }

    .footer-sol-col a {
      color: rgba(255, 255, 255, 0.88);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.35;
      transition: color .2s ease;
    }

    .footer-sol-col a:hover {
      color: var(--site-yellow);
    }

    .footer-sitemap-industry {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      align-items: stretch;
      width: 100%;
      margin: 0;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 4px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.04);
    }

    .footer-sitemap-industry a {
      min-width: 0;
      margin: 0;
      padding: 12px clamp(6px, 1vw, 12px);
      display: flex;
      align-items: center;
      justify-content: center;
      border-right: 1px solid rgba(255, 255, 255, 0.14);
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.78);
      text-decoration: none;
      font-size: clamp(10px, 1vw, 13px);
      font-weight: 500;
      letter-spacing: 0.06em;
      line-height: 1.3;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: color .2s ease, background .2s ease;
    }

    .footer-sitemap-industry a:nth-child(7n) {
      border-right: none;
    }

    .footer-sitemap-industry a:nth-last-child(-n+6) {
      border-bottom: none;
    }

    .footer-sitemap-industry a:last-child:nth-child(7n+6) {
      border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .footer-sitemap-industry a:hover:not(.is-current) {
      color: var(--site-yellow);
      background: rgba(255, 255, 255, 0.06);
    }

    .footer-sitemap-industry a.is-current,
    .footer-sitemap-industry a.is-current:hover,
    .footer-sitemap-industry a.is-current:focus {
      color: var(--site-black);
      font-weight: 600;
      background: var(--site-yellow);
    }

    .footer-copy {
      margin: 20px 0 0;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      text-align: center;
    }

    @media (max-width:900px) {
      #site-nav .nav-shell {
        grid-template-columns: auto 1fr auto;
      }

      #site-nav .nav-toggle {
        display: flex;
      }

      #site-nav .nav-main-btn--header {
        display: none;
      }

      #site-nav .nav-main-btn--menu {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
        padding: 14px 22px;
      }

      #site-nav .nav-links {
        grid-column: 1 / -1;
        position: fixed;
        left: 0;
        right: 0;
        top: var(--nav-h);
        z-index: 34;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0;
        padding: 8px 20px 28px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(140%) blur(14px);
        -webkit-backdrop-filter: saturate(140%) blur(14px);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 40px -24px rgba(11, 27, 51, 0.2);
        max-height: calc(100dvh - var(--nav-h));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
      }

      #site-nav.is-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      #site-nav .nav-links>a,
      #site-nav .nav-item>.nav-parent {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
        font-size: 12px;
        letter-spacing: 0.1em;
        white-space: normal;
      }

      #site-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--line);
      }

      #site-nav .nav-item>.nav-parent {
        border-bottom: none;
      }

      #site-nav .nav-item .caret {
        display: inline;
      }

      #site-nav .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 8px 16px;
        min-width: 0;
        display: none;
      }

      #site-nav .nav-dropdown::before {
        display: none;
      }

      #site-nav .nav-item.is-open .nav-dropdown {
        display: block;
      }

      #site-nav .nav-dropdown a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px dashed var(--line);
        border-radius: 0;
        font-size: 14px;
        text-transform: none;
        letter-spacing: 0;
      }

      #site-nav .nav-dropdown a:last-child {
        border-bottom: none;
      }
    }

    @media (max-width:640px) {
      body {
        font-size: 16px;
      }

      .nav-shell {
        padding: 0 14px;
      }

      .brand-logo {
        height: 42px;
        max-width: 150px;
      }

      #site-nav .nav-links {
        padding: 8px 16px 24px;
      }

      .art-head {
        padding: 38px 0 28px;
      }

      .art-head .kicker {
        font-size: 10px;
        letter-spacing: 0.08em;
        line-height: 1.45;
        white-space: normal;
        padding: 7px 10px;
      }

      .art-head h1 {
        margin-top: 16px;
        font-size: clamp(28px, 9.5vw, 6px);
      }

      .art-head .byline {
        gap: 10px 16px;
        margin-top: 18px;
        padding-top: 14px;
        font-size: 13px;
      }

      main {
        padding: 32px 0 12px;
      }

      .art p {
        margin-bottom: 18px;
      }

      .art .lede {
        font-size: 24px;
        line-height: 1.35;
        margin-bottom: 22px;
      }

      .art h2 {
        margin: 34px 0 14px;
        line-height: 1.15;
      }

      .art p.first::first-letter {
        font-size: 48px;
        padding: 6px 8px 0 0;
      }

      .from-us {
        margin: 26px 0 30px;
        padding: 20px 16px 22px 18px;
        border-radius: 14px;
      }

      .from-us .lbl {
        font-size: 9px;
        letter-spacing: 0.11em;
        margin-bottom: 10px;
      }

      .from-us p {
        font-size: 18px;
        line-height: 1.5;
      }

      .platforms-intro,
      .checklist-intro {
        font-size: 15px;
        margin-bottom: 20px;
      }

      .platform-cards {
        gap: 12px;
      }

      .platform-card {
        padding: 18px 16px 20px;
        border-radius: 14px;
      }

      .platform-card h3 {
        font-size: 16px;
      }

      .platform-card p {
        font-size: 14px;
        line-height: 1.6;
      }

      .rewrites {
        margin: 22px auto 6px;
        gap: 12px;
      }

      .rw {
        border-radius: 12px;
      }

      .rw .rw-bad,
      .rw .rw-good {
        padding: 14px 14px 16px;
      }

      .rw .copy {
        font-size: 14px;
        line-height: 1.45;
      }

      .rw .rw-mid {
        padding: 6px 0;
      }

      .rw .rw-arrow {
        width: 28px;
        height: 28px;
        font-size: 13px;
      }

      .ck {
        grid-template-columns: 40px 1fr;
        gap: 14px;
        padding: 18px 16px 20px;
      }

      .ck .box {
        width: 40px;
        height: 40px;
        font-size: 12px;
      }

      .ck h3 {
        font-size: 16px;
      }

      .ck p {
        font-size: 14px;
      }

      .final .wrap {
        padding-top: 36px;
        padding-bottom: 38px;
      }

      .final blockquote {
        font-size: 30px;
        line-height: 1.3;
      }

      .cta-band .wide {
        padding-top: 36px;
        padding-bottom: 36px;
        gap: 18px;
        justify-content: flex-start;
      }

      .cta-band h3 {
        font-size: 30px;
        max-width: 100%;
      }

      .cta-actions {
        width: 100%;
      }

      .cta-band .btn-ghost {
        width: 100%;
        justify-content: center;
      }

      .btn,
      .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        letter-spacing: 0.1em;
      }

      .footer-sitemap-section {
        padding: 24px 0 20px;
      }

      .footer-sitemap-section .wide {
        padding-left: 14px;
        padding-right: 14px;
      }

      .footer-sitemap-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 16px;
      }

      .footer-sitemap-industry {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .footer-sitemap-industry a {
        border: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.14);
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        padding: 10px 8px;
        font-size: 10px;
      }

      .footer-sitemap-industry a:nth-child(7n) {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
      }

      .footer-sitemap-industry a:nth-child(3n) {
        border-right: none;
      }

      .footer-sitemap-industry a:nth-last-child(-n+6) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      }

      .footer-sitemap-industry a:last-child:nth-child(3n+1) {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
      }

      .footer-copy {
        margin-top: 14px;
        padding-top: 14px;
      }
    }

    @media (max-width:520px) {
      .footer-sitemap-cols {
        grid-template-columns: 1fr;
      }

      .footer-sitemap-industry {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-sitemap-industry a:nth-child(7n) {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
      }

      .footer-sitemap-industry a:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
      }

      .footer-sitemap-industry a:nth-child(2n) {
        border-right: none;
      }

      .footer-sitemap-industry a:nth-last-child(-n+6) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      }

      .footer-sitemap-industry a:last-child:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
      }
    }
