:root {
  color-scheme: dark;
  --bg: #09090b;
  --card: #17171c;
  --card-2: #202026;
  --text: #f7f7f8;
  --muted: #aaaab4;
  --line: rgba(255,255,255,.11);
  --red: #ef3340;
  --red-soft: rgba(239,51,64,.14);
  --max: 1060px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 0%, rgba(239,51,64,.12), transparent 34rem), var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
header {
  position: sticky; top: 0; z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(9,9,11,.84);
  backdrop-filter: blur(18px);
}
nav { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; gap: 10px; align-items: center; text-decoration: none; font-weight: 850; font-size: 1.15rem; }
/* Frame the chip inside the source PNG's transparent padding. */
.mark { width: 34px; height: 34px; display: block; flex-shrink: 0; background: url("/PotlyChip.png") center 46% / 190% no-repeat; }
.links { display: flex; flex-wrap: wrap; gap: 18px; }
.links a { color: var(--muted); text-decoration: none; font-weight: 650; font-size: .92rem; }
.links a:hover { color: var(--text); }
.hero { padding: 96px 0 76px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex; margin: 0 0 18px; padding: 7px 12px;
  border: 1px solid rgba(239,51,64,.34); border-radius: 999px;
  background: var(--red-soft); color: #ff8790; font-size: .78rem; font-weight: 850;
  text-transform: uppercase; letter-spacing: .08em;
}
h1,h2,h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 800px; margin-bottom: 22px; font-size: clamp(3rem, 7vw, 5.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }
.lede { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 20px; border-radius: 14px; background: var(--red);
  text-decoration: none; font-weight: 800;
}
.button.secondary { border: 1px solid var(--line); background: var(--card); }
.phone {
  max-width: 350px; margin-inline: auto; padding: 20px;
  border: 1px solid var(--line); border-radius: 38px; background: #101014;
  box-shadow: 0 24px 80px rgba(0,0,0,.36);
}
.notch { width: 42%; height: 22px; margin: 0 auto 22px; border-radius: 999px; background: #020203; }
.mini { margin-bottom: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); }
.mini small { display: block; color: var(--muted); font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.mini strong { display: block; margin-top: 4px; font-size: 1.32rem; }
.accent { color: #ff7881; }
.section { padding: 76px 0; border-top: 1px solid var(--line); }
.heading { max-width: 720px; margin-bottom: 32px; }
.heading p { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 26px; background: var(--card); }
.icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 14px; background: var(--red-soft); color: #ff7b84; font-weight: 900; }
.card p { margin-bottom: 0; color: var(--muted); }
.notice { padding: 24px; border: 1px solid rgba(239,51,64,.28); border-radius: 18px; background: var(--red-soft); }
.page-hero { padding: 72px 0 38px; }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 4.5rem); }
.meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; color: var(--muted); font-size: .9rem; }
.prose { width: min(calc(100% - 40px), 820px); margin-inline: auto; padding-bottom: 84px; }
.prose section { margin-top: 38px; }
.prose h2 { font-size: clamp(1.45rem,3vw,2rem); margin-bottom: 12px; }
.prose p,.prose li { color: #d2d2d8; }
.prose a { color: #ff7b84; text-underline-offset: 3px; }
.prose li + li { margin-top: 7px; }
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 34px; }
.support-card { display: block; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); text-decoration: none; }
.support-card span { display: block; margin-top: 5px; color: var(--muted); font-size: .92rem; }
footer { border-top: 1px solid var(--line); padding: 34px 0 46px; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer small { color: var(--muted); }
@media (max-width: 820px) {
  .hero-grid,.grid,.support-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .wrap,.prose { width: min(calc(100% - 28px), var(--max)); }
  nav { padding: 14px 0; align-items: flex-start; }
  .links { gap: 11px; justify-content: flex-end; }
  .links a { font-size: .82rem; }
  .hero { padding: 58px 0 64px; }
  .section { padding: 60px 0; }
  .footer { flex-direction: column; align-items: flex-start; }
}
