:root {
  --bg: #0c0c0f;
  --panel: #141419;
  --panel-2: #191920;
  --line: #26262f;
  --text: #f2f2f5;
  --muted: #a2a2ae;
  --brand: #ff5e4d;
  --brand-2: #e8293c;
  --radius: 16px;
  --wrap: 980px;
}

@supports (color: color(display-p3 1 1 1)) {
  :root {
    --brand: color(display-p3 1 0.36955 0.30054);
    --brand-2: color(display-p3 0.92092 0.16701 0.24175);
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--brand); }
a:hover { color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-2);
  color: #fff;
  padding: 10px 16px;
  z-index: 10;
  text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(12, 12, 15, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand img { border-radius: 10px; display: block; }
.brand span { display: flex; flex-direction: column; line-height: 1.25; }
.brand strong { font-size: 16px; letter-spacing: -0.01em; }
.brand small { color: var(--muted); font-size: 12.5px; }

.bar nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.bar nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
}
.bar nav a:hover { color: var(--text); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 76px 0 60px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 94, 77, 0.16), transparent 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  max-width: 16ch;
}

.grad {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 0 30px;
  font-size: clamp(16.5px, 2.2vw, 18.5px);
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- buttons ---------- */

.cta, .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.row { margin: 26px 0 0; }

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.12s ease, filter 0.12s ease, background 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn.sm { padding: 10px 18px; font-size: 14px; }

.btn.primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #fff;
}
.btn.primary:hover { filter: brightness(1.08); color: #fff; }

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn.ghost:hover { background: var(--panel-2); color: var(--text); }

.copied {
  font-size: 13.5px;
  color: var(--brand);
  min-height: 1em;
}

/* ---------- sections ---------- */

.block { padding: 62px 20px; }

h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.6vw, 31px);
  letter-spacing: -0.02em;
  font-weight: 750;
}

h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 680;
}

.sub {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 62ch;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card p { color: var(--muted); margin: 0; }
.card p + p { margin-top: 12px; }

.grid.three {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 16px;
}

/* ---------- contact card ---------- */

.contact {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.6fr 1fr;
  align-items: start;
  border-color: rgba(255, 94, 77, 0.3);
  background: linear-gradient(180deg, rgba(255, 94, 77, 0.07), transparent 70%), var(--panel);
}

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

.label {
  margin: 0 0 6px !important;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.email {
  display: inline-block;
  font-size: clamp(20px, 3.4vw, 27px);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  word-break: break-word;
  border-bottom: 2px solid rgba(255, 94, 77, 0.55);
  padding-bottom: 2px;
}
.email:hover { color: var(--brand); }

.facts {
  margin: 0;
  display: grid;
  gap: 14px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
@media (max-width: 720px) {
  .facts { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 20px; }
}
.facts div { display: grid; gap: 2px; }
.facts dt {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.facts dd { margin: 0; font-size: 15px; font-weight: 600; }

/* ---------- bug steps ---------- */

.steps {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}
.steps strong { color: var(--text); font-weight: 650; }

.note {
  margin-top: 14px !important;
  font-size: 14px;
}

/* ---------- faq ---------- */

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq details[open] { background: var(--panel-2); }

.faq summary {
  cursor: pointer;
  padding: 17px 50px 17px 20px;
  font-weight: 640;
  font-size: 16px;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.15s ease;
}
.faq details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
  border-color: var(--brand);
}
.faq summary:hover { color: var(--brand); }
.faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

/* ---------- closing ---------- */

.closing { text-align: center; }
.closing h2 { margin-bottom: 8px; }
.closing .row { justify-content: center; }

/* ---------- footer ---------- */

footer.site {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  margin-top: 20px;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.legal {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  text-align: right;
}
@media (max-width: 620px) {
  .legal { text-align: left; }
}
