:root {
  --black: #030404;
  --white: #ffffff;
  --paper: #e8e1d6;
  --teal: #0085CA;
  --red: #C8102E;
  --line: rgba(255, 255, 255, 0.18);
  --paper-line: rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", Arial, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
  padding: 16px clamp(24px, 4vw, 62px);
  background: rgba(0, 0, 0, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--teal);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
h1,
h2,
h3,
.site-nav,
.button,
.call-button {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 38px;
  line-height: 0.86;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  gap: clamp(9px, 1.45vw, 20px);
  align-items: center;
  font-size: 14px;
}

.site-nav a,
.call-button,
.button {
  text-decoration: none;
}

.nav-item {
  position: relative;
}

.has-menu > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 230px;
  padding: 12px 0;
  background: rgba(3, 4, 4, 0.96);
  border: 1px solid rgba(53, 184, 196, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 10px 16px;
  white-space: nowrap;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 20px;
}

.call-button {
  border-color: var(--red);
}

.call-button img,
.button img {
  width: 21px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(96%) saturate(3432%) hue-rotate(345deg) brightness(95%) contrast(93%);
}

.partner-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #030404;
}

.partner-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 70%;
}

.partner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(1.08) contrast(1.04) brightness(1.1);
}

.partner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.96) 34%, rgba(0, 0, 0, 0.34) 64%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
}

.partner-hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, calc(100% - 48px));
  padding: 140px 0 62px;
  margin-left: clamp(24px, 4.8vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 6.7vw, 88px);
  font-weight: 400;
  line-height: 0.96;
}

.hero-brush-line {
  display: block;
  width: 430px;
  max-width: 92%;
  height: 20px;
  margin: 16px 0 22px;
  background: url("instinct-brush-line.png") left center / 100% 100% no-repeat;
}

.partner-hero-copy p:not(.eyebrow) {
  max-width: 490px;
  margin: 0 0 28px;
  color: #f2f5f5;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.partner-hero .hero-actions {
  align-items: flex-start;
  flex-direction: column;
  width: min(100%, 740px);
}

.service-action-row {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-action-row .button {
  width: 100%;
  padding: 0 14px;
}

.button.primary {
  background: var(--red);
}

.button.outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.8);
}

.partner-position,
.when-section,
.partner-faq,
.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 54px;
  padding: clamp(54px, 6vw, 76px) clamp(24px, 8vw, 112px);
}

.partner-position {
  color: #15120f;
  background: var(--paper);
}

.partner-position h2,
.when-section h2,
.partner-faq h2,
.process-section h2,
.proof-section h2,
.partner-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
}

.red-rule {
  display: block;
  width: 54px;
  height: 3px;
  margin: 18px 0 24px;
  background: var(--red);
}

.position-copy p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.65;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  color: var(--white);
  background: #030404;
}

.partner-grid article {
  min-height: 235px;
  padding: 34px clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.partner-grid article:last-child {
  border-right: 0;
}

.partner-grid h3 {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.partner-grid p,
.process-grid p,
.when-list p,
.proof-list p,
.partner-cta p {
  margin: 0;
  line-height: 1.6;
}

.partner-grid p,
.process-grid p,
.when-list p,
.proof-list p {
  color: #dfe4e5;
  font-size: 16px;
}

.when-section {
  color: #15120f;
  background: #f7f3eb;
}

.when-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--paper-line);
}

.when-list article {
  padding: 24px 28px;
  background: #ffffff;
}

.when-list h3 {
  margin: 0 0 10px;
  color: #9a2318;
  font-size: 30px;
  font-weight: 400;
  line-height: 0.96;
}

.when-list p {
  color: #202526;
  font-weight: 600;
}

.process-section {
  padding: clamp(48px, 5vw, 70px) clamp(24px, 8vw, 112px);
  text-align: center;
  background: #10100f;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.process-grid h3,
.proof-list h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 400;
}

.proof-section {
  color: var(--white);
  background: #030404;
}

.partner-faq {
  color: #15120f;
  background: #f7f3eb;
  border-top: 1px solid var(--paper-line);
}

.faq-list {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: #111313;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 0;
  color: var(--red);
  font-size: 28px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 18px;
  color: #202526;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.small-brush {
  width: 300px;
  height: 17px;
  margin-top: 18px;
}

.proof-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.proof-list article {
  padding: 24px 28px;
  background: #111313;
}

.proof-list h3 {
  color: var(--teal);
}

.partner-example {
  padding: clamp(44px, 5vw, 64px) clamp(24px, 8vw, 112px);
  background: #15120f;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-example blockquote {
  max-width: 980px;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.5;
}

.quote-credit {
  margin: 20px 0 0;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(38px, 5vw, 60px) clamp(24px, 8vw, 112px);
  background: var(--paper);
  color: #15120f;
}

.partner-cta p {
  max-width: 560px;
  margin-top: 10px;
  font-size: 18px;
}

.partner-cta .button.outline {
  color: #15120f;
  border-color: rgba(0, 0, 0, 0.42);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .hero-actions {
    flex-wrap: wrap;
  }

  .partner-hero-copy {
    padding-top: 72px;
    margin-left: 24px;
  }

  .partner-hero-media {
    width: 100%;
    opacity: 0.48;
  }

  .partner-position,
  .when-section,
  .when-list,
  .partner-grid,
  .process-grid,
  .proof-section,
  .partner-faq,
  .partner-cta {
    grid-template-columns: 1fr;
  }

  .partner-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .service-action-row {
    grid-template-columns: 1fr;
  }

  .call-button,
  .button {
    width: 100%;
  }
}
