/* Drill Alarm — landing site styles
   Brand: light mode, white base, ink #111, Drill Red accent (scarce), display type = heavy condensed uppercase. */

:root {
  --white: #ffffff;
  --card: #f5f5f4;
  --ink: #111111;
  --red: #e02020;
  --green: #1fa54a;
  --muted: #8a8a8e;
  --hairline: rgba(17, 17, 17, 0.12);
  --display: "Arial Narrow", "Helvetica Neue", "Segoe UI", -apple-system, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

header.site {
  border-bottom: 1px solid var(--hairline);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
}

.wordmark .dot {
  color: var(--red);
}

.badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}

/* ---------- Hero ---------- */

.hero {
  padding: 88px 0 72px;
  text-align: center;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-size: clamp(52px, 10vw, 108px);
}

.hero h1 .red {
  color: var(--red);
}

.hero .tagline {
  margin-top: 20px;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--ink);
  font-weight: 500;
}

.hero .sub {
  margin-top: 12px;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-pill {
  display: inline-block;
  margin-top: 36px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 17px;
  border-radius: 999px;
  padding: 16px 32px;
}

.cta-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- How it works strip ---------- */

.strip {
  background: var(--ink);
  color: var(--white);
  padding: 22px 0;
}

.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: center;
}

.strip .arrow {
  color: var(--red);
}

/* ---------- Features ---------- */

.features {
  padding: 72px 0 40px;
}

.features h2 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
  text-align: center;
  margin-bottom: 48px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 28px 24px;
}

.card .kicker {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.card .kicker .num {
  color: var(--red);
  margin-right: 6px;
}

.card p {
  font-size: 15px;
  color: #3c3c3e;
}

/* ---------- Privacy note ---------- */

.privacy-note {
  padding: 32px 0 80px;
}

.privacy-note .inner {
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.privacy-note .check {
  color: var(--green);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}

.privacy-note p {
  font-size: 15px;
  color: #3c3c3e;
}

.privacy-note strong {
  color: var(--ink);
}

/* ---------- Footer ---------- */

footer.site {
  border-top: 1px solid var(--hairline);
  padding: 32px 0 48px;
}

footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

footer.site nav {
  display: flex;
  gap: 24px;
}

footer.site a {
  color: var(--muted);
  text-decoration: none;
}

footer.site a:hover {
  color: var(--ink);
}

/* ---------- Legal pages ---------- */

.legal {
  padding: 56px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: condensed;
  text-transform: uppercase;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
}

.legal .meta {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal p,
.legal li {
  font-size: 16px;
  color: #3c3c3e;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal a {
  color: var(--ink);
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .strip .wrap {
    flex-direction: column;
    gap: 4px;
  }

  .strip .arrow {
    transform: rotate(90deg);
  }
}
