
/* MayTrucks minimal landing styles */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #d60000;
  color: #ffffff;
}
.container {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
.card {
  width: 100%;
  max-width: 680px;
  text-align: center;
}
.logo {
  width: min(76vw, 420px);
  height: auto;
  display: block;
  margin: 24px auto 18px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.25));
}
h1 {
  margin: 0 0 8px;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: 1px;
  font-weight: 800;
}
.tagline {
  font-size: clamp(16px, 2.8vw, 20px);
  opacity: .95;
  margin-bottom: 28px;
}
.cta {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: .4px;
  transition: transform .08s ease, opacity .2s ease;
}
.cta:active { transform: scale(.98); }
.links {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.link-btn {
  appearance: none;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.55);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(3px);
}
.link-btn:hover { background: rgba(255,255,255,.18); }
footer {
  margin-top: 28px;
  opacity: .75;
  font-size: 13px;
}
a { color: #fff; }
