:root {
  color-scheme: light;
  --ink: #061626;
  --ink-soft: #324357;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #d7dde6;
  --gold: #d6aa24;
  --blue: #1676b8;
  --deep: #07111f;
  --panel: #0d1a2b;
  --radius: 8px;
  --shadow: 0 18px 42px rgba(6, 22, 38, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 17, 31, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: min(340px, 52vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  min-height: calc(100svh - 78px);
  padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 84px);
  background: var(--deep);
  color: var(--white);
}

.hero-content {
  width: 100%;
  min-width: 0;
  max-width: 710px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 10vw, 7.2rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #101820;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
}

.hero-visual {
  min-width: 0;
  max-width: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: min(860px, 100%);
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.32));
}

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

.section-inner {
  width: min(1180px, 100%);
  min-width: 0;
  margin: 0 auto;
}

.narrow {
  width: min(880px, 100%);
}

.intro {
  background: var(--white);
}

.intro p:not(.eyebrow),
.about-copy,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.services {
  background: #edf2f7;
}

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

.service-card {
  min-width: 0;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(6, 22, 38, 0.08);
}

.service-card h3 {
  margin-top: 18px;
}

.service-card p {
  color: var(--ink-soft);
}

.service-card a {
  color: #0b5f9d;
  font-weight: 800;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
}

.offer {
  border-left: 4px solid var(--gold);
  padding-left: 14px;
  font-weight: 700;
}

.publishing-feature {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #eef3f8 100%);
}

.publishing-feature img {
  width: 92px;
  height: 148px;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  background: #050b13;
  box-shadow: 0 12px 24px rgba(6, 22, 38, 0.2);
}

.publishing-feature p {
  margin: 0;
}

.publishing-feature .feature-label {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.about {
  background: var(--white);
}

.next-steps {
  background: #f7f9fc;
}

.next-steps p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 82px);
}

.about-copy p:first-child {
  margin-top: 0;
}

.contact-section {
  background: var(--panel);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-content,
.about-copy,
.contact-copy,
.contact-form,
.service-card,
.publishing-feature {
  max-width: 100%;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b8c2d1;
  border-radius: 6px;
  padding: 12px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(22, 118, 184, 0.22);
  border-color: var(--blue);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.55em;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.form-status.success {
  color: #0b6f3c;
}

.form-status.error {
  color: #9b1c1c;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 22px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #050b13;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
}

.legal-page {
  background: var(--white);
}

.legal-hero {
  background: var(--deep);
  color: var(--white);
}

.legal-hero h1 {
  max-width: none;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.legal-content p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-content: start;
  }

  .hero-visual img {
    width: min(620px, 100%);
    max-width: calc(100vw - 36px);
  }

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

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

  .brand-logo {
    width: min(310px, 86vw);
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px 28px;
  }

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

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }

  .hero,
  .section,
  .site-header,
  .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .publishing-feature {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .publishing-feature img {
    width: 78px;
    height: 125px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
