:root {
  --navy: #12345c;
  --ink: #07182c;
  --blue: #1c5d91;
  --teal: #2c8f8a;
  --gold: #d8a73b;
  --cream: #f7f5ef;
  --paper: #ffffff;
  --muted: #617087;
  --line: rgba(18, 52, 92, 0.14);
  --shadow: 0 24px 70px rgba(7, 24, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.96), rgba(255, 255, 255, 0.98) 42%),
    radial-gradient(circle at 96% 8%, rgba(216, 167, 59, 0.18), transparent 30%),
    var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(210px, 42vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.header-call,
.header-submit {
  text-decoration: none;
}

.nav-links a:hover,
.header-call:hover,
.header-submit:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  padding: 11px 18px;
  color: var(--navy);
  font-weight: 800;
  border: 1px solid rgba(18, 52, 92, 0.25);
  border-radius: 6px;
  background: var(--paper);
}

.header-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  color: var(--paper);
  font-weight: 900;
  border-radius: 6px;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(18, 52, 92, 0.18);
}

.header-submit:hover {
  color: var(--paper);
  background: #0d2748;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  min-height: min(880px, calc(100svh - 82px));
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 68px);
  overflow: hidden;
}

.hero-content {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.75rem);
  line-height: 0.95;
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.hero-copy {
  width: 100%;
  max-width: 620px;
  color: #2d3c52;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  overflow-wrap: break-word;
}

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

.hero-actions .button {
  min-height: 62px;
  padding: 16px 32px;
  font-size: 1.12rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--paper);
  background: var(--navy);
  box-shadow: 0 16px 30px rgba(18, 52, 92, 0.22);
}

.button.primary:hover {
  background: #0d2748;
}

.button.secondary {
  color: var(--navy);
  border: 1px solid rgba(18, 52, 92, 0.24);
  background: rgba(255, 255, 255, 0.78);
}

.button.light {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats dt {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(18, 52, 92, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 52, 92, 0.98), rgba(28, 93, 145, 0.92)),
    var(--navy);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  pointer-events: none;
}

.logo-card,
.quick-card,
.quick-grid {
  position: relative;
  z-index: 1;
}

.logo-card {
  padding: clamp(18px, 4vw, 34px);
  border-radius: 6px;
  background: #ffffff;
}

.logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.quick-card {
  padding: 26px;
  color: var(--paper);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.quick-label {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.quick-value {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: clamp(3.2rem, 7vw, 5.75rem);
  line-height: 0.96;
  font-weight: 900;
}

.quick-card span {
  color: rgba(255, 255, 255, 0.82);
}

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

.quick-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--paper);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

#guidelines,
#process,
#contact {
  scroll-margin-top: 108px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: end;
  background: var(--ink);
}

.intro-band h2,
.intro-band p {
  color: var(--paper);
}

.intro-band > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.who-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  background: var(--cream);
}

.who-grid {
  display: grid;
  gap: 16px;
}

.who-grid div {
  padding: 24px;
  border: 1px solid rgba(18, 52, 92, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(7, 24, 44, 0.055);
}

.who-grid h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.who-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  min-width: 0;
  max-width: 560px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.check-list div {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 18px 18px 18px 20px;
  color: var(--navy);
  font-weight: 800;
  border: 1px solid rgba(28, 93, 145, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(44, 143, 138, 0.1), rgba(255, 255, 255, 0) 32px),
    var(--paper);
  box-shadow: 0 14px 32px rgba(7, 24, 44, 0.055);
}

.check-list div::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: var(--teal);
}

.check-list span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: rgba(44, 143, 138, 0.12);
  box-shadow: inset 0 0 0 1px rgba(44, 143, 138, 0.32);
}

.check-list span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--teal);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.industry-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: center;
  background: var(--cream);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}

.industry-list span {
  padding: 13px 18px;
  color: var(--navy);
  font-weight: 900;
  border: 1px solid rgba(18, 52, 92, 0.16);
  border-radius: 6px;
  background: var(--paper);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

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

.process-steps article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(18, 52, 92, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(7, 24, 44, 0.055);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.35rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
}

.documents-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: center;
  background: var(--ink);
}

.documents-section h2 {
  color: var(--paper);
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.document-list span {
  padding: 14px 16px;
  color: var(--paper);
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.faq-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--cream);
}

.faq-section .section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(18, 52, 92, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(7, 24, 44, 0.045);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--teal);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: #2d3c52;
}

/* Contact / Submit a Deal section */

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  margin: 0 clamp(18px, 5vw, 72px) clamp(34px, 6vw, 60px);
  padding: clamp(32px, 6vw, 58px);
  color: var(--paper);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 52, 92, 0.98), rgba(7, 24, 44, 0.98)),
    var(--navy);
  box-shadow: var(--shadow);
}

.contact-header .eyebrow {
  font-size: 1.1rem;
  color: #2ecc71;
  letter-spacing: 0.08em;
}

.contact-header h2 {
  color: var(--paper);
}

.contact-header p:not(.eyebrow) {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 18px;
}

.contact-phone {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
}

.contact-phone:hover {
  color: #e8bc5a;
}

/* Deal submission form */

.deal-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.deal-form input,
.deal-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.97);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.deal-form input:focus,
.deal-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44, 143, 138, 0.28);
}

.deal-form input::placeholder,
.deal-form textarea::placeholder {
  color: #96a4b3;
}

.deal-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

.deal-form input[type="file"] {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px dashed rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.92rem;
}

.deal-form input[type="file"]::-webkit-file-upload-button {
  padding: 7px 14px;
  margin-right: 14px;
  background: var(--teal);
  color: var(--paper);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
}

.button.primary.submit-btn {
  justify-self: start;
  min-width: 160px;
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 16px 30px rgba(44, 143, 138, 0.38);
}

.button.primary.submit-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px) 34px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.footer-links a {
  color: var(--navy);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.legal-page h1 {
  max-width: 760px;
  margin-bottom: 28px;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.legal-page p {
  color: #2d3c52;
  font-size: 1.08rem;
}

.legal-page a {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 20px;
  }

  .site-header {
    position: static;
  }

  .hero,
  .intro-band,
  .two-column,
  .who-section,
  .industry-section,
  .process-section,
  .documents-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-content,
  .hero-panel,
  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  #guidelines,
  #process,
  #contact {
    scroll-margin-top: 20px;
  }
}

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

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 24px;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-submit {
    width: 100%;
  }

  .hero,
  .section {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-stats,
  .check-list,
  .process-steps,
  .document-list {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .submit-btn {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .brand {
    width: 190px;
  }

  h1 {
    font-size: 2.58rem;
    max-width: 100%;
  }

  .nav-links {
    font-size: 0.86rem;
  }
}
