:root {
  --primary: #171717;
  --primary-muted: #333333;
  --secondary: #8297a0;
  --accent: #fca800;
  --text: #ffffff;
  --card: #1f1f1f;
  --border: #4d4d4d;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova/proximanova-semibold-webfont.woff2") format("woff2"),
       url("./assets/fonts/ProximaNova/proximanova-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Extra Bold";
  src: url("./assets/fonts/BarlowExtraBold/barlow-extrabold-webfont.woff2") format("woff2"),
       url("./assets/fonts/BarlowExtraBold/barlow-extrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at 20% 20%, #34383d, var(--primary-muted)), radial-gradient(circle at 80% 10%, #525252, var(--primary));
  color: var(--text);
  min-height: 100vh;
}

.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}

.background-accent {
  position: absolute;
  inset: 10% 20%;
  background: radial-gradient(circle, rgba(252, 168, 0, 0.35), rgba(23, 23, 23, 0.2));
  filter: blur(90px);
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, var(--card), #2a2a2a);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.logo {
  height: 42px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  font-size: 12px;
  margin: 0 0 8px;
}

h1 {
  font-family: "Barlow Extra Bold", "Proxima Nova", sans-serif;
  font-size: 32px;
  margin: 0 0 12px;
  color: var(--text);
}

.message {
  margin: 0 0 12px;
  line-height: 1.6;
  color: #e8e8e8;
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(252, 168, 0, 0.12);
  color: var(--accent);
  border: 1px solid rgba(252, 168, 0, 0.4);
  font-weight: 600;
  font-size: 14px;
}

.pill.warning {
  background: rgba(130, 151, 160, 0.18);
  color: var(--text);
  border-color: rgba(130, 151, 160, 0.55);
}

.contact {
  margin: 18px 0 0;
  color: #cfcfcf;
  font-size: 14px;
}

@media (max-width: 540px) {
  .card {
    padding: 24px;
  }

  h1 {
    font-size: 26px;
  }

  .message {
    font-size: 15px;
  }
}

