:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9dee7;
  --surface: #f6f7fb;
  --surface-strong: #ffffff;
  --violet: #7764bb;
  --violet-dark: #4f408e;
  --blue: #6570bd;
  --steel: #8d949c;
  --shadow: 0 24px 70px rgba(28, 33, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 14%, rgba(119, 100, 187, 0.2), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(217, 222, 231, 0.78);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(226px, 52vw);
  height: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  background: rgba(119, 100, 187, 0.09);
  color: var(--violet-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.75fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px) 56px;
}

.hero-copy {
  max-width: 780px;
}

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

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

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

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

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

.button.primary {
  background: var(--violet-dark);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(79, 64, 142, 0.25);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.signal-panel {
  display: grid;
  gap: 14px;
}

.signal-panel > div {
  border: 1px solid rgba(217, 222, 231, 0.92);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.signal-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.signal-panel strong {
  display: block;
  font-size: 1.2rem;
}

.signal-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.section-heading {
  max-width: 780px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.capability-grid article {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface-strong);
}

.capability-grid h3 {
  margin: 0;
  font-size: 1.2rem;
}

.capability-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-copy p {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  border-left: 4px solid var(--violet);
  padding-left: 14px;
  color: var(--ink);
  font-weight: 750;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 30px);
  background:
    linear-gradient(135deg, rgba(119, 100, 187, 0.08), transparent 36%),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group.full {
  grid-column: 1 / -1;
}

label {
  color: #293142;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd2dd;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 142px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(119, 100, 187, 0.22);
  border-color: var(--violet);
}

.submit-button {
  width: fit-content;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
}

.site-footer p {
  margin: 0;
}

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

  .hero {
    min-height: auto;
  }

  .contact-copy {
    position: static;
  }

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

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding-inline: 14px;
  }

  nav {
    width: auto;
    gap: 4px;
  }

  nav a {
    padding: 8px 7px;
    font-size: 0.86rem;
  }

  .brand img {
    width: min(168px, 45vw);
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
