/* ── Brand tokens (Dol_Guidelines.pdf) ──────── */
    :root {
      --blue: #4B50FF;
      --blue-h: #3A40EE;
      --blue-t: rgba(75, 80, 255, .07);
      --blue-t2: rgba(75, 80, 255, .14);
      --blue-t3: rgba(75, 80, 255, .22);
      --dark: #181818;
      --mid: #484554;
      --muted: #ADA9BB;
      --bg: #F5F5F7;
      --surface: #FFFFFF;
      --border: #E8E8EC;
      --bd-dark: rgba(255, 255, 255, .09);
      --active: #4B50FF;
      --font: 'IBM Plex Sans', system-ui, sans-serif;
      --nav-h: 60px;
    }

    /* ── Reset ───────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-h) + 18px)
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--dark);
      -webkit-font-smoothing: antialiased
    }

    a {
      color: inherit;
      text-decoration: none
    }

    button {
      font: inherit
    }

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

    .wrap {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 28px
    }

    /* ── Nav ──────────────────────────────────────── */
    #top,
    #supply,
    #price-intel,
    #benefits,
    #verified,
    #how,
    #after,
    #how-to-register,
    #register {
      scroll-margin-top: calc(var(--nav-h) + 18px)
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      min-height: var(--nav-h);
      padding: 0 28px;
    }

    .nav-inner {
      max-width: 1180px;
      height: var(--nav-h);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      user-select: none;
      flex: 0 0 auto
    }

    .brand-logo {
      display: block;
      width: 174px;
      height: auto
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      height: 36px;
      border-radius: 6px;
      padding: 0 11px;
      color: var(--mid);
      font-size: .82rem;
      font-weight: 500;
      white-space: nowrap;
      transition: color .15s, background .15s;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--dark);
      background: var(--bg);
    }

    .nav-link.active::after {
      content: '';
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: -12px;
      height: 2px;
      border-radius: 99px;
      background: var(--blue);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .nav-cta {
      background: var(--blue);
      color: #fff;
      font-weight: 600;
      font-size: .875rem;
      padding: 9px 20px;
      border-radius: 6px;
      transition: background .15s;
    }

    .nav-cta:hover {
      background: var(--blue-h)
    }

    .nav-cta-short {
      display: none
    }

    .menu-btn {
      display: none;
      width: 38px;
      height: 38px;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: var(--surface);
      color: var(--dark);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color .15s, background .15s;
    }

    .menu-btn:hover,
    .menu-btn[aria-expanded="true"] {
      border-color: var(--blue-t3);
      background: var(--blue-t);
    }

    .menu-icon,
    .menu-icon::before,
    .menu-icon::after {
      display: block;
      width: 16px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
      transition: transform .15s, opacity .15s;
    }

    .menu-icon {
      position: relative
    }

    .menu-icon::before,
    .menu-icon::after {
      content: '';
      position: absolute;
      left: 0
    }

    .menu-icon::before {
      top: -5px
    }

    .menu-icon::after {
      top: 5px
    }

    .menu-btn[aria-expanded="true"] .menu-icon {
      background: transparent
    }

    .menu-btn[aria-expanded="true"] .menu-icon::before {
      transform: translateY(5px) rotate(45deg)
    }

    .menu-btn[aria-expanded="true"] .menu-icon::after {
      transform: translateY(-5px) rotate(-45deg)
    }

    .mobile-menu {
      display: none;
      max-width: 1180px;
      margin: 0 auto;
      padding: 8px 0 14px;
      border-top: 1px solid var(--border);
    }

    .mobile-menu.open {
      display: block
    }

    .mobile-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 44px;
      border-radius: 6px;
      padding: 0 12px;
      color: var(--mid);
      font-size: .9rem;
      font-weight: 500;
    }

    .mobile-link:hover,
    .mobile-link.active {
      color: var(--dark);
      background: var(--bg);
    }

    .mobile-link.active::after {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      flex: 0 0 auto;
    }

    .scroll-progress {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 2px;
      overflow: hidden;
      pointer-events: none;
    }

    .scroll-progress span {
      display: block;
      width: 100%;
      height: 100%;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: left center;
    }

    @media(max-width:960px) {
      nav {
        padding: 0 20px
      }

      .nav-links {
        display: none
      }

      .brand-logo {
        width: 136px
      }

      .nav-cta-full {
        display: none
      }

      .nav-cta-short {
        display: inline
      }

      .menu-btn {
        display: inline-flex
      }
    }

    @media(max-width:520px) {
      nav {
        padding: 0 14px
      }

      .nav-inner {
        gap: 12px
      }

      .nav-actions {
        gap: 8px
      }

      .nav-cta {
        font-size: .8rem;
        padding: 8px 12px
      }

      .brand-logo {
        width: 136px
      }
    }

    /* ── Hero (dark #181818) ──────────────────────── */
    .hero {
      background: var(--dark);
      padding: 72px 28px 80px;
      position: relative;
      overflow: hidden
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(75, 80, 255, .08);
      pointer-events: none;
    }

    .hero-grid {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 348px;
      gap: 56px;
      align-items: start;
    }

    @media(max-width:920px) {
      .hero-grid {
        grid-template-columns: 1fr
      }
    }

    .hero-eyebrow {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 16px;
    }

    h1 {
      font-weight: 600;
      font-size: clamp(2.2rem, 4.8vw, 3.4rem);
      line-height: 1.1;
      letter-spacing: -.02em;
      color: #fff;
      margin-bottom: 22px;
    }

    .hero-premise {
      font-weight: 500;
      font-size: 1rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, .75);
      margin-bottom: 10px;
    }

    .hero-diff {
      font-size: .97rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 32px;
    }

    .hero-diff strong {
      color: rgba(255, 255, 255, .85);
      font-weight: 500
    }

    /* Promise chips */
    .promises {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 32px
    }

    @media(max-width:560px) {
      .promises {
        grid-template-columns: 1fr
      }
    }

    .promise {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .11);
      border-radius: 8px;
      padding: 14px;
    }

    .p-label {
      font-weight: 600;
      font-size: .82rem;
      color: #fff;
      margin-bottom: 4px
    }

    .p-sub {
      font-size: .77rem;
      color: rgba(255, 255, 255, .42);
      line-height: 1.45
    }

    /* Buttons */
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px
    }

    .btn-w {
      background: #fff;
      color: var(--dark);
      font-weight: 600;
      font-size: .9rem;
      padding: 11px 22px;
      border-radius: 6px;
      transition: opacity .15s;
    }

    .btn-w:hover {
      opacity: .9
    }

    .btn-ow {
      color: rgba(255, 255, 255, .7);
      font-weight: 500;
      font-size: .9rem;
      padding: 11px 20px;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, .22);
      transition: all .15s;
    }

    .btn-ow:hover {
      border-color: rgba(255, 255, 255, .5);
      color: #fff
    }

    /* Live chip */
    .live-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .4)
    }

    .ldot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 6px var(--blue);
      flex: 0 0 auto;
      animation: ld 2s infinite;
    }

    @keyframes ld {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .25
      }
    }

    .lcount {
      font-weight: 600;
      color: rgba(255, 255, 255, .8)
    }

    /* ── Calculator ──────────────────────────────── */
    .calc {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 8px;
      padding: 22px;
      position: relative;
    }

    .calc::before {
      content: '';
      position: absolute;
      top: 0;
      left: 22px;
      right: 22px;
      height: 2px;
      background: var(--blue);
      border-radius: 0 0 4px 4px;
      opacity: .7;
    }

    .calc-eye {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      display: flex;
      justify-content: space-between;
    }

    .calc-veh {
      font-weight: 400;
      font-size: .65rem;
      color: rgba(255, 255, 255, .3)
    }

    .calc-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 9px
    }

    .calc-lbl {
      font-size: .83rem;
      color: rgba(255, 255, 255, .4)
    }

    .calc-val {
      font-weight: 600;
      font-size: .9rem;
      color: #fff
    }

    .calc-div {
      height: 1px;
      background: rgba(255, 255, 255, .08);
      margin: 13px 0
    }

    .calc-result {
      background: rgba(75, 80, 255, .18);
      border: 1px solid rgba(75, 80, 255, .3);
      border-radius: 6px;
      padding: 13px 15px;
      margin-bottom: 14px;
    }

    .calc-rl {
      font-size: .67rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(75, 80, 255, .7);
      margin-bottom: 4px
    }

    .calc-rn {
      font-weight: 600;
      font-size: 1.5rem;
      color: #fff
    }

    .calc-rp {
      font-size: .75rem;
      color: rgba(255, 255, 255, .38);
      margin-top: 2px
    }

    .slider-lbl {
      font-size: .7rem;
      color: rgba(255, 255, 255, .38);
      display: flex;
      justify-content: space-between;
      margin-bottom: 6px
    }

    .sv {
      color: rgba(255, 255, 255, .6);
      font-weight: 500
    }

    input[type=range] {
      width: 100%;
      -webkit-appearance: none;
      height: 3px;
      border-radius: 2px;
      background: rgba(255, 255, 255, .15);
      cursor: pointer;
      outline: none;
      accent-color: var(--blue);
    }

    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--blue);
      border: 2px solid var(--dark);
    }

    .calc-note {
      font-size: .67rem;
      color: rgba(255, 255, 255, .25);
      margin-top: 12px;
      line-height: 1.5
    }

    /* ── Section base ────────────────────────────── */
    .sec {
      padding: 72px 28px
    }

    .sec.bg {
      background: var(--bg);
      color: var(--dark)
    }

    .sec.surf {
      background: var(--surface);
      color: var(--dark)
    }

    .sec.dark {
      background: var(--dark);
      color: #fff
    }

    .sec.blue {
      background: var(--blue);
      color: #fff
    }

    /* Eyebrow — brand blue on light, lighter on dark */
    .eyebrow {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 10px;
      display: block;
    }

    .sec.dark .eyebrow {
      color: rgba(255, 255, 255, .4)
    }

    .sec.blue .eyebrow {
      color: rgba(255, 255, 255, .6)
    }

    .h2 {
      font-weight: 600;
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      letter-spacing: -.02em;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .sec-sub {
      font-size: .97rem;
      line-height: 1.7;
      color: var(--mid);
      max-width: 540px
    }

    .sec.dark .sec-sub {
      color: rgba(255, 255, 255, .48)
    }

    .sec.blue .sec-sub {
      color: rgba(255, 255, 255, .7);
      max-width: 540px;
      margin: 0 auto 28px
    }

    .sec-head {
      margin-bottom: 44px
    }

    /* ── Supply ──────────────────────────────────── */
    .sched-band {
      background: var(--dark);
      border-radius: 8px;
      padding: 14px 20px;
      margin-bottom: 36px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
    }

    .sb-left {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: .8rem;
      color: rgba(255, 255, 255, .5)
    }

    .sb-left strong {
      color: #fff;
      font-weight: 600
    }

    .sb-right {
      font-size: .77rem;
      color: rgba(255, 255, 255, .38);
      display: flex;
      align-items: center;
      gap: 8px
    }

    .sb-count {
      color: #fff;
      font-weight: 600
    }

    .sb-div {
      width: 1px;
      height: 12px;
      background: rgba(255, 255, 255, .15)
    }

    .stock-showcase {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
      gap: 28px;
      align-items: start;
      margin-bottom: 28px;
    }

    .stock-copy {
      min-width: 0
    }

    .stock-visual {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(75, 80, 255, .08);
    }

    .stock-visual img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      object-position: center;
      border-radius: 6px;
    }

    .source-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 24px
    }

    .stock-copy .source-grid {
      grid-template-columns: 1fr
    }

    @media(max-width:900px) {
      .stock-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .stock-visual {
        order: 1
      }

      .stock-copy {
        order: 2
      }
    }

    @media(max-width:620px) {
      .source-grid {
        grid-template-columns: 1fr
      }

      .stock-visual {
        padding: 8px;
      }
    }

    .sc {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 24px;
    }

    .sc.hl {
      border-color: var(--blue);
      border-width: 1.5px
    }

    .sc-lbl {
      font-size: .69rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 10px;
      display: block;
    }

    .sc.hl .sc-lbl {
      color: var(--blue)
    }

    .sc h3 {
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: -.01em;
      margin-bottom: 7px;
      color: var(--dark)
    }

    .sc p {
      font-size: .875rem;
      color: var(--mid);
      line-height: 1.6
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 12px
    }

    .tag {
      font-size: .75rem;
      border-radius: 99px;
      padding: 3px 10px;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--mid);
    }

    .tag-hl {
      background: var(--blue-t);
      color: var(--blue);
      border-color: rgba(75, 80, 255, .2)
    }

    .net-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 7px;
      margin-bottom: 28px
    }

    .net-lbl {
      font-size: .69rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--muted);
      margin-right: 4px;
    }

    .net-tag {
      font-size: .8rem;
      font-weight: 500;
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--dark);
      border-radius: 99px;
      padding: 4px 12px;
    }

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

    @media(max-width:580px) {
      .modes-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    .mode {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 16px 14px
    }

    .mode-name {
      font-weight: 600;
      font-size: .87rem;
      color: var(--dark);
      margin-bottom: 4px
    }

    .mode-desc {
      font-size: .78rem;
      color: var(--mid);
      line-height: 1.45
    }

    /* ── Comparison table ────────────────────────── */
    .cmp-table {
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border)
    }

    .cmp-head {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      background: var(--blue)
    }

    .ch {
      padding: 13px 18px;
      font-weight: 600;
      font-size: .72rem;
      letter-spacing: .05em;
      text-transform: uppercase
    }

    .ch-lbl {
      color: rgba(255, 255, 255, .45)
    }

    .ch-dim {
      color: rgba(255, 255, 255, .55);
      border-left: 1px solid rgba(255, 255, 255, .12)
    }

    .ch-lit {
      color: #fff;
      border-left: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      gap: 5px
    }

    .ch-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .85);
      flex: 0 0 auto
    }

    .cmp-row {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      background: var(--surface);
      border-bottom: 1px solid var(--border)
    }

    .cmp-row:last-child {
      border-bottom: none
    }

    .cmp-row:hover {
      background: var(--bg)
    }

    .cl {
      padding: 13px 18px;
      font-size: .86rem;
      font-weight: 500;
      color: var(--dark);
      display: flex;
      align-items: center
    }

    .co {
      padding: 13px 18px;
      border-left: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: .83rem;
      color: var(--muted)
    }

    .cd {
      padding: 13px 18px;
      border-left: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: .83rem;
      color: var(--dark);
      background: rgba(75, 80, 255, .02)
    }

    .cd strong {
      font-weight: 600
    }

    .ind-n {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: var(--bg);
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      font-size: .7rem;
      color: var(--muted);
    }

    .ind-y {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: var(--blue-t2);
      display: grid;
      place-items: center;
    }

    .ind-y::after {
      content: '✓';
      font-size: .7rem;
      color: var(--blue);
      font-weight: 600;
      line-height: 1
    }

    @media(max-width:640px) {

      .cmp-table {
        border: 0;
        overflow: visible;
        background: transparent;
      }

      .cmp-head {
        display: none
      }

      .cmp-row {
        display: block;
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 10px;
      }

      .cmp-row:last-child {
        margin-bottom: 0
      }

      .cmp-row:hover {
        background: var(--surface)
      }

      .cl {
        font-size: .82rem;
        padding: 12px 14px;
        border-bottom: 1px solid var(--border);
        background: var(--bg);
      }

      .co,
      .cd {
        border-left: 0;
        font-size: .8rem;
        padding: 11px 14px;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 7px;
      }

      .co {
        border-bottom: 1px solid var(--border)
      }

      .co::before,
      .cd::before {
        flex: 0 0 100%;
        font-size: .64rem;
        font-weight: 600;
        letter-spacing: .07em;
        text-transform: uppercase;
        line-height: 1.2;
      }

      .co::before {
        content: 'Any other auction';
        color: var(--muted);
      }

      .cd::before {
        content: 'DealersOnline Verified';
        color: var(--blue);
      }
    }

    /* ── Verified scope (light variant) ──────────── */
    .verified-visual {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px;
      overflow: hidden;
      margin-bottom: 28px;
      box-shadow: 0 8px 28px rgba(75, 80, 255, .08);
    }

    .verified-visual img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      object-position: center;
      border-radius: 6px;
    }

    .v-scope-light {
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 3px solid var(--blue);
      border-radius: 0 8px 8px 0;
      padding: 14px 18px;
      margin-bottom: 32px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .v-scope-light .v-badge {
      font-weight: 600;
      font-size: .67rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: var(--blue);
      color: #fff;
      padding: 3px 9px;
      border-radius: 99px;
      flex: 0 0 auto;
      margin-top: 1px;
      white-space: nowrap;
    }

    .v-scope-light p {
      font-size: .86rem;
      color: var(--mid);
      line-height: 1.55
    }

    .v-scope-light strong {
      color: var(--dark);
      font-weight: 600
    }

    @media(max-width:640px) {
      .verified-visual {
        padding: 8px;
        margin-bottom: 22px;
      }

      .v-scope-light {
        flex-direction: column;
        gap: 9px;
        margin-bottom: 24px;
      }
    }

    .cmp-foot {
      font-size: .84rem;
      color: var(--mid);
      text-align: center;
      margin-top: 20px;
      font-style: italic;
    }

    /* ── Flow (After the hammer) ─────────────────── */
    .flow-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    @media(max-width:720px) {
      .flow-grid {
        grid-template-columns: 1fr
      }
    }

    .fc {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 22px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .fc-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: var(--blue);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 600;
      font-size: .95rem;
    }

    .fc-body h4 {
      font-weight: 600;
      font-size: .92rem;
      color: var(--dark);
      margin-bottom: 5px
    }

    .fc-body p {
      font-size: .84rem;
      color: var(--mid);
      line-height: 1.6
    }

    .fc-body strong {
      color: var(--dark);
      font-weight: 600
    }

    /* ── Stats (dark variant, anchored to promises) ─ */
    .stats-band-dark {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255, 255, 255, .03);
    }

    .stat-d {
      flex: 1;
      min-width: 200px;
      padding: 24px;
      border-right: 1px solid rgba(255, 255, 255, .08)
    }

    .stat-d:last-child {
      border-right: none
    }

    .sn-d {
      font-weight: 600;
      font-size: 2rem;
      letter-spacing: -.02em;
      color: var(--blue);
      margin-bottom: 6px
    }

    .sk-d {
      font-size: .85rem;
      color: #fff;
      line-height: 1.4;
      font-weight: 500
    }

    .sk-sub {
      font-size: .76rem;
      color: rgba(255, 255, 255, .42);
      font-weight: 400
    }

    @media(max-width:620px) {
      .stats-band-dark {
        flex-direction: column
      }

      .stat-d {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08)
      }

      .stat-d:last-child {
        border-bottom: none
      }
    }

    /* ── Registration form CTA ───────────────────── */
    .cta-sec {
      background: var(--blue);
      padding: 80px 28px;
      text-align: left
    }

    .cta-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
      gap: 42px;
      align-items: center;
    }

    .cta-sec .eyebrow {
      color: rgba(255, 255, 255, .62)
    }

    .register-title {
      color: #fff;
      margin-bottom: 14px
    }

    .cta-sec .sec-sub {
      color: rgba(255, 255, 255, .72);
      max-width: 560px
    }

    .register-points {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 28px;
      max-width: 560px;
    }

    .register-point {
      color: rgba(255, 255, 255, .82);
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: 99px;
      padding: 6px 12px;
      font-size: .78rem;
      font-weight: 500;
      background: rgba(255, 255, 255, .07);
    }

    .register-card {
      background: #fff;
      color: var(--dark);
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: 8px;
      padding: 24px;
      box-shadow: 0 18px 44px rgba(24, 24, 24, .18);
    }

    .register-form {
      display: grid;
      gap: 18px
    }

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

    .form-field,
    .buyer-type {
      min-width: 0
    }

    .form-field.full,
    .buyer-type,
    .consent-row,
    .form-actions,
    .form-status {
      grid-column: 1 / -1
    }

    .form-field label,
    .buyer-type legend {
      display: block;
      font-size: .73rem;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 7px;
    }

    .form-field input {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: var(--surface);
      color: var(--dark);
      font: inherit;
      font-size: .92rem;
      min-height: 44px;
      padding: 10px 12px;
      transition: border-color .15s, box-shadow .15s;
    }

    .form-field input::placeholder {
      color: var(--muted)
    }

    .form-field input:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px var(--blue-t);
      outline: none
    }

    .buyer-type {
      border: none;
      padding: 0;
      margin: 0;
    }

    .type-options {
      display: grid;
      gap: 8px;
    }

    .type-option {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 10px 12px;
      color: var(--dark);
      font-size: .9rem;
      font-weight: 500;
      cursor: pointer;
      transition: border-color .15s, background .15s;
    }

    .type-option:hover,
    .type-option:has(input:checked) {
      border-color: rgba(75, 80, 255, .34);
      background: var(--blue-t)
    }

    .type-option input,
    .consent-row input {
      accent-color: var(--blue);
      flex: 0 0 auto
    }

    .consent-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--mid);
      font-size: .8rem;
      line-height: 1.5;
    }

    .submit-btn {
      width: 100%;
      border: 0;
      border-radius: 6px;
      background: var(--dark);
      color: #fff;
      min-height: 46px;
      padding: 12px 18px;
      font-weight: 600;
      font-size: .92rem;
      cursor: pointer;
      transition: background .15s, transform .2s, opacity .15s;
    }

    .submit-btn:hover {
      background: #000;
      transform: translateY(-1px)
    }

    .submit-btn:disabled {
      opacity: .58;
      cursor: wait;
      transform: none
    }

    .form-foot,
    .form-status {
      font-size: .76rem;
      line-height: 1.5
    }

    .form-foot {
      color: var(--mid);
      margin-top: -4px
    }

    .form-status {
      border-radius: 6px;
      padding: 10px 12px;
      overflow-wrap: anywhere;
    }

    .form-status.error {
      color: #7A1E1E;
      background: #FFF0F0;
      border: 1px solid #FFD0D0;
    }

    .form-success {
      border: 1px solid rgba(75, 80, 255, .2);
      border-radius: 8px;
      background: var(--blue-t);
      padding: 20px;
    }

    .form-success strong {
      display: block;
      color: var(--dark);
      font-size: 1.05rem;
      margin-bottom: 6px
    }

    .form-success p {
      color: var(--mid);
      font-size: .9rem;
      line-height: 1.55
    }

    .cta-note {
      font-size: .73rem;
      color: rgba(255, 255, 255, .4);
      margin-top: 18px
    }

    @media(max-width:880px) {
      .cta-inner {
        grid-template-columns: 1fr;
        gap: 28px
      }

      .register-card {
        max-width: 560px;
        width: 100%
      }
    }

    @media(max-width:560px) {
      .cta-sec {
        padding: 56px 20px
      }

      .form-grid {
        grid-template-columns: 1fr
      }

      .register-card {
        padding: 20px
      }
    }

    /* ── Footer ──────────────────────────────────── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255, 255, 255, .07);
      padding: 20px 28px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .ft-logo {
      display: flex;
      align-items: center;
      color: #fff
    }

    .ft-logo .brand-logo {
      width: 154px;
      filter: invert(1)
    }

    .ft-note {
      font-size: .77rem;
      color: rgba(255, 255, 255, .28)
    }

    /* ── Reveal ──────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .45s, transform .45s
    }

    .reveal.in {
      opacity: 1;
      transform: none
    }

    /* ── Calc brand tag (hero) ───────────────────── */
    .calc-brand {
      display: inline-block;
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--blue);
      background: rgba(75, 80, 255, .15);
      padding: 1px 6px;
      border-radius: 99px;
      margin-left: 6px;
      vertical-align: middle;
    }

    /* ── Price Intelligence section ──────────────── */
    .pi-showcase {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 48px;
      margin-bottom: 48px;
      align-items: start;
    }

    @media(max-width:900px) {
      .pi-showcase {
        grid-template-columns: 1fr;
        gap: 32px
      }
    }

    /* Listing-style mock card on the left */
    .pi-screenshot {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(75, 80, 255, .06);
    }

    .pi-veh-header {
      background: var(--dark);
      color: #fff;
      padding: 12px 16px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .pi-veh-eye {
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
    }

    .pi-veh-name {
      font-size: .92rem;
      font-weight: 600;
      color: #fff
    }

    .pi-actvlist {
      background: rgba(75, 80, 255, .04);
      border-bottom: 1px solid var(--border);
      padding: 14px 16px;
    }

    .pi-actv-head {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 10px
    }

    .pi-actv-mark {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
    }

    .pi-actv-label {
      font-weight: 600;
      font-size: .8rem;
      color: var(--dark);
    }

    .pi-actv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 10px
    }

    .pi-actv-lbl {
      font-size: .7rem;
      color: var(--mid);
      margin-bottom: 2px
    }

    .pi-actv-num {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--dark);
      letter-spacing: -.01em
    }

    .pi-actv-conf {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      background: rgba(80, 200, 120, .1);
      border: 1px solid rgba(80, 200, 120, .25);
      border-radius: 6px;
      padding: 7px 10px;
      font-size: .74rem;
      color: #2C7A4B;
      line-height: 1.4;
    }

    .pi-actv-tick {
      flex: 0 0 auto;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #2C7A4B;
      color: #fff;
      display: grid;
      place-items: center;
      font-size: .65rem;
      font-weight: 700;
    }

    .pi-margin {
      padding: 14px 16px;
      border-bottom: 1px solid var(--border)
    }

    .pi-margin-head {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 10px;
    }

    .pi-margin-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: .82rem;
      color: var(--mid);
      margin-bottom: 5px;
    }

    .pi-margin-row span:last-child {
      color: var(--dark);
      font-weight: 500
    }

    .pi-margin-div {
      height: 1px;
      background: var(--border);
      margin: 10px 0
    }

    .pi-margin-result {
      background: var(--blue-t);
      border: 1px solid rgba(75, 80, 255, .2);
      border-radius: 6px;
      padding: 10px 12px;
    }

    .pi-margin-rl {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 2px;
    }

    .pi-margin-rn {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--dark);
      letter-spacing: -.01em
    }

    .pi-margin-rp {
      font-size: .72rem;
      color: var(--mid);
      margin-top: 2px
    }

    .pi-report-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      background: var(--blue);
      color: #fff;
      font-weight: 600;
      font-size: .85rem;
      padding: 12px 16px;
      transition: background .15s;
    }

    .pi-report-btn:hover {
      background: var(--blue-h)
    }

    .pi-report-note {
      background: var(--bg);
      font-size: .72rem;
      color: var(--mid);
      line-height: 1.5;
      padding: 10px 16px;
      border-top: 1px solid var(--border);
    }

    /* Right column - feature explainers */
    .pi-explain {
      display: flex;
      flex-direction: column;
      gap: 24px
    }

    .pi-feat {
      display: flex;
      gap: 14px;
      align-items: flex-start
    }

    .pi-feat-num {
      flex: 0 0 auto;
      font-weight: 600;
      font-size: .78rem;
      letter-spacing: .1em;
      color: var(--blue);
      background: var(--blue-t);
      padding: 5px 10px;
      border-radius: 99px;
      min-width: 44px;
      text-align: center;
    }

    .pi-feat h4 {
      font-weight: 600;
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: 6px;
      letter-spacing: -.01em;
    }

    .pi-feat p {
      font-size: .88rem;
      color: var(--mid);
      line-height: 1.6
    }

    /* Sources / triangulation block */
    .pi-sources {
      background: var(--dark);
      border-radius: 10px;
      padding: 32px 32px 28px;
      color: #fff;
      margin-top: 0;
    }

    .pi-sources-head {
      margin-bottom: 24px;
      max-width: 600px
    }

    .pi-sources .eyebrow {
      color: rgba(255, 255, 255, .4)
    }

    .pi-sources-title {
      font-weight: 600;
      font-size: 1.4rem;
      letter-spacing: -.02em;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .pi-sources-sub {
      font-size: .9rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.55
    }

    .pi-sources-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 20px;
    }

    @media(max-width:720px) {
      .pi-sources-grid {
        grid-template-columns: 1fr
      }
    }

    .pi-source {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 8px;
      padding: 18px;
    }

    .pi-source-lbl {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .pi-source-stat {
      font-weight: 600;
      font-size: 1.65rem;
      letter-spacing: -.02em;
      color: #fff;
      margin-bottom: 5px;
    }

    .pi-source-desc {
      font-size: .78rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.5
    }

    .pi-sources-foot {
      font-size: .85rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.55;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .pi-sources-foot em {
      color: #fff;
      font-style: normal;
      font-weight: 500
    }

    /* ── Logo block (multi-row) ───────────────────── */
    .logos-block {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 0
    }

    .logos-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap
    }

    .logos-lbl {
      font-size: .69rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--muted);
      min-width: 170px;
    }

    .logos-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px
    }

    @media(max-width:620px) {
      .logos-lbl {
        min-width: 0;
        width: 100%
      }
    }

    /* ── Four hero benefits ──────────────────────── */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    @media(max-width:720px) {
      .benefits-grid {
        grid-template-columns: 1fr
      }
    }

    .bc {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 26px 24px;
      position: relative;
    }

    .bc-hl {
      border-color: var(--blue);
      background: linear-gradient(180deg, rgba(75, 80, 255, .04) 0%, var(--surface) 60%);
    }

    .bc-num {
      font-weight: 600;
      font-size: .74rem;
      letter-spacing: .1em;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .bc-hl .bc-num {
      color: var(--blue)
    }

    .bc-tag {
      display: inline-block;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--mid);
      background: var(--bg);
      padding: 3px 9px;
      border-radius: 99px;
      margin-bottom: 14px;
      border: 1px solid var(--border);
    }

    .bc-hl .bc-tag {
      color: var(--blue);
      background: var(--blue-t);
      border-color: rgba(75, 80, 255, .2);
    }

    .bc h3 {
      font-weight: 600;
      font-size: 1.05rem;
      letter-spacing: -.01em;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .bc p {
      font-size: .88rem;
      color: var(--mid);
      line-height: 1.6
    }

    /* ── Registration process ────────────────────── */
    .reg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }

    @media(max-width:720px) {
      .reg-grid {
        grid-template-columns: 1fr
      }
    }

    .rc {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 22px 22px 24px;
    }

    .rc-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .rc-num {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 600;
      font-size: .9rem;
    }

    .rc-time {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--blue);
      background: var(--blue-t);
      padding: 3px 9px;
      border-radius: 99px;
    }

    .rc h4 {
      font-weight: 600;
      font-size: .95rem;
      color: var(--dark);
      margin-bottom: 6px
    }

    .rc p {
      font-size: .85rem;
      color: var(--mid);
      line-height: 1.6
    }

    .reg-docs {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .reg-docs-lbl {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
      flex: 0 0 auto;
    }

    .reg-docs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 7px
    }

    .reg-doc {
      font-size: .78rem;
      color: var(--dark);
      font-weight: 500;
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 4px 11px;
      border-radius: 99px;
    }

    @media(max-width:768px) {
      .sec {
        padding: 52px 20px
      }

      .hero {
        padding: 52px 20px 64px
      }
    }

    @media(prefers-reduced-motion:reduce) {
      .reveal {
        opacity: 1;
        transform: none;
        transition: none
      }

      .ldot {
        animation: none
      }
    }

    /* ══ Design improvements ══════════════════════════════ */

    /* Hero ambient dot-grid */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
      background-size: 26px 26px;
      pointer-events: none;
      z-index: 0;
    }
    .hero-grid { position: relative; z-index: 1; }

    /* Frosted-glass nav */
    nav {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(14px) saturate(200%);
      -webkit-backdrop-filter: blur(14px) saturate(200%);
      box-shadow: 0 1px 18px rgba(0,0,0,.05);
    }

    /* h1 gradient accent */
    .h1-accent {
      background: linear-gradient(118deg, #fff 0%, #a5a9ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Promise chip icon */
    .promise-icon {
      width: 26px;
      height: 26px;
      border-radius: 6px;
      background: rgba(75,80,255,.22);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
    }

    /* Eyebrow line prefix */
    .eyebrow { display: inline-flex; align-items: center; gap: 9px; }
    .eyebrow::before {
      content: '';
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 1px;
      flex: 0 0 auto;
      opacity: .65;
    }

    /* Mode card icon */
    .mode-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--blue-t2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }
    .mode { transition: border-color .2s, box-shadow .2s, transform .2s; }
    .mode:hover {
      border-color: var(--blue);
      box-shadow: 0 6px 20px rgba(75,80,255,.1);
      transform: translateY(-3px);
    }

    /* Benefits watermark numbers */
    .bc { overflow: hidden; }
    .bc-num {
      position: absolute;
      top: -4px;
      right: 8px;
      font-size: 5.5rem;
      font-weight: 700;
      letter-spacing: -.04em;
      color: rgba(0,0,0,.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      margin-bottom: 0;
    }
    .bc-hl .bc-num { color: rgba(75,80,255,.09); }

    /* Stats top accent */
    .stat-d { position: relative; }
    .stat-d::before {
      content: '';
      position: absolute;
      top: 0;
      left: 24px;
      width: 28px;
      height: 2px;
      background: var(--blue);
      border-radius: 0 0 2px 2px;
    }

    /* Source card hover */
    .sc { transition: border-color .15s, box-shadow .2s; }
    .sc:hover { border-color: rgba(75,80,255,.35); box-shadow: 0 4px 18px rgba(75,80,255,.07); }
    .sc.hl:hover { border-color: var(--blue); }

    /* Button hover lifts */
    .btn-w { transition: opacity .15s, transform .2s; }
    .btn-w:hover { opacity: .92; transform: translateY(-2px); }
    .btn-ow { transition: border-color .15s, color .15s, transform .2s; }
    .btn-ow:hover { transform: translateY(-2px); }
    .btn-wfull { transition: opacity .15s, transform .2s; }
    .btn-wfull:hover { opacity: .93; transform: translateY(-2px); }
    .nav-cta { transition: background .15s, transform .15s; }
    .nav-cta:hover { transform: translateY(-1px); }

    /* Footer layout */
    footer { padding: 28px; display: block; }
    .footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .ft-brand { display: flex; flex-direction: column; gap: 5px; }
    .ft-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
    .ft-nav-link {
      font-size: .78rem;
      color: rgba(255,255,255,.35);
      padding: 4px 10px;
      border-radius: 5px;
      transition: color .15s, background .15s;
    }
    .ft-nav-link:hover { color: rgba(255,255,255,.72); background: rgba(255,255,255,.07); }
    .ft-nav-cta { color: rgba(255,255,255,.65); background: rgba(75,80,255,.25); margin-left: 8px; }
    .ft-nav-cta:hover { color: #fff; background: rgba(75,80,255,.42); }
