* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  color: #111;
  background: #fff;
}

body {
  font-weight: 400;
}

.brand span,
.nav a,
h1, h2 {
  font-weight: 800;
}

h1 {
  line-height: 1.1;
}

h1, h2, .brand span {
  letter-spacing: -0.01em;
}

body {
  font-synthesis: none;
}

a {
  color: #1E40AF;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px;
}

.nav {
  background: #0b0b0b;
  color: #fff;
}
.nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav a {
  color: #fff;
  margin-left: 18px;
  font-weight: 600;
}

.brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero {
  background: -webkit-gradient(linear, left top, left bottom, from(#0b0b0b), to(#141414));
  background: linear-gradient(180deg, #0b0b0b, #141414);
  color: #fff;
  padding: 70px 0;
  border-bottom: 3px solid #D4AF37;
}
.hero h1 {
  font-size: 44px;
  margin: 0 0 10px;
}
.hero p {
  opacity: 0.9;
  max-width: 750px;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  background: #D4AF37;
  color: #1a1a1a;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
}
.cta:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

button {
  background: #1E40AF;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
button.alt {
  background: #D4AF37;
  color: #1a1a1a;
}

.aw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.aw-card {
  border: 1px solid #e7e7ef;
  border-radius: 14px;
  padding: 18px;
  background: #f5f7fb;
}
.aw-card h3 {
  margin-top: 0;
}

.aw-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid #e5e5ee;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 8px;
}

.footer {
  margin-top: 50px;
  border-top: 1px solid #eee;
  background: #fafafa;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.small {
  opacity: 0.7;
  font-size: 13px;
}

label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdce6;
  border-radius: 10px;
}

.button-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 14px;
}

.site-header {
  background: #0b0b0b;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* allow wrapping at small widths */
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 640px) {
  .nav .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .brand .logo {
    width: 88px; /* shrink logo so it doesn't push links */
    height: auto;
  }
  .nav .nav-menu {
    margin-top: 8px;
  }
}
/*# sourceMappingURL=app.css.map */
