:root { --ink:#f4f1e8; --night:#0d1715; --panel:#17221f; --muted:#9da9a3; --orange:#ff6b35; --good:#5fc391; }
* { box-sizing:border-box; }
html, body { margin:0; min-height:100%; background:var(--night); color:var(--ink); }
body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 22% 20%, #243830 0, transparent 38%),
    radial-gradient(circle at 82% 78%, #1c2f28 0, transparent 42%),
    linear-gradient(150deg, #101b18 0%, #0a1110 100%);
  min-height: 100dvh;
}
main {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) clamp(20px, 5vw, 32px) 60px;
}
.brand-mark {
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--orange); color: white; border-radius: 17px;
  transform: rotate(-4deg); font-size: 31px;
  box-shadow: 0 14px 32px rgba(255, 107, 53, .2);
}
.brand-mark span { transform: rotate(4deg); }
.eyebrow { color: #7fc3a5; font-weight: 800; font-size: 14px; letter-spacing: .2em; margin: 28px 0 12px; text-transform: uppercase; }
h1 { font-size: clamp(44px, 8vw, 80px); line-height: .92; letter-spacing: -.05em; margin: 0; font-weight: 950; }
.lead { color: #c5d0ca; font-size: clamp(18px, 2vw, 21px); line-height: 1.55; max-width: 620px; margin: 24px 0 0; }
.panel {
  position: relative; margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(24, 36, 32, .83);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}
.panel + .panel { margin-top: 24px; }
.panel h2 { margin: 0 0 14px; font-size: clamp(22px, 3vw, 27px); }
.panel p { color: #d2dcd7; font-size: 17px; line-height: 1.6; margin: 10px 0; }
.rating { display: inline-flex; align-items: center; gap: 8px; margin: 6px 0 14px; font-weight: 800; color: var(--good); }
.quotes { display: grid; gap: 8px; margin: 4px 0 18px; }
.quotes p { margin: 0; color: #b8c4bf; font-style: italic; font-size: 16px; }
.facts { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.facts li { color: #d2dcd7; font-size: 16px; line-height: 1.45; }
.primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 15px; padding: 16px 26px;
  background: var(--orange); color: white; font-weight: 850; font-size: 18px;
  text-decoration: none; box-shadow: 0 10px 24px rgba(255, 107, 53, .2);
  margin-top: 8px;
}
.primary:hover { background: #ff7b4a; }
.contact { display: grid; gap: 6px; margin-top: 8px; }
.contact a { color: #82e4bd; font-weight: 850; text-decoration: none; text-underline-offset: 3px; }
.contact a:hover { text-decoration: underline; }
.contact span { color: var(--muted); font-size: 14px; }
footer { margin-top: 40px; text-align: center; color: var(--muted); font-size: 14px; }
footer a { color: #82e4bd; text-decoration: none; }
footer a:hover { text-decoration: underline; }
