:root {
  --cyan: #2eb5e0;
  --cyan-dark: #1a8fb6;
  --ink: #161a1d;
  --muted: #5b656c;
  --line: #e2e7eb;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font: 18px/1.5 Helvetica, Arial, sans-serif;
}
a { color: inherit; }
button { font: inherit; }
.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}
.top {
  border-bottom: 4px solid var(--cyan);
  background: #fff;
}
.top-inner {
  display: flex;
  align-items: center;
  min-height: 92px;
}
h1 { margin: 0; }
.logo {
  display: block;
  height: 64px;
  width: auto;
}
.hero {
  background-color: #1b242b;
  background-image:
    linear-gradient(rgba(15, 22, 28, 0.62), rgba(15, 22, 28, 0.62)),
    url(hero.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 64px 0 56px;
}
.hero h2 {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  max-width: 16ch;
}
.lede {
  margin: 0 0 28px;
  max-width: 38em;
  color: #d5dde2;
  font-size: 19px;
}
.quote {
  display: inline-block;
  border: 0;
  cursor: pointer;
  background: var(--cyan);
  color: #072028;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
}
.quote:hover { background: #fff; }
main { padding: 56px 0 72px; }
.contact h3 {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-grid a {
  display: block;
  padding: 24px;
  background: #f3f7f9;
  border-top: 3px solid var(--cyan);
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.contact-grid a:hover { background: #e8f4f8; }
.contact-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 15px;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
footer p { margin: 0 0 4px; }
footer p:last-child { margin: 0; }
.verify {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.verify a { color: var(--muted); }
.verify a:hover { color: var(--ink); }
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 10;
}
.modal[hidden] { display: none; }
.modal-card {
  background: #fff;
  width: min(440px, 100%);
  padding: 24px;
}
.modal-card h3 { margin: 0 0 16px; }
.modal-card label {
  display: block;
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}
.modal-card input,
.modal-card textarea {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  font: inherit;
  color: var(--ink);
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.modal-actions button {
  border: 0;
  padding: 10px 16px;
  cursor: pointer;
}
.modal-actions button[type="submit"] {
  background: var(--cyan);
  color: #072028;
  font-weight: 600;
}
.modal-actions button[data-close-quote] {
  background: transparent;
  color: var(--muted);
}
.modal-status { font-size: 14px; }
@media (max-width: 800px) {
  .logo { height: 52px; }
  .hero { padding: 40px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid a { font-size: 18px; }
  .foot { flex-direction: column; }
  .verify { align-items: flex-start; text-align: left; }
}
