:root {
      --black: #07080a;
      --ink: #111317;
      --charcoal: #1d2027;
      --gray: #6f7683;
      --line: #d9dde5;
      --soft: #f4f5f7;
      --white: #ffffff;
      --red: #b31321;
      --red-dark: #790c16;
      --blue: #2b5f83;
      --blue-soft: #dceaf3;
      --gold: #c79b43;
      --radius: 8px;
      --shadow: 0 24px 70px rgba(0, 0, 0, .22);
      --max: 1160px;
      --header: 76px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-size: 16px;
      line-height: 1.6;
    }

    body.nav-open {
      overflow: hidden;
    }

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

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input {
      font: inherit;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -80px;
      z-index: 1000;
      padding: 10px 14px;
      border-radius: var(--radius);
      color: var(--white);
      background: var(--red);
      transition: top .2s ease;
    }

    .skip-link:focus {
      top: 16px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(7, 8, 10, .92);
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      backdrop-filter: blur(18px);
    }

    .header-inner {
      width: min(100% - 32px, var(--max));
      min-height: var(--header);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      color: var(--white);
      font-weight: 900;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      padding: 4px;
      background: #090a0d;
      object-fit: contain;
      object-position: center;
      border: 1px solid rgba(255, 255, 255, .22);
    }

    .brand span {
      display: block;
      line-height: 1.1;
    }

    .brand small {
      display: block;
      margin-top: 2px;
      color: rgba(255, 255, 255, .66);
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .nav-toggle {
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      color: var(--white);
      background: transparent;
      cursor: pointer;
    }

    .nav-toggle span,
    .nav-toggle::before,
    .nav-toggle::after {
      content: "";
      width: 20px;
      height: 2px;
      background: currentColor;
      transition: transform .2s ease, opacity .2s ease;
    }

    .nav-toggle span {
      margin: 5px 0;
    }

    .nav-open .nav-toggle::before {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-open .nav-toggle span {
      opacity: 0;
    }

    .nav-open .nav-toggle::after {
      transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
      position: fixed;
      inset: var(--header) 0 auto 0;
      display: none;
      flex-direction: column;
      gap: 6px;
      padding: 18px;
      color: var(--white);
      background: rgba(7, 8, 10, .98);
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .nav-open .site-nav {
      display: flex;
    }

    .site-nav a {
      padding: 12px;
      border-radius: var(--radius);
      color: rgba(255, 255, 255, .78);
      font-size: .92rem;
      font-weight: 800;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
      color: var(--white);
      background: rgba(255, 255, 255, .08);
      outline: none;
    }

    .desktop-cta {
      display: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 12px 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-weight: 900;
      line-height: 1.15;
      text-align: center;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-1px);
      outline: none;
    }

    .btn-primary {
      color: var(--white);
      background: var(--red);
      box-shadow: 0 12px 30px rgba(179, 19, 33, .28);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: #cc1728;
    }

    .btn-secondary {
      color: var(--white);
      background: rgba(255, 255, 255, .09);
      border-color: rgba(255, 255, 255, .22);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: rgba(255, 255, 255, .15);
    }

    .btn-dark {
      color: var(--white);
      background: var(--black);
    }

    .btn-outline {
      color: var(--ink);
      background: var(--white);
      border-color: var(--line);
    }

    .section {
      padding: 72px 0;
    }

    .section-dark {
      color: var(--white);
      background:
        linear-gradient(120deg, rgba(179, 19, 33, .18), transparent 32%),
        linear-gradient(300deg, rgba(43, 95, 131, .26), transparent 38%),
        var(--black);
    }

    .section-soft {
      background: var(--soft);
    }

    .container {
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--red);
      font-size: .78rem;
      font-weight: 950;
      text-transform: uppercase;
    }

    .section-dark .eyebrow {
      color: #ff6c78;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.04;
      letter-spacing: 0;
    }

    h1 {
      max-width: 780px;
      font-size: 3.55rem;
      color: var(--white);
    }

    h2 {
      max-width: 760px;
      font-size: 2.3rem;
    }

    h3 {
      font-size: 1.18rem;
    }

    p {
      margin: 0;
    }

    .lead {
      max-width: 740px;
      color: #3f4652;
      font-size: 1.1rem;
    }

    .section-dark .lead {
      color: rgba(255, 255, 255, .78);
    }

    .hero {
      position: relative;
      min-height: calc(100svh - var(--header));
      display: grid;
      align-items: center;
      overflow: hidden;
      padding: 64px 0;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(7, 8, 10, .96), rgba(7, 8, 10, .76) 58%, rgba(7, 8, 10, .92)),
        url("../assets/ushieldme-car-door.jpg") center / cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(179, 19, 33, .42), transparent 28%),
        radial-gradient(circle at 78% 12%, rgba(43, 95, 131, .44), transparent 30%),
        linear-gradient(180deg, transparent 0%, rgba(7, 8, 10, .8) 100%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      gap: 38px;
      align-items: center;
    }

    .hero-copy {
      display: grid;
      gap: 24px;
    }

    .hero-copy .lead {
      color: rgba(255, 255, 255, .82);
    }

    .hero-actions,
    .cta-row {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .trust-line {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 999px;
      color: rgba(255, 255, 255, .78);
      background: rgba(255, 255, 255, .08);
      font-size: .88rem;
      font-weight: 800;
    }

    .trust-line::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(90deg, var(--red), var(--blue));
      box-shadow: 0 0 18px rgba(255, 255, 255, .5);
    }

    .hero-product {
      position: relative;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-product::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(179, 19, 33, .25), transparent 38%, rgba(43, 95, 131, .24));
      pointer-events: none;
    }

    .hero-product img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .hero-product-caption {
      position: relative;
      display: grid;
      gap: 4px;
      padding: 18px;
      background: rgba(7, 8, 10, .88);
    }

    .hero-product-caption strong {
      font-size: 1.05rem;
    }

    .hero-product-caption span {
      color: rgba(255, 255, 255, .68);
      font-size: .9rem;
    }

    .section-head {
      display: grid;
      gap: 14px;
      margin-bottom: 34px;
    }

    .problem-grid,
    .featured-grid,
    .story-grid,
    .siri-grid {
      display: grid;
      gap: 26px;
      align-items: center;
    }

    .copy-stack {
      display: grid;
      gap: 18px;
    }

    .punchline {
      padding-left: 16px;
      border-left: 5px solid var(--red);
      font-size: 1.4rem;
      font-weight: 950;
      line-height: 1.22;
    }

    .image-panel {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--black);
      box-shadow: var(--shadow);
    }

    .image-panel img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .image-badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--white);
      background: rgba(7, 8, 10, .82);
      border: 1px solid rgba(255, 255, 255, .18);
      font-size: .84rem;
      font-weight: 950;
      box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
      backdrop-filter: blur(12px);
    }

    .image-badge::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 16px rgba(43, 95, 131, .75);
    }

    .steps,
    .card-grid,
    .product-grid,
    .video-grid,
    .faq-grid {
      display: grid;
      gap: 16px;
    }

    .step-card,
    .info-card,
    .product-card,
    .video-card,
    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
    }

    .step-card,
    .info-card {
      padding: 22px;
    }

    .step-card {
      display: grid;
      gap: 14px;
    }

    .step-number {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: var(--white);
      background: linear-gradient(135deg, var(--red), var(--blue));
      font-weight: 950;
    }

    .step-card p,
    .info-card p {
      color: #515967;
    }

    .feature-list,
    .audience-list {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .feature-list li,
    .audience-list li {
      position: relative;
      padding-left: 26px;
      color: #3f4652;
    }

    .feature-list li::before,
    .audience-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .68em;
      width: 10px;
      height: 10px;
      border-radius: 2px;
      background: var(--red);
      transform: rotate(45deg);
    }

    .featured-media {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      align-items: end;
      padding: 16px;
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(179, 19, 33, .1), transparent 35%),
        linear-gradient(315deg, rgba(43, 95, 131, .16), transparent 40%),
        #eceff3;
    }

    .product-image-card {
      width: 100%;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .62);
      box-shadow: inset 0 0 0 1px rgba(17, 19, 23, .08), 0 16px 40px rgba(0, 0, 0, .12);
      overflow: hidden;
    }

    .product-image-card img {
      width: 100%;
      height: 100%;
      max-height: 380px;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .product-card {
      position: relative;
      display: grid;
      gap: 18px;
      padding: 22px;
      overflow: hidden;
    }

    .product-card.featured {
      border: 2px solid var(--red);
      box-shadow: 0 20px 60px rgba(179, 19, 33, .14);
    }

    .badge {
      display: inline-flex;
      width: fit-content;
      padding: 5px 9px;
      border-radius: 999px;
      color: var(--white);
      background: var(--red);
      font-size: .76rem;
      font-weight: 950;
      text-transform: uppercase;
    }

    .price {
      font-size: 2rem;
      font-weight: 950;
      line-height: 1;
    }

    .price small {
      color: var(--gray);
      font-size: .85rem;
      font-weight: 800;
    }

    .family-band {
      display: grid;
      gap: 24px;
      padding: 30px;
      border-radius: var(--radius);
      color: var(--white);
      background:
        linear-gradient(120deg, rgba(179, 19, 33, .85), rgba(17, 19, 23, .94) 48%, rgba(43, 95, 131, .86)),
        var(--black);
    }

    .family-band .lead {
      color: rgba(255, 255, 255, .8);
    }

    .audience-list {
      grid-template-columns: 1fr;
    }

    .audience-list li {
      color: rgba(255, 255, 255, .86);
    }

    .audience-list li::before {
      background: var(--gold);
    }

    .info-card {
      min-height: 158px;
      display: grid;
      align-content: start;
      gap: 12px;
    }

    .info-card h3::before {
      content: "";
      display: block;
      width: 32px;
      height: 4px;
      margin-bottom: 14px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--red), var(--blue));
    }

    .quote-panel {
      padding: 24px;
      border-left: 5px solid var(--red);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
    }

    .quote-panel p {
      color: rgba(255, 255, 255, .82);
      font-size: 1.1rem;
    }

    .video-embed {
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: var(--radius);
      background: var(--black);
      box-shadow: var(--shadow);
    }

    .video-embed iframe {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      border: 0;
    }

    .video-grid {
      margin-top: 18px;
    }

    .video-card {
      overflow: hidden;
      color: var(--white);
      background: #111317;
      border-color: rgba(255, 255, 255, .13);
      transition: transform .2s ease, border-color .2s ease;
    }

    .video-card:hover,
    .video-card:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, .34);
      outline: none;
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, var(--red-dark), var(--blue));
    }

    .video-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .82;
    }

    .play {
      position: absolute;
      left: 14px;
      bottom: 14px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
    }

    .play::before {
      content: "";
      position: absolute;
      left: 17px;
      top: 12px;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      border-left: 13px solid var(--white);
    }

    .video-card strong {
      display: block;
      padding: 14px;
      line-height: 1.3;
    }

    .siri-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 18px 55px rgba(0, 0, 0, .12);
    }

    .siri-card img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: contain;
      object-position: center;
      background: var(--white);
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-button {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 64px;
      padding: 18px;
      border: 0;
      color: var(--ink);
      background: var(--white);
      text-align: left;
      font-weight: 950;
      cursor: pointer;
    }

    .faq-button::after {
      content: "+";
      flex: 0 0 auto;
      display: inline-grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      color: var(--white);
      background: var(--black);
      font-size: 1.1rem;
      line-height: 1;
    }

    .faq-item.active .faq-button::after {
      content: "-";
      background: var(--red);
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: #515967;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .final-cta {
      text-align: center;
    }

    .final-cta .section-head {
      justify-items: center;
    }

    .final-cta .cta-row {
      justify-content: center;
    }

    .site-footer {
      padding: 44px 0;
      color: rgba(255, 255, 255, .72);
      background: var(--black);
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-grid {
      display: grid;
      gap: 26px;
    }

    .footer-brand {
      display: grid;
      gap: 8px;
    }

    .footer-brand strong {
      color: var(--white);
      font-size: 1.2rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-links a {
      padding: 8px 10px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: var(--radius);
      color: var(--white);
      font-weight: 800;
    }

    .disclaimer {
      max-width: 820px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      font-size: .9rem;
    }

    @media (min-width: 640px) {
      .hero-actions,
      .cta-row {
        flex-direction: row;
        align-items: center;
      }

      .steps,
      .card-grid,
      .video-grid,
      .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .audience-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 900px) {
      .nav-toggle {
        display: none;
      }

      .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        background: transparent;
        border: 0;
      }

      .site-nav a {
        padding: 8px 9px;
        font-size: .84rem;
      }

      .desktop-cta {
        display: inline-flex;
      }

      .hero-grid,
      .problem-grid,
      .featured-grid,
      .story-grid,
      .siri-grid {
        grid-template-columns: 1.04fr .96fr;
      }

      .hero-product {
        justify-self: end;
        max-width: 470px;
      }

      .featured-media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .product-grid {
        grid-template-columns: 1.08fr .92fr;
      }

      .video-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .video-card:first-child,
      .video-card:nth-child(2),
      .video-card:nth-child(3) {
        grid-column: span 1;
      }

      .family-band {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 42px;
      }

      .footer-grid {
        grid-template-columns: 1fr auto;
        align-items: start;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 2.65rem;
      }

      h2 {
        font-size: 1.85rem;
      }

      .section {
        padding: 56px 0;
      }

      .brand small {
        display: none;
      }

      .family-band {
        padding: 22px;
      }

      .product-image-card {
        min-height: 320px;
      }

      .product-image-card img {
        max-height: 300px;
      }
    }
