* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --dark: #0a0a0b;
  --dark-2: #111113;
  --cream: #f7efe4;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.1);
  --gold: #b77b13;
  --gold-2: #f3c46a;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

#partnershipCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(95px);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.glow-one {
  top: 5%;
  left: -170px;
  background: rgba(183, 123, 19, 0.55);
}

.glow-two {
  right: -190px;
  top: 35%;
  background: rgba(183, 123, 19, 0.62);
}

.glow-three {
  left: 38%;
  bottom: -220px;
  background: rgba(243, 196, 106, 0.28);
}

.section-pad {
  position: relative;
  z-index: 2;
  padding: 120px 6%;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
}

.site-header {
  width: 100%;
  height: 105px;
  padding: 0 7%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgb(255, 240, 227);
}

.brand-sub {
  margin-top: 6px;
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  letter-spacing: 0.6em;
  padding-left: 40px;
  color: rgb(255, 240, 227);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 800;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -8px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  height: 58px;
  padding: 0 28px 0 32px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-weight: 900;
  transition: 0.35s ease;
  box-shadow: 0 16px 45px rgba(255, 255, 255, 0.12);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(183, 123, 19, 0.22);
}

.nav-arrow {
  font-size: 1.8rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: 0.3s ease;
}

.partnership-hero {
  min-height: 100vh;
  padding-top: 180px;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  align-items: center;
}

.hero-bg-word {
  position: absolute;
  top: 17%;
  left: 2%;
  font-size: clamp(5rem, 15vw, 16rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  color: rgba(255, 255, 255, 0.026);
  pointer-events: none;
}

.hero-copy h1,
.section-heading h2,
.process-copy h2,
.form-intro h2,
.closing-card h2 {
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.process-copy p,
.form-intro p,
.closing-card p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.55vw, 1.35rem);
  line-height: 1.65;
  margin-top: 28px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  transition: 0.35s ease;
}

.primary-btn {
  gap: 18px;
  background: var(--white);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(243, 196, 106, 0.6), transparent 46%);
  transform: translateX(-90%);
  transition: 0.7s ease;
}

.primary-btn span {
  position: relative;
  z-index: 2;
}

.primary-btn:hover::before {
  transform: translateX(90%);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-4px);
}

.secondary-btn {
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.partnership-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(243, 196, 106, 0.27);
  animation: orbitSpin 22s linear infinite;
}

.ring-one {
  width: 520px;
  height: 520px;
}

.ring-two {
  width: 390px;
  height: 390px;
  border-color: rgba(243, 196, 106, 0.22);
  animation-direction: reverse;
  animation-duration: 17s;
}

.deal-card {
  width: min(520px, 100%);
  min-height: 540px;
  border-radius: 38px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 40px 130px rgba(0, 0, 0, 0.7),
    0 0 85px rgba(183, 123, 19, 0.16),
    inset 0 0 60px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(20px);
  transform: rotateY(-9deg) rotateX(5deg);
  position: relative;
  overflow: hidden;
}

.deal-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18), transparent 42%);
  animation: cardLight 8s ease-in-out infinite;
}

.deal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(183, 123, 19, 0.17), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(183, 123, 19, 0.15), transparent 34%);
  pointer-events: none;
}

.deal-card-top,
.deal-card-main,
.deal-card-bottom {
  position: relative;
  z-index: 2;
}

.deal-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  font-size: 0.88rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 24px rgba(243, 196, 106, 0.9);
}

.deal-code {
  color: var(--gold-2);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.deal-card-main {
  margin-top: 62px;
}

.deal-label {
  color: var(--gold-2);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 900;
}

.deal-card-main h2 {
  margin-top: 14px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.fit-meter {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.5fr;
  gap: 10px;
  margin-top: 34px;
}

.fit-meter span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 24px rgba(183, 123, 19, 0.22);
  animation: meterPulse 2.6s ease-in-out infinite;
}

.fit-meter span:nth-child(2) {
  animation-delay: 0.3s;
}

.fit-meter span:nth-child(3) {
  animation-delay: 0.6s;
}

.deal-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.deal-grid div {
  min-height: 110px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.095);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deal-grid span {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.deal-grid strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.deal-card-bottom {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  font-weight: 850;
}

.mini-route {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 210px;
}

.mini-route span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 18px rgba(243, 196, 106, 0.8);
}

.mini-route i {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-2));
}

.floating-chip {
  position: absolute;
  z-index: 6;
  padding: 13px 17px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  animation: floatSoft 5s ease-in-out infinite;
}

.chip-one {
  left: 0;
  top: 18%;
}

.chip-two {
  right: 2%;
  top: 54%;
  animation-delay: 0.8s;
}

.chip-three {
  left: 12%;
  bottom: 8%;
  animation-delay: 1.3s;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 66px;
  text-align: center;
}

.section-heading h2::after,
.process-copy h2::after,
.form-intro h2::after,
.closing-card h2::after {
  content: "";
  display: block;
  width: min(520px, 70%);
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading h2::after {
  margin-left: auto;
  margin-right: auto;
}

.align-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.align-card {
  min-height: 340px;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  transition: 0.4s ease;
}

.align-card:hover {
  transform: translateY(-10px);
  border-color: rgba(243, 196, 106, 0.3);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.58);
}

.card-number {
  color: var(--gold-2);
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 950;
}

.align-card h3 {
  margin-top: 80px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.07em;
}

.align-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.process-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(183, 123, 19, 0.13), transparent 32%),
    radial-gradient(circle at 92% 40%, rgba(183, 123, 19, 0.22), transparent 30%),
    #080808;
}

.process-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px;
  border-radius: 42px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48);
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 28px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-2), transparent);
  box-shadow: rgba(183, 123, 19, 0.22);
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
}

.timeline-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--black);
  font-weight: 950;
  box-shadow: 0 0 34px rgba(243, 196, 106, 0.25);
  position: relative;
  z-index: 2;
}

.process-item div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-item h3 {
  font-size: 1.5rem;
  letter-spacing: -0.045em;
}

.process-item p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.form-section {
  padding-top: 130px;
}

.form-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 135px;
}

.intro-note {
  margin-top: 38px;
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-note span {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 24px rgba(243, 196, 106, 0.9);
}

.intro-note p {
  margin-top: 0;
  font-size: 1rem;
}

.partnership-form {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.46);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--cream);
  font-weight: 850;
  margin-bottom: 18px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  outline: none;
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.54);
  color: var(--white);
  padding: 18px 18px;
  transition: 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

select {
  cursor: pointer;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(243, 196, 106, 0.58);
  box-shadow: 0 0 0 4px rgba(243, 196, 106, 0.08);
}

.submit-btn {
  width: 100%;
  min-height: 64px;
  border: none;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font-weight: 950;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(243, 196, 106, 0.62), transparent 46%);
  transform: translateX(-90%);
  transition: 0.7s ease;
}

.submit-btn span {
  position: relative;
  z-index: 2;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: rgba(183, 123, 19, 0.22);
}

.submit-btn:hover::before {
  transform: translateX(90%);
}

.form-message {
  display: none;
  margin-top: 20px;
  color: var(--gold-2);
  line-height: 1.6;
  font-weight: 800;
}

.form-message.active {
  display: block;
}

.closing-section {
  padding-top: 70px;
}

.closing-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 18%, rgba(183, 123, 19, 0.13), transparent 30%) linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48);
}

.site-footer {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #050505;
  padding: 110px 6% 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-network {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
}

.footer-cta,
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-cta {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 90px;
}

.connector-3d {
  margin: 28px auto 34px;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 700px;
}

.connector-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-2), var(--gold-2), transparent);
  box-shadow: rgba(183, 123, 19, 0.22);
  animation: connectorPulse 3s ease-in-out infinite;
}

.connector-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow:
    0 0 50px rgba(183, 123, 19, 0.28);
  rgba(183, 123, 19, 0.22);
  animation: nodeFloat 3.5s ease-in-out infinite;
}

.node-mid {
  width: 24px;
  height: 24px;
  background: var(--gold-2);
  animation-delay: 0.5s;
}

.node-right {
  animation-delay: 1s;
}

.footer-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 950;
  letter-spacing: -0.02em;
  transition: 0.35s ease;
}

.footer-button:hover {
  transform: translateY(-4px);
  box-shadow: rgba(183, 123, 19, 0.22);
}

.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  max-width: 430px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.7;
  color: rgb(255, 240, 227);
}

.footer-logo .brand-main {
  font-size: 2.2rem;
  color: rgb(255, 240, 227);
}

.footer-logo .brand-sub {
  color: rgb(255, 240, 227);
  margin-left: -15px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column h4 {
  color: var(--cream);
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-column a {
  color: var(--muted);
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  max-width: var(--max);
  margin: 52px auto 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
}

.reveal-up {
  opacity: 0;
  transform: translateY(42px);
  transition: 0.85s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes cardLight {

  0%,
  45% {
    transform: translateX(-90%);
  }

  60%,
  100% {
    transform: translateX(90%);
  }
}

@keyframes meterPulse {

  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.84);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes floatSoft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes connectorPulse {

  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.92);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes nodeFloat {

  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }

  50% {
    transform: translateY(-8px) translateZ(40px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0 5%;
  }

  .nav-links {
    gap: 24px;
  }

  .partnership-hero {
    grid-template-columns: 1fr;
    padding-top: 160px;
  }

  .partnership-visual {
    min-height: 560px;
  }

  .deal-card {
    transform: none;
  }

  .align-grid {
    grid-template-columns: 1fr;
  }

  .process-shell {
    grid-template-columns: 1fr;
  }

  .form-shell {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: relative;
    top: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 88px;
  }

  .brand-main {
    font-size: 1.7rem;
  }

  .brand-sub {
    font-size: 0.62rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    height: calc(100vh - 88px);
    padding: 42px 7%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: 0.35s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 2rem;
    letter-spacing: -0.05em;
  }

  .nav-cta {
    display: none;
  }

  .section-pad {
    padding: 90px 6%;
  }

  .partnership-hero {
    min-height: auto;
    padding-top: 140px;
  }

  .partnership-visual {
    min-height: 500px;
  }

  .deal-card {
    min-height: auto;
  }

  .floating-chip {
    display: none;
  }

  .visual-ring {
    opacity: 0.5;
  }

  .process-shell,
  .closing-card {
    padding: 34px 24px;
    border-radius: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .partnership-form {
    padding: 24px;
    border-radius: 28px;
  }
}

@media (max-width: 520px) {
  .section-pad {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-copy h1,
  .section-heading h2,
  .process-copy h2,
  .form-intro h2,
  .closing-card h2 {
    font-size: 3.1rem;
  }

  .hero-copy p:not(.eyebrow),
  .section-heading p,
  .process-copy p,
  .form-intro p,
  .closing-card p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .partnership-visual {
    min-height: 440px;
  }

  .deal-card {
    padding: 20px;
    border-radius: 28px;
  }

  .deal-card-main {
    margin-top: 42px;
  }

  .deal-grid {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .timeline-node {
    width: 52px;
    height: 52px;
  }

  .process-timeline::before {
    left: 25px;
  }

  .footer-button {
    width: 100%;
  }
}

