/* Hero */

.new-hero {
  position: relative;
  min-height: clamp(380px, 60vw, 760px);
  background: linear-gradient(180deg, #4c4c4c 0%, #7e7e7e 100%);
  overflow: hidden;
}

.new-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.12),
    rgba(15, 15, 15, 0.04) 42%,
    rgba(15, 15, 15, 0.18)
  );
}

.new-hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(600px, 100%);
  margin-left: auto;
  margin-right: auto;
  height: 90%;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(0.22) contrast(1.05);
}

.new-hero-content {
  position: relative;
  z-index: 2;
  min-height: clamp(380px, 60vw, 760px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 1.25rem 2rem;
}

.new-hero-callout {
  width: min(520px, 90vw);
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.15rem 1.25rem 1rem;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}

.new-hero-callout p {
  margin: 0 0 0.75rem;
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.new-hero-callout .btn {
  width: 100%;
  justify-content: center;
  background: rgba(16, 16, 16, 0.92);
  border-radius: 8px;
  padding-block: 0.9rem;
}

.new-hero-callout .btn:hover {
  background: var(--c-maroon);
}

/* Built different */

.built-different {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f7f7 0%, #e7e9e9 55%, #f8f8f8 100%);
  color: #111;
  padding: 0;
}

.built-different-inner {
  position: relative;
  width: min(1180px, calc(100% - 4rem));
  height: 775px;
  margin: 0 auto;
}

/* Title */

.built-different-title {
  position: relative;
  z-index: 5;
  margin: 0;
  padding-top: 0.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(4rem, 6.2vw, 6.2rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.065em;
  color: #3d3d3d;
  text-transform: uppercase;
}

/* Intro */

.built-different-intro {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  width: 720px;
  max-width: 100%;
  margin: 1.8rem 0 0 70px;
  column-gap: 20px;
}

.built-different-script {
  margin: 0;
  font-family: "Pattaya", cursive;
  font-size: clamp(2.7rem, 3.8vw, 3.6rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  color: #374351;
  white-space: nowrap;
  transform: translateX(150px);
}

.built-different-description {
  width: 100%;
  max-width: 360px;
  margin: 0;
  margin-left: 90px;
  padding-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: #555;
}

/* Specs */

.built-different-specs {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: 310px 310px;
  column-gap: 50px;
  row-gap: 1.5rem;
  width: 670px;
  margin: 3.8rem 0 0 230px;
}

.built-different-spec {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #111;
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.built-different-spec .spec-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0bd45;
  border-radius: 50%;
  color: #f04a27;
  background: rgba(255, 255, 255, 0.15);
}

.built-different-spec .spec-icon svg {
  width: 20px;
  height: 20px;
}

/* Product area */

.built-different-product {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Horizontal board */

.built-different-main {
  position: absolute;
  z-index: 2;
  width: 68%;
  height: auto;
  right: -2%;
  bottom: 0;
  margin: 0;
  object-fit: contain;
  transform: scaleY(1.12);
  transform-origin: bottom center;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.18));
}

/* Vertical board */

.built-different-secondary {
  position: absolute;
  z-index: 4;
  width: 20%;
  height: auto;
  right: 5%;
  top: 7%;
  margin: 0;
  object-fit: contain;
  transform: scaleX(1.12) scaleY(1.65);
  transform-origin: top center;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.18));
}

/* Explore button */

.built-different-link {
  position: absolute;
  z-index: 8;
  left: 51%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 235px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: rgba(75, 75, 75, 0.76);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(1px);
  transition: background 180ms ease;
}

.built-different-link:hover {
  background: rgba(55, 55, 55, 0.88);
  transform: translateX(-50%);
}

/* Section */

@media (min-width: 1100px) {
  .built-different {
    padding-top: 2rem;
  }

  .built-different-inner {
    min-height: 775px;
  }

  .built-different-title {
    font-size: 5.8rem;
  }

  .built-different-intro {
    margin-top: 1.4rem;
  }

  .built-different-description {
    font-size: 0.95rem;
    max-width: 360px;
  }

  .built-different-specs {
    grid-template-columns: 300px 300px;
    column-gap: 50px;
    row-gap: 1.45rem;
    width: 650px;
    margin-top: 3.8rem;
  }

  .built-different-spec {
    font-size: 1.05rem;
  }

  .built-different-spec .spec-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}
/* Section */

@media (max-width: 900px) {
  .built-different {
    padding: 3rem 0 2.5rem;
  }

  .built-different-inner {
    width: min(720px, calc(100% - 2rem));
    height: auto;
    min-height: 760px;
  }

  .built-different-title {
    font-size: clamp(3.2rem, 9vw, 5rem);
  }

  .built-different-intro {
    width: 620px;
    margin: 1.5rem auto 0;
  }

  .built-different-script {
    font-size: 2.7rem;
  }

  .built-different-description {
    font-size: 0.78rem;
  }

  .built-different-specs {
    width: 620px;
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    margin: 3rem auto 0;
  }

  .built-different-spec {
    font-size: 0.85rem;
  }

  .built-different-product {
    position: relative;
    inset: auto;
    width: 100%;
    height: 400px;
    margin-top: 1rem;
  }

  .built-different-main {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    width: 72%;
    margin: 0;
  }

  .built-different-secondary {
    position: absolute;
    right: 4%;
    top: 0;
    bottom: auto;
    width: 25%;
  }

  .built-different-link {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: -15px auto 0;
  }
}

/* Section */

@media (max-width: 560px) {
  .built-different {
    padding: 2.5rem 0 2rem;
  }

  .built-different-inner {
    width: calc(100% - 1.5rem);
    min-height: auto;
  }

  .built-different-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    letter-spacing: -0.06em;
  }

  .built-different-intro {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0 0;
    text-align: center;
  }

  .built-different-script {
    font-size: 2.3rem;
  }

  .built-different-description {
    width: min(310px, 100%);
    margin: 0 auto;
    font-size: 0.72rem;
  }

  .built-different-specs {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.5rem;
    row-gap: 1rem;
    margin: 2.5rem 0 0;
  }

  .built-different-spec {
    gap: 0.4rem;
    font-size: 0.68rem;
  }

  .built-different-spec .spec-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .built-different-product {
    position: relative;
    inset: auto;
    width: 100%;
    height: 330px;
    margin-top: 1.5rem;
  }

  .built-different-main {
    position: absolute;
    left: -8%;
    right: auto;
    bottom: 0;
    width: 78%;
  }

  .built-different-secondary {
    position: absolute;
    right: 0;
    top: 0;
    bottom: auto;
    width: 28%;
  }

  .built-different-link {
    position: relative;
    left: auto;
    bottom: auto;
    width: 205px;
    height: 45px;
    margin: -5px auto 0;
    transform: none;
  }
}

/* Section */

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #090909;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 88px;
  padding: 1rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--c-white);
}

.feature-strip-item:last-child {
  border-right: 0;
}

.feature-strip-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
}

.feature-strip-icon svg {
  width: 15px;
  height: 15px;
}

.feature-strip-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .feature-strip-item {
    justify-content: flex-start;
    padding-inline: 1rem;
    text-align: left;
  }

  .feature-strip-item > span:last-child {
    min-width: 0;
    flex: 1;
  }
}

/* Section */

.india-roads {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  background: #050505;
  color: var(--c-white);
}

.india-roads-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.5rem, 3vw, 4rem);
}

.india-roads-copy h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4vw, 5.3rem);
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-white);
}

.india-roads-copy p {
  max-width: 34ch;
  margin-top: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.india-roads-image {
  min-height: 540px;
}

.india-roads-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section */

.india-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: var(--c-white);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.india-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  min-height: 120px;
}

.india-stat strong {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  color: var(--c-red);
}

.india-stat span {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(1, 0, 0, 0.7);
}

/* Section */

.gear-section {
  width: 100%;
  background: #a7a7a7;
  color: #fff;
  padding: 5.5rem 0 5rem;
}

.gear-section-inner {
  width: min(1280px, calc(100% - 5rem));
  margin: 0 auto;
}

.gear-section-heading {
  margin-bottom: 2.8rem;
}

.gear-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: #b71302;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gear-eyebrow span {
  width: 20px;
  height: 2px;
  background: #b71302;
}

.gear-section-heading h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.gear-grid-reference {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.gear-reference-card {
  min-width: 0;
  background: #2b2b2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  padding: 2.5rem 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  box-sizing: border-box;
}

.gear-reference-image {
  width: 100%;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.gear-reference-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.gear-reference-card:first-child .gear-reference-image img {
  max-width: 52%;
  max-height: 220px;
}

.gear-reference-card:nth-child(2) .gear-reference-image img {
  max-width: 48%;
  max-height: 190px;
}

.gear-reference-content {
  background: #252525;
  padding: 1.15rem 1rem 1rem;
  min-height: 105px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.gear-reference-content h3 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.gear-reference-content p {
  margin: 0;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}

.gear-reference-link {
  display: inline-flex;
  margin-top: 0.85rem;
  color: #ff321c;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.gear-reference-link:hover {
  color: #ff321c;
  transform: translateX(3px);
}

/* Section */

/* Technology styles are shared in components.css and remain unchanged. */

/* Section */

/* Terrain gallery styles are shared in components.css and remain unchanged. */

/* Section */

/* Pre-book and process styles are shared in components.css and remain unchanged. */

/* Section */

@media (min-width: 1100px) {
  .built-different {
    padding-top: 3.5rem;
  }

  .built-different-inner {
    min-height: 610px;
  }

  .built-different-title {
    font-size: 5.6rem;
  }

  .built-different-intro {
    margin-top: 1.15rem;
  }
}

@media (max-width: 900px) {
  .new-hero {
    min-height: 520px;
  }

  .new-hero-content {
    min-height: 520px;
  }

  .built-different {
    padding: 3rem 0 2.5rem;
  }

  .built-different-inner {
    width: min(700px, calc(100% - 2rem));
    min-height: auto;
  }

  .built-different-title {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .built-different-intro {
    width: 600px;
  }

  .built-different-specs {
    margin-left: 0;
  }

  .built-different-product {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 360px;
    margin-top: -20px;
  }

  .built-different-main {
    position: absolute;
    width: 62%;
    left: 3%;
    bottom: 0;
    margin-right: 0;
  }

  .built-different-secondary {
    position: absolute;
    width: 23%;
    right: 8%;
    bottom: 0;
  }

  .built-different-link {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -20px auto 0;
  }

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

  .feature-strip-item:nth-child(2n) {
    border-right: 0;
  }

  .india-roads {
    grid-template-columns: 1fr;
  }

  .india-roads-image {
    min-height: 360px;
  }

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

  .gear-section-inner {
    width: min(750px, calc(100% - 3rem));
  }

  .gear-grid-reference {
    grid-template-columns: 1fr;
  }

  .gear-reference-card {
    min-height: 450px;
  }
}

@media (max-width: 560px) {
  .new-hero {
    min-height: 420px;
  }

  .new-hero-content {
    min-height: 420px;
    padding-inline: 1rem;
  }

  .new-hero-callout {
    padding: 0.9rem 0.95rem 0.8rem;
  }

  .new-hero-callout p {
    margin-bottom: 0.6rem;
  }

  .built-different {
    padding: 2.5rem 0 2rem;
  }

  .built-different-inner {
    width: calc(100% - 1.5rem);
  }

  .built-different-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    letter-spacing: -0.06em;
  }

  .built-different-intro {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
  }

  .built-different-script {
    width: auto;
    font-size: 2.2rem;
  }

  .built-different-description {
    width: min(310px, 100%);
    font-size: 0.7rem;
  }

  .built-different-specs {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.6rem;
    margin: 2rem 0 0;
  }

  .built-different-spec {
    font-size: 0.68rem;
    gap: 0.4rem;
  }

  .built-different-spec .spec-icon {
    width: 25px;
    height: 25px;
  }

  .built-different-product {
    position: absolute;
    right: -20px;
    bottom: 5px;
    width: 850px;
    height: 500px;
    z-index: 2;
    pointer-events: none;
  }

  .built-different-main {
    position: absolute;
    width: 760px;
    max-width: none;
    left: -40px;
    bottom: 0;
    margin-right: 0;
    z-index: 2;
    object-fit: contain;
    filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.18));
  }

  .built-different-secondary {
    position: absolute;
    width: 300px;
    max-width: none;
    right: 25px;
    bottom: 0;
    z-index: 3;
    object-fit: contain;
    filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.18));
  }

  .built-different-link {
    left: 150px;
    bottom: 5px;
    z-index: 6;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    justify-content: flex-start;
    padding-inline: 1rem;
    text-align: left;
  }

  .feature-strip-item > span:last-child {
    min-width: 0;
    flex: 1;
  }

  .feature-strip-item:last-child {
    border-bottom: 0;
  }

  .india-stats {
    grid-template-columns: 1fr;
  }

  .gear-section {
    padding: 3.5rem 0;
  }

  .gear-section-inner {
    width: calc(100% - 1.5rem);
  }

  .gear-section-heading h2 {
    font-size: 2.5rem;
  }

  .gear-reference-card {
    padding: 1.5rem;
    min-height: 410px;
  }

  .gear-reference-image {
    height: 250px;
  }
}

@media (max-width: 900px) {
  .built-different-intro {
    width: min(600px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .built-different-description {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .india-roads-copy,
  .india-roads-image {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .built-different-script {
    transform: none;
  }

  .built-different-product {
    right: 0;
    width: 100%;
    height: 330px;
  }

  .built-different-main {
    width: 92%;
    max-width: 100%;
    left: 0;
  }

  .built-different-secondary {
    width: 36%;
    max-width: 100%;
    right: 3%;
  }

  .built-different-link {
    left: auto;
    right: auto;
    bottom: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Section */

.preorder-home {
  width: 100%;
  background: #000;
  color: #fff;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.preorder-home-inner {
  width: min(1080px, calc(100% - 3rem));
  margin: 0 auto;
}

/* Heading  */

.preorder-home-heading {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.preorder-home-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}

.preorder-home-heading p {
  margin: 0.9rem 0 0;

  color: var(--c-red);

  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 500;
}

/* Form Container */

.preorder-home-form {
  width: 100%;

  background: #414141;

  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;

  padding: 0.75rem 1rem 0.65rem;

  box-sizing: border-box;
}

/* Individual Fields */

.preorder-home-field {
  width: 100%;

  padding: 0.55rem 0.1rem 0.7rem;

  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.preorder-home-field label {
  display: block;

  margin-bottom: 0.35rem;

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.58rem;
  font-weight: 500;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preorder-home-field input {
  display: block;

  width: 100%;

  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;

  color: #fff;

  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.4;

  box-sizing: border-box;
}

.preorder-home-field input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.preorder-home-field input:focus {
  color: #fff;
}

/* Submit Button */

.preorder-home-submit {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  margin-top: 0.85rem;

  min-height: 46px;

  border: 0;
  border-radius: 8px;

  background: #c91b0b;
  color: #fff;

  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;

  letter-spacing: 0.13em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 180ms ease,
    transform 180ms ease;
}

.preorder-home-submit:hover {
  background: #e12613;
}

.preorder-home-submit:active {
  transform: translateY(1px);
}

/* Tablet */

@media (max-width: 900px) {
  .preorder-home {
    padding: 5rem 0;
  }

  .preorder-home-inner {
    width: min(760px, calc(100% - 2rem));
  }
}

/* Mobile */

@media (max-width: 560px) {
  .preorder-home {
    padding: 4rem 0;
  }

  .preorder-home-inner {
    width: calc(100% - 1.5rem);
  }

  .preorder-home-heading {
    margin-bottom: 2.5rem;
  }

  .preorder-home-heading h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .preorder-home-form {
    padding: 0.6rem 0.8rem 0.6rem;
  }

  .preorder-home-field {
    padding-block: 0.65rem;
  }

  .preorder-home-submit {
    min-height: 48px;
  }
}

/* Mobile layout  */
@media (max-width: 560px) {
  .new-hero {
    min-height: 430px;
  }

  .new-hero-image {
    width: 100%;
    max-width: 600px;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .new-hero-content {
    min-height: 430px;
    padding: 1rem;
    align-items: flex-end;
  }

  .new-hero-callout {
    width: 100%;
    max-width: 520px;
    box-sizing: border-box;
    padding: 1rem;
  }

  .new-hero-callout p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .built-different {
    overflow: hidden;
  }

  .built-different-inner {
    width: calc(100% - 2rem);
    min-height: 0;
    overflow: visible;
  }

  .built-different-title {
    font-size: clamp(2.5rem, 13vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .built-different-intro {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    text-align: center;
  }

  .built-different-script {
    width: auto;
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .built-different-description {
    width: min(330px, 100%);
    margin: 0 auto;
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .built-different-specs {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.7rem;
    row-gap: 0.9rem;
    margin: 2rem 0 0;
  }

  .built-different-spec {
    min-width: 0;
    gap: 0.45rem;
    font-size: 0.68rem;
    white-space: normal;
  }

  .built-different-spec .spec-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }

  /* Keep product artwork in normal mobile flow so it cannot cover text. */
  .built-different-product {
    position: relative;
    inset: auto;
    width: 100%;
    height: 245px;
    margin-top: 1.5rem;
    z-index: 3;
  }

  .built-different-main {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    width: 86%;
    max-width: 100%;
    z-index: 2;
  }

  .built-different-secondary {
    position: absolute;
    right: 2%;
    top: 0;
    bottom: auto;
    width: 30%;
    max-width: 100%;
    z-index: 3;
  }

  .built-different-link {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: min(205px, 70vw);
    height: 46px;
    margin: 0.75rem auto 0;
    z-index: 8;
  }

  .built-different-link:hover {
    transform: none;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip-item {
    min-width: 0;
    min-height: 64px;
    padding: 0.85rem 1rem;
    justify-content: flex-start;
    text-align: left;
  }

  .feature-strip-label {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .preorder-home-inner {
    width: calc(100% - 2rem);
  }

  .preorder-home-form {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .built-different-inner {
    overflow: hidden;
  }

  .built-different-product {
    overflow: hidden;
  }
}
