:root {
  --asphalt-950: #080f16;
  --asphalt-900: #12181d;
  --asphalt-800: #1c2731;
  --steel-500: #69727d;
  --smoke: #f5f5f5;
  --white: #ffffff;
  --orange: #ff4b1f;
  --gold: #ffd200;
  --blue: #6ec1e4;
  --red: #cc3366;
  --line-dark: rgba(255, 255, 255, .14);
  --line-light: rgba(8, 15, 22, .13);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(8, 15, 22, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--asphalt-950);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(8, 15, 22, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.header-cta,
.btn {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-logo {
  width: 48px;
  height: 36px;
  object-fit: contain;
  border-radius: 5px;
  background: #050a0f;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
}

.site-header nav a {
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: var(--gold);
}

.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 16px;
  color: var(--asphalt-950);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px clamp(22px, 6vw, 82px) 42px;
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 15, 22, .98) 0%, rgba(8, 15, 22, .78) 46%, rgba(8, 15, 22, .28) 100%),
    linear-gradient(180deg, rgba(8, 15, 22, .08), rgba(8, 15, 22, .88));
}

.hero-content,
.hero-strip {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 1020px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
}

h1,
h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: .96;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(64px, 11vw, 150px);
}

h1 span,
.pack-card strong {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  max-width: 860px;
  font-size: clamp(42px, 5.4vw, 78px);
}

h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

p {
  margin: 0;
}

h1,
h2,
h3,
p,
span,
strong,
em,
li,
a,
button {
  overflow-wrap: anywhere;
}

.hero-lead,
.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 560;
}

.hero-lead {
  margin-top: 24px;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 20px;
  cursor: pointer;
}

.btn.primary {
  color: var(--asphalt-950);
  background: linear-gradient(90deg, var(--orange), var(--gold));
  box-shadow: 0 18px 38px rgba(255, 75, 31, .28);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .52);
  background: rgba(8, 15, 22, .28);
}

.btn.light-btn {
  color: var(--asphalt-950);
  background: var(--white);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 980px;
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .16);
}

.hero-strip article {
  min-height: 116px;
  padding: 18px;
  background: rgba(8, 15, 22, .74);
}

.hero-strip strong {
  display: block;
  color: var(--gold);
  font-family: Anton, Impact, sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
}

.hero-strip span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 86px clamp(22px, 6vw, 82px);
}

.section.light {
  color: var(--asphalt-950);
  background:
    linear-gradient(120deg, rgba(255, 75, 31, .08), transparent 34%),
    linear-gradient(315deg, rgba(110, 193, 228, .1), transparent 36%),
    var(--smoke);
}

.section.dark {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 75, 31, .18), transparent 34%),
    linear-gradient(315deg, rgba(255, 210, 0, .11), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0, rgba(255, 255, 255, .035) 1px, transparent 1px, transparent 84px),
    var(--asphalt-950);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-bottom: 34px;
}

.light .lead {
  color: #28313a;
}

.feature-grid,
.visibility-grid,
.contact-grid,
.funding-grid,
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.panel,
.contact-grid article,
.visibility-grid article,
.funding-grid article,
.deliverables article {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .72);
}

.panel-num {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-family: Anton, Impact, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.panel p,
.contact-grid p,
.visibility-grid span,
.funding-grid span,
.deliverables span {
  color: #3d4650;
}

.funding-grid {
  grid-template-columns: repeat(5, 1fr);
}

.funding-grid strong,
.deliverables strong {
  display: block;
  margin-bottom: 10px;
  color: var(--asphalt-950);
  font-size: 18px;
}

.human-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.human-grid figure {
  min-height: 430px;
}

.human-grid img {
  min-height: 380px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-item {
  min-height: 128px;
  border: 0;
  padding: 20px;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.timeline-item.active {
  color: var(--asphalt-950);
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.timeline-item b {
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

.timeline-item span {
  display: block;
  margin-top: 12px;
  font-weight: 900;
}

.timeline-detail {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
}

.timeline-detail img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.timeline-detail div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.timeline-detail h3 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
}

.timeline-detail p:last-child {
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 18px;
}

figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--asphalt-950);
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figcaption {
  padding: 14px 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
}

.showcase-main img {
  min-height: 520px;
}

.showcase-side {
  display: grid;
  gap: 18px;
}

.showcase-side img {
  min-height: 233px;
}

.showcase figure img {
  object-fit: contain;
  background: #0b1118;
}

.logo-lab {
  margin-top: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .72);
}

.logo-lab-head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, .42fr);
  gap: 22px;
  align-items: end;
}

.logo-lab h3 {
  color: var(--asphalt-950);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
}

.logo-lab p {
  color: #3d4650;
}

.logo-controls {
  display: grid;
  gap: 10px;
}

.upload-logo,
.generate-logo-btn,
.logo-controls input,
.logo-controls select {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-light);
  border-radius: 5px;
  color: var(--asphalt-950);
  background: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.logo-controls input {
  justify-content: flex-start;
  width: 100%;
  padding: 0 14px;
  text-transform: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.generate-logo-btn {
  border: 0;
  color: var(--asphalt-950);
  background: linear-gradient(90deg, var(--orange), var(--gold));
  cursor: pointer;
}

.generate-logo-btn:disabled {
  cursor: wait;
  opacity: .62;
}

.upload-logo {
  cursor: pointer;
}

.upload-logo input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.logo-controls select {
  padding: 0 12px;
}

.logo-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--asphalt-950);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.logo-loading[hidden] {
  display: none;
}

.logo-loading span {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(8, 15, 22, .18);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mockup-preview {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 14px;
  margin-top: 18px;
}

.mockup-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(8, 15, 22, .13);
  border-radius: var(--radius);
  background: var(--asphalt-950);
}

.mockup-card > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
}

.mockup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(8, 15, 22, .72));
  pointer-events: none;
}

.mockup-card strong {
  position: absolute;
  z-index: 3;
  left: 14px;
  bottom: 12px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
}

.logo-overlay {
  position: absolute;
  z-index: 2;
  display: none;
  width: 18%;
  max-height: 18%;
  object-fit: contain;
  padding: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 22px rgba(8, 15, 22, .28);
}

.mockup-preview.has-logo .logo-overlay {
  display: block;
}

.logo-car {
  left: 46%;
  top: 42%;
}

.logo-suit {
  left: 42%;
  top: 28%;
}

.logo-paddock {
  left: 14%;
  top: 18%;
}

.mockup-preview[data-level="supporter"] .logo-overlay {
  width: 13%;
  max-height: 14%;
}

.mockup-preview[data-level="officiel"] .logo-overlay {
  width: 17%;
  max-height: 18%;
}

.mockup-preview[data-level="premium"] .logo-overlay,
.mockup-preview[data-level="titre"] .logo-overlay {
  width: 22%;
  max-height: 24%;
}

.mockup-preview[data-level="premium"] .logo-car,
.mockup-preview[data-level="titre"] .logo-car {
  left: 39%;
  top: 36%;
}

.mockup-preview[data-level="titre"] .logo-car {
  width: 28%;
}

.mockup-preview[data-level="supporter"] .logo-paddock {
  left: 20%;
  top: 24%;
}

.logo-note {
  margin-top: 12px;
  color: #3d4650;
  font-size: 13px;
  font-weight: 800;
}

.visibility-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.visibility-score {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.visibility-score article {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, .72);
}

.visibility-score strong,
.visibility-score span,
.visibility-score em {
  display: block;
}

.visibility-score strong {
  color: var(--asphalt-950);
  font-size: 16px;
}

.visibility-score span {
  margin: 8px 0;
  color: var(--orange);
  font-size: 20px;
  letter-spacing: .05em;
}

.visibility-score em {
  color: #3d4650;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.visibility-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--asphalt-950);
  font-size: 18px;
}

.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.partners a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.partners a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.partners figure {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #050a0f;
}

.partners img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.partner-copy figure {
  align-content: center;
  gap: 12px;
}

.partner-copy figcaption {
  align-self: end;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  text-align: center;
  font-size: 12px;
}

.partner-wordmark {
  color: var(--white);
  font-family: Anton, Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.pack-layout {
  display: grid;
  grid-template-columns: 220px minmax(280px, 1fr) minmax(280px, .8fr);
  gap: 18px;
  align-items: stretch;
}

.pack-tabs {
  display: grid;
  gap: 10px;
}

.pack-tab {
  min-height: 54px;
  border: 1px solid var(--line-light);
  border-radius: 5px;
  color: var(--asphalt-950);
  background: rgba(255, 255, 255, .72);
  font: 900 12px/1 Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
}

.pack-tab.active {
  border-color: transparent;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.pack-card,
.budget-tool {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--asphalt-950);
  color: var(--white);
}

.pack-card h3 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 54px;
  font-weight: 400;
}

.pack-card strong {
  display: block;
  margin-bottom: 22px;
  font-family: Anton, Impact, sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
}

.pack-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .78);
}

.budget-tool {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.budget-tool label {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.budget-tool input {
  width: 100%;
  margin: 28px 0;
  accent-color: var(--orange);
}

.budget-result strong {
  display: block;
  font-family: Anton, Impact, sans-serif;
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
}

.budget-result span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.deliverables {
  margin-top: 18px;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 30px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 15, 22, .94), rgba(8, 15, 22, .72)),
    url("assets/site-officiel/portimao.jpg") center / cover;
}

.download-band h2 {
  max-width: 720px;
}

.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-grid h3 {
  color: var(--asphalt-950);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(22px, 6vw, 82px);
  color: rgba(255, 255, 255, .68);
  background: var(--asphalt-950);
  border-top: 1px solid var(--line-dark);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

@media (min-width: 1280px) {
  .section,
  .hero {
    padding-left: max(82px, calc((100vw - 1280px) / 2 + 82px));
    padding-right: max(82px, calc((100vw - 1280px) / 2 + 82px));
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
  }

  .site-header nav {
    gap: 12px;
  }

  .funding-grid,
  .visibility-score {
    grid-template-columns: repeat(3, 1fr);
  }

  .visibility-grid,
  .partners {
    grid-template-columns: repeat(2, 1fr);
  }

  .pack-layout {
    grid-template-columns: 190px minmax(280px, 1fr);
  }

  .budget-tool {
    grid-column: 1 / -1;
  }

  .mockup-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .car-preview {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 18px;
  }

  .site-header nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: thin;
  }

  .header-cta {
    min-height: 36px;
    align-self: stretch;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 34px;
  }

  .hero > img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 15, 22, .98) 0%, rgba(8, 15, 22, .82) 62%, rgba(8, 15, 22, .54) 100%),
      linear-gradient(180deg, rgba(8, 15, 22, .12), rgba(8, 15, 22, .9));
  }

  h1 {
    font-size: clamp(54px, 15vw, 96px);
  }

  h2 {
    font-size: clamp(36px, 9vw, 58px);
  }

  .hero-strip,
  .section-head,
  .feature-grid,
  .funding-grid,
  .timeline,
  .timeline-detail,
  .human-grid,
  .showcase,
  .visibility-score,
  .visibility-grid,
  .partners,
  .pack-layout,
  .deliverables,
  .download-band,
  .logo-lab-head,
  .mockup-preview,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .section-head {
    gap: 22px;
  }

  .hero-strip {
    margin-top: 42px;
  }

  .hero-strip article,
  .timeline-item {
    min-height: auto;
  }

  .human-grid figure {
    min-height: auto;
  }

  .human-grid img {
    min-height: 280px;
  }

  .showcase-main img,
  .showcase-side img {
    min-height: 260px;
  }

  .pack-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .pack-tab {
    min-width: 150px;
  }

  .mockup-card,
  .mockup-card > img:first-child {
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  .brand,
  .site-header nav,
  .header-cta,
  .btn {
    font-size: 11px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-lead,
  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-strip strong {
    font-size: 36px;
  }

  .panel,
  .contact-grid article,
  .visibility-grid article,
  .funding-grid article,
  .deliverables article,
  .visibility-score article,
  .pack-card,
  .budget-tool {
    padding: 20px;
  }

  .timeline {
    border-radius: 0;
    margin-left: -18px;
    margin-right: -18px;
    border-left: 0;
    border-right: 0;
  }

  .timeline-item {
    padding: 18px;
  }

  .timeline-detail {
    gap: 0;
  }

  .timeline-detail img {
    min-height: 220px;
  }

  .timeline-detail div {
    padding: 22px;
  }

  .showcase,
  .showcase-side {
    gap: 12px;
  }

  .partners {
    padding: 14px;
    gap: 12px;
  }

  .partners figure {
    min-height: 100px;
    padding: 14px;
  }

  .pack-card h3 {
    font-size: 42px;
  }

  .pack-card strong,
  .budget-result strong {
    font-size: 32px;
  }

  .logo-lab {
    padding: 20px;
  }

  .logo-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .site-header {
    gap: 10px;
  }

  .site-header nav {
    gap: 14px;
  }

  .section {
    padding: 56px 18px;
  }

  .btn {
    width: 100%;
  }

  .hero {
    padding-top: 44px;
  }

  .eyebrow,
  .kicker {
    font-size: 10px;
    letter-spacing: .18em;
  }

  h1 {
    font-size: clamp(48px, 18vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  h3 {
    font-size: 21px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-strip article {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
  }

  .hero-strip span {
    margin-top: 0;
  }

  .funding-grid,
  .visibility-score,
  .visibility-grid,
  .partners,
  .deliverables {
    gap: 12px;
  }

  .human-grid img,
  .showcase-main img,
  .showcase-side img,
  .mockup-card,
  .mockup-card > img:first-child {
    min-height: 220px;
  }

  .visibility-score span {
    font-size: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-logo {
    width: 42px;
    height: 32px;
  }

  .hero-strip article {
    grid-template-columns: 80px 1fr;
    padding: 14px;
  }

  .hero-strip strong {
    font-size: 32px;
  }
}

@media (hover: none) {
  .site-header nav a,
  .pack-tab,
  .btn {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .pack-tabs,
  .budget-tool,
  .download-actions,
  .site-footer {
    display: none;
  }

  body,
  .section.light,
  .section.dark,
  .download-band {
    color: #111820;
    background: #ffffff;
  }

  .hero {
    min-height: auto;
    color: #ffffff;
    break-after: page;
  }

  .section {
    break-inside: avoid;
    padding: 34px;
  }
}
