:root {
  --ink: #101014;
  --paper: #f6f7f8;
  --surface: #ffffff;
  --night: #070708;
  --night-soft: #151518;
  --muted: #686b73;
  --line: #dedfe4;
  --heat: #ff5a1f;
  --clover: #28b86f;
  --gold: #efb232;
  --coral: #ef3f67;
  --cobalt: #245cf2;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 16, 20, 0.14);
  --flame-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 30c-6 0-10.5-4.4-10.5-10.2 0-3.9 2.1-7 5.4-10.5C13.2 6.9 14.9 4.3 15.2 1c4.4 2.8 7 6.5 7 10.4 1.8-1.1 3-2.8 3.4-4.7 1.5 2 2.4 4.6 2.4 7.3C28 23 23 30 16 30Z'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 7, 8, 0.92);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0d0d10;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  padding: 11px 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: var(--night);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 156px;
  background:
    radial-gradient(70px 110px at 10% 100%, rgba(255, 90, 31, 0.82), transparent 70%),
    radial-gradient(90px 130px at 24% 106%, rgba(239, 178, 50, 0.58), transparent 72%),
    radial-gradient(80px 120px at 46% 104%, rgba(239, 63, 103, 0.42), transparent 72%),
    radial-gradient(100px 150px at 78% 110%, rgba(255, 90, 31, 0.62), transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(255, 90, 31, 0.14) 100%);
  mix-blend-mode: screen;
  opacity: 0.78;
  pointer-events: none;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.98) 0%, rgba(7, 7, 8, 0.86) 34%, rgba(7, 7, 8, 0.34) 68%, rgba(7, 7, 8, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.1) 0%, rgba(7, 7, 8, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 108px 0 76px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clover);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 66px;
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-copy {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.hero-actions,
.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 17px;
  text-decoration: none;
  font-weight: 950;
  line-height: 1;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #ff3d12 0%, #ff7a1f 46%, #efb232 100%);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(255, 90, 31, 0.28);
}

.button.primary::before {
  content: "";
  width: 13px;
  height: 17px;
  background: linear-gradient(180deg, #fff1b8 0%, #ff9a20 40%, #ff3d12 76%, #d41515 100%);
  filter: drop-shadow(0 0 8px rgba(255, 90, 31, 0.52));
  -webkit-mask: var(--flame-mask) center / contain no-repeat;
  mask: var(--flame-mask) center / contain no-repeat;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--ink);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 30px;
}

.hero-proof span {
  min-height: 36px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.flame-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 12px;
}

.flame-ticker span {
  position: relative;
  min-height: 32px;
  padding: 8px 10px 8px 31px;
  border: 1px solid rgba(255, 122, 31, 0.34);
  border-radius: 8px;
  background: rgba(255, 90, 31, 0.14);
  color: #ffd9c2;
  font-size: 12px;
  font-weight: 900;
}

.flame-ticker span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 14px;
  height: 18px;
  background: linear-gradient(180deg, #fff1b8 0%, #ff9a20 40%, #ff3d12 76%, #d41515 100%);
  filter: drop-shadow(0 0 8px rgba(255, 90, 31, 0.74));
  -webkit-mask: var(--flame-mask) center / contain no-repeat;
  mask: var(--flame-mask) center / contain no-repeat;
}

.signal-band {
  padding: 18px 0;
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.2), transparent 28%, rgba(239, 63, 103, 0.16) 74%, transparent),
    var(--night);
  color: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.signal-grid article,
.step-card,
.drop-card,
.product-card,
.trust-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 16, 20, 0.06);
}

.signal-grid article {
  min-height: 126px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.signal-number {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 950;
}

.signal-grid strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.signal-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.story-section,
.trust-section {
  background: var(--surface);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.section-copy p {
  max-width: 620px;
}

.product-rack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-rack img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111114;
  box-shadow: 0 18px 40px rgba(16, 16, 20, 0.14);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 500px;
  margin-bottom: 0;
}

.section-heading.compact {
  max-width: 760px;
}

.steps-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.step-card,
.trust-grid article {
  padding: 20px;
}

.step-card {
  min-height: 230px;
  border-top: 5px solid var(--heat);
}

.step-card:nth-child(2) {
  border-top-color: var(--clover);
}

.step-card:nth-child(3) {
  border-top-color: var(--cobalt);
}

.step-card:nth-child(4) {
  border-top-color: var(--coral);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.filter-button,
.icon-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
}

.filter-button {
  min-height: 42px;
  padding: 10px 12px;
}

.filter-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.drop-card {
  position: relative;
  display: grid;
  overflow: hidden;
}

.drop-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, #ff3d12, #ff8a1f, #ffd166, #ef3f67);
}

.drop-card::after {
  content: "";
  position: absolute;
  top: 178px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 52px;
  background: linear-gradient(180deg, #fff1b8 0%, #ff9a20 38%, #ff3d12 74%, #d41515 100%);
  filter: drop-shadow(0 0 18px rgba(255, 90, 31, 0.58));
  opacity: 0.9;
  pointer-events: none;
  -webkit-mask: var(--flame-mask) center / contain no-repeat;
  mask: var(--flame-mask) center / contain no-repeat;
}

.drop-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  overflow: hidden;
  background: #111114;
}

.drop-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.04) 26%, rgba(7, 7, 8, 0.44) 100%),
    radial-gradient(circle at 18% 100%, rgba(255, 90, 31, 0.62), transparent 42%),
    radial-gradient(circle at 82% 112%, rgba(239, 178, 50, 0.38), transparent 44%);
  pointer-events: none;
}

.drop-media img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transform: scale(1.02);
}

.heat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(7, 7, 8, 0.72);
  color: #fff1e6;
  box-shadow: 0 0 26px rgba(255, 90, 31, 0.34);
  font-size: 12px;
  font-weight: 950;
}

.heat-badge::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 18px;
  background: linear-gradient(180deg, #fff1b8 0%, #ff9a20 40%, #ff3d12 76%, #d41515 100%);
  filter: drop-shadow(0 0 8px rgba(255, 90, 31, 0.68));
  -webkit-mask: var(--flame-mask) center / contain no-repeat;
  mask: var(--flame-mask) center / contain no-repeat;
}

.drop-body {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.drop-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.drop-title-row h3 {
  margin: 0;
}

.price-chip {
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 8px 10px;
  background: linear-gradient(135deg, #111114, #28120a 48%, #ff5a1f);
  color: var(--white);
  font-weight: 950;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.metric-grid div,
.drawer-metrics div,
.reveal-actions div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #f3f5f7;
}

.metric-grid div:first-child,
.drawer-metrics div:first-child,
.reveal-actions div:first-child {
  border-color: rgba(40, 184, 111, 0.4);
  background: rgba(40, 184, 111, 0.1);
}

.metric-grid span,
.drawer-metrics span,
.reveal-actions span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.metric-grid strong,
.drawer-metrics strong,
.reveal-actions strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  border-radius: 8px;
  padding: 7px 8px;
  background: #eef0f3;
  color: #4f535b;
  font-size: 12px;
  font-weight: 850;
}

.drop-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drop-actions .button {
  width: 100%;
}

.drop-actions .button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.catalog-section {
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.08), transparent 24%),
    var(--surface);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f5f7;
}

.catalog-toolbar > strong {
  font-size: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 238px;
  border: 1px solid #d9dce4;
  border-top: 5px solid var(--heat);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(16, 16, 20, 0.08);
}

.product-card:nth-child(4n + 2) {
  border-top-color: var(--clover);
}

.product-card:nth-child(4n + 3) {
  border-top-color: var(--cobalt);
}

.product-card:nth-child(4n + 4) {
  border-top-color: var(--coral);
}

.product-card header,
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-card header span,
.product-card-footer span {
  border-radius: 8px;
  padding: 6px 8px;
  background: #eef0f3;
  color: #4f535b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card header strong {
  flex: 0 0 auto;
  color: var(--heat);
  font-size: 18px;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.15;
}

.product-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.42;
}

.product-card-footer {
  margin-top: auto;
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid article {
  min-height: 168px;
}

.trust-grid article:nth-child(1) {
  border-top: 5px solid var(--clover);
}

.trust-grid article:nth-child(2) {
  border-top: 5px solid var(--gold);
}

.trust-grid article:nth-child(3) {
  border-top: 5px solid var(--cobalt);
}

.trust-grid article:nth-child(4) {
  border-top: 5px solid var(--coral);
}

.app-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 90, 31, 0.22), transparent 26%),
    radial-gradient(circle at 14% 74%, rgba(239, 63, 103, 0.16), transparent 26%),
    var(--night);
  color: var(--white);
}

.app-section p {
  color: rgba(255, 255, 255, 0.68);
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 370px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.phone-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 14px;
  background: #111114;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.phone-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.phone-top span {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-hero {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  overflow: hidden;
  background: #0f0f12;
  color: var(--white);
}

.phone-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 8, 0.8));
}

.phone-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.phone-hero span {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 950;
}

.phone-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.phone-metrics div {
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-metrics small {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 800;
}

.phone-metrics strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.phone-frame button {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--heat);
  color: var(--white);
  font-weight: 950;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  max-width: 780px;
  margin: 12px 0 0;
}

.waitlist-section {
  padding-top: 40px;
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.waitlist-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.waitlist-form input,
.waitlist-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.waitlist-form select option {
  color: var(--ink);
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.form-note.success {
  color: #8af0b8;
}

.form-note.error {
  color: #ff9bb0;
}

.site-footer {
  padding: 34px 0;
  background: var(--night);
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-grid p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.modal-backdrop,
.reveal-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(7, 7, 8, 0.58);
  backdrop-filter: blur(9px);
}

.drop-drawer {
  position: fixed;
  inset: 16px 16px 16px auto;
  z-index: 90;
  display: grid;
  align-content: start;
  gap: 15px;
  width: min(500px, calc(100vw - 32px));
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.drop-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-weight: 950;
}

.close-drawer,
.close-reveal {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(16, 16, 20, 0.9);
  color: var(--white);
}

.drawer-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  background: #111114;
}

.drawer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.02) 20%, rgba(7, 7, 8, 0.44) 100%),
    radial-gradient(circle at 18% 104%, rgba(255, 90, 31, 0.58), transparent 44%);
  pointer-events: none;
}

.drawer-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.drawer-copy {
  margin-bottom: 0;
}

.drawer-metrics,
.reveal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.pool-section,
.odds-section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.pool-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.pool-thumb {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  background: #111114;
}

.pool-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pool-item strong,
.pool-item span {
  display: block;
}

.pool-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pool-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.odds-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.odds-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.odds-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ebef;
}

.odds-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--heat);
}

.odds-row:nth-child(2) .odds-track i {
  background: var(--cobalt);
}

.odds-row:nth-child(3) .odds-track i {
  background: var(--clover);
}

.reveal-modal {
  display: grid;
  place-items: center;
  padding: 18px;
}

.reveal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 22px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.reveal-card h2 {
  margin-bottom: 8px;
  padding-right: 42px;
}

.reveal-description {
  margin-bottom: 14px;
  font-size: 15px;
}

.reveal-card img {
  width: 100%;
  max-height: 310px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: #111114;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1000px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-header.nav-open .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.nav-open .header-cta {
    justify-content: center;
  }

  .split-section,
  .app-showcase,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drop-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 66px;
    padding: 9px 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 8, 0.96) 0%, rgba(7, 7, 8, 0.78) 62%, rgba(7, 7, 8, 0.28) 100%),
      linear-gradient(180deg, rgba(7, 7, 8, 0.08) 0%, rgba(7, 7, 8, 0.84) 100%);
  }

  .hero-content {
    padding: 78px 0 48px;
  }

  h1 {
    font-size: 43px;
    line-height: 1;
  }

  h2 {
    font-size: 31px;
    line-height: 1.05;
  }

  .hero-copy {
    font-size: 17px;
  }

  .signal-grid,
  .steps-grid,
  .drop-grid,
  .product-grid,
  .trust-grid,
  .product-rack {
    grid-template-columns: 1fr;
  }

  .product-rack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .metric-grid,
  .phone-metrics,
  .drop-actions,
  .drawer-metrics,
  .reveal-actions {
    grid-template-columns: 1fr;
  }

  .waitlist-panel {
    padding: 22px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  .hero-actions,
  .drawer-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .pool-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .pool-item > strong {
    grid-column: 2;
  }

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

  .drop-drawer {
    inset: 10px;
    width: auto;
  }
}
