@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

:root {
  --color-acura-black: #000000;
  --color-acura-white: #ffffff;
  --color-acura-red: #e10600;
  --color-acura-footer: #1c1c1c;
  --color-acura-tile: #f0f0f0;
  --color-acura-text: #222222;
  --color-acura-muted: #555555;
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); color: #222; background: #fff; }
a { color: inherit; text-decoration: none; }
* { box-sizing: border-box; }
button:not(:disabled), [role="button"]:not(:disabled) { cursor: pointer; }
img { max-width: 100%; }

/* ——— Download bar ——— */
.download-bar {
  background: #c8102e;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 60;
}
.download-bar a {
  color: #fff;
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid #fff;
  border-radius: 2px;
  background: #9b0c24;
}
.download-bar a:hover {
  background: #fff;
  color: #c8102e;
}

/* ——— Header ——— */
.acr-header {
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
}
.acr-header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 18px 0 14px;
  gap: 12px;
  flex-wrap: nowrap;
}
.acr-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  height: 40px;
  width: 76px;
  overflow: hidden;
}
.acr-logo img {
  height: 40px;
  width: auto;
  display: block;
  max-width: none;
}
.acr-header .acr-logo img {
  filter: invert(1);
}
.acr-partnership {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 10px;
  border-left: 1px solid #444;
  height: 32px;
  flex-shrink: 0;
}
.acr-nav-left {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 10px;
  flex: 0 0 auto;
}
.acr-nav-link {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.acr-nav-link:hover {
  opacity: 0.75;
}
.acr-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}
.acr-nav-right-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.acr-nav-right-link:hover {
  opacity: 0.75;
}
.acr-phone {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.acr-phone:hover {
  color: #ff4d4d;
}
.acr-icon-btn {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.acr-icon-btn:hover {
  opacity: 0.75;
}
.acr-menu-btn {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  gap: 4px;
  background: none;
  border: 0;
  padding: 4px;
}
.acr-menu-btn span.bars {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  box-shadow: 0 6px 0 #fff;
}
.acr-dealers-m {
  display: none;
  color: #fff;
  border: 1px solid #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  text-transform: uppercase;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  background: #000;
  color: #fff;
}
.hero-visual {
  position: relative;
  height: calc(100vh - 116px);
  min-height: 560px;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #111;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.08) 38%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  padding: 64px 24px 0;
  max-width: 980px;
  margin: 0 auto;
  pointer-events: none;
}
.hero-title {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 200;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 14px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}
.hero-cta-wrap {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cta-arrow .box {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-arrow:hover .box {
  background: #fff;
  color: #000;
}
.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
}
.hero-dots button.on {
  background: #fff;
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 72px;
  background: transparent;
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-nav:hover {
  background: rgba(0, 0, 0, 0.25);
}
.hero-nav.prev {
  left: 8px;
}
.hero-nav.next {
  right: 8px;
}

/* ——— Latest updates ——— */
.updates {
  background: #fff;
  padding: 0 40px 48px;
  margin-top: -28px;
  position: relative;
  z-index: 4;
}
.updates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
}
.update-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 360px;
  color: #fff;
}
.update-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.update-card:hover img {
  transform: scale(1.04);
}
.update-card span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.25;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.section-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 18px;
}
.section-kicker::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: #e10600;
  margin-top: 8px;
}
.section-kicker.center {
  text-align: center;
}
.section-kicker.center::after {
  margin-left: auto;
  margin-right: auto;
}

/* ——— Shopping tools ——— */
.tools {
  padding: 56px 40px 24px;
  max-width: 1360px;
  margin: 0 auto;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #f2f2f2;
}
.tool-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 12px;
  min-height: 148px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid #e4e4e4;
}
.tool-tile:last-child {
  border-right: 0;
}
.tool-tile:hover {
  background: #e8e8e8;
  color: #111;
}
.tool-tile svg {
  width: 36px;
  height: 36px;
  stroke: #555;
}

/* ——— Model line ——— */
.models {
  padding: 72px 0 0;
}
.models-intro {
  text-align: center;
  padding: 0 24px 36px;
}
.models-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 200;
  letter-spacing: -0.01em;
  margin: 8px 0 0;
  color: #222;
  line-height: 1.15;
}
.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.model-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  color: #fff;
}
.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.model-card:hover img {
  transform: scale(1.04);
}
.model-name {
  position: absolute;
  top: 22px;
  left: 28px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* ——— Safety ——— */
.safety {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 80px 64px;
  max-width: 1400px;
  margin: 0 auto;
}
.safety-media {
  position: relative;
  display: block;
}
.safety-media img {
  width: 100%;
  height: auto;
  display: block;
}
.watch-video {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.watch-video .caret {
  color: #e10600;
  margin-left: 4px;
}
.safety-copy h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #333;
}
.safety-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  max-width: 420px;
}

/* ——— About ——— */
.about {
  padding: 40px 40px 0;
  max-width: 1360px;
  margin: 0 auto;
}
.about-intro {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 40px;
}
.about-intro h2 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 200;
  margin: 8px 0 20px;
  color: #222;
}
.about-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.about-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 520px;
  color: #fff;
}
.about-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-card:hover img {
  transform: scale(1.04);
}
.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.05) 50%);
}
.about-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 1;
  text-align: center;
}
.about-card-copy h3 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.about-card-copy span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-card-copy .caret {
  color: #e10600;
}

/* ——— Keep up ——— */
.keepup {
  padding: 80px 40px 40px;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.keepup-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 36px;
}
.social-row {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #111;
}
.social-row a:hover {
  color: #e10600;
}
.keepup-media {
  position: relative;
  overflow: hidden;
}
.keepup-track {
  display: flex;
  gap: 8px;
  overflow: hidden;
}
.keepup-item {
  position: relative;
  flex: 0 0 68%;
  display: block;
}
.keepup-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.ig-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.keepup-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.keepup-dots {
  display: flex;
  gap: 8px;
  margin-right: auto;
  padding-left: 8px;
}
.keepup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
}
.keepup-dots span.on {
  background: #111;
}
.keepup-arrow {
  width: 56px;
  height: 56px;
  background: #111;
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.keepup-arrow:hover {
  background: #333;
}

/* ——— Accolades ——— */
.accolades {
  padding: 48px 40px 0;
  max-width: 1360px;
  margin: 0 auto;
}
.accolades-hero {
  position: relative;
  display: block;
  color: #fff;
  overflow: hidden;
}
.accolades-hero img {
  width: 100%;
  height: auto;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.iihs-badge {
  position: absolute;
  top: 36px;
  left: 48px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.iihs-badge .yr {
  background: #111;
  color: #d4af37;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  line-height: 1.15;
  font-size: 13px;
}
.iihs-badge .yr small {
  display: block;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.iihs-badge .pick {
  background: #111;
  color: #d4af37;
  padding: 10px 16px 10px 14px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  min-width: 140px;
}
.accolades-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  text-align: center;
  padding: 0 24px;
}
.accolades-caption p {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 300;
  font-style: italic;
  margin: 0 0 16px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.accolades-caption span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.accolades-caption .caret {
  color: #e10600;
}

/* ——— Stay informed ——— */
.stay {
  padding: 80px 40px 96px;
  max-width: 1100px;
  margin: 0 auto;
}
.stay-head {
  text-align: center;
  margin-bottom: 40px;
}
.stay-head h2 {
  font-size: clamp(36px, 4.6vw, 52px);
  font-weight: 200;
  margin: 8px 0 14px;
  color: #222;
}
.stay-head p {
  font-size: 16px;
  color: #444;
  margin: 0;
}
.stay-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #222;
}
.req {
  color: #e10600;
}
.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  background: #f3f3f3;
  padding: 0 12px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.field input:focus {
  border-color: #999;
  background: #fff;
}
.stay-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  max-width: 560px;
}
.consent input {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #111;
}
.consent a {
  text-decoration: underline;
}
.signup-btn {
  flex-shrink: 0;
  min-width: 180px;
  height: 48px;
  border: 1px solid #e10600;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
}
.signup-btn:hover {
  background: #e10600;
  color: #fff;
}

/* ——— Footer ——— */
.acr-footer {
  background: #1c1c1c;
  color: #fff;
  padding: 56px 0 24px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
}
.footer-h {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 22px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px 24px;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: #ddd;
  padding: 4px 0;
}
.footer-cols a:hover {
  text-decoration: underline;
}
.follow-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.follow-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3a3a3a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.follow-icons a:hover {
  background: #555;
}
.langs {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.langs a.active {
  text-decoration: underline;
}
.langs a:hover {
  text-decoration: underline;
}
.footer-legal {
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid #333;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 12px;
  color: #ccc;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-cookie {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 0 40px;
  font-size: 12px;
  line-height: 1.55;
  color: #bbb;
  text-align: center;
}
.footer-cookie a {
  text-decoration: underline;
}
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin: 28px 0 8px;
}
.footer-logo {
  display: flex;
  justify-content: center;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo svg {
  height: 36px;
  width: auto;
}

/* ——— Back to top ——— */
.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  background: #111;
  color: #fff;
  border: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-top:hover {
  background: #333;
}

/* ——— Mobile menu ——— */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 80;
  overflow: auto;
  padding: 20px 24px 48px;
}
.mobile-overlay-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.mobile-overlay a.item {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  color: #111;
}
.mobile-overlay .phone-lg {
  display: block;
  margin-top: 28px;
  font-size: 20px;
  font-weight: 600;
  color: #e10600;
}

/* ——— Download page ——— */
.dl-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
.dl-page h1 {
  font-size: 36px;
  font-weight: 200;
  margin: 0 0 16px;
}
.dl-page a.big {
  display: inline-block;
  margin-top: 24px;
  background: #c8102e;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 32px;
  border: 2px solid #fff;
}

/* ——— Latest updates kicker (mobile) ——— */
.updates-kicker {
  display: none;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .acr-nav-left,
  .acr-nav-right {
    display: none;
  }
  .acr-menu-btn,
  .acr-dealers-m {
    display: flex;
  }
  .acr-header-inner {
    justify-content: space-between;
  }
  .acr-logo {
    position: static;
    transform: none;
    width: 62px;
    height: 34px;
  }
  .acr-logo img {
    height: 34px;
  }
  .acr-partnership {
    display: flex;
    border-left: 0;
    padding-left: 0;
    margin-right: 8px;
    height: 28px;
    gap: 4px;
  }
  .acr-dealers-m {
    margin-left: 0;
  }
  .hero {
    background: #fff;
    color: #111;
  }
  .hero-visual {
    height: 58vw;
    min-height: 220px;
    max-height: 340px;
  }
  .hero-visual::after {
    display: none;
  }
  .hero-copy {
    position: relative;
    color: #111;
    padding: 28px 20px 0;
  }
  .hero-title {
    letter-spacing: 0.12em;
    font-size: 28px;
  }
  .hero-sub {
    color: #333;
    font-size: 16px;
  }
  .hero-cta-wrap {
    position: relative;
    bottom: auto;
    padding: 22px 20px 28px;
  }
  .cta-arrow {
    color: #111;
    border: 1px solid #e10600;
    padding: 12px 48px;
    width: min(320px, 86vw);
    justify-content: center;
  }
  .cta-arrow .box {
    display: none;
  }
  .hero-dots button {
    background: #bbb;
  }
  .hero-dots button.on {
    background: #111;
  }
  .hero-nav {
    top: 50%;
    width: 36px;
    height: 36px;
  }
  .updates {
    padding: 24px 16px 32px;
    margin-top: 0;
  }
  .updates-kicker {
    display: block;
    text-align: center;
    margin-bottom: 18px;
  }
  .updates-kicker.section-kicker::after {
    margin-left: auto;
    margin-right: auto;
  }
  .updates-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .update-card {
    min-height: 240px;
  }
  .update-card span {
    font-size: 22px;
    left: 16px;
    bottom: 16px;
  }
  .tools {
    padding: 32px 16px 16px;
  }
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tool-tile {
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    min-height: 120px;
    padding: 22px 8px;
    font-size: 13px;
  }
  .models {
    padding: 48px 0 0;
  }
  .models-grid {
    grid-template-columns: 1fr;
  }
  .model-card.adx,
  .model-card.rdx {
    grid-column: auto;
  }
  .models-grid-m {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .safety {
    grid-template-columns: 1fr;
    padding: 40px 0 24px;
    gap: 0;
  }
  .safety-copy {
    padding: 24px 20px 8px;
    order: -1;
  }
  .safety-copy h2 {
    font-weight: 300;
  }
  .safety-copy p {
    max-width: none;
  }
  .watch-video {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    background: #000;
    padding: 14px;
    color: #fff;
  }
  .about {
    padding: 32px 16px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-card {
    min-height: 420px;
  }
  .keepup {
    grid-template-columns: 1fr;
    padding: 48px 16px 24px;
    text-align: center;
  }
  .keepup-copy p {
    margin-bottom: 20px;
  }
  .social-row {
    justify-content: center;
    order: 3;
    margin-top: 16px;
  }
  .keepup-item {
    flex: 0 0 100%;
  }
  .keepup-item img {
    height: 280px;
  }
  .keepup-controls {
    justify-content: center;
  }
  .accolades {
    padding: 32px 0 0;
  }
  .accolades-hero img {
    min-height: 280px;
  }
  .iihs-badge {
    top: 16px;
    left: 16px;
    transform: scale(0.85);
    transform-origin: top left;
  }
  .accolades-caption {
    position: static;
    color: #222;
    padding: 24px 20px 8px;
    text-align: left;
  }
  .accolades-caption p {
    font-style: normal;
    text-shadow: none;
    font-size: 26px;
  }
  .stay {
    padding: 48px 20px 64px;
  }
  .stay-form {
    grid-template-columns: 1fr;
  }
  .stay-bottom {
    flex-direction: column;
  }
  .signup-btn {
    width: 100%;
    max-width: 240px;
    margin: 12px auto 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .footer-cols {
    display: none;
  }
  .footer-legal {
    padding: 20px 20px 0;
    gap: 12px 20px;
  }
  .footer-cookie {
    padding: 0 20px;
    text-align: left;
  }
}

@media (max-width: 1100px) {
  .models-grid {
    grid-template-columns: 1fr 1fr;
  }
  .model-card.integra,
  .model-card.mdx {
    grid-column: 1 / -1;
  }
  .footer-inner > div:first-child > .footer-h {
    display: none;
  }
}

/* Resources accordion on mobile */
.res-acc {
  display: none;
}
@media (max-width: 1100px) {
  .res-acc {
    display: block;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
  .res-acc summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
  }
  .res-acc summary::-webkit-details-marker {
    display: none;
  }
  .res-acc .plus {
    width: 28px;
    height: 28px;
    border: 1px solid #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  .res-acc .links {
    display: grid;
    gap: 10px;
    padding: 12px 0 16px;
  }
  .res-acc .links a {
    color: #ddd;
    font-size: 14px;
  }
}
