:root {
  --red: #b62220;
  --ink: #171a1f;
  --muted: #5f6873;
  --line: rgba(23, 26, 31, 0.1);
  --panel: #ffffff;
  --page: #f6f6f2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.hero {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(23, 26, 31, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--red);
}

.brand {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.logo {
  width: min(360px, 70%);
  height: auto;
}

.icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(182, 34, 32, 0.24);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

article,
.faq,
.privacy {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

article {
  padding: 24px;
}

h2 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

a {
  color: var(--red);
}

.faq,
.privacy {
  margin-top: 18px;
  padding: 24px;
}

.privacy h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.privacy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 20px;
}

.privacy-list h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.privacy-list p {
  margin-bottom: 0;
}

details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

details:first-of-type {
  border-top: 0;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 10px 0 0;
}

@media (max-width: 720px) {
  main {
    width: min(100% - 24px, 520px);
    padding-top: 20px;
  }

  .hero {
    padding: 24px;
  }

  .brand {
    gap: 16px;
    margin-bottom: 30px;
  }

  .icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .privacy-list {
    grid-template-columns: 1fr;
  }
}
