/* =========================
   FONTS
========================= */
@font-face {
  font-family: "Whyte";
  src: url("../fonts/ABCWhyte-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Whyte";
  src: url("../fonts/ABCWhyte-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Whyte", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: #AACEFA;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  opacity: 0.85;
}

/* =========================
   PAGE LAYOUT
========================= */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container */
.header-inner,
.wrap,
.footer-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================
   HEADER
========================= */
header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.contact {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

/* =========================
   MAIN / HERO
========================= */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center; /* horizontal centering */
  padding: 60px 0;

  background: radial-gradient(
    900px 420px at 50% 35%,
    rgba(30,53,140,0.55) 0%,
    rgba(0,0,0,0) 70%
  );
}

.wrap {
  text-align: center;
  width: 100%;
}

h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 18px;
}

.subhead {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
}

.lead {
  max-width: 820px;
  margin: 0 auto 30px auto;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
}

/* =========================
   BUTTON
========================= */
.actions {
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: #fff;
}

.btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* =========================
   SERVICES
========================= */
section.services {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

section.services ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

section.services li {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* =========================
   FOOTER
========================= */
footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner a {
  font-weight: 700;
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  h1 { font-size: 48px; }
  .header-inner,
  .wrap,
  .footer-inner { padding: 0 26px; }
}

@media (max-width: 640px) {

  header { padding: 18px 0; }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact {
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
  }

  h1 { font-size: 38px; }
  .subhead { font-size: 17px; }
  .lead { font-size: 15px; }

  section.services ul {
    flex-direction: column;
    align-items: center;
  }

  section.services li {
    white-space: normal;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
