:root {
  --ink: #111316;
  --muted: #606873;
  --line: #dfe4ea;
  --paper: #f6f8fa;
  --white: #ffffff;
  --navy: #172033;
  --blue: #1c6dd0;
  --cyan: #2fb7c9;
  --green: #34a853;
  --amber: #d89216;
  --shadow: 0 24px 80px rgba(17, 19, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

section {
  scroll-margin-top: 88px;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(14, 19, 27, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 168px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.nav a,
.footer a {
  transition: color 160ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--cyan);
}

.header-cta,
.button,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.header-cta {
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.button {
  padding: 0 19px;
  border-radius: 6px;
}

.button svg,
.header-cta svg,
.menu-toggle svg,
.service-card svg,
.feature-list svg,
.contact-strip svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #167a8f);
  box-shadow: 0 14px 35px rgba(28, 109, 208, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button.secondary.dark {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(23, 32, 51, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 80px) 34px;
  overflow: hidden;
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.9), rgba(9, 13, 20, 0.58) 42%, rgba(9, 13, 20, 0.18)),
    linear-gradient(180deg, rgba(9, 13, 20, 0.18), rgba(9, 13, 20, 0.86));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 870px;
  padding-bottom: 38px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.62rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100%, 1040px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 22px;
  background: rgba(16, 22, 31, 0.72);
  backdrop-filter: blur(14px);
}

.hero-panel strong {
  display: block;
  font-size: 1.02rem;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.intro,
.buyer-pathways,
.scale-section,
.event-showcase,
.scenario-section,
.services,
.standards,
.process,
.network-section,
.request,
.metrics,
.split-section,
.footer {
  padding-inline: clamp(20px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
  padding-block: 92px;
  background: var(--white);
}

.buyer-pathways {
  padding-block: 88px;
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pathway-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.pathway-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pathway-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pathway-card:hover {
  transform: translateY(-3px);
  border-color: rgba(28, 109, 208, 0.34);
  box-shadow: 0 18px 44px rgba(23, 32, 51, 0.1);
}

.pathway-card span {
  color: var(--cyan);
  font-weight: 800;
}

.pathway-card h3 {
  margin: 24px 0 0;
  font-size: 1.24rem;
  line-height: 1.15;
}

.pathway-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.event-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-block: 92px;
  background: #0f1520;
  color: var(--white);
}

.scale-section {
  padding-block: 92px;
  background: linear-gradient(180deg, #ffffff, #f6f8fa);
}

.scale-section .section-heading {
  max-width: 980px;
  margin-bottom: 36px;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.scale-card {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 32, 51, 0.06);
}

.scale-card span {
  width: max-content;
  padding: 6px 10px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.scale-card h3 {
  margin: 28px 0 0;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1.08;
}

.scale-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.scale-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.scale-card li {
  position: relative;
  padding-left: 18px;
  color: #2d3540;
  line-height: 1.45;
  font-weight: 650;
}

.scale-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

.showcase-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.showcase-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
  line-height: 1.74;
}

.carousel-shell {
  min-width: 0;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 8px;
  background: #171f2d;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 420ms ease;
}

.event-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(360px, 48vw, 620px);
  background: #111822;
}

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

.event-slide::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, transparent, rgba(6, 10, 16, 0.82));
}

.event-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 7px;
}

.event-caption strong {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.event-caption span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.carousel-controls {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  cursor: pointer;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.carousel-status {
  min-height: 46px;
  display: grid;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.scenario-section {
  padding-block: 90px;
  background: var(--white);
}

.scenario-section .section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.scenario-grid article {
  min-height: 320px;
  padding: 26px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.scenario-grid span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scenario-grid h3 {
  margin: 22px 0 0;
  font-size: 1.22rem;
  line-height: 1.22;
}

.scenario-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-heading h2,
.split-copy h2,
.request-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro > p,
.split-copy p,
.request-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--navy);
  color: var(--white);
}

.metrics div {
  padding: clamp(28px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.metrics span {
  color: var(--cyan);
  font-weight: 800;
}

.metrics strong {
  display: block;
  margin-top: 20px;
  font-size: 1.25rem;
}

.metrics p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.services,
.process {
  padding-block: 92px;
  background: var(--paper);
}

.standards {
  padding-block: 96px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 15, 23, 0.96), rgba(16, 25, 38, 0.91)),
    url("https://images.unsplash.com/photo-1560439514-4e9645039924?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.standards .section-heading {
  max-width: 900px;
  margin-bottom: 40px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.standards-grid article {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(13, 19, 29, 0.76);
  backdrop-filter: blur(14px);
}

.standards-grid svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}

.standards-grid h3 {
  margin: 28px 0 0;
  font-size: 1.18rem;
}

.standards-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.services .section-heading,
.process .section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.06);
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.service-card h3,
.timeline-item h3 {
  margin: 26px 0 0;
  font-size: 1.25rem;
}

.service-card p,
.timeline-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(320px, 1.04fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding-block: 104px;
  background: var(--white);
}

.dj-section {
  display: grid;
  grid-template-columns: minmax(290px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: 78px clamp(20px, 6vw, 80px);
  background: linear-gradient(135deg, #ffffff, #eef7f8);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dj-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.dj-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.dj-section .button {
  margin-top: 26px;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-copy {
  max-width: 720px;
}

.split-copy p {
  margin-top: 24px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #2d3540;
  line-height: 1.55;
}

.feature-list svg {
  margin-top: 3px;
  color: var(--green);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-item {
  padding: 26px;
  background: var(--white);
  border-top: 4px solid var(--cyan);
  border-radius: 8px;
  min-height: 250px;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 800;
}

.network-section {
  display: grid;
  grid-template-columns: minmax(310px, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding-block: 92px;
  color: var(--white);
  background: #111822;
}

.network-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
  line-height: 0.98;
}

.network-copy p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.06rem;
  line-height: 1.74;
}

.network-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.network-panel strong {
  font-size: 1.35rem;
}

.network-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.66;
}

.request {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 6vw, 72px);
  padding-block: 98px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 32, 51, 0.96), rgba(18, 73, 92, 0.92)),
    url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.request-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.response-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.response-note strong {
  color: var(--white);
}

.response-note span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: #2a313a;
  font-size: 0.88rem;
  font-weight: 800;
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

legend {
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #ccd5df;
  border-radius: 6px;
  font: inherit;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 183, 201, 0.24);
  border-color: var(--cyan);
}

.checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.checks label {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #dce3ea;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
}

.checks input {
  width: 16px;
  min-height: 16px;
  margin: 0 8px 0 0;
  accent-color: var(--blue);
}

.permission-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  color: #2d3540;
  background: #f8fafc;
  border: 1px solid #dce3ea;
  border-radius: 6px;
  line-height: 1.48;
}

.permission-check input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

#formStatus {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding-block: 42px;
  color: rgba(255, 255, 255, 0.78);
  background: #090d14;
}

.footer p {
  max-width: 560px;
  margin: 16px 0 0;
  line-height: 1.6;
}

.footer > div:last-child {
  display: grid;
  gap: 9px;
  min-width: 250px;
}

.footer strong,
.footer-brand {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 168px;
}

.system-message {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px;
}

.system-message h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.98;
}

.system-message p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.system-message .button {
  justify-self: start;
}

.upload-page {
  min-height: 100vh;
  padding: 44px 20px;
  color: var(--ink);
  background: var(--paper);
}

.policy-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 248, 250, 0.96), rgba(255, 255, 255, 0.96)),
    url("assets/hero-meeting-room.jpg") center / cover fixed;
}

.policy-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 46px 20px 72px;
}

.policy-header {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.policy-header .brand {
  justify-self: start;
  padding: 8px 12px;
  background: #0f1520;
  border-radius: 8px;
}

.policy-header h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.94;
}

.policy-header p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.policy-card {
  display: grid;
  gap: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(17, 19, 22, 0.12);
}

.policy-card section {
  padding: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid var(--line);
}

.policy-card section:last-child {
  border-bottom: 0;
}

.policy-card h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card p {
  margin: 14px 0 0;
}

.policy-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.policy-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.policy-list div {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.policy-list dt {
  font-weight: 800;
  color: var(--ink);
}

.policy-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.policy-card a {
  color: var(--blue);
  font-weight: 800;
}

.upload-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.upload-header {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.upload-header .brand {
  justify-self: start;
  padding: 8px 12px;
  background: #0f1520;
  border-radius: 8px;
}

.upload-header h1 {
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: 0.95;
}

.upload-header p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.upload-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(23, 32, 51, 0.08);
}

.crew-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.crew-values article {
  padding: 20px;
  color: var(--white);
  background: #111822;
  border-radius: 8px;
}

.crew-values strong {
  display: block;
  font-size: 1.05rem;
}

.crew-values p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.58;
}

.upload-card small {
  color: var(--muted);
  line-height: 1.55;
}

.upload-guidelines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.upload-guidelines article {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.upload-guidelines strong {
  display: block;
  color: var(--navy);
}

.upload-guidelines p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

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

  .nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .header-cta {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-panel,
  .metrics,
  .pathway-grid,
  .scale-grid,
  .scenario-grid,
  .service-grid,
  .dj-section,
  .standards-grid,
  .crew-values,
  .upload-guidelines,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .intro,
  .buyer-pathways,
  .scale-section,
  .event-showcase,
  .scenario-section,
  .network-section,
  .split-section,
  .request {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .header-cta span {
    display: none;
  }

  .nav {
    top: 68px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(4rem, 21vw, 6.6rem);
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-panel,
  .metrics,
  .pathway-grid,
  .scale-grid,
  .scenario-grid,
  .service-grid,
  .dj-section,
  .standards-grid,
  .crew-values,
  .upload-guidelines,
  .timeline,
  .form-row,
  .checks,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro,
  .buyer-pathways,
  .scale-section,
  .event-showcase,
  .scenario-section,
  .services,
  .standards,
  .process,
  .request,
  .network-section,
  .split-section {
    padding-block: 70px;
  }

  .section-heading h2,
  .split-copy h2,
  .request-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .service-card,
  .timeline-item {
    min-height: auto;
  }
}
