:root {
  --ink: #05070b;
  --black: #0a0d12;
  --charcoal: #111722;
  --panel: #121922;
  --panel-2: #182231;
  --soft: #202c3c;
  --line: rgba(255, 255, 255, 0.13);
  --muted: #9aa8ba;
  --white: #ffffff;
  --blue: #e21b2d;
  --blue-dark: #a91120;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(5, 7, 11, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #eef1f5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 11, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  width: 178px;
}

.brand img {
  width: 100%;
  border-radius: 4px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(226, 27, 45, 0.95);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 38px rgba(226, 27, 45, 0.28);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--blue-dark);
}

.button.ghost,
.button.secondary {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.92) 0%, rgba(5, 7, 11, 0.72) 36%, rgba(5, 7, 11, 0.16) 74%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.92) 0%, rgba(5, 7, 11, 0.1) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 12vw, 148px) 0 clamp(68px, 9vw, 112px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7.4vw, 98px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 62px);
  width: min(340px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 7, 11, 0.78);
  backdrop-filter: blur(16px);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 26px;
}

.hero-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.quick-specs {
  width: min(var(--max), calc(100% - 36px));
  margin: -34px auto 96px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.quick-specs div {
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.quick-specs strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.quick-specs span {
  color: var(--muted);
  font-weight: 800;
}

.section-head,
.builder-intro,
.builder-link-band,
.comparison,
.about-band,
.contact-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section-head {
  margin-top: 96px;
  margin-bottom: 34px;
}

.section-head:first-of-type {
  margin-top: 104px;
}

.section-head p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.section-head.narrow {
  margin: 0 0 28px;
}

.models-band {
  margin-top: 0;
  padding: 92px 0 82px;
  color: var(--ink);
  background: #eef1f5;
}

.models-band .section-head {
  margin-top: 0;
}

.models-band .section-head h2,
.models-band .model-copy h3 {
  color: var(--ink);
}

.models-band .section-head .eyebrow {
  color: var(--blue);
}

.models-band .model-grid {
  margin-bottom: 0;
}

.model-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.model-card {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.model-card:hover {
  border-color: rgba(226, 27, 45, 0.58);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.models-band .model-card:hover {
  border-color: rgba(226, 27, 45, 0.42);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.model-media {
  position: relative;
  height: 240px;
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
  padding: 20px 18px 26px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #d7dce3;
}

.models-band .model-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(220, 232, 242, 0.92) 0%, rgba(228, 232, 237, 0.9) 36%, rgba(183, 188, 194, 0.96) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 32%, rgba(15, 23, 42, 0.1) 100%);
}

.models-band .model-media::after {
  z-index: 1;
}

.model-media::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 22px;
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.24) 42%, rgba(255, 255, 255, 0) 72%);
  filter: blur(3px);
  opacity: 0.82;
  pointer-events: none;
}

.models-band .model-media::after {
  background:
    radial-gradient(ellipse at center, rgba(15, 23, 42, 0.22) 0%, rgba(15, 23, 42, 0.12) 38%, rgba(15, 23, 42, 0) 72%);
  opacity: 0.62;
}

.model-media.light {
  background: transparent;
}

.model-media.dark {
  background: transparent;
}

.model-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.08) contrast(1.04) drop-shadow(0 14px 22px rgba(0, 0, 0, 0.18));
}

.models-band .model-card:nth-child(-n+2) .model-media img {
  mix-blend-mode: multiply;
}

.models-band .model-card:nth-child(3) .model-media img {
  width: 124%;
  max-width: none;
  mix-blend-mode: normal;
  transform: translateY(8px);
}

.model-copy {
  padding: 0 18px 22px;
  text-align: center;
}

.model-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.model-copy h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 2.4vw, 32px);
}

.model-copy p,
.builder-intro p,
.about-band p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.model-copy ul,
.build-summary ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.model-copy p,
.model-copy ul {
  display: none;
}

.model-copy li,
.build-summary li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.model-copy li::before,
.build-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.builder-section {
  padding: 94px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(226, 27, 45, 0.24), transparent 30rem),
    linear-gradient(180deg, #080c12, #05070b);
}

.builder-link-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 82px;
  margin-bottom: 82px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.94)),
    #ffffff;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.1);
}

.builder-link-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
}

.builder-intro {
  margin-bottom: 34px;
}

.builder-intro p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
}

.builder {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(360px, 1.18fr);
  gap: 18px;
}

.builder-controls,
.builder-preview {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.builder-controls {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.builder-controls fieldset {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.builder-controls legend {
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.builder-controls label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  cursor: pointer;
}

.builder-controls input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.builder-preview {
  overflow: hidden;
}

.preview-image {
  min-height: 360px;
  background: #111722;
}

.preview-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.build-summary {
  padding: clamp(22px, 3vw, 34px);
}

.build-summary h3 {
  font-size: clamp(30px, 4vw, 44px);
}

.build-summary p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.build-summary li {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
}

.tier-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.tier-box span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.tier-box strong {
  color: var(--white);
  font-size: 22px;
}

.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.model-detail-page {
  background: #eef1f5;
}

.model-detail-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: 610px;
}

.model-hero-copy h1 {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(54px, 7vw, 94px);
}

.model-hero-copy p {
  max-width: 610px;
  color: #4f5864;
  font-size: clamp(18px, 2vw, 22px);
}

.model-hero-actions,
.model-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.model-hero-media {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: clamp(18px, 4vw, 38px);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at center, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0) 58%),
    #f7f9fc;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.13);
}

.model-hero-media img {
  max-height: 360px;
  object-fit: contain;
}

.model-spec-strip,
.model-detail-body,
.model-detail-cta {
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.model-spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.model-spec-strip div,
.spec-panel,
.option-panel {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.model-spec-strip div {
  padding: 22px;
}

.model-spec-strip span,
.spec-panel span {
  display: block;
  margin-bottom: 8px;
  color: #697381;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-spec-strip strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.model-detail-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: 84px 0;
}

.model-detail-copy h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
}

.model-detail-copy p {
  color: #4f5864;
  font-size: 19px;
}

.spec-panel {
  padding: clamp(22px, 4vw, 34px);
}

.spec-panel h3,
.option-panel h3 {
  color: var(--ink);
}

.spec-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.1);
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(180px, 1.2fr);
  gap: 1px;
  background: rgba(15, 23, 42, 0.1);
}

.spec-table span,
.spec-table strong {
  padding: 15px;
  background: #ffffff;
}

.spec-table span {
  color: #697381;
  font-weight: 900;
}

.spec-table strong {
  color: var(--ink);
}

.option-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.option-panel {
  padding: 24px;
}

.option-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: #4f5864;
  font-weight: 800;
}

.option-panel li {
  position: relative;
  padding-left: 20px;
}

.option-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.model-detail-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 88px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 22%, rgba(226, 27, 45, 0.28), transparent 20rem),
    linear-gradient(135deg, #111722, #05070b);
}

.model-detail-cta h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
}

.model-detail-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.comparison {
  padding: 94px 0;
  border-top: 1px solid var(--line);
}

.compare-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.compare-table > div {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.compare-table span {
  padding: 18px;
  background: var(--panel);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.compare-table .table-head span {
  color: var(--white);
  background: #05070b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: 74px clamp(20px, 4vw, 46px);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
  margin-top: 18px;
}

.about-band p {
  color: #4f5864;
}

.contact-copy p {
  color: #5f6873;
}

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

.about-copy p {
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: 104px 0;
}

.contact-copy {
  position: sticky;
  top: 106px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a {
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.contact-cards span {
  display: block;
  color: #697381;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 28px 86px rgba(15, 23, 42, 0.12);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #333c48;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: #f7f9fc;
  letter-spacing: 0;
  text-transform: none;
}

.quote-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 48px);
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  background: #eef1f5;
}

.site-footer img {
  width: 178px;
  filter: none;
}

.site-footer p {
  margin: 0;
  color: #5f6873;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-weight: 900;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.menu-open .main-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    border-radius: var(--radius);
  }

  .site-header.menu-open .header-cta {
    grid-column: 1 / -1;
    display: inline-flex;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -74px auto 36px;
  }

  .quick-specs,
  .builder,
  .about-band,
  .contact-section,
  .model-detail-hero,
  .model-detail-body,
  .model-detail-cta {
    grid-template-columns: 1fr;
  }

  .model-spec-strip,
  .option-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-grid {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .builder-link-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand {
    width: 148px;
  }

  .hero {
    min-height: 760px;
    align-items: start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 7, 11, 0.78) 0%, rgba(5, 7, 11, 0.72) 54%, rgba(5, 7, 11, 0.94) 100%);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

  h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero-card,
  .quick-specs,
  .section-head,
  .builder-intro,
  .builder-link-band,
  .comparison,
  .about-band,
  .contact-section,
  .model-grid,
  .builder,
  .model-detail-hero,
  .model-spec-strip,
  .model-detail-body,
  .option-grid,
  .model-detail-cta {
    width: min(100% - 28px, var(--max));
  }

  .quick-specs {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .model-media {
    height: 218px;
  }

  .model-detail-hero {
    min-height: auto;
    margin-top: 34px;
  }

  .model-hero-media {
    min-height: 290px;
  }

  .model-spec-strip,
  .option-grid,
  .model-detail-cta {
    grid-template-columns: 1fr;
  }

  .model-detail-body {
    padding: 58px 0;
  }

  .spec-table div {
    grid-template-columns: 1fr;
  }

  .builder-section {
    padding: 72px 0;
  }

  .preview-image,
  .preview-image img {
    min-height: 260px;
  }

  .compare-table > div {
    grid-template-columns: 1fr;
  }

  .compare-table .table-head {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

/* THEFUELHERO home */
.fuelhero-home {
  color: #0b0b0d;
  background: #f4f4f4;
}

.fuelhero-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  min-height: 70px;
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.72);
}

.text-brand,
.footer-brand {
  width: auto;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.text-brand span span,
.footer-brand span {
  color: #e21b2d;
}

.logo-brand {
  width: clamp(142px, 14vw, 190px);
  display: inline-flex;
  align-items: center;
}

.logo-brand img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.footer-logo-brand {
  margin: 0 auto 14px;
}

.fuelhero-home .main-nav {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.fuelhero-home .header-cta,
.fuelhero-home .button {
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.fuelhero-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: #000000;
}

.fuelhero-media,
.fuelhero-media video,
.fuelhero-media img,
.fuelhero-shade {
  position: absolute;
  inset: 0;
}

.fuelhero-media video,
.fuelhero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fuelhero-media img {
  display: none;
}

.fuelhero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.08) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.12) 52%);
}

.fuelhero-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
  padding: 160px 0 120px;
}

.fuelhero-hero-copy h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(64px, 10vw, 154px);
  font-weight: 900;
  line-height: 0.86;
}

.fuelhero-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-scroll-note {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 56px);
  bottom: clamp(24px, 4vw, 48px);
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll-note span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.24);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.intro-strip div {
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip strong {
  display: block;
  margin-bottom: 6px;
  color: #050505;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.intro-strip span {
  color: #656565;
  font-weight: 800;
}

.series-section,
.feature-panel,
.detail-section {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

.series-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  padding: clamp(84px, 10vw, 140px) 0;
}

.series-copy h2,
.feature-copy h2,
.detail-copy h2 {
  max-width: 760px;
  color: #050505;
  font-size: clamp(42px, 6vw, 86px);
}

.series-copy p:not(.eyebrow),
.feature-copy p,
.detail-copy p,
.fuelhero-home .contact-copy p {
  color: #505050;
  font-size: clamp(18px, 1.8vw, 22px);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #e21b2d;
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 42px;
  height: 2px;
  margin: 13px 0 0 12px;
  background: #e21b2d;
}

.series-visual,
.feature-media,
.detail-image {
  overflow: hidden;
  border-radius: 4px;
  background: #0a0a0a;
}

.series-visual {
  aspect-ratio: 16 / 9;
}

.series-visual img,
.feature-media img,
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fuelhero-home .models-band {
  padding: clamp(80px, 9vw, 124px) 0;
  color: #ffffff;
  background: #060606;
}

.fuelhero-home .models-band .section-head h2,
.fuelhero-home .models-band .model-copy h3 {
  color: #ffffff;
}

.fuelhero-home .models-band .section-head {
  width: min(1240px, calc(100% - 44px));
}

.fuelhero-home .model-grid {
  width: min(1240px, calc(100% - 44px));
}

.fuelhero-home .model-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: #111111;
}

.fuelhero-home .model-card:hover {
  border-color: rgba(226, 27, 45, 0.62);
  background: #151515;
  box-shadow: none;
}

.fuelhero-home .model-media {
  background: #f2f2f2;
}

.fuelhero-home .model-copy {
  padding-top: 22px;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(86px, 10vw, 140px) 0;
}

.feature-media {
  min-height: 540px;
}

.feature-copy {
  max-width: 520px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 30px;
}

.feature-list span {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: #111111;
  font-weight: 900;
  background: #ffffff;
}

.detail-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: 0 0 clamp(84px, 10vw, 130px);
}

.detail-image {
  min-height: 410px;
}

.fuelhero-home .contact-section {
  width: min(1240px, calc(100% - 44px));
  padding: clamp(80px, 9vw, 124px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fuelhero-home .contact-copy h2 {
  color: #050505;
}

.fuelhero-home .quote-form,
.fuelhero-home .contact-cards a {
  border-radius: 4px;
  box-shadow: none;
}

.fuelhero-home .quote-form {
  border-color: rgba(0, 0, 0, 0.12);
}

.fuelhero-home .quote-form input,
.fuelhero-home .quote-form select,
.fuelhero-home .quote-form textarea {
  border-radius: 4px;
}

.fuelhero-home .site-footer {
  color: #ffffff;
  border-top: 0;
  background: #050505;
}

.fuelhero-home .site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.fuelhero-home .site-footer nav {
  color: #ffffff;
}

@media (max-width: 1020px) {
  .fuelhero-home .site-header {
    position: sticky;
  }

  .series-section,
  .feature-panel,
  .detail-section,
  .fuelhero-home .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    max-width: none;
  }

  .feature-panel .feature-media {
    order: 2;
  }
}

@media (max-width: 720px) {
  .fuelhero-home .site-header {
    background: rgba(0, 0, 0, 0.92);
  }

  .logo-brand {
    width: 132px;
  }

  .fuelhero-hero {
    min-height: 760px;
  }

  .fuelhero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.92) 100%);
  }

  .fuelhero-hero-copy {
    width: min(100% - 28px, 1240px);
    padding: 108px 0 110px;
  }

  .fuelhero-hero-copy h1 {
    font-size: clamp(54px, 17vw, 82px);
  }

  .hero-scroll-note {
    left: 14px;
    right: 14px;
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .series-section,
  .feature-panel,
  .detail-section,
  .fuelhero-home .models-band .section-head,
  .fuelhero-home .model-grid,
  .fuelhero-home .contact-section {
    width: min(100% - 28px, 1240px);
  }

  .series-copy h2,
  .feature-copy h2,
  .detail-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .feature-media,
  .detail-image {
    min-height: 330px;
  }
}

/* DJI-inspired THEFUELHERO refresh */
.dji-inspired {
  background: #f5f5f5;
  color: #111111;
}

.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 48px;
  color: #181818;
  background: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  text-align: center;
}

.promo-bar a {
  color: #006dd9;
  font-weight: 700;
  white-space: nowrap;
}

.dji-inspired .dji-header {
  top: 48px;
  min-height: 64px;
  grid-template-columns: auto 1fr auto;
  border-bottom: 0;
  background: rgba(10, 12, 20, 0.82);
  backdrop-filter: blur(18px);
}

.dji-inspired .main-nav {
  justify-self: start;
  margin-left: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  gap: 28px;
}

.dji-inspired .main-nav a {
  padding: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.dji-inspired .main-nav a:hover,
.dji-inspired .main-nav a.active {
  color: #ffffff;
  background: transparent;
}

.dji-inspired .header-cta {
  min-height: 38px;
  padding: 9px 18px;
  border-radius: 20px;
  color: #ffffff;
  background: #e21b2d;
  box-shadow: none;
  font-size: 13px;
  text-transform: none;
}

.dj-hero,
.dj-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.dj-hero {
  display: grid;
  align-items: start;
  color: #ffffff;
  background: #06080d;
  isolation: isolate;
}

.dj-hero-media,
.dj-hero-media video,
.dj-hero-media img,
.dj-hero-vignette {
  position: absolute;
  inset: 0;
}

.dj-hero-media video,
.dj-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-hero-media {
  z-index: 0;
  overflow: hidden;
  background: #06080d;
  width: 100%;
  height: 100%;
}

.dj-hero-media .dj-hero-fallback {
  z-index: 0;
  opacity: 1;
}

.dj-hero-media .dj-hero-video {
  z-index: 1;
  display: block;
  opacity: 1;
}

.dj-hero-media.video-failed .dj-hero-video {
  display: none;
}

.tfh-page-root .dj-hero {
  position: relative !important;
  min-height: 100svh;
}

.tfh-page-root .dj-hero-media,
.tfh-page-root .dj-hero-media video,
.tfh-page-root .dj-hero-media img {
  position: absolute !important;
  inset: 0 !important;
}

.tfh-page-root .dj-hero-media video,
.tfh-page-root .dj-hero-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}

.dj-hero-vignette {
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0.62) 0%, rgba(8, 10, 16, 0.16) 34%, rgba(8, 10, 16, 0.54) 100%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0) 34%);
}

.dj-hero-copy,
.dj-panel-copy {
  position: relative;
  z-index: 3;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.dj-hero-copy {
  padding-top: clamp(150px, 18vh, 190px);
}

.dj-hero-copy p,
.dj-panel-copy p,
.dj-feature-grid p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.dj-hero-copy h1 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 700;
  line-height: 1;
}

.dj-hero-copy h2,
.dj-panel-copy h3 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.2;
}

.dj-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.dj-actions a {
  min-width: 116px;
  padding: 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
}

.dj-actions a::after {
  content: ">";
  margin-left: 10px;
}

.dj-actions.dark a {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.72);
}

.dj-product-tabs {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 8vw, 104px);
  bottom: clamp(42px, 8vh, 88px);
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.dj-product-tabs span {
  color: rgba(255, 255, 255, 0.7);
}

.dj-product-tabs a {
  position: relative;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 600;
}

.dj-product-tabs a.active {
  color: #ffffff;
}

.dj-product-tabs a.active::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #ffffff;
}

.support-dot {
  position: absolute;
  z-index: 5;
  right: 48px;
  bottom: 150px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #222222;
  background: #ffffff;
  font-size: 24px;
  font-weight: 500;
}

.dj-panel {
  display: grid;
  align-items: start;
  background: #ffffff;
}

.dj-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-panel-copy {
  padding-top: clamp(92px, 12vh, 130px);
}

.light-panel .dj-panel-copy p,
.light-panel .dj-panel-copy h2,
.light-panel .dj-panel-copy h3 {
  color: #111111;
}

.light-panel .dj-panel-copy p {
  color: #656565;
}

.light-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.96) 0%, rgba(245, 245, 245, 0.42) 38%, rgba(245, 245, 245, 0.02) 72%);
  pointer-events: none;
}

.dark-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
}

.dj-panel-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 700;
  line-height: 1;
}

.dj-model-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 12px;
  background: #f5f5f5;
}

.dj-model-strip a {
  min-height: 360px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  justify-items: center;
  padding: 26px 18px;
  text-align: center;
  background: #ffffff;
}

.dj-model-strip img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.dj-model-strip strong {
  margin-top: 18px;
  color: #111111;
  font-size: 24px;
}

.dj-model-strip span {
  color: #6a6a6a;
  font-size: 15px;
}

.dj-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: #f5f5f5;
}

.dj-feature-grid article {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  align-items: start;
  justify-items: center;
  text-align: center;
  color: #ffffff;
  background: #111111;
}

.dj-feature-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-feature-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.34));
}

.dj-feature-grid article > div {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 34px));
  padding-top: 56px;
}

.dj-feature-grid h2 {
  color: #ffffff;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
}

.dj-feature-grid a {
  display: inline-block;
  margin-top: 8px;
  color: #ffffff;
  font-weight: 700;
}

.dj-feature-grid a::after {
  content: " >";
}

.dj-fields {
  padding: clamp(72px, 9vw, 110px) clamp(18px, 4vw, 48px);
  text-align: center;
  background: #ffffff;
}

.dj-fields h2 {
  color: #111111;
  font-size: clamp(30px, 4.5vw, 54px);
}

.dj-fields > div {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dj-fields a {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: 28px;
  color: #ffffff;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.8)),
    #202020;
}

.dj-fields a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.dj-fields img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-fields span {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 700;
}

.dj-fields strong {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.dji-inspired .dj-contact {
  width: min(1180px, calc(100% - 36px));
  padding-top: 88px;
}

.dji-inspired .site-footer {
  background: #111111;
}

@media (max-width: 1020px) {
  .dji-inspired .dji-header {
    grid-template-columns: auto auto;
  }

  .dji-inspired .main-nav {
    margin-left: 0;
    gap: 0;
  }

  .dji-inspired .site-header.menu-open .main-nav {
    background: rgba(10, 12, 20, 0.96);
  }

  .dj-model-strip,
  .dj-feature-grid,
  .dj-fields > div {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .promo-bar {
    min-height: 42px;
    padding: 8px 40px 8px 14px;
    justify-content: flex-start;
    font-size: 12px;
    text-align: left;
  }

  .promo-bar a {
    display: none;
  }

  .dji-inspired .dji-header {
    top: 42px;
    min-height: 58px;
  }

  .dj-hero,
  .dj-panel {
    min-height: 760px;
  }

  .dj-hero-copy {
    width: min(100% - 28px, 960px);
    padding-top: 142px;
  }

  .dj-hero-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .dj-hero-copy h2,
  .dj-panel-copy h3 {
    font-size: 19px;
  }

  .dj-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .dj-actions a {
    min-width: 126px;
  }

  .dj-product-tabs {
    left: 46px;
    bottom: 34px;
  }

  .support-dot {
    display: none;
  }

  .dj-panel-copy {
    width: min(100% - 28px, 960px);
    padding-top: 78px;
  }

  .dj-panel-copy h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .light-panel img {
    object-position: 58% center;
  }

  .dark-panel img {
    object-position: 54% center;
  }

  .dj-model-strip,
  .dj-feature-grid,
  .dj-fields > div {
    grid-template-columns: 1fr;
  }

  .dj-model-strip a {
    min-height: 310px;
  }

  .dj-feature-grid article {
    min-height: 540px;
  }
}

/* DT model launch pages */
.model-launch {
  background: #f5f5f5;
}

.model-launch .model-detail-page {
  background: #f5f5f5;
}

.model-launch .model-detail-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  overflow: hidden;
  padding-top: 136px;
  background: #ececec;
}

.model-launch .model-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(247, 247, 247, 0.92) 0%, rgba(247, 247, 247, 0.72) 34%, rgba(236, 236, 236, 0.9) 100%),
    url("assets/thefuelhero-dt-shop.jpg") center / cover;
  filter: saturate(0.62) contrast(1.05);
  transform: scale(1.02);
  pointer-events: none;
}

.model-launch .model-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 63%, rgba(226, 27, 45, 0.16), transparent 21rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}

.model-launch .model-hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.model-launch .model-hero-copy .eyebrow {
  margin-bottom: 8px;
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.model-launch .model-hero-copy h1 {
  max-width: none;
  margin: 0;
  color: #111111;
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 700;
  line-height: 1;
}

.model-launch .model-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 14px auto 0;
  color: #383838;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.35;
}

.model-launch .model-hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.model-launch .button {
  min-height: 40px;
  padding: 9px 22px;
  border-radius: 999px;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
}

.model-launch .button.primary {
  color: #ffffff;
  background: #111111;
}

.model-launch .button.primary:hover {
  background: #e21b2d;
}

.model-launch .button.secondary {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.48);
  background: rgba(255, 255, 255, 0.58);
}

.model-launch .model-hero-media {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(48px, 8vh, 82px);
  width: min(1180px, 92vw);
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 0;
  transform: translateX(-50%);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.model-launch .model-hero-media::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 4%;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  filter: blur(18px);
}

.model-launch .model-hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-height: min(46vh, 430px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 36px 48px rgba(0, 0, 0, 0.22));
}

.model-launch .model-spec-strip {
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.model-launch .model-spec-strip div {
  padding: clamp(24px, 4vw, 42px);
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.model-launch .model-spec-strip div:last-child {
  border-right: 0;
}

.model-launch .model-spec-strip span {
  color: #6f6f6f;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.model-launch .model-spec-strip strong {
  color: #111111;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
}

.model-launch .model-detail-body {
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 5vw, 82px);
  padding: clamp(86px, 10vw, 136px) 0;
}

.model-launch .model-detail-copy .eyebrow {
  color: #e21b2d;
}

.model-launch .model-detail-copy h2 {
  color: #111111;
  font-size: clamp(38px, 5vw, 72px);
}

.model-launch .model-detail-copy p {
  color: #505050;
  font-size: 20px;
}

.model-launch .spec-panel,
.model-launch .option-panel {
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.model-launch .spec-panel {
  padding: clamp(24px, 4vw, 42px);
}

.model-launch .option-grid {
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 12px;
  background: #f5f5f5;
}

.model-launch .option-panel {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 241, 241, 0.96)),
    #ffffff;
}

.model-launch .option-panel h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.model-launch .model-detail-cta {
  width: 100%;
  margin: 0;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: clamp(82px, 10vw, 128px) 20px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.82)),
    url("assets/thefuelhero-powerflow-field.jpg") center / cover;
}

.model-launch .model-detail-cta > div {
  width: min(760px, 100%);
}

.model-launch .model-detail-cta .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.model-launch .model-detail-cta .button.primary {
  background: #e21b2d;
}

.model-launch .site-footer {
  color: #ffffff;
  background: #111111;
}

@media (max-width: 1020px) {
  .model-launch .model-detail-body,
  .model-launch .model-detail-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .model-launch .model-detail-hero {
    min-height: 760px;
    padding-top: 128px;
  }

  .model-launch .model-hero-copy {
    width: min(100% - 28px, 820px);
  }

  .model-launch .model-hero-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .model-launch .model-hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .model-launch .model-hero-media {
    bottom: 60px;
    width: 104vw;
  }

  .model-launch .model-hero-media img {
    max-height: 270px;
  }

  .model-launch .model-spec-strip,
  .model-launch .option-grid {
    grid-template-columns: 1fr;
  }

  .model-launch .model-spec-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .model-launch .model-detail-body {
    width: min(100% - 28px, 1180px);
    padding: 68px 0;
  }

  .model-launch .option-panel {
    min-height: 280px;
  }
}

/* DJI-style contact section */
.dji-inspired .dj-contact {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: clamp(74px, 9vw, 118px) clamp(18px, 4vw, 48px);
  background: #f5f5f5;
}

.dji-inspired .dj-contact .contact-copy {
  position: static;
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.dji-inspired .dj-contact .contact-copy .eyebrow {
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.dji-inspired .dj-contact .contact-copy h2 {
  margin-bottom: 14px;
  color: #111111;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 1;
}

.dji-inspired .dj-contact .contact-copy p {
  max-width: 680px;
  margin: 0 auto;
  color: #555555;
  font-size: clamp(17px, 1.8vw, 22px);
}

.dji-inspired .dj-contact .contact-cards {
  width: min(1180px, 100%);
  margin: clamp(34px, 5vw, 54px) auto 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dji-inspired .dj-contact .contact-cards a {
  min-height: 160px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border: 0;
  border-radius: 0;
  text-align: center;
  background: #ffffff;
  box-shadow: none;
}

.dji-inspired .dj-contact .contact-cards a:hover {
  color: #e21b2d;
}

.dji-inspired .dj-contact .contact-cards span {
  margin-bottom: 9px;
  color: #777777;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.dji-inspired .dj-contact .contact-cards strong {
  margin: 0;
  color: #111111;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}

.dji-inspired .dj-contact .quote-form {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.08);
  box-shadow: none;
  overflow: hidden;
}

.dji-inspired .dj-contact .quote-form label {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px 24px;
  color: #6f6f6f;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  background: #ffffff;
}

.dji-inspired .dj-contact .quote-form label:has(textarea),
.dji-inspired .dj-contact .quote-form button {
  grid-column: 1 / -1;
}

.dji-inspired .dj-contact .quote-form input,
.dji-inspired .dj-contact .quote-form select,
.dji-inspired .dj-contact .quote-form textarea {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #111111;
  background: transparent;
  font-size: 18px;
  outline: none;
}

.dji-inspired .dj-contact .quote-form textarea {
  min-height: 120px;
}

.dji-inspired .dj-contact .quote-form button {
  min-height: 64px;
  border-radius: 0;
  color: #ffffff;
  background: #111111;
  box-shadow: none;
}

.dji-inspired .dj-contact .quote-form button:hover {
  background: #e21b2d;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.model-launch .model-hero-media.reveal-on-scroll {
  transform: translateX(-50%) translateY(34px);
}

.model-launch .model-hero-media.reveal-on-scroll.revealed {
  transform: translateX(-50%) translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

.dj-panel img {
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dj-panel.revealed img {
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .dj-panel img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 860px) {
  .dji-inspired .dj-contact .contact-cards,
  .dji-inspired .dj-contact .quote-form {
    grid-template-columns: 1fr;
  }

  .dji-inspired .dj-contact .quote-form label:has(textarea),
  .dji-inspired .dj-contact .quote-form button {
    grid-column: auto;
  }
}
